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
Node.js
NanduWasTaken ██████╗░███████╗██████╗░██╗░░░░░░░░██╗████████╗
██╔══██╗██╔════╝██╔══██╗██║░░░░░░░░██║╚══██╔══╝
██████╔╝█████╗░░██████╔╝██║░░░░░░░░██║░░░██║░░░
██╔══██╗██╔══╝░░██╔═══╝░██║░░░░░░░░██║░░░██║░░░
██║░░██║███████╗██║░░░░░███████╗██╗██║░░░██║░░░
╚═╝░░╚═╝╚══════╝╚═╝░░░░░╚══════╝╚═╝╚═╝░░░╚═╝░░░
2 years ago
familypsychohow to i change delay in the command thing2 years ago
ARJPEGI ███████╗███╗░░██╗░░░░░██╗░█████╗░██╗░░░██╗██╗
██╔════╝████╗░██║░░░░░██║██╔══██╗╚██╗░██╔╝██║
█████╗░░██╔██╗██║░░░░░██║██║░░██║░╚████╔╝░██║
██╔══╝░░██║╚████║██╗░░██║██║░░██║░░╚██╔╝░░╚═╝
███████╗██║░╚███║╚█████╔╝╚█████╔╝░░░██║░░░██╗
╚══════╝╚═╝░░╚══╝░╚════╝░░╚════╝░░░░╚═╝░░░╚═╝); ed!``3 years ago
slip1244Please 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
Title says what the question is. I always get "Plugin Crashed" when I import or move the audio file.
MicroSoftHelpTry this link:
https://docs.repl.it/repls/audio3 years ago
SixBeepsWhat 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
This is the error
print(Finding.get_text())
AttributeError: 'NoneType' object has no attribute 'get_text'
This is the code:
Page = requests.get(Base
Geocube101This 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
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
hyperupcallthe 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
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
mwilki7I 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
SixBeepsWriting 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
I wanna know how to make a coding language with Python or any other language
~Thanks
SPQRThis 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
Geocube101I 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
theangryepicbananaI 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