Shoury
@shoury2021
Drink milk for good.
Ok, so I tried to include cURL/cURLpp, but I get the following error: File not found. Can someone help me with cURLpp/cURL in Replit?
(That's it, the
This is what happens, when I'm programming on A project in React.js:
replit-ide-having-trouble
Why does this happen?
InvisibleOne I'm not sure exactly why it does it, but it does that to me a lot as well but only when I'm on Firefox, maybe try a different browser.2 years ago
18
react-counterA simplistic React.js Counter App
1.2K
23
18
I don't know, how to save a variable to Replit's database in React.js, because I can't find anything helpful. (I'm making a website)
Coder100 You need a backend in order to use this feature. Try learning node. It's just js so you can learn it fast,
https://replit.com/l/node
then use replit dB: https://docs.replit.com/misc/database2 years ago
[Not really a question, but don't talk about it]
Which one repl.it, the original domain name
VS.
replit.com the, new domain name, I mean cring..
I ac
Not dark mode in the coding work-spaces, how to get dark mode in the menu:
lightmode
Bookie0 You can dark mode by going to your account:
Screen Shot 2021-02-04 at 9.35.40 AM
Then go to roles:
Screen Shot 2021-02-04 at 9.35.25 AM
And check explorer:
Screen Shot 2021-02-04 at 9.36.18 AM
Then you'll get this new experimental dark mode by repl.it which is really pog. This is different than the chrome flags dark mode because that one is for every tab, window, and account on chrome. This dark mode only applies to repl.it! ;)
2 years ago
OldWizard209 It's easy, just enable chrome flags:
Go to chrome://flags/
Then enable Force Dark Mode for Web Contents
Then relaunch chrome and u will see a dark theme. @shoury20212 years ago
Wumi4 Your one looks weird, I already have the black theme even though I don't configure anything.
image2 years ago
I'm really good at JavaScript, but I don't know how the readline() function works in JavaScript, which basically waits for the user's input and then c
xxpertHacker You have to do the waiting yourself.
Wrap it in a Promise object and use the await operator before it.
Otherwise, I support Coder100's answer, readline-sync is much simpler.
Deno's std/readline is very easy to use too.2 years ago
Coder100 Readline is supposed to be async, so that means code that happens later still will run before the user finished typing.
Use readline-sync for, well, synchronous user input.
https://www.npmjs.com/package/readline-sync2 years ago
Baconman321 Readline is an interface to handle user input on the terminal. A tutorial on this can be found here.
2 years ago