adl212
@adl212
Coding is Learning!
0
BrainFHelloWorlduhh 27 lines of code = hello world
Hello World with 8 Characters Only!
idk I found a weird language but anything I link here will probably get flagged for profanity
(excludes comments)24
3
0
Hi, i'm just wondering if i can still get hacker plans for referring people to repl. thanks
Hi, I have been working on a program that uses the repl git thing but whenever I upload changes to the github, I can't pull the code into the repl. I'
Coder100 That's a bug, try doing git pull in the terminal instead.
https://replit.com/bugs.2 years ago
Hi, I'm working with big data from my mongodb database and I've recently noticed that it is taking a long time to find something in the list. Each ele
hi, is there any way to use linux commands like sudo in the repl shell? Thanks!
CodeLongAndPros Press Ctrl-shift-s.
Sadly, you can't use sudo, su or doas, but you can install packages, at least:
install-pkg package_name2 years ago
programmeruser Sudo doesn't work since repl obviously won't give you root perms. Install linux if that's what you want. If you want to install packages then use install-pkg instead of apt-get.2 years ago
Hi, I am wondering how to check if a string has a digit inside it that isn't surrounded by double quotes. For example:
a = "5"
This wouldn't return a
19wintersp This should do it: /(?<!")\d(?!")/. (Python: r"(?<!\")\d(?!\")")
The first bracketed bit is a negative look-behind: it will give a match if there is no quote behind. The next token (\d) matches any digit. The final bracket is the same as the last, except a lookahead.2 years ago
Here's an AI chatbot I made. Not entirely sure if it is completely artificial intelligence, but if you know how to make this a better program, do tell
Python
OliverMagill I've built a similar chatbot which may help improve yours:
https://replit.com/@OliverMagill/AI-Chatbot#easy.json7 months ago
jettcoder737 if you are ferering AI to a chatbot is is basically just a chatbot which it learns from what you tell it, for example if you tell it that soda is yummy it will learn that soda is yummy and it will think that soda is yummy, also this is a amazing project! keep up the good work!1 year ago
Here I've made a site that has an api to hash your strings/passwords so that you can secure it. You can use the site here!
What is hashing?
Hashing is
Python
Zavexeon Hashing actually isn't impossible to turn back to it's original string. There are different methods of breaking a hash, such as rainbow tables. It takes a lot of power and time, but it is very possible.
However, salting your hash makes this A LOT more difficult. Basically you add a random string to what you want to have hashed, then hash it. Knowing the random string means you can check a test string by adding the same random string to the test string and then hashing it, and testing that hash 2 years ago
Hi, it seems like whenever I try installing the package gmpy2 in python, it results with an error. Does anyone have an idea on how to install it witho
Here's my repl for the weekly challenge prime fibonacci. This is probably the fastest and most consistent program out there. It will take about 0.1 se
Python
Here's my program for the weekly challenge. I used flask, just like last week's challenge, to add the web design. I think this is the best program at
Python
k9chelsea2 nice i was gonna do this weeks weekly but then life happened but its pretty simple3 years ago
For this weekly challenge, we were to create something that gave out the nth number inside the fibonacci sequence without using any loops or recursion
Python
Hi, I want to learn how to use websockets. Unfortunately, I don't think websocket_client works on repl. Can someone clarify that?
PattanAhmed @adl212 Hi,
You can try...
And I am pretty sure that it can work on Repl.it too.
Thanks!
Hope this helps3 years ago
Here's my repl for the weekly challenge! I wasn't so good at doing HTML and all the web stuff so I instead just did it in text-based. I also made my o
Python
TheDrone7 I am going to have to disqualify since I can easily access all the passwords.
This is the one I stored for testing. I can simply use your decrypt password function to get my actual password back.
image3 years ago
Hi, the module websocket_client gave me the traceback:
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python3.8/thr
What is this? This is a program designed to make competitions in nitrotype for you teams!
How To Use This
First, you will have to fork this project.
T
Python
How many times can you click in a second?
This is my second HTML project.
How To Play
Enter how long you want to click the button. Then, start clickin
HTML, CSS, JS