Skip to content
Sign UpLog In
Profile icon

darkdarcool

Hacker
@darkdarcool
The darkest Darkling
  • playSnake

    Cover page
    Made with Python

    snake game

    Recent comments (1)
Repls
Community
darkdarcool
darkdarcool
shared a Post
2 years ago
DarkLint!
DarkLint Hello! and welcome to DarkLint! I know that summer in ending (:(), and people are returing to school! Recently I did too, and since I did w
DarkLint
Node.js
InvisibleOne
InvisibleOne
Cool2 years ago
CoderGautamYT
CoderGautamYT
Ngl a very useful thing if you added more checks (and you really should've run a demo instead of just echoing "poggers" lol)2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
⚡ Voltage ⚡ > Python compiler Hello! And welcome to Voltage! Voltage is a powerful python compiler built in Deno. It supercharges your python code
Voltage-POST
Python
Whippingdot
Whippingdot
wai mac2 years ago
ImperiusArchang
ImperiusArchang
hmm2 years ago
xfinnbar
xfinnbar
Suggestion: Convert f-strings to strings with plus signs for pre-3.6 versions of Python.2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Dark-Plasma.js Hello, and welcome to Dark-Plasma.js! This is a clone of Next.js and React, with all of the little things I didn't like about them, an
Dark-Plasma-Sample
Node.js
RayhanADev
RayhanADev
Nice first release :)2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
DSMD Hello! Welcome to DSMD! DSMD is a markdown superset that allows you to do so much more! It allows you to: Make comments Be more strict on ren
DSMD-Try-It!
Node.js
Coder100
Coder100
Nice!2 years ago
JBloves27
JBloves27
very nice and pog2 years ago
RayhanADev
RayhanADev
Nice!2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Nodenet That's right, Nodenet. I think a lot of us know what Dotnet is. But if you don't, go here to learn more. Dotnet does a lot of cool and good
NodenetExample
Node.js
CSharpIsGud
CSharpIsGud
You should put the source into the repl. I got excited for a second thinking this was going to be some kind of CLR VM.2 years ago
CjPlayzTV1
CjPlayzTV1
cool2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
How to properly answer Repltalk ask questions! We all know what ReplTalk is, and while it is mainly used for sharing repls, it is also used to ask [m
ProperlyAnswerAsk
Bash
DungeonMaster00
DungeonMaster00
Make sure you have enough information, but also, do not make it longer than necessary, and and keep the information in several short paragraphs instead of one long paragraph.2 years ago
Highwayman
Highwayman
hate to ruin that perfect base 2 number of upvotes, but I gotta give. XP2 years ago
SixBeeps
SixBeeps
Some of these I don't here often, but others I haven't heard at all, and I'm glad you brought them up. Testing your code is something that I think sounds obvious enough, but even I have been found guilty of skipping it altogether. "Don't know? Don't answer" is also a great motto that really everyone on here should abide by. It's impressive the amount of times I've found answers that just post a link saying "Maybe this will work?" and the link has nothing to do with the question at all. Overal2 years ago
darkdarcool
darkdarcool
published a Repl
2 years ago
7
Post Example
Post ExampleThis is the post example for ChitChatJS
darkdarcool
darkdarcool
Hello! Welcome to my post example of ChitChatjs. If you have problems, or just want to comment, do it in the post! Thanks for coming here! Bai!2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
#javascript
#jest
#nodejs
+1
Hi! And welcome to one of 2, of my 100 cycle special projects! I have been working hard on this for the past week, and I would love to show it to you
Post Example
Node.js
JBloves27
JBloves27
Noice! > Btw, does it support with multiple arrays in arrays? And does it support comparing values for int and strings? Thanks!2 years ago
ch1ck3n
ch1ck3n
coder100, showing me my stupidity how dare you cookie show dark he is stupid2 years ago
JWZ6
JWZ6
noice (even though i have no idea y this is so popular)2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Hi there! I have been making a module for a while where it worked, and it was nice. But since it's similar to jest, I want one more thing to be like
ChitChat
Node.js
Coder100
Coder100
what do you mean so you don't have to require it? 2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Hi! Yes, another Unity question. I'm sorry. But this is with git. My git repo is here and it was the repo for my unity project. But, when I finished
Coder100
Coder100
you can use git lfs. I use this thing: https://thoughtbot.com/blog/how-to-git-with-unity why does this exist? To prevent abusers, git commits have a limit to the size of files, so sometimes things like fonts and images don't work. Also for two seconds: I made a github repo????2 years ago
SixBeeps
SixBeeps
Is there any reason why you're not using Unity Collab? I've found it much nicer to work with compared to Git, although it has less features to work with.2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Hiya! So, I asked a question about a death wall about a week ago, and it worked great. My game was coming along. But I discovered... that it was real
Coder100
Coder100
the easiest way is to reference it in a different class, most people would set this in the GameManager class to Player. The reason why it does for a specific wall is that each wall gets its own instance. btw why have an else lol2 years ago
SixBeeps
SixBeeps
You'll need a script on the player which'll keep track of the deaths. Then, you can call a function on that script from the current one you have on the wall. Something like in Player.cs public int deaths = 0; public Text deathText; public void KillMe() { deaths++; deathText.text = "Deaths: " + deaths; } in Wall.cs private void OnTriggerEnter(Collider other) { if (other.name == "Player") { other.GetComponent().KillMe(); } } `2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Hiya! I was working on a unity game a bit, and got the main part of it down. And was planning to make a game! So I made a basic AI and player control
Coder100
Coder100
yes you check the player position, like this: public Transform pos; public float minimumY; void Update() { if (pos.position.y < minimumY) { // add respawn code } } I can't believe you won't watch a tutorial, it would solve things like this for you like maybe the classic brackeys tutorial: https://www.youtube.com/watch?v=j48LtUkZRjU&list=PLPV2KyIb3jR53Jce9hP7G5xC4O9AgnOuL you see, you literally learn unity through videos not code2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Hi! I was trying out react.js, and wanted to start with a simple Hello {username} with a replit auth. But I couldn't figure out how! Can someone giv
React_APP-1
Bash
Coder100
Coder100
you can't, you have to use something like express or https://nextjs.org to get the headers2 years ago
darkdarcool
darkdarcool
Any help?2 years ago
darkdarcool
darkdarcool
published a Repl
2 years ago
25
Glitch Studios
Glitch StudiosAdd animation jam later
JBloves27
JBloves27
hahahaha e2 years ago
JBloves27
JBloves27
reactions go brrrrrr2 years ago
darkdarcool
darkdarcool
published a Repl
2 years ago
11
Pi calculator
Pi calculator Calculates pi
LaneMartin
LaneMartin
OMG WOW2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Hi! So I was trying to use a program by someone on replit, and I hit a roadblock. On my new mac, whenever I try to do a replit auth, it keeps saying
ch1ck3n
ch1ck3n
Just install chrome or use a windows pc or live with it2 years ago
ch1ck3n
ch1ck3n
by someone on replit i wonder2 years ago
Coder100
Coder100
Yeah, Apple doesn't work well with repl auth, maybe its some specification thing. Have you tried using chrome?2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Hi! So, I was making some code on Visual Studio Code (mac) and encountered a makefile error, and I tried to fix it, but couldn't. So I was wondering i
Coder100
Coder100
The compiler said your makefile didn't work, and did not capture the files it was supposed to capture. Basically $^ is empty.2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Hi! So, while I was just messing around in python, I stumbled upon something that I actually kind hard to do. Which is make a quine. I'll quickly sum
FriendlySophisticatedQuote
Python
Michael8910
Michael8910
pretty cool. but what could be of its use 2 years ago
darkdarcool
darkdarcool
shared a Post
2 years ago
Why I stay on replit(and you!) Let's be honest, almost all of us know how we stumbled on replit, but I think that not many of us actually think about
Why I am on repl.it
HTML, CSS, JS
darkdarcool
darkdarcool
shared a Post
2 years ago
A pretty bad snake game, but not many of these are in the console, so I attempted one!! > Make sure to make the console window full, the game glitche
playSnake
Python
darkdarcool
darkdarcool
lol why is this unpopular2 years ago