Joey
Hacker
@joecooldoo
Hello, I'm Joecooldoo! I used to code on Scratch, but then I moved on to Snap, another coding website. Then I saw repl.it, and here I am!
3
ReplitBBSimple forum software built with Replit's features.
16
3
3
2
The Most Epic Rickroll Of All Time
WARNING: THIS PROGRAM WILL FILL YOUR SCREEN WITH RICK ASTLEY. THE OWNER IS NOT RESPONSIBLE FOR COMPUTERS THROWN OUT WINDOWS. Rickroll your friends! NOTE: For the full effect allow popups.41
7
2
0
How To Get IP Address Of A Request?
This dude is spamming stuff to my repl database, and I want to block hime via IP. The problem is that replit blocks it and replaces it with a private IP. I am using Flask's IP request thing inside of the Flask environment variable.joecooldoo @CSharpIsGud *Sigh.* You can get the sender's IP address. I just don't know how without Replit returning it as a private IP.1 year ago
CSharpIsGud @joecooldoo replit doesn't give you ip of users so the only way is making an account system where accounts can't be made at super fast rates and if you can't link with some external service that has accounts that are more annoying to create lots of the only choice is host outside of replit or just do a few client side checks that can be bypassed quickly1 year ago
11
19
0
0
Epic ScreensaverYet another screensaver for my computer. :)
10
0
0
0
Replit ConnectConnect to people across the world!
8
0
0
This python program allows you to download YouTube videos!
Python
2
Youtube Video DownloaderDownloads youtube videos. Follow on-screen instructions.
565
6
2
0
PyRun (Command Line)Type help for help.
8
0
0
This is my very first command line!
You can:
Run Windows
Split Text
log strings to the console
Spam The Console
Type help for detailed explanation
Bash
Remote DB allows you to set keys remotely. (You can use this for a chat app if you wanted to use Replit DB. But everyone has their own database, so th
Python
1
Remote DB (Replit Database)Remote DataBase
By Joecooldoo
Setup:
from requests import get
def setvar(var, val):
requests.get(f"https://Remote-DB-Replit-Database.joecooldoo.repl.co/set/{var}/{val}")
def getvar(var):
requests.get(f"https://Remote-DB-Replit-Database.joecooldoo.repl.co/get/{var}")
def delete(var):
requests.get(f"https://Remote-DB-Replit-Database.joecooldoo.repl.co/del/{var}")
Example:
set(variable, value)
print(get(variable))
delete(variable)
`
20
0
1
InstaPing is an easy-to-use pinger that keeps your Repls awake.
Why should you use InstaPing? InstaPing doesn't limit you to how low you can set your
Python
AmoghTheCool this is supposed to replace replits always on?
good job updoot for you
song:
One day there was a rad cool project,
that helped a ton,
and I then jumped into my Updoot-a-tron,
and spammed it.
i was like,
"This is what it deserves",
but when I looked at that green updoot button,
it's reserves were less than 2.
wahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh it deserves more than that
`1 year ago
1
InstaPingInstaPing is an easy-to-use pinger that keeps your Repls awake.
If you want to add a website for InstaPing to ping, type "N" on the first prompt. On the second prompt, type your Repl's URL (NOT THE EDITOR URL! USE THE URL TO WHICH YOUR PROGRAM IS BEING HOSTED!). Make sure your URL starts with "https://". InstaPing will immediately check if such a domain exists, and adds your website to the ping list. InstaPing will ping your Repl as soon as possible.
If you just want to see what is being pinged, type "Y" on the first prompt.
120
0
1
I am making a mailing system that uses Python Flask. My template has the following HTML:
Send Mail
Your ID:
Receiver ID:
Message:
Glitchez I do not know flask however in html/js you would use form action="yourwebpage.yourending"> so maybe look into form and action1 year ago
I created a password generator. Planning on making the word generation better.
Python
ChatDeck is a Python-Based chat program. I built this program because all the chats me and my friend use such as Houseparty and Hangouts are discontin
Python
PabloJuan Traceback (most recent call last):
File "main.py", line 44, in
print(Fore.BLUE + RoomData.text)
AttributeError: 'NoneType' object has no attribute 'text'
`1 year ago
ItWasMeCoder Uh..
Traceback (most recent call last):
File "", line 1, in
NameError: name 'bleh' is not defined1 year ago
Scratch Text-To-Numbers (TTN)
This is how you use Scratch TTN.
Setup
Type this in your Python program:
import scratchtextto_nums
ttn = scratchtext
Python
How would you set env vars inside of python code? The only way I see is that you have to go to the secrets tab and add them. I want to be able to set
SixBeeps Mmm, what do you plan on achieving with that kind of functionality?
EDIT: Here have this SO post https://stackoverflow.com/questions/5971312/how-to-set-environment-variables-in-python1 year ago
I have been getting a lot of spam in a python server I have containing bad words and gibberish. I've handled the bad word part, but can't find out how
ch1ck3n https://github.com/thomas-daniels/GibberishClassifier-Python/blob/master/gibberishclassifier.py1 year ago
Coder100 you could try and compare it against a dictionary, and also try to see how many repeating characters there are next to each other (like string[0] == string[1] and string[1] == string[2] and string[3] == string[4])
or, you could just ban the spammers :)
1 year ago