this post was submitted on 17 Feb 2026
29 points (96.8% liked)

Programming

25594 readers
151 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

I saw the post earlier about making maps using Python. I thought that was a really cool concept as I love seeing open art projects like that. Do you know any other projects that allow you to make art with code?

top 13 comments
sorted by: hot top controversial new old
[–] ns1@feddit.uk 1 points 3 hours ago

In case you weren't aware, there is actually a whole mastodon instance dedicated to this subject! Take a look at https://genart.social/tags/genuary2026 for some recent examples. Many posters include details of what software they are using or links to their code

[–] frankenswine@lemmy.world 1 points 3 hours ago

SuperCollider

[–] Sunsofold@lemmings.world 5 points 5 hours ago

Does writing SVGs by hand count?

[–] spartanatreyu@programming.dev 2 points 4 hours ago

I'm usually programming, but I've got a few bits and pieces that can be shared:


The rest are too experimental, or are released commercial projects.

[–] hono4kami@piefed.social 11 points 8 hours ago

Ah, the real generative art, before 'AI generative "art"'

You should look into shader art. Basically "drawing" using code that runs purely inside GPU. Which reminds me I recently found an artist that does this with code that fit within Twitter character limit. Sadly I can not remember the name rn.

[–] one_old_coder@piefed.social 2 points 5 hours ago* (last edited 5 hours ago) (1 children)

Open-source projects to make music:

OK, it's not code but still fun though.

ChucK is a "programming" language: https://chuck.stanford.edu/

[–] HelloRoot@lemy.lol 2 points 5 hours ago* (last edited 5 hours ago)

https://strudel.cc/

if you really want to code music

example of a recorded live programming performance: https://www.youtube.com/watch?v=iu5rnQkfO6M

[–] hperrin@lemmy.ca 5 points 8 hours ago* (last edited 8 hours ago)

I made a sorting algorithm visualizer.

https://sciactive.github.io/libsortjs/demo/

It’s not really any different than a lot of other sorting algorithm visualizers. It has some additional features, like different visualizations, but it doesn’t have sound.

I didn’t do it to make something better though, I did it to make it myself. I wanted to implement all of those sorting algorithms myself, which was very fun.

I don’t know if you consider that art, but I think it can be beautiful, so maybe.

(Btw, it will happily crash your browser if you try to sort an enormous list using a really inefficient algorithm, so be careful.)

[–] GammaGames@beehaw.org 1 points 5 hours ago* (last edited 5 hours ago)

During covid I tried out processing with python, I threw my code up on github: https://github.com/GammaGames/processing

Random rainbow with a gamma that I sometimes use for my banner:

Some blossoms I got from unsplash:

[–] reabsorbthelight@lemmy.world 3 points 7 hours ago

My tattoos are all simulations I built and ran

[–] KiranWells@pawb.social 2 points 6 hours ago

I personally enjoy playing around with fractals - I've built several fractal rendering programs (this is the latest), and they are quite fun to play around with. While they are more art from math than art from code, there are a lot of creative things you can do in code to visualize different features of fractals - Inigo Quiles has great examples of this, as well as non-fractal procedural art such as SDFs.

[–] null@piefed.nullspace.lol 1 points 6 hours ago

Through trial and error on https://nudel.cc/

[–] Sheldan@lemmy.world 1 points 8 hours ago

I did make some things using html canvas which I think can be considered art.