Skip to content
Sign UpLog In
Profile icon

MollTheCoder

@mollthecoder
JS Coder
GitHub
YouTube
Repls
Community
mollthecoder
mollthecoder
published a Repl
2 days ago
0
Basic Fighting Game
Basic Fighting GameA fighting game where you can fight one of three enemies, with more on the way!
mollthecoder
mollthecoder
published a Repl
3 months ago
2
Extreme Annoyance
Extreme AnnoyanceIt is very annoying
noCommentgoth
noCommentgoth
nice,2 months ago
TheOceanFace
TheOceanFace
didnt work2 months ago
mollthecoder
mollthecoder
published a Repl
1 year ago
2
Trial and error string
Trial and error stringIt is a remake of Interlink's "trial and error counting" repl but it uses strings instead of numbers.
Interlink
Interlink
Epic! Nice job making it nodejs, I have literally no idea how to use it. My knowledge is limited to html and python lol. The special characters being possible ones is a nice touch!1 year ago
mollthecoder
mollthecoder
published an Update
1 year ago
0
Find the errors
Find the errors
There are several hidden errors in this post. How fast can you find them?
mollthecoder
mollthecoder
shared a Post
2 years ago
Just comment your favorite libraries please. It would be useful.
TheDNAHero
TheDNAHero
react1 year ago
ch1ck3n
ch1ck3n
pure js gang 😎😎😎2 years ago
mollthecoder
mollthecoder
shared a Post
2 years ago
Just to give you a sense of why I am asking this, I am going to make an extended version of Node.js that is generally better to code in. I was hoping
SixBeeps
SixBeeps
If you look at Ryan Dahl's slideshow for when he announced Deno, he went over plenty of design mistakes that he made when making Node. Personally, I think the most important ones are having a localized node_modules folder for every project and not having as clear of a focus on Promises as desired. That being said, are there things about Deno that you aren't liking? What are your goals with this project of yours?2 years ago
mollthecoder
mollthecoder
published a Repl
2 years ago
7
JSIS Sneak Peek & information
JSIS Sneak Peek & informationThis is the information to JSIS, an advanced OS simulator being published in the future.
mollthecoder
mollthecoder
Please share this with others, that would be much appreciated. I'm trying to get popularity and if I do then I will release more information, and the preview of JSIS.2 years ago
RishabhRanjit
RishabhRanjit
Wowa.... This looks cool... ###### Is there anyone else working with you?2 years ago
mollthecoder
mollthecoder
shared a Post
2 years ago
I'm working on an app system, and to power it I want to use Node.js's VM module to create a custom V8 runtime environment, but the system needs to be
Coder100
Coder100
maybe you can consider using eval2 years ago
Coder100
Coder100
Well, you can't. Node.js is technically not js, in the sense that it isn't meant to be compatible with browser js.2 years ago
mollthecoder
mollthecoder
shared a Post
2 years ago
Hi, I'm an active member called mollthecoder and I'm working on a secret project, called project JSIS, and there's a question I would like to ask rega
Coder100
Coder100
User data? What would you save? What is your project? I expect user data to save: login information profile picture bio cycles (make sure i have more than you) any more data that your project is about and uses2 years ago
mollthecoder
mollthecoder
shared a Post
2 years ago
I'm having difficulty choosing P5.js or PixiJS. PixiJS is very fast but doesn't come with many extra tools and also in my case sprite-based rendering
Coder100
Coder100
pixijs - built for making games, but that's it. So it's like phaser. p5.js - built for making sketches, but that's it. Unless you want to build a game engine from scratch, then use it? At the end of the day, both are good, but I like p5js but pixijs is nice but p5js is cool so use p5js.2 years ago
mollthecoder
mollthecoder
shared a Post
2 years ago
What is an alternate to the confirm function? I liked having the user only able to type y/n, it is convenient.
Coder100
Coder100
sorry, you will just have to write your own. Is this on repl.it or not? If it is on repl.it, you can try this: function confirm(p = "Are you sure? ") { let yn; do { yn = prompt(p); } while (!/y(es)?|no?/i.test(yn)); return /y(es)?/i.test(yn); } confirm("Mark as correct answer please"); `2 years ago
mollthecoder
mollthecoder
shared a Post
2 years ago
This is my simple polygot template that combines node.js, python3, and C++. It runs in the order of: Node -> Python -> c++ compilation -> c++ executio
polygot
Python