Skip to main content

Command Palette

Search for a command to run...

Genuary2026_Quine

Quine,Movement & Mess

Updated
β€’1 min read
Genuary2026_Quine

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

Genuary2026

Part 33 of 48

Explorations during Genuary 2026

Up next

Genuary2026_PenPlotter

Plottable