Skip to content
Open navbar menu
Sign UpLog In
Profile icon

DabDatBass

@DabDatBass
owo what's this?
  • python file maker

    Cover page
    Made with Python
    Recent comments (0)
  • PullCSS

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
  • FarflungMildPipelining

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
  • CSS+

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
DabDatBass
DabDatBass
shared a Post
2 years ago
How do I use SASS/Stylus in my repls?
Hi there, I have not yet found any way to get SASS/Stylus to work. Please go in detail how I would go doing this. Thank you!
Coder100
Coder100
try my repl: https://replit.com/@Coder100/TrickyAverageEmulator-aeouaeouaeouo#main.css it's a bit hacky, but it works. Just run npm run compile to compile the sass. The explanation is just to use npm lol2 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
Hey y’all, Just want to know how to implement SASS into a html repl. Thanks!
SixBeeps
SixBeeps
afaik best you can do is to install a sass compiler, then compile when needed.3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
Accreate Beta stars forks issues run on repl.it version Accreate is an account creator/manager that's really easy to use. To use Accreate, simply fo
accreate
Node.js
DabDatBass
DabDatBass
wait can I bump this3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
So uh, I need help fixing this. Supposedly, it should create a input inside a div. But it doesn't, and the reporting system doesn't work for attr, and
tyni.js
HTML, CSS, JS
Coder100
Coder100
lol what is that code on line 60, that's nonsense lmao here's what you probably meant to do: function onload(callback) { window.onload = callback; } so much easier, right?3 years ago
Coder100
Coder100
wdym, you can put inputs inside divs smh3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
So, I have some code that runs a html AND php website, but if you click on "Seesaw Balance", you'll see my bug. Any help?
GameHub
HTML, CSS, JS
programmeruser
programmeruser
You have to create a PHP repl! You have to use a special server to serve PHP files.3 years ago
RYANTADIPARTHI
RYANTADIPARTHI
To confirm, is your bug, all that messed up code? Like when you click on it, it shows some jibberish. Is it that?3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
So, I'm making a "shop" and the code in script.js shows how I'm going to be saving data, and I have some JSON in the third item of the array for stori
shop
HTML, CSS, JS
Coder100
Coder100
Arrays start at index 0. You tried to access the fourth item, which is a boolean lol Correct code: var saver = ["password", "email", '{"cattabby": 340, "plasma4ku75intv": 8500, "hpss": 16.50}', false] var json = saver[2]; var objCart = JSON.parse(JSON.stringify(json)); document.write(objCart.cattabby); `3 years ago
RYANTADIPARTHI
RYANTADIPARTHI
The reason it is undefined is because it cannot happen. You can't do that. But if you are stringifying that, it probably will though. Stringing it.3 years ago
realTronsi
realTronsi
You cannot JSON parse an array. If you try stringifying, you will see, as the name suggests, turns it into a string. Parsing will do the opposite, turn a string back to its original form.3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
Hello, I would like to simply change the color of the code like Visual Studio Code (change how function colors would look like).
RYANTADIPARTHI
RYANTADIPARTHI
You have to install it, and connect it to repl.it3 years ago
Bookie0
Bookie0
@minx28 made a tutorial here3 years ago
Bookie0
Bookie0
Hi, not possible, but @CodingCactus made a custom color theme for the repl.it IDE: post here you can also make how you want, follow the instructions on the post ;)3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
Gamr So, what the heck is this?? This is a collaboration for a website called "Gamr". It will include posting, commenting, following, user profiles,
looserty
looserty
Gamr = Newgrounds?3 years ago
looserty
looserty
Can I Join??? -Looserty on Scratch (AKA the Annoying One)3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
Here's a HTML template for anyone who's just started on the programing language. It includes: • Google Fonts (Open Sans, Roboto, Roboto Mono, Montser
HTML
HTML, CSS, JS
DabDatBass
DabDatBass
shared a Post
3 years ago
Node.JS database tutorial links in the chat, please! :) Why? Here's why: I want to create a live chat on a website with whitelisting (hopefully poss
WorldDominator
WorldDominator
I'm AnAlienIn_Disguise from scratch3 years ago
realTronsi
realTronsi
This is a big leap for someone coming from Scratch. I'd suggest taking a look at websocket/socket.io, there are also plenty of good tutorials on youtube. To be honest though, I'd suggest starting slow, familiarize yourself with html, css, and javascript first, and slowly making your way into the backend with some simple express projects etc.3 years ago
PattanAhmed
PattanAhmed
@DabDatBass Hi, To your direct question:- > Node.JS database tutorial links So, here are some in Node.js MySQL:- https://www.w3schools.com/nodejs/nodejs_mysql.asp https://www.mysqltutorial.org/mysql-nodejs/ Here are some in Node.JS MongoDB:- https://www.w3schools.com/nodejs/nodejs_mongodb.asp https://docs.mongodb.com/drivers/node/usage-examples For your side note, Here are some tutorials on Node.JS too:- https://www.w3schools.com/nodejs/ https://www.youtube.com/watch?v=RLtyhwFtXQA https://n3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
Hi! I would like to know how to make it where somebody adds something to the server, like a game or text, and it saves on the website for everyone to
Coder100
Coder100
You are looking for a database, not a web server (but a web server will still be essential to processing the data!) I suggest you use repl.it db, although it is still in beta, you can use it! I made the node.js client :D just turn on explorer mode. Node.js Tutorial https://www.npmjs.com/package/@replit/database Python Docs https://pypi.org/project/replit/3 years ago
SixBeeps
SixBeeps
You'll want to store that kind of info in a database. Something like Repl DB should work for it. All you'd need to do is put the score in the database, then access it when you want to show the leaderboard. I haven't actually done something like this yet, but I know that's how it would be used.3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
Hi! So currently, in Teams we are making a website where you can share games made in Unity, Scratch, Adobe, e.t.c. And I was wondering if there was an
ironblockhd
ironblockhd
I recommend you to get a SPA library such as react or vue3 years ago
DynamicSquid
DynamicSquid
No, I think you have to make another html file. Another page means another html file3 years ago
Coder100
Coder100
but having a backend would be much better3 years ago
DabDatBass
DabDatBass
shared a Post
3 years ago
Just sharing this. This is for my sisters
dream-team
HTML, CSS, JS
DabDatBass
DabDatBass
shared a Post
3 years ago
I already made a post on the "ask" forum but yea I would like to do collab with yuo
StaidVillainousConfiguration
HTML, CSS, JS
DabDatBass
DabDatBass
shared a Post
3 years ago
I'm still testing stuff, but I want to do a collab. I think maybe a top navigation bar and a "login" would be nice. Just wondering. It'll be nice to h
StaidVillainousConfiguration
HTML, CSS, JS