helvede.net is one of the many independent Mastodon servers you can use to participate in the fediverse.
Velkommen til Helvede, fediversets hotteste instance! Vi er en queerfeministisk server, der shitposter i den 9. cirkel. Welcome to Hell, We’re a DK-based queerfeminist server. Read our server rules!

Server stats:

172
active users

#genuary31

0 posts0 participants0 posts today

GlitchyScrollMaps

Blog: blog.illestpreacha.com/genuary

#Genuary #Livecoding #Worldbuilding #design #Genuary29 #Genuary31

The prompt for #Genuary2025 Day 29 is “ #GridBased“, Day 31 : “ #Pixelsort
GlitchyScrollMaps uses Hydra to remix ScrollMaps: blog.illestpreacha.com/genuary

It takes inspiration from pixel sort algorithms to add glitchyness through Hydra ( Orignally Coded in #Python, #Hydravideosynth & #SonicPi)

#Poetry

Maps Scrolling
Paths Unrolling
Abstraction Evading
Infinite Scrolls Shifting
Lifting
To the next point where the shade is in

Code is Poetry & Data is Poetry · Genuary2025_GridSortsBy Kofi / Illestpreacha

Genuary day 31: generative music? Fortunately I'm the kinda girl who has a custom built GPU based synth thing lying around 😅
This was a very quick thing because I gotta go out before 9am, and mastered on my laptop so it probably sounds awful.
I reused the instruments from Electrocat, and that synth just begs to meow :3
#GENUARY #genuary2024 #genuary31

00:00/00:38

#Processing #Python #py5 #genuary #genuary31 #トゥートProcessing

# iamkate.com/data/12-bit-rainbo
palette = (
'#817', '#a35', '#c66', '#e94',
'#ed0', '#9d5', '#4d8', '#2cb',
'#0bc', '#09c', '#36b', '#639'
)

def setup():
size(800, 800)
no_stroke()
background(0)

def draw():
xc = yc = 400
for i in range(6):
m = 1 - abs(cos(radians(frame_count / 2))) ** 5
r = 150 + 150 * m
a = radians(frame_count / 2 + 60 * i)
x = xc + r * cos(a)
y = yc + r * sin(a)
fill(palette[i])
circle(x, y, 150)
r = 300 - 150 * m
a = a + radians(30)
x = xc + r * cos(a)
y = yc + r * sin(a)
fill(palette[-1 -i])
circle(x, y, 150)