Skip to content
Sign UpLog In
Profile icon

kaptcha

@kaptcha
I make stuff
  • Snake

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

    Cover page
    Made with Blank Repl

    An assembly base with NASM and GCC for future projects.

    Recent comments (1)
    kaptcha
    kaptcha
    11 months ago

    This is an assembly template with NASM and GDB for debugging. No language server, so no autocomplete, but still workable.

Repls
Community
kaptcha
kaptcha
published an Update
4 months ago
0
FizzBuzz
FizzBuzzA FizzBuzz in x86-64 assembly (Intel flavor)
BUGFIX 11/14/2022
You couldn't interact with the program before, since it was being ran during compilation. I changed the compile argument to make build instead of just make so the program can be explicitly ran with make run
#apps
#assembly
#LowLevel
kaptcha
kaptcha
published a Repl
4 months ago
0
FizzBuzz
FizzBuzzA FizzBuzz in x86-64 assembly (Intel flavor)
kaptcha
kaptcha
You couldn't interact with the program before, since it was being ran during compilation. I changed the compile argument to `make build` instead of just `make` so the program can be explicitly ran with `make run`4 months ago
kaptcha
kaptcha
published a Repl
9 months ago
0
Supa Spicy
Supa SpicyReplit Kajam 2022 Entry
kaptcha
kaptcha
shared a Post
3 years ago
An implementation of snake using the p5.js library. Not exactly perfect, but I'm learning. Collision to the head is a known bug. I didn't know how to
Snake
HTML, CSS, JS
kaptcha
kaptcha
shared a Post
3 years ago
I was trying to make a NEAT AI but got distracted with the game. It's not really the best, but I was learning p5.js as well. The number on the top lef
Car Game
HTML, CSS, JS
k9chelsea2
k9chelsea2
nice3 years ago
Bookie0
Bookie0
Screen Shot 2020-09-08 at 5.27.27 PM hi, good start, but if I go to the blue part, I cant get out of it; not sure if thats intentional? if it is, maybe a message telling you that you lost or something...? ;)3 years ago
kaptcha
kaptcha
shared a Post
3 years ago
This repl uses a custom api built by me that finds a linear trend in the data set inside the file called InputData.txt and outputs data into another f
kaptcha
kaptcha
shared a Post
4 years ago
Hey guys. I need help with this java project. I keep getting this error fork/exec /usr/bin/java: operation not permitted. What do i do?
mwilki7
mwilki7
I'm not getting that particular error message. Have you tried running it again recently?4 years ago
kaptcha
kaptcha
shared a Post
4 years ago
Enter the site url without the http/https://, and it will automatically connect and get the html data. #BuiltOnReplit
kaptcha
kaptcha
shared a Post
4 years ago
Help guys. I keep getting a StringIndexOutOfBoundsException no matter what i do
mwilki7
mwilki7
The error happens at line 59 which means the while loop was entered when it shouldn't have. inputChar = inputLine.charAt(i); Usually the culprit of these sorts of things are the while/for/if conditions. while (inputLine = in.readLine()) != null || i < inputLine.length() Logical OR statements only require one of the statements to be true. I think this problem can be solved by making the conditional more restrictive. So just change || to && (inputLine = in.readLine()) != null || i < inputLine.le4 years ago
kaptcha
kaptcha
shared a Post
4 years ago
Hey guys, it's me programmerai. I need help with this site connector. it's supposed to create a new file with the source code of the site that you ty
mwilki7
mwilki7
Do you have code that writes to a file without any connections? Can you see the HTML code without saving it to a file?4 years ago
Geocube101
Geocube101
I have no clue, I looked at some stuff, experimented with some stuff, but the input stream never returned anything but null (At least with "https://www.repl.it" as the url)4 years ago
kaptcha
kaptcha
shared a Post
4 years ago
Hey guys, it's ProgrammerAI. I'm just learning Java Swing and this is my first successful game. Please don't hate on it. Also please comment on how I
kaptcha
kaptcha
shared a Post
4 years ago
Hey guys, it's me ProgrammerAI. I need help with my encoder. i don't know what is going on. please help. just run it and you will see.
mwilki7
mwilki7
It looks like a combination of repl not liking infinite loops and cin >> mode leaving behind a '\n' for the next getline to fail Try using getline for the cin before the switch case and change mode to a string volatile int a; int main() { . . a = 1; while(a == 1) { . string mode; getline(cin, mode, '\n') switch(mode[0]) ... } `4 years ago
kaptcha
kaptcha
shared a Post
4 years ago
Intro Hey guys, it's me ProgrammerAI. My mom (check the bio on my profile) proposed me to make a program that predicts the price of a house in a perio
rediar
rediar
Cool4 years ago
kaptcha
kaptcha
It's still under development4 years ago
kaptcha
kaptcha
shared a Post
4 years ago
I'm making a game by following a tutorial and have copied the code perfectly. Now I'm in the middle and the instructor is testing the project but I ca
RichardHolder
RichardHolder
Congratulations on your achievement. One of the most crucial concerns for new students while getting ready to start college is their laptop or computer setup. For the best operating system for students MacOS vs Windows vs Linux, So click here now. You can select which choice is ideal for your needs and compatible with any device you already use by weighing the advantages and disadvantages of each option.1 year ago
mwilki7
mwilki7
Is this for a Windows or Linux machine? A lot of the code I'm seeing looks like it for Windows but is attempting to be built by a Linux compiler. I could be wrong, though.4 years ago
kaptcha
kaptcha
shared a Post
4 years ago
This is my 2nd C program. It inputs 2 numbers and adds, subtracts, divides, and multiplies them. It even finds the hypotenuse
Arxtic
Arxtic
Wonderful 3 years ago
kaptcha
kaptcha
shared a Post
4 years ago
Hi guys, ProgrammerAI here with my first official program in C that I made from scratch.
kaptcha
kaptcha
shared a Post
4 years ago
I made a server and html webpage on repl.it. I was wondering if it was legal for me to try to hack it. I already tried so it might be a little too lat
TNJS
TNJS
How did you do that? 1 year ago
Vandesm14
Vandesm14
If you are trying to DDOS the site, that is in fact against their policy. But if you mean "hacking" as sql injections to your own site, that is perfectly fine. > Please mark this as answered if I helped your problem 👍4 years ago
kaptcha
kaptcha
shared a Post
4 years ago
Is there a way to use an X11 display on repl? Because I have a java program that apparently needs it. Every time I run, it gives me this error: Excep
SangeetS
SangeetS
@ProgrammerAI - I can't see your code. What exactly is an X11 display? When I used to use NetBeans this worked - why does it not work anymore? How do I fix it? I attached my code. My code: import javax.swing.*; public class SalutonFrame extends JFrame { public SalutonFrame(){ super("I am da one"); setLookAndFeel(); setSize(350,100); setDefaultCloseOperation(JFrame.EXITONCLOSE); setVisible(true); } private void setLookAndFeel(){ try{ UIManager.setLookAndFeel(4 years ago
SPQR
SPQR
You have to set the display variable before running. I fixed it for you here.4 years ago
Vandesm14
Vandesm14
I don't think repl.it currently supports X11. Hopefully they will soon! > Please mark this as answered if I helped your problem 👍4 years ago
kaptcha
kaptcha
shared a Post
4 years ago
I'm making a website and server with node.js html, and css right now. Everything is going well until all of the sudden, I restart the server and the t
StefanGisi
StefanGisi
I get this error at https://repl.it/@StefanGisi/Learn-From-the-Word-Express I've tried a million tiems to destroy the session, I erased all my code and pasted it back, I logged out and in 555 times. I cleared my cache and cookies. I think I'm just.4 years ago