Skip to content
Sign UpLog In
Profile icon

IMayBeMe

@IMayBeMe
Programming is just random syntax copied and pasted in a clever way. I’m looking at you, stack overflow.
  • Word Bank

    Cover page
    Made with Python

    This is a word bank I made in flask which allows users to contribute words and fill up the word bank. It has numerous features such as word validation ands the ability to check if a word has already been added.

    Recent comments (269)
    Alexlin465-
    Alexlin465-
    13 days ago

    I ADDED LSD TO THE WORD BANK

    Alexlin465-
    Alexlin465-
    13 days ago

    HOW IS INBOX NOT A VALID WORD

    sonicx180
    sonicx180
    1 year ago

    I added a word!

    layansaud
    layansaud
    2 years ago

    better

    wAiT why why WHY is monotonous not a word now-

    VincentTjandra
    VincentTjandra
    2 years ago

    what's the difference between ha and haa

    VincentTjandra
    VincentTjandra
    2 years ago

    bruh I added poki a freaking website

    VincentTjandra
    VincentTjandra
    2 years ago

    someone did saber but not sabers ;-;

    DepthStrider03
    DepthStrider03
    2 years ago

    lol someone did concatenate and concatenation but not concatenated

    Whippingdot
    Whippingdot
    2 years ago

    Hey, add a cover image

