Michael Wilkie
@mwilki7
crying because you dont put brackets around your case statements
0
Serpinski Fractal GeneralizedTaking the Serpinski Triangle Generator and expanding the number of sides the base shape uses. 1. Find random spot in polygon 2. Move distance * scalar towards a random vertex 3. Repeat step 2
1
1
0
0
Serpinski Fractal GeneratorCreates the Serpinski Triangle Fractal
Pick a random point on the triangle
Move it half way towards one of the triangle's vertices
Draw a dot
Repeat from step 2
2
0
0
12
Fourier CirclesFractal generator
Watch circles simply orbit around each other and generate a unique fractal
Limitless number of combinations
127
0
12
1
SuperHexagonCloneDodge shapes coming towards the center with the left and right arrow keys
If you aren't familiar with Super Hexagon
(https://www.youtube.com/watch?v=2sz0mI_6tLQ)
Create your own level: https://replit.com/talk/share/Super-Hexagon-Clone/51195
47
0
1
image
Edit: I made a ticket https://repl.it/bugs/p/2-26-2020-repl-talk-load-more-sometimes-collapses-all-loaded-posts
This has happened with 2 compu
InvisibleOne hmm, I only had that problem with the My Repls page but it's fixed for me now, report it to bugs: https://repl.it/bugs2 years ago
SixBeeps I personally haven't had it happen to me, although I have heard other people complaining about that.2 years ago
SNOW
that's all it does
This program creates randomly generated 6-sided fractals and makes them fall. There is no rotating, as much as I like working
HTML, CSS, JS
humannum14916 This is really cool! Some of the cleanest code I have seen, and it looks amazing.2 years ago
When I go to "My repls" page, I am looking for a really old repl so the page needs to load those extra projects.
I see the repl loading logo, then fo
Coder100 Yeahh.... that's a really weird bug. The profile repls do work, so if your repl was public you could try it on your profile.
https://repl.it/bugs2 years ago
RYANTADIPARTHI yes, i'm facing this problem too. I think this is a new bug. Report it.
https://repl.it/bugs2 years ago
The virtual piano app has a number of problems that makes playing difficult.
• Lack of sustain (wind and string instruments are useless)
• Lack of cus
HTML, CSS, JS
Bookie0 Pretty cool, but when you type in one of the textboxes like the sheetmusic, disable the sound for the piano because it keeps on playing, which may be kinda annoying! ;)3 years ago
I wanted to do something with pixels so I decided to make a game where you watch pixels battle each other. The data contained to play the game is cont
HTML, CSS, JS
Bookie0 pretty good job! Maybe find a way to make the checkboxes a bit more user friendly; like maybe a bit better, or there can be keyboard shortcuts. Or you can perhaps change the checkboxes to buttons to toggle left/right/top/down etc. ;)3 years ago
I've been dying to work on something other than my previous project, and I've been meaning to try this for a while now. This took me 2 and a half days
HTML, CSS, JS
DungeonMaster00 include the ability to have custom music.
the music is great
> edit: i recognize two of these songs from geometry dash3 years ago
I have been working on this for about a year and have finally brought it into a semi-playable state.
image
This is for creating your own levels or a
HTML, CSS, JS
HiPeople844 I dont get how this works, when i use the arrow keys it moves the screen not the guy3 years ago
I have devised created a terribleific UI for a calculator. Conveniently drag and drop your number/operator ontop of the text area. This calculator als
HTML, CSS, JS
Here's my submission for the fourth weekly challenge
formatting in html infuriates me as usual
You can enter numbers as integers: 12345
or words: twe
HTML, CSS, JS
I slightly modified the code from:
https://workshops.hackclub.com/tree_machine/
to make its colors strobe through time.
HTML, CSS, JS
I searched everywhere for sample javascript code for this (based on Box2D which is a C++ library) and finally found something functional.
The only th
HTML, CSS, JS
xBlaziken I don't recommend jitter click spawning in the water or else the repl will crash. Also i get 45cps so it might just be me lol3 years ago
How would I programmatically add elements to a div with absolute positioning with respect to the div?
I have tried position: absolute for the eleme
HTML, CSS, JS
Geocube101 You might be able to use relative positioning, which positions an element relative to where it would've been
Also, to add a scrollbar only when a container overflows, use auto along with overflow (overflow: auto;)3 years ago
This is the Story Scrambler.
This takes a story template (like Mary Had a Little Lamb) and switches up the verbs, adjectives, and nouns.
Create a new
Node.js
This number seems to fluctuate per day, but now my storage has a mind of its own. Is this a bug?
image
I am trying to achieve this layout:
image
But I want 2 canvas elements in the exact same position.
style.css
// see repl for the whole file
canvas
{
Giothecoder If you float two elements to the left and give them margins, they will sit next to each other. If you just give neither of them a margin, they will sit on top of each other. the res of the normal elements will then just continue on under the two floated elements I’m thinking float column one and column 2 and put the two canvases in c1 and the other HTML elements in c2 and then the rest that just goes under will not be in either c1 or c2 and just sit. Hope that helps?3 years ago
eco27 you can have a wrapper div and then two canvases inside it both with position: absolute;3 years ago
I want to implement scrolling for some UI elements that I created for canvas. But all I see for the event handling is the 'wheel' event instead of 'wh
HTML, CSS, JS