Skip to content
Open navbar menu
Sign UpLog In
Profile icon

dadey idk

@RmyDahGod
When python says invalid syntax but there isnt really an error im mad
RmyDahGod
RmyDahGod
shared a Post
3 years ago
error because of the exit() function
hi. idk why but when i put the exit() function the repl process dies. My code is just me making fun of my ‘technology’ teacher cuz yea he sucks and ye
bruno
Python
RYANTADIPARTHI
RYANTADIPARTHI
exit is supposed to do that. It's just exiting the program. By repl process died unexpectedly. Nothing wrong with that.3 years ago
19ecal
19ecal
The repl process died unexpectedly is because you forced it to exit and stop, using exit(). If it just runs to the end it doesn't do this, so if you are going to use exit() it will always do this. Also, shouldn't it be indented one more level so that it only runs if your name isn't bruno?3 years ago
RmyDahGod
RmyDahGod
shared a Post
3 years ago
hi. idfk why but i’ve tried many times, but the console doesn’t look to load when i make an html, css, js code. Anyone knows why?
migoyo
migoyo
I’ve been surfing online more than three hours today, yet I never found any interesting article like yours. It’s pretty worth enough for me. In my opinion, if all webmasters and bloggers made good content as you did, the web will be a lot more useful than ever before. เว็บแทงบอลออนไลน์1 year ago
FranklinStopar
FranklinStopar
Did you put it in a console.log(); ? That is what I do and the concole works...3 years ago
RmyDahGod
RmyDahGod
shared a Post
3 years ago
hi. I cloned a code from github, but i don’t know how to configure the run command for javascript in bash. Thank you for helping, appreciate it.
hello-world-javascript-action
Bash
SameeraMurthy
SameeraMurthy
Solution Here are 3 easy steps: Go to package.json And under scripts, change test to start Then change its value to node index.js or node . Example "scripts": { "start": "node index.js" }, `3 years ago
UnluckyFroggy
UnluckyFroggy
Hey @RmyDahGod are you still active? I can answer your question very specifically and configure the run command the best way possible.3 years ago
Coder100
Coder100
Please, send a public repl. The easiest command would be node . but if there are more intermediate steps involved, npm i ; node . But you need to actually give a public repl.3 years ago
RmyDahGod
RmyDahGod
shared a Post
3 years ago
hi. i am trying to make a discord chat bot. when i put in “await” there is this error appearing : Syntax Error : ‘await’ outside function
discord chatbot
Python
KHZ
KHZ
@RmyDahGod Btw your repl is private so we can't look at your code. If you don't want us to see the code try attaching a screenshot of the code where the error is so we can take a look at the error.3 years ago
19wintersp
19wintersp
You can only use await inside of an async function.3 years ago
RmyDahGod
RmyDahGod
shared a Post
3 years ago
Yo guys, i’m looking for a course to learn how to draw/write with cool symbols and stuff.. if anyone could help, much appreciated ! :)
/ - \
Python
Jiohan
Jiohan
Hi guys I add my stone to the building and I propose this font generator in addition, it also offers interesting fonts After attention you cannot use them everywhere, on video games for example it will not necessarily work they do not accept all the characters but it is always nice when it works. Anyway, good luck to anyone who stumbles upon this thread. 2 years ago
Elizabeththy
Elizabeththy
Hi, I would also be glad to find some course for writing, as it is one of my biggest problems in college. I often get writing assignments, but can't cope up with them by myself. A few months ago, I found a service for literature review help, and it was really great that I found them. The ratio of the quality and the prices is excellent, and they always meet the deadlines.2 years ago
RmyDahGod
RmyDahGod
shared a Post
3 years ago
Yo guys. So in many codes, i’ve seen the / turning around itself, and looking pretty cool. I just tried the print command, but idk how to get the slas
/ - \
Python
Coder100
Coder100
Try this: import time while True: print('\x1b[0;0H\\') time.sleep(0.1) print('\x1b[0;0H|') time.sleep(0.1) print('\x1b[0;0H/') time.sleep(0.1) print('\x1b[0;0H-') time.sleep(0.1) https://repl.it/@Coder100/WeakSnoopySection#py.py3 years ago
SixBeeps
SixBeeps
Usually you'd put the cursor to that position, then print the following in sequence: / - \ |3 years ago