Sean Lange
@seanlnge
Junior at Largo High School. Programming for ~5 years. Pretty decent at TS/JS
1
ThreespectiveControl and move around a 2D cross section of a 3D world. View a 3D world from a different perspective...
11
0
1
31
SpicefallMy entry for KaJAM 2022. Peppers are falling from the sky and it's your job to collect them all! Using fans, magnets, slopes and more, you need to create a system to catch enough peppers before too many fall into the milk below!
768
10
31
0
Weekly Challenge 4ls */
5
1
0
0
Connect 3 (222 Chars) - Weekly 2222 character Javascript program that tells if a Connect 3 board is valid, and who is the winner. Full explanation in README.md
57
6
0
MattDESTROYER Can't you replace `console.log` with `alert` to get 229 chars? I'm still at 617 chars with JS :( I guess code golf isn't one of my skills.2 years ago
5
Weekly Challenge 1: Square RootSquare root algorithm that doesn't use multiplication or division. Allows any real or complex number as input. Returns accurate 12 digit precision.
98
10
5
What is Domain Coloring?
Domain Coloring is the process of taking a function such as x^3 - 1, running each point in a complex plane through that func
HTML, CSS, JS
InvisibleOne Sarcastic Voice: Wow, this is so cool
Thanks for bringing back my PTMD (Post Traumatic Math Disorder). Ever since I completed my Advanced College Mathematics math has haunted me. Even simple things like graphing a parabola cause flashbacks.
I don't think I'll be sleeping tonight...2 years ago
0
Domain ColoringThis repl is a calculator that creates a domain graph for a given function, which allows visualization of functions with complex inputs.
31
1
0
This repl generates 21st century humor, which is basically a type of humor that is very random and unpredictable. You pick a length in seconds that yo
Node.js
Renderspice v0.1.0 Release
A simple 2D game engine for the web
What is Renderspice?
Renderspice is a 2 dimensional game engine created for the web.
Node.js
This was my submission for Repl.it's Code Jam #10. It was made over the course of 19 straight hours of work, 12 of which were overnight, so I'm not ha
Node.js
firefish @SpicedSpices I found them alll.
function sub(a, b){
return a - b;
}
function randomFloat(min, max){
return Math.random()*(max-min)+min;
}
function mul(a, b){
return a * b;
}
function isEven(a){
return a % 2 == 0;
}
function div(a, b){
return a / b;
}
function permutate(n, r){
let nf = n;
let nrf = n - r;
for(let i=2; i setTimeout(resolve, ms));
}
function p(statement){
console.log(statement);
}
function add(a, b){
return a + b;
}
function gcf(x, 2 years ago
A multiplayer team game filled with strategic methods, fast thinking, and skill. This is my submission for @bramley 's Bram Jam Game Jam 2.
Spooky Me
Node.js
realTronsi Just a note:
You can't die and your hp just goes into the negatives
Bullets can pass through forcefield
You can hold the mouse to spam bullets (not sure if intentional)2 years ago
realTronsi Eek, great game, maybe fix the lag though? The lag makes it slightly unplayable.2 years ago
A while ago, I released Renderspice Alpha V001, it contained many features for creating games in the HTML5 canvas with Javascript.
Today, in light of
HTML, CSS, JS
ChAoTiCChAoSThEGrEaT It's a great game but when you die you can keep on playing even though it says game over. You should add a different screen for when the game is over so that the user can't play anymore.2 years ago
To make a game in the browser, there are many choices, but usually the main option is to use the HTML canvas. The HTML canvas is a section of the webp
HTML, CSS, JS
fuzzyastrocat Cool! Seems kinda like a 2D version of THREE.js (TWO.js lol), which is pretty neat.
One thing though... please don't recommend using a setInterval for a game loop! requestAnimationFrame is much better since it won't run when the window/tab isn't active and in general it uses less resources.2 years ago
WilliamRoss6 Whoa this is really cool. I actually tried to make something like this recently. It went okay, but yours is definitely better. Nice job!2 years ago
This project contains 5 esoteric programming languages that are not in Repl.it. The goal of this project was to make all esoteric programming language
Bash
Parsed in Nodejs, Interpreted in Rust
I've been trying to learn Rust recently, and this is the first useful thing I have made in it. It's pretty nice
Bash
BrainF* is a very fun and intuitive language. Through only 8 simple characters, you can do almost anything a normal programming language can do. This
BrainF
This weekly's competition was to somehow find the Nth Fibonacci number without using iteration or recursion.
My first step was to create an array of
Node.js
Hey guys! Today, I’ll be outlining our entry for the Repl.it Language Jam!
What’s Quest?
Quest is an extremely object-oriented programming language f
fuzzyastrocat Neat!
One question: What is the behavior of:
// The next statement prints a value
print(Here's a string!); // Some more comments
Does it consider everything from the first // to the second // as a comment (and find "Some more comments" invalid), or does it treat each as a line comment?3 years ago
This is a joke Drone7/H don't judge this I don't want to waste your time.
Hi guys this is my weekly submission for the 14th weekly competition!!1! Th
HTML, CSS, JS
This is my third time participating in a weekly challenge and the topic for this week was a little different. It was to create a dictionary with at le
Node.js