Python Person
@UltimatePython
JAvA sUcKS, PyThoN pRo
I'm coding a cool game and when the user wins there is confetti. The language is HTML/CSS/JS. However, I suck at JS, and I don't know how to create a
TheDNAHero Create a bunch of different color divs that are only shown when the game ends and they go to a bunch of random places on the top, with an animation that makes them fall and then disappear2 years ago
Hi, I was just coding as usual, but then I was forced to reload due to internet issues, then I got -5 notifications?!?! What in the world, Replit need
CodingElf66 If you view them, then close it, Replit'll think that you have no more, because you viewed them. But after it's set to 0, Replit thinks that you hadn't read them when you did, which therefore returns 0-amount.
Your computer is not too old, it is just a Replit issue that is uncommon.
Replit will do that soon.
Can you mark it as answered?2 years ago
Coder100 hello, that is a bug with replit where it didn't update to the latest amount of notifications and maths broke.
image2 years ago
Please help!
I NEED at least 50 characters so here you go
IntellectualGuy There are discord bot templates when you try to create a repl, and on the sidebar of any repl, there is an icon that says youtube. Click on that icon and there will be a python discord tutorial. You can use that to make a discord bot.2 years ago
How do you Connect a tag to another tag with the borders connecting?
Hello, I'm coding a project, here is the code:
code {
background-color: #dd
Just the question above, I'm stuck on ideas to code.
IMayBeMe If you really want to get better at programming, go to edabit or project Euler and start doing the challenges. These may not be that cool or interesting but damn will they make you a better programmer.2 years ago
CodingElf66 There are so much things to code! If you need help, I'll create a team or just share our repls and we can work on stuff together! For instance, you can code a Python text game (I'm assuming that since your username is UltimatePython, you're good at Python.) If you need help, I'll create a tutorial for you2 years ago
Hi, does anyone know this? How to submit form data to a URL? Or in Java. Doesn't have to be an URL, it can be anything that stores real data in.
CodingElf66 I suggest you use Flask server.
Then, in main.py, do:
@app.route('/submit', method=["GET","POST"])
def submit():
name = request.form.get("name")
db[name] = value # doesn't matter, you saved the name onto db!
2 years ago
xfinnbar Add the action attribute to specify a URL. For example, take this form:
Will send the following request to this URL when Hello is passed to the text input:
your repl url/page?a-text-input=Hello
P.S. Java (server and desktop focused general purpose language) is not JavaScript (browser scripting language)2 years ago