Repls
Community
IMayBeMe
IMayBeMe
published an Update
1 year ago
1
Wordle Starter Rater
Wordle Starter Rater
Rate Your Wordle Starter!
So I'm sitting there in school and my friend Joe (not his actual name for obvious reasons) comes up to me and says something along the lines of: "Look at my Wordle starter. It's the absolute best." Now I'm thinking to myself that there's no way that this could possibly be the best starter and took it upon myself to prove Joe wrong. Fast forward twenty minutes and I have written a script that had determined the best Wordle starter through a simple metric which I found to be highly effective. So I go up to Joe and point out how his word is quite frankly bad and that I have found a much more effective one. This kid doesn't listen and goes on ranting about how good his word is so I let him be. I hope you enjoyed my anecdote about the inspiration for this project. As far as the actual project goes, it literally takes an input of your Wordle starter and rates it out of 100, with 100 being the absolute best word.
#python
#cool
#logic
+2
IMayBeMe
IMayBeMe
shared a Post
1 year ago
Introduction Writing interpreters, as well as compilers, has always been a fascination of mine, but I never really had the time or the effort to writ
BrainF Interpreter
Python
MrVoo
MrVoo
Noice!1 year ago
IMayBeMe
IMayBeMe
shared a Post
1 year ago
Introduction I'm not too big of a fan of introductions as I feel it takes away from the content of the tutorial and is more so just padding to make i
IMayNotBeMe
IMayNotBeMe
Noice tutorial. Now I have a better understanding of CPUs but Can you make a tutorial on ALUs that don't just do Addition and Subtraction but also multiplication, division, XOR, etc. (Do ALUs even do logic operations, like XOR, OR, AND, etc.?)1 year ago
Xshoury
Xshoury
Amazing tutorial — it was useful! I would like to see you make more tutorials on CPUs (maybe on how control units are made.)1 year ago
MrVoo
MrVoo
I don't understand a thing I just read, but it sounds cool :)1 year ago
IMayBeMe
IMayBeMe
published a Repl
2 years ago
0
Weekly-9
Weekly-9This is my submission to the weekly 9 challenge. It was a bit rushed due to school and other things, but I'm pretty happy with the result. It uses a matrix solution to find the solution to a system of linear equations quickly and efficiently. Also wrote some code to parse the equations as so to make it easier for the user as I didn't like the long-winded way of inputting equations.
TheDrone7
TheDrone7
Scored.2 years ago
MattDESTROYER
MattDESTROYER
Even inputting your example (`3x - 4y = 67`) seems to cause an error... ``` Input the number of equations: 1 Please input all equations in standard form such as 3x - 4y = 67 with a space in between operators and signs. You may use as many variables as you like but keep the number consistent throughout every equation. Input equation 1: 3x - 4y = 67 Traceback (most recent call last): File "main.py", line 55, in <module> ans = list(numpy.linalg.inv(co_list).dot(dot_list)) File "<__array_function__ internals>", line 5, in inv File "/opt/virtualenvs/python3/lib/python3.8/site-packages/numpy/linalg/linalg.py", line 540, in inv _assert_stacked_square(a) File "/opt/virtualenvs/python3/lib/python3.8/site-packages/numpy/linalg/linalg.py", line 203, in _assert_stacked_square raise LinAlgError('Last 2 dimensions of the array must be square') numpy.linalg.LinAlgError: Last 2 dimensions of the array must be square ```2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
Say that I was to write a program in 6502 assembly for simplicity and it would look something like this: LDA $200 ADC $201 STA $202 Now this is a dirt
IMayBeMe
IMayBeMe
shared a Post
2 years ago
I know this might be a bit off topic and if the mods want to unlist it, feel free to do so. Anyways my question was to see if anyone would be interest
TheoHal
TheoHal
like ben eater?2 years ago
ch1ck3n
ch1ck3n
yes2 years ago
ShizukoV
ShizukoV
I just wanted to check if people actually would find this interesting. Well I find it interesting... Though I am a weirdo so idk if other people find it interesting.2 years ago
IMayBeMe
IMayBeMe
published a Repl
2 years ago
1
Weekly-4
Weekly-4Super easy solution, nothing more to it. Took a while to get it but man did it feel good to remember replit files exist.
IMayBeMe
IMayBeMe
@DynamicSquid I wasn’t sure if this was allowed so could you just clarify2 years ago
fuzzyastrocat
fuzzyastrocat
Ayy we both converged on a similar solution, great minds think alike :)2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
Introduction As much as I like to wake up each morning and think that computers work through the means of magic or some seagulls with keyboards, the
Digital Logic Sim
Python
singed1
singed1
Flappy Bird is an arcade game with very simple mechanics but presents a very difficult challenge. Please visit my website to experience it. Hope you Like the Game.10 months ago
DynamicSquid
DynamicSquid
This is a really good tutorial!!11 months ago
PYer
PYer
Really informative. I'm more of a coder than computer scientist, really helpful. I understand a lot more about computers now.2 years ago
IMayBeMe
IMayBeMe
published a Repl
2 years ago
2
Weekly-3
Weekly-3My solution to the 5 pirates problem. It accounts for both versions of the puzzle and allows users to input the number of pirates as well as the amount of gold. Uses an iterative approach with a somewhat recursive logic.
IMayBeMe
IMayBeMe
@TheDrone7 Sorry to bother you but is the way I output the distribution of gold acceptable?2 years ago
TheDrone7
TheDrone7
Scored.2 years ago
IMayBeMe
IMayBeMe
published a Repl
2 years ago
3
Weekly-2
Weekly-2Pretty much a less dynamic, revamped version of my one-line tic tac toe validator. 519 characters and made in Python cause C is a nightmare.
DynamicSquid
DynamicSquid
SCORED Nice! It doesn't work 100% of the time though, but I'm glad you recognized some tricks to reduce your character count. Not bad overall!2 years ago
IMayBeMe
IMayBeMe
published a Repl
2 years ago
5
Weekly-1
Weekly-1This program makes use of larger square roots which then can be used to deduct a more precise square root for non-perfect squares. It also works for perfect squares and functions just how you would expect it to. Made in python for simplicity.
TheDrone7
TheDrone7
Scored.2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
What is it? The world's hardest word game is exactly what the name says and is a game where players are required to guess the word based on a definit
Word Game
HTML, CSS, JS
StarletDevil
StarletDevil
image2 years ago
FlaminHotValdez
FlaminHotValdez
problem is that many words have the same meaning so I input a word and it says "wrong"2 years ago
cuber1515
cuber1515
I tried forever so I could at least say I got one word but I swear I've never heard of any of those words. Truly the World's Hardest Word Game.2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
So recently I have been working on a project utilizing web sockets for sending and receiving data from the server. My main question here is the diffe
Coder100
Coder100
you could read this: https://stackoverflow.com/questions/4973622/difference-between-socket-and-websocket but the thing is don't use sockets use websockets sockets are if you want more control over what happens, which you probably don't. at least I never did2 years ago
ruiwenge2
ruiwenge2
https://stackoverflow.com/questions/4973622/difference-between-socket-and-websocket i hope this helps!2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
Chapter 1 - Intro Though this tutorial may be aimed specifically at new programmers looking to get into the world of programming, it can also apply t
PeggyLeblanc
PeggyLeblanc
I want to learn programming and it is my first time. So, I was searching for some useful information online and I am glad I found your post where you have shared a very useful guide with us. While searching for it online, I also found edubirdie reviews online and now I trust their essay writers and whenever I got assignment from my professor I am gonna take help from them and it will save a lot of my time.9 months ago
DillonB07
DillonB07
Minecraft: Hello? I'm a popular game being updated very often, and I'm made with Java! @IMayBeMe : Java is just somewhat outdated @DillonB07 : Hey! What is one of the most popular games called? Minecraft Java Edition. Yes, bedrockers, Bedrock Edition does exist (made in C++), but more people play Java, and Java was the original version. And, in my opinion, Bedrock Edition is rubbish.2 years ago
IntellectualGuy
IntellectualGuy
You really need to restructure your What language to choose section. You need to create sections based on what exactly the person wants to do. Game Dev? Java, C#, C++, maybe C(Idk). Data Science/ML ? Python. Frontend Web Dev? HTML, CSS, JS, PHP, TS, CoffeeScript. Backend Web Dev? Node.js, Ruby, Go, TS, CoffeeScript. Database? MongoDB, MySQL, SQLite. IOS Apps? Swift, Objective-C, Dart. Android Apps? Kotlin, Java, Dart. Explain the pros and cons of each one(You don't have to use all the ones I m2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
What is ReplMail? ReplMail is a webpage that I made in flask which allows users to quickly message each other in an email-like fashion. Here is a qui
ReplMail
Python
candies
candies
I developed something like this2 years ago
Kudos
Kudos
This is a great project, I love it!2 years ago
Kudos
Kudos
You thought you could rick roll me, Youtube saved me with an ad 😁2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
One Line Tic Tac Toe Validation > Clean code always looks like it was written by someone who cares - Robert C. Martin Well in that case it looks lik
Python Project 152 - Tic Tac Toe
Python
DynamicSquid
DynamicSquid
Nice lol! I'm trying to come up with a solution that would do it in less chars. Right now you have 563 characters.2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
Introduction What are One-liners? In a nutshell, python one-liners are just simply programs that are written in just 1 line. They often make use of
FlaminHotValdez
FlaminHotValdez
the table is...um...unaligned? :/ Other than that it's good(I just don't see why we would use this in real code!)2 years ago
KaivalyaVanguri
KaivalyaVanguri
Thanks a lot! it really helped :)2 years ago
OldWizard209
OldWizard209
well, talking about list comprehension, that is not exactly a one-liner. Mainly because you can only use that with lists only. But it is written in one line so yeah, it can be considered a one-liner. About the lambda and if statements, that is basic syntax, which many people don't know. In fact, I didn't until I had completely mastered Python. So good job bringing that to notice. Also, markdown error: image Tables are not supported in post markdowns, only on MD files.2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
Daily News Daily News is a website made by me and @IMightBeMe as a team repl. It functions similarly to something like google news and comes with a b
DailyNews
HTML, CSS, JS
IMightBeMe
IMightBeMe
This is very pog tho chk it out.2 years ago
IMayBeMe
IMayBeMe
shared a Post
2 years ago
Project Ideas Forum Ever wanted to code but couldn't come up with any ideas? This website is designed to exactly solve that problem! On this website,
Project Ideas
Python
IMayBeMe
IMayBeMe
shared a Post
2 years ago
I was working on a language using sly and encountered an issue with the if and else statements. I was just seeing if the parser correctly handles the
SreyasSabbani
SreyasSabbani
Like I said in the previous comment, I don't know much about sly but since Replit.com just had an update about Explore Tab and the .draw file, I would say it is a bug.2 years ago
SreyasSabbani
SreyasSabbani
Interesting, I really don't know much about this. I would recommend to refresh the page, search it up on Stack-Overflow or on Google. I think it is just a bug, but it would be nice to search it up.2 years ago