Michael Nicol
@Michael_Nicol
Check me out @ https://codepen.io/michaelnicol/full/ZEKVyvB?editors=1100
0
2D Depth-First Search Maze AlgorithmFull GUI: https://codepen.io/michaelnicol/full/QWgEpJe
20
1
0
Every time I try to log in or reset my password, I get the following error:
"Looks like you signed up with google, google, google, github. Please log
Hello Forum members,
I have been using Repl.it for a few years now. I used for it for personal, school and hobby projects.
I recently changed my ema
Coder100 Replit currently does not store phone numbers, and to reset your account, you can also try directly emailing a dev, like [email protected]2 years ago
Every time I go to type on my repl, it shows a nametag where I am typing. This is despite the fact that I am the only person on the document. If I am
titaniumtails Having two tabs open with the same repo made the tag appear. As soon as I closed the duplicate session down, the name tag disappeared.3 years ago
mkhoi I guess you can go into the settings on the left sidebar, scroll down and disable the code intelligence4 years ago
I wanted to know if their is anyway i can clear the repl.it terminal with JavaScript? I can only find stuff for Python and such but nothing for JS.
Pythonier You could use this, it is a bit ugly though,
function clear() {
// prints new line 50 times.
for(var i = 0; i < 50; i++) {
console.log("\n")
}
}
That will make it appear as if the console was cleared. You can change the 50 to fit your needs.4 years ago