Coding Is_The_Best
@multicoder2021
A beginner-lower intermediate coder in HTML.
On a scale of 1 to 100 for coding, I am about 26.
3
Google ClickJust Bookie0's iClick project in https://replit.com/@Bookie0/iClick, but in the theme of Google instead of Apple.
I really have no idea what else to put here so that's it.
61
2
3
0
Xbox 361Introducing the XBOX 361! You thought the PS5, or Nintendo Switch was useful? Well, take a look at this ̶w̶a̶s̶t̶e̶ ̶o̶f̶ ̶m̶o̶n̶e̶y̶ very awesome and Xtraordinary (see what I did there?) gaming console! With asterisks, copyright and lies galore, you'll never forget the XBOX 361.
This isn't really based on anything, but it is still a parody of the Xbox 360 and Xbox 1.
26
0
0
0
Idea Generator Program Generates ideas.
1
0
0
0
Unkrakable KodesCracking CODES?
Easy.
Cracking UNKRAKABLE KODES?
Impossible.
6
0
0
0
Car Code Creator Clarity - CCCC (obviously)Generates Random Car Codes Based On Input, With Options For Capital Letters, Lowercase Letters, Or Both.
1
1
0
0
Rock Paper Scissors (including impossible mode)Self-Explanatory.
54
1
0
UtkMcpe78 This is really cool! I created a similar repl last month: [Rock Paper Scissors - Shoot!: Built with Python on Repl.it](https://replit.com/@UtkMcpe78/Rock-Paper-Scissors-Shoot?v=1)8 months ago
0
Boom Boom Bot - Beta.Don't judge a book by it's cover.
Don't judge a coder by their lack of creativity.
Don't judge a program by it's title.
VERSION BETA
Boom Boom Bot!
Such a cool name - right?
Version Beta
Features:
Showing chat log
Hashing text, a feature INSPIRED by Roblox
Commands
CHATbot - Only few responses
Very simple calculator - gives error (which doesn't stop program) when not a number
Suggestions command '-suggestions'
Jokes
Spamming variable, if you spam too much the program force stops.
Some like... emojis?12
1
0
1
Number SorterSorts numbers.
10
0
1
0
Money ManagerThis enquires about your: company name, company net worth, types of products, the cost of each product, how much it costs to manufacture the product, how many products have been bought, and how many products you have manufactured. It uses that information to calculate how much net worth you have NOW.
5
0
0
0
LoadingLoading...totally right...yeah TOTALLYLOADINGWITHOUTANYSUSPICIOUSCOMPUTERCODEYEAHYOUGOTTABELIEVE ME
7
0
0
0
SCCD You enter a color, and it does some stuff with it.
12
0
0
1
Learn Your TIMES TABLES with multicoder2021!This (TOTALLY) fun and engaging game (not a game) tells you EXACTLY every time table (ehh no not the infinity times table) that you would ever need to know!
Learn your times tables.
This is TOTALLY AWESOME INFLUENTIAL SUPERCALIFRAGILISTICEXPIALODOCIOUS AWESOME AWESOME SUPER COOL AWESOME GOOD GREAT EXCELLENT AMAZING AWESOME AWESOME HAVE I SAID AWESOME YET easy to make and boring.18
1
1
0
Python Weapon Shop and ⚔War⚔![Pre-Alpha]You can gather resources , trade it or raid it. You can get weapons with the resources. You can then go to ⚔war⚔!
Login and Signup not working
I tried to create a login and signup program, but it is not working. The code is in authorise.py.
The error is that once you login to your existing account or sign up for a new one, it should break out of the loop "while x == 1:", and print Signed In, but even though I printed the value of x for debugging purposes, and its value was 0 - not 1 - it still does not break out of the loop.
Do any of you have an idea why this is not working?
Any answers or help will be appreciated.
Thank you in advance.
=
EDIT: Solved by self1
2
0
0
A HTML and JS Tutorial
Go to tutorial.md in the repl.
The tutorial is there.
Not Here.
12
1
0
0
Very Simple JS Program: Part 1This program lets you enter some input in a field, submit it, and show it as output on the same page. It does not refresh the page. It just replaces an element with the value of the user input.
(Basically you type some stuff, click a button and it shows that stuff on that page)
A Very Simple JS and HTML Program
Table of Contents
Intro
The HTML Part
The JS Part
Intro
Hello everyone, in this tutorial you will learn about some awesome super cool simple stuff in JavaScript and HTML.
So what this program is going to do is:
Get input from the user.
Show that "input" as output on the same page.
Very easy, doesn't take up a lot of time or energy...
OR DOES IT?
>>> Just kidding it's super easy
The HTML Part
For our HTML, we need to get input, so thankfully there is something called the `` tag.
replit
Now we need to add the type attribute:
replit
And an identity using id:
replit
And a placeholder
replit
Then we need to make a input field, for submitting the input.
replit
(The onlick="stuff()" is a piece of code that will execute stuff() (a JS function we will define later) when clicked)
Then we will need to add a place where thy output shalt be displayed:
replit
And that is all for the HTML HyperTextMarkupLanguage HyperTerrificMagicalLanguage section.
The JS part
Now, we say farewell to our index.html and say greetings to our script.js file.
Go to your script.js file, and type this:
function stuff(){
}
This is the function stuff().
Very ORIGINAL name, obviously.
So after we type that, we need to get the value of the input, otherwise this poor user will just type something and click a button and waste their precious seconds.
We do that by using the document.getElementById() in-built function.
So we make a variable called "stuff" (again) (why not) and we declare it is equal to document.getElementById("stuff").value; (...)
function stuff(){
var stuff = document.getElementById("stuff").value;
}
And then finally for the JS, we declare that the innerHTML of show (the id of the area where we display the output), which is basically the JavaScript part of the HTML
function stuff(){
var stuff = document.getElementById("stuff").value;
show.innerHTML= stuff;
}
And now, after a great deal of struggle, of pain, of boredom, of copying and pasting...
>>> Thou hast finished, as thy replit tutorial has helped you. "Hath?", thine mind will verily say, "I beseech, I prithee, whence hither nor yonder dost help me."
THE END
If anything is wrong in this code, please comment and tell me.
4
3
0
0
Very Simple JS Program: Part 1This program lets you enter some input in a field, submit it, and show it as output on the same page. It does not refresh the page. It just replaces an element with the value of the user input.
(Basically you type some stuff, click a button and it shows that stuff on that page)
A very simple HTML and JS Tutorial
Table of Contents
Intro
The HTML Part
The JS Part
Intro
Hello everyone, in this tutorial you will learn about some awesome super cool simple stuff in JavaScript and HTML.
So what this program is going to do is:
Get input from the user.
Show that "input" as output on the same page.
Very easy, doesn't take up a lot of time or energy...
OR DOES IT?
>>> Just kidding it's super easy
The HTML Part
For our HTML, we need to get input, so thankfully there is something called the `` tag.
replit
Now we need to add the type attribute:
replit
And an identity using id:
replit
And a placeholder
replit
Then we need to make a input field, for submitting the input.
replit
(The onlick="stuff()" is a piece of code that will execute stuff() (a JS function we will define later) when clicked)
Then we will need to add a place where thy output shalt be displayed:
replit
And that is all for the HTML HyperTextMarkupLanguage HyperTerrificMagicalLanguage section.
The JS part
Now, we say farewell to our index.html and say greetings to our script.js file.
Go to your script.js file, and type this:
function stuff(){
}
This is the function stuff().
Very ORIGINAL name, obviously.
So after we type that, we need to get the value of the input, otherwise this poor user will just type something and click a button and waste their precious seconds.
We do that by using the document.getElementById() in-built function.
So we make a variable called "stuff" (again) (why not) and we declare it is equal to document.getElementById("stuff").value; (...)
function stuff(){
var stuff = document.getElementById("stuff").value;
}
And then finally for the JS, we declare that the innerHTML of show (the id of the area where we display the output), which is basically the JavaScript part of the HTML
function stuff(){
var stuff = document.getElementById("stuff").value;
show.innerHTML= stuff;
}
And now, after a great deal of struggle, of pain, of boredom, of copying and pasting...
>>> Thou hast finished, as thy replit tutorial has helped you. "Hath?", thine mind will verily say, "I beseech, I prithee, whence hither nor yonder dost help me."
THE END
If anything is wrong in this code, please comment and tell me.
4
3
0
0
Login and Signup System With Python
Hello everyone, here is a template that contains a login & signup system, coded in Python.
I have used the os module, the time module, the sys module, the replit-made db module and a lot of if-else loops.
15
1
0
Hello users of replit, I have a flask program that is not working.
The problem is, that, whenever I try to login or signup, the program will not log m
Python
In my repl, WoWML, I run the program and wait, because it shows "Repl waking up...", but even after 30 minutes it still does not run the actual progra
HackermonDev It looks like there is an error in your project. Fix the error and i'm sure the repl will work again!2 years ago
ShizukoV Maybe it just takes up too much memory/space... Or the project size is just too large... Replit isn't really that good for extremely large projects (though it doesn't look like your project is large, so I don't know why this is happening...)... I recommend posting this in "bugs".2 years ago