Advertisement · 728 × 90

Posts by Mitts

Post image

JSON Vorhees

#p5js #pun #processing #horror #hockey #mask #friday13th #json

code: openprocessing.org/sketch/2920461

3 days ago 0 0 0 0
Post image

#p5js #processing #art #hitchhikers #robot #lineart

Marvin the Robot

code: openprocessing.org/sketch/2920190

4 days ago 6 0 0 0
Video

#p5js #processing #amiga #demoscene

Retro copper bar effect...on acid.

code: openprocessing.org/sketch/2919950

5 days ago 2 0 0 0
Video

made with math & #p5js

1 week ago 5 1 0 0
Video

#p5js #processing #pretty #art

Pretty Spiral Flower Thing That Resolves Into A Tunnel (that's a mouthful!)

code: openprocessing.org/sketch/2917021

1 week ago 1 0 0 0
Cloud of black dots

Cloud of black dots

Drawing cloud with dots
#sketch #experiment #p5js #processing #creativecode

1 week ago 4 1 0 0
Preview
Art For Art's Sake by megamitts Create great art and try to please the critics

#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...

1 week ago 3 1 0 0
Advertisement

#review #bookreview

1 week ago 0 0 0 0
Preview
When We Were Real by Daryl Gregory - Book Review An old man's life in the lovely Welsh village of Aberdyfi. Also includes book & film reviews as well as creative coding content.

New #blog post up with a review of When We Were Real by Daryl Gregory darylwriterguy.bsky.social

anoldmanbythesea.blogspot.com/2026/04/when...

1 week ago 0 0 1 0
Video

#p5js #processing #art #creativecoding #code #codeart

funky sin wave with blur

code: openprocessing.org/sketch/2915336

1 week ago 3 0 0 0
Video

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

1 week ago 4150 845 79 60
Post image

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

1 week ago 2 0 0 0
Pantaloon x Bithell

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

1 week ago 95 143 23 2
Post image

Norma Shearer - The Flapper

#p5js #processing #lineart #art #1920s #flapper #dance #fashion

code: openprocessing.org/sketch/2913858

1 week ago 2 0 0 0

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!

2 weeks ago 1 0 0 0
Post image

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...

2 weeks ago 0 0 0 0
Advertisement

Credit where credit is due this is a conversion of this dweet: dwitter.net/d/2922

2 weeks ago 1 0 0 0
Video

#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()
}

2 weeks ago 2 0 1 0
Preview
Just Another Brick In The Wall An old man's life in the lovely Welsh village of Aberdyfi. Also includes book & film reviews as well as creative coding content.

New #blog post up! Today I talk about my dubious skills as a bricklayer!

anoldmanbythesea.blogspot.com/2026/04/just...

2 weeks ago 1 0 0 0
Post image

Continuing my journey into #generativeart using #p5js.
Still enjoying it :D

#computerart #abstractart #creativecoding

2 weeks ago 5 1 0 0

Code: openprocessing.org/sketch/2909702

2 weeks ago 0 0 0 0
Post image

10 Rue Delambre

#p5js #processing #art #lineart #hemmingway #stein #coffee #1920s

code: openprocessing.org/sketch/2909976

2 weeks ago 5 0 0 0
Preview
a man wearing a headset with the words " this is where the fun begins " on the bottom ALT: a man wearing a headset with the words " this is where the fun begins " on the bottom
2 weeks ago 1 0 0 0
Post image

Starting my journey into generative Art using P5JS.

#generativeArt #p5js #JustForFun

2 weeks ago 3 1 2 0
desolate world #d3 #perspective by Joachim | Dwitter

Original dweet: dwitter.net/d/24245

2 weeks ago 0 0 0 0
Advertisement
Video

This reminds me of Space Harrier crossed with Star Fox.

Welcome to the Fantasy Zone, McCloud!

#p5js #processing #starfox #sega #nintendo #retrogaming #creativecoding

2 weeks ago 4 1 1 1

Heavily golfed code still. I would suggest putting it into an AI and asking it to make it into more readable p5js.

2 weeks ago 0 0 0 0

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);
}

2 weeks ago 0 0 1 0

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

2 weeks ago 0 0 1 0

Mainly just conversions of the original code with some added rects, colours and the image of the car moving in time with the road.

2 weeks ago 0 0 0 0