Genuary2026_Quine
Quine,Movement & Mess
Updated
β’1 min read
MessyQuine
MessyQuine is coded in P5Js and is a Moving,formatted and Jittery Quine(Genuary 2026 Prompt 11).
Video
P5JS Code/Quine Poem
function setup() { // Coloring and Emojing
createCanvas(800, 1500);
textAlign(LEFT)
eating = "ππππ"
then_eating = ("πππ")
maybe_adding = ("ππ")
finishing_with = ("π₯")
drinking = ("π§π§π₯π₯₯π")
}
function draw() { //quining
if (second() % 6 < 2)
{
background('orange')
fill('white')
textFont('Verdana');
textSize(12)
}
else if (second() % 6 > 4) {
background('yellow')
fill('black')
textFont('Courier New');
textSize(15)
}
else {
fill('blue')
textFont('Times New Roman');
textSize(18)
}
const recipe = window.setup.toString();
text(recipe, 4, 59 + second() % 3);
const recipe2 = window.draw.toString();
text(recipe2, 404 + second() % 3, 59);
}




