JSON Vorhees
#p5js #pun #processing #horror #hockey #mask #friday13th #json
code: openprocessing.org/sketch/2920461
Posts by Mitts
#p5js #processing #art #hitchhikers #robot #lineart
Marvin the Robot
code: openprocessing.org/sketch/2920190
#p5js #processing #amiga #demoscene
Retro copper bar effect...on acid.
code: openprocessing.org/sketch/2919950
made with math & #p5js
#p5js #processing #pretty #art
Pretty Spiral Flower Thing That Resolves Into A Tunnel (that's a mouthful!)
code: openprocessing.org/sketch/2917021
#New #Game released!
Art for Art's Sake. A #cozy "Art-em-up!"
In the #art world, everyone is a critic! Make art and try to please the Emoji critic, who has been trained by the best critics in the art world to judge your contribution to the space.
megamitts.itch.io/art-for-arts...
New #blog post up with a review of When We Were Real by Daryl Gregory darylwriterguy.bsky.social
anoldmanbythesea.blogspot.com/2026/04/when...
#p5js #processing #art #creativecoding #code #codeart
funky sin wave with blur
code: openprocessing.org/sketch/2915336
This is rather brilliant - Having Super Mario Kart Racing in your own home, the live-action version.
This course features collectible LEGO figures of Mario, Luigi and the gang.
The creation is part of a Rube Goldberg-style machine featured by Joseph's Machines.
#mario #lego #racing #fun
Peggy Lee.
Never know how much I love you
Never know how much I care
When you put your arms around me
I get a fever that's so hard to bear
#p5js #processing #art #line-drawing #1950s #singer #nightclub #lounge
code: openprocessing.org/sketch/2915098
Pantaloon x Bithell
SPACE MATHS! Yes, this month Pantaloon has partnered with @bithellgames.bsky.social & @nictringali.bsky.social to bring our newsletter subscribers The Banished Vault.
We have 4000 keys & a new puzzle for you on April 23.
We also have 5 keys for Bsky - share & follow to enter!
www.pantaloon.io
Norma Shearer - The Flapper
#p5js #processing #lineart #art #1920s #flapper #dance #fashion
code: openprocessing.org/sketch/2913858
Well, it looks like my 80s fantasy of roaming the wasteland in a V8 Interceptor and my trusty pup by my side will have to wait a couple more weeks.
But at least Thatcher is still dead! 13 years today!
For once it's a lovely, sunny Bank Holiday in the UK. Let's check the BBC to see what Trump has been up to over Easter...
Credit where credit is due this is a conversion of this dweet: dwitter.net/d/2922
#p5js #processing
t=0;
draw=_=>{
t+=0.02
createCanvas(W=400,W)
stroke(0)
background(W)
translate(W/2,W/2)
noFill()
beginShape()
for(i=0;i<25;i++){
b=50*sin(t*i/4)
v=t*i/3
vertex(sin(v)*b,b*cos(v))
}
endShape()
}
New #blog post up! Today I talk about my dubious skills as a bricklayer!
anoldmanbythesea.blogspot.com/2026/04/just...
Continuing my journey into #generativeart using #p5js.
Still enjoying it :D
#computerart #abstractart #creativecoding
Code: openprocessing.org/sketch/2909702
10 Rue Delambre
#p5js #processing #art #lineart #hemmingway #stein #coffee #1920s
code: openprocessing.org/sketch/2909976
Starting my journey into generative Art using P5JS.
#generativeArt #p5js #JustForFun
This reminds me of Space Harrier crossed with Star Fox.
Welcome to the Fantasy Zone, McCloud!
#p5js #processing #starfox #sega #nintendo #retrogaming #creativecoding
Heavily golfed code still. I would suggest putting it into an AI and asking it to make it into more readable p5js.
for(Y = 89; Y > 0; Y--){
let v=Y/w+t;
fill(Y * 3, 0, w); // colour the sky and the road
rect(w-sin(v)*Y+50,w+799/Y,v*w&8?2e3/Y:0,w/Y);
// road
rect(Y*9+w*sin(t)-w-89,0,9,60+sin(Y^w)*20);
//creates the city
}
image(img, 270+30*sin(t),270,200,200);
}
let w = 89;
let img;
function preload(){
img = loadImage('outrunsmall.png');
}
function setup() {
createCanvas(500, 450);
noStroke();
}
function draw() {
let t = millis()/1000; // time var
background(72,111,54); //grass
fill(0);
rect(0,40,500,40); // silhouettes the city
Mainly just conversions of the original code with some added rects, colours and the image of the car moving in time with the road.