ProfessorFish YT
Testing three.js
Made with 3D Rendering with Three.jsRecent comments (0)Conways GoL
Made with HTML, CSS, JSAn interactive simulation of the popular Conway's Game of Life
Rules:
-
Any live cell with fewer than two live neighbours dies, as if by underpopulation.
-
Any live cell with two or three live neighbours lives on to the next generation.
-
Any live cell with more than three live neighbours dies, as if by overpopulation.
-
Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
Press space for settings.
If you wish to do further investigations: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life
Recent comments (3)ProfessorFish4 months agoFixed a bug where the simulation wouldn't load due to me accidentally deleting the line of code that defines the canvas.
ProfessorFish4 months agoYou can now set this as your wallpaper by following the instructions at: GitHub (Better)
ProfessorFish4 months agoBIG CHANGES:
- Added a clear grid button
- Added a randomise grid button
- Added a favicon (tab icon???) to replace the default one BUG FIXES:
- Fixed bug where dead cells didn't get highlighted when the mouse was over them.
-
scrawlpaper
Made with Node.jsLike r/Place but as your wallpaper (also available on the website)
(And scuffed)
Wallpaper instructions: GITHUB (better) - https://github.com/ProfessorFish/Scrawlpaper REPL - https://replit.com/@ProfessorFish/Scrawlpaper-Wallpaper
Recent comments (4)s1lv3rfir33 months agolmao how do you change colors??
ProfessorFish4 months agoIt now autoposts the board to my discord every 20 minutes!
ProfessorFish4 months agoAdded a public endpoint to see the current state of the board as an image!
https://scrawlpaper.professorfish.repl.co/image?width=2000&height=2000
Width and height are integers between 1 and 2500 (inclusive)
Hangman
Made with PythonRecent comments (0)Graph Ai
Made with Node.jsAn AI (Neural Network) that colours a graph based on user inputs or computer data.
CONTROLS: spacebar - open settings left click - place data point (circle) enter - change the colour of the data points placement "brush"
There are many settings to play around with as well.
Recent comments (1)ProfessorFish5 months agoSetting the render mode to progress in the settings makes it run a lot faster!
(This is due to in generation mode, it has to render the screen again each time a new generation finishes (Which is every ~1/10 seconds) which is resource intensive, whereas if it only has to render on progress it can evolve the ai a lot faster)