Skip to content
Sign UpLog In
Profile icon

adl212

@adl212
Coding is Learning!
  • mathtest

    Cover page
    Made with Python
    Recent comments (1)
    Try2Win4Code
    Try2Win4Code
    2 years ago

    not bad

  • randomgenerator

    Cover page
    Made with Python
    Recent comments (0)
  • discordbot-1

    Cover page
    Made with Python
    Recent comments (0)
  • onclick

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
  • ClickTheButton

    Cover page
    Made with HTML, CSS, JS
    Recent comments (0)
Repls
Community
adl212
adl212
published an Update
1 year ago
0
BrainFHelloWorld
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)
MrVoo
MrVoo
@adl212 noice1 year ago
adl212
adl212
shared a Post
1 year ago
adl212
adl212
shared a Post
2 years ago
Hi, i'm just wondering if i can still get hacker plans for referring people to repl. thanks
adl212
adl212
shared a Post
2 years ago
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
Coder100
That's a bug, try doing git pull in the terminal instead. https://replit.com/bugs.2 years ago
adl212
adl212
shared a Post
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
RYANTADIPARTHI
RYANTADIPARTHI
maybe using $in?2 years ago
InvisibleOne
InvisibleOne
If you're using mongoDB can't you just use find() to find the key you want2 years ago
adl212
adl212
shared a Post
2 years ago
hi, is there any way to use linux commands like sudo in the repl shell? Thanks!
Sagarmahadik
Sagarmahadik
mv1 year ago
CodeLongAndPros
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
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
adl212
adl212
shared a Post
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
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
adl212
adl212
shared a Post
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
aichatbottest
Python
OliverMagill
OliverMagill
I've built a similar chatbot which may help improve yours: https://replit.com/@OliverMagill/AI-Chatbot#easy.json7 months ago
jettcoder737
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
Baconman321
Baconman321
Nice!2 years ago
adl212
adl212
shared a Post
2 years 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
encrypt
Python
ppfon
ppfon
n2 years ago
Zavexeon
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
adl212
adl212
shared a Post
2 years ago
Here's something I made to crack hashed strings. Try it out!
passwordcrack
Python
adl212
adl212
shared a Post
2 years ago
Here's my program for weekly 20!
weekly 20
Python
TheDrone7
TheDrone7
SCORED.2 years ago
adl212
adl212
shared a Post
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
Coder100
Coder100
For future people: use gmpy if you really need to use gmpy, hopefully it has similar features2 years ago
adl212
adl212
Here's the bug form if you want to upvote: https://repl.it/bugs/p/gmpy2-cant-be-installed-python2 years ago
Coder100
Coder100
what's the error?2 years ago
adl212
adl212
shared a Post
2 years ago
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
primefib_test2
Python
TheDrone7
TheDrone7
SCORED.2 years ago
adl212
adl212
shared a Post
3 years ago
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
week18wordorder
Python
TheDrone7
TheDrone7
SCORED.3 years ago
k9chelsea2
k9chelsea2
nice i was gonna do this weeks weekly but then life happened but its pretty simple3 years ago
adl212
adl212
shared a Post
3 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
fibsequencenoloops
Python
TheDrone7
TheDrone7
SCORED.3 years ago
dabs364
dabs364
You’re using recursion STILL3 years ago
k9chelsea2
k9chelsea2
nice3 years ago
adl212
adl212
shared a Post
3 years ago
Hi, I want to learn how to use websockets. Unfortunately, I don't think websocket_client works on repl. Can someone clarify that?
PattanAhmed
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
Coder100
Coder100
sure, how are you using it?3 years ago
adl212
adl212
shared a Post
3 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
passwordvault
Python
TheDrone7
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
k9chelsea2
k9chelsea2
epic3 years ago
adl212
adl212
shared a Post
3 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
adl212
adl212
shared a Post
3 years ago
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
ntteamcomp-1
Python
srujanc1234
srujanc1234
Does not work Please Fix8 months ago
cartergraham2
cartergraham2
l11 months ago
cartergraham2
cartergraham2
y11 months ago
adl212
adl212
shared a Post
3 years ago
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
onclick
HTML, CSS, JS