Lone Ace
@LoneAce
A journey of a thousand lines begin with a single line
Hey there!
This is a diamond artwork made using Python Turtle. If you want it to draw faster, press the center button
Python (with Turtle)
Hey there!
This painting is my first done using Python Turtle. Hope you like it :)
Python (with Turtle)
Hey there, I would like to give a timeout on my Python inputs. If possible, I would like the code to be portable so that I can give timeouts to everyt
Roar123 This was my attempt to create a timed input function:
import time
def timed_input(prompt,t):
start = time.time()
inp = input(prompt)
now = time.time()
if now - start < t:
return inp
else:
return "Timed Out"
Edit: It works!
I thought the code for input would wait until it receive an input, but I don't think that's the case. The answer is more complicated and lies in threading which is used to run multiple threads (functions, tasks, etc) at the same time. Thi3 years ago
Hello there!
Just a brief intro this is an updated version of my previous Python Chatroom post
Link is here: https://repl.it/talk/share/Python-Publ
Python
jtapostle I hate to say it, but all you need is a bcrypt utility and you can get into lone's account.
I suggest using salts in your encryption, to slow down intrusions.3 years ago
Is there any Python online database that you can import into repl that is secure? Say that I put the database server in a repl and the client in anoth
Zavexeon You could create an HTTP database that only responds to whitelisted IPs.
It could be hosted on repl.it, just have the contents in it encrypted and keep the key in a .env.3 years ago
Hello there
This is a small instant painter that I coded when I had extra time.
Use the number keys to add a pixel of your chosen colour, delete pix
Python
Hello there!
Here is a small chatroom I coded with the Python Language. The method is very simple compared to other chatrooms so feel free to take r
Python
Hello there! Just asking for a little bit of help since I am not too familiar with the repl.it python module. Is there any way where I can check who
mwilki7 I may be wrong but I don't think repl comes with this capability.
You might need some external notification service that you can communicate to via python or network connection (or network connection via python?) that will send this information to you (email, discord, or something).3 years ago
Hello there!
The project below is a small game that I made that (unfortunately) does not do much... Do comment suggestions to improve the game and I
Python