Skip to content
Open navbar menu
Sign UpLog In
Profile icon

King Retracted

@kingretracted
kingretracted
kingretracted
shared a Post
3 years ago
A python string obuscator and unobfuscator
It can obfuscate and unobfuscate strings that come in a form of numbers. The key is like seeds in Minecraft, the same key will result in the same encr
kingretracted
kingretracted
shared a Post
3 years ago
When I made this I was thinking of how much time is used on the base function of the bot, just to get it up and running. When I made this, I didn't go
Advanced_Discord_Template
Node.js
NanduWasTaken
NanduWasTaken
██████╗░███████╗██████╗░██╗░░░░░░░░██╗████████╗ ██╔══██╗██╔════╝██╔══██╗██║░░░░░░░░██║╚══██╔══╝ ██████╔╝█████╗░░██████╔╝██║░░░░░░░░██║░░░██║░░░ ██╔══██╗██╔══╝░░██╔═══╝░██║░░░░░░░░██║░░░██║░░░ ██║░░██║███████╗██║░░░░░███████╗██╗██║░░░██║░░░ ╚═╝░░╚═╝╚══════╝╚═╝░░░░░╚══════╝╚═╝╚═╝░░░╚═╝░░░ 2 years ago
familypsycho
familypsycho
how to i change delay in the command thing2 years ago
ARJPEG
ARJPEG
I ███████╗███╗░░██╗░░░░░██╗░█████╗░██╗░░░██╗██╗ ██╔════╝████╗░██║░░░░░██║██╔══██╗╚██╗░██╔╝██║ █████╗░░██╔██╗██║░░░░░██║██║░░██║░╚████╔╝░██║ ██╔══╝░░██║╚████║██╗░░██║██║░░██║░░╚██╔╝░░╚═╝ ███████╗██║░╚███║╚█████╔╝╚█████╔╝░░░██║░░░██╗ ╚══════╝╚═╝░░╚══╝░╚════╝░░╚════╝░░░░╚═╝░░░╚═╝); ed!``3 years ago
kingretracted
kingretracted
shared a Post
3 years ago
Like I want to make a python game with saving, however python is console based and mostly local.
SixBeeps
SixBeeps
Yes, but it's better if you do it with something like a database.3 years ago
kingretracted
kingretracted
shared a Post
4 years ago
Say I wanna make a chatroom with Python, how would I do so?
kingretracted
kingretracted
shared a Post
4 years ago
Do you think they should add AutoHotKey and like you can do mouse movement and typing in a virtual environment, like a simulation of Windows. AHK shou
SixBeeps
SixBeeps
AHK is for Windows exclusively, and since Repl.it runs on Linux, that wouldn't be possible.4 years ago
kingretracted
kingretracted
shared a Post
4 years ago
I made this in HTML in a day or so. Tried my best, Hope you like <3
kingretracted
kingretracted
shared a Post
4 years ago
For submit buttons in HTML why does it reload the page?? Please help
bramley
bramley
bruh what4 years ago
slip1244
slip1244
Please include the repl link in your post next time. I assumed you were talking about this repl, though: https://repl.it/@kingretracted/Login The reason is that the login button is an input with type submit on it. type submit reloads the page. if you want to keep it as a button, then use input type="button" instead on the login button.4 years ago
kingretracted
kingretracted
shared a Post
4 years ago
Title says what the question is. I always get "Plugin Crashed" when I import or move the audio file.
MicroSoftHelp
MicroSoftHelp
Try this link: https://docs.repl.it/repls/audio3 years ago
SixBeeps
SixBeeps
What kind of Repl are you trying to import the audio file into? You should be able to import most files, including audio files, without problems.4 years ago
kingretracted
kingretracted
shared a Post
4 years ago
This is the error print(Finding.get_text()) AttributeError: 'NoneType' object has no attribute 'get_text' This is the code: Page = requests.get(Base
Geocube101
Geocube101
This most likely means that "Finding" has the value None which is of theNoneType type. In other words, Soup.find() can't find the value you're looking for in the html content.4 years ago
kingretracted
kingretracted
shared a Post
4 years ago
I know a lot of base coding languages like python, lua, etc. I really want to get into Web Development so I wanna ask if anyone could send me a fast a
hyperupcall
hyperupcall
the mdn web docs (https://developer.mozilla.org) are superb for html, css, and js. they have a tutorial section for html, css, and js. if you are looking for a bit more explanation regarding js concepts, i would highly recommend looking at https://javascript.info.4 years ago
kingretracted
kingretracted
shared a Post
4 years ago
So I wanna know how to write to memory, like in C++ they have Windows.h to do window things. Say I wanted to use python how would I do that and how co
mwilki7
mwilki7
I can't seem to find anything helpful for Python in this area. C/C++ will be the easiest to do this kind of work. There should be lots of tutorials online to do reading/writing to another process' memory. When mucking about in another program's memory mistakes usually just crash the program. Worst case scenario the processor runs an illegal instruction and your PC may need to reboot. For flash programs, they are in RAM somewhere (just like all other programs) but you will find it's under the s4 years ago
SixBeeps
SixBeeps
Writing to memory is a bit sketchy because Repl.it works by running the compilers on their servers, so being able to access memory directly would be problematic. Also, writing to memory directly is HIGHLY DANGEROUS. One wrong move, and you've corrupted the entire machine. Windows.h is a windows-specific header file. Since Repl.it runs 100% on Linux, it will not work. If you do decide to research this solution a bit more, I would tailor your searches to Linux specifically. Flash games don't run4 years ago
kingretracted
kingretracted
shared a Post
4 years ago
I wanna know how to make a coding language with Python or any other language ~Thanks
SPQR
SPQR
This isn't the ideal solution, but you can make an esoteric language using C or C++. Just use #defines to define your own syntax. Keep in mind though that this will still essentially be re-branded C or C++, respectively. The only reason I mention this is that I don't know how in-depth you want to get with language creation so this might be enough for you.4 years ago
Geocube101
Geocube101
I don't have a current way of showing how to make a language, but I'm currently making a language which compiles into python You can check it out here Steps: These steps are executed by the compiler class (Compiler.py) 1: Compile method is called and the text file (containing the code to compile) is read 2: The code is simplified into statements and blocks 3: The simplified code is tokenized (turned into tokens) 4: The tokens are compiled into a python script 5: The python script is written to 4 years ago
theangryepicbanana
theangryepicbanana
I have been planning on making a series of tutorials for making a simple language on repl.it (not in python, but it would help teach the process), however I do not have it finished it yet. For the time being, you could look at this github repository that has a "lisp" language made in tons of different languages, and it shows you the process of making it as well: https://github.com/kanaka/mal4 years ago
kingretracted
kingretracted
shared a Post
4 years ago
I made this in Lua. Its pretty simple just a calculator that can have infinite inputs. This took like half an hour I think