home.social

#genuary28 — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #genuary28, aggregated by home.social.

  1. For #genuary12 #genuary15 and #genuary28 I made my art by altering the genuary.art/prompts website itself (using Firefox DevTools and writing CSS). For #genuary12 this included making a custom font. #genuary

  2. "Inifinite Scroll"
    The altar was surrounded by countless skeletons. Above it, the scroll of immortality floated silently. What does it say? "Thou shall die if ye cease reading!"
    Oh, no!

    src below

    #genuary #genuary28 #pico8 #codeart #tweetcart #postcart #generative #sizecoding

  3. 42 years ago Carol Shaw's River Raid was released for the Atari 2600. Shaw had programmed one of the earliest procedurally generated vertical scrolling video games. Her "River of No Return" was effectively infinite.

    After countless gamers had cleared the river of obstacles, I reimagine the river today now occupied by wildlife
    #genuary #genuary28 #genuary2025 #CreativeCoding #RiverRaid #InfiniteScroll #GenArt #GenerativeArt

  4. For #genuary28 tried to recreate as many classic #skeuomorphic #GUI icons as I could in one hour of #CreativeCoding in #Processing. So this is also #genuary27

    I managed these four: save, record audio, send email, delete. Took a few minutes extra to fix bugs, adjust background colour, and dump frames for the animation.
    #genuary #genuary2024 #skeuomorphism #generativeArt #GenArt

  5. Day 28 – Generative poetry.

    The final line from Spike Milligan's poem 'Well Bread'.
    Lots of silly songs & poems in my life now with a little one.

    #genuary #genuary2023 #genuary28 #blender #b3d #geometrynodes #generativeart #phenakistiscope #zoetrope #stroboscope #animation

  6. #Portuguese #stopwords
    # gist.githubusercontent.com/alo

    from random import sample

    def setup():
    global palavras
    size(800, 800)
    palavras = load_strings('stopwords.txt')
    no_loop()
    text_size(40)
    fill(0)

    def draw():
    for i in range(5):
    escolhas = sample(palavras, 5)
    linha = ' '.join(escolhas)
    text(linha, 100, 100 + i * 40)

    def key_pressed():
    redraw()

    #Processing #Python #py5 #genuary #genuary28