NaPoWriMo+GenMo2026_ Quatrain2
More sets of 4
Published
•1 min read
Pre-Bloblish2
For my 21st Poem of NaPoWriMo / NaPoGenMo 2026 , "Pre-Bloblish2" coded in HydraVideoSynth & SonicPi and takes the form of two quatrains (Any Poem with four lines).
Video
Code
HydraVideoSynth
noise(1,2,3).pixelate(() => (time % 100)*2,()=> (time % 100)*3).scale(()=> Math.sin(time % 9 + 1)/4). //line 1
blend(osc(0.5,0.5,3).repeat(() => (time % 100)*2,()=> (time % 100)*3)).scrollX(()=> Math.sin(time % 17)). // line 2
add(voronoi(0.5,1,2).colorama([0.4,0.2,0.1,0.2,0.4].smooth()).scale([0.5,0.25,0.3].smooth())).out() // line 3
speed = 0.14 // line 4
SonicPi
live_loop :four do #line 1
sample [:loop_mehackit1,:loop_mika].choose, pitch: dice(5)+1, rate: [-0.65,0.65,1.05,-1.25].choose #line 2
sleep [0.5,1,2,4,6].choose #line 3
end #line 4



