//=time() ?>
gm
#Genuary2022 - 07 ↴
—Sol LeWitt Wall Drawing.
Catching up on Genuary with this piece also available on #fxhash here:
https://t.co/HnJ1sN3rPA
#genartclub #Genuary #genart #generativeart #art #creativecoding #nft #nfts #nftcollector
Day12 “Packing (squares, circles, any shape…)”
https://t.co/agIu8ULEpy
#GENUARY2022
reference: The Coding Train/ 9.8: Random Circles with No Overlap - p5.js Tutorial https://t.co/IBuMIQk8X2
#p5js #dailycoding #creativecoding #generativeart
Genuary 011 - Tadoussac.
Prompt: No Computer.
It's not generative art so I maybe cheated with that one? I interpreted it as "no code" so I made something with a drawing tablet. Hope it's still valid 😅
#genuary2022 #genuary #procreate #procreateart
#genuary2022 Day 9 Prompt - Architecture
#genartclub #generativeart
#genuary2022 day 10: Machine learning, wrong answers only
Two entries today.
The first: CLIP guided diffusion w/ the prompt "A crisp watercolor painting of stochastic gradient descent, trending on ArtStation"
#10: "Machine learning, wrong answers only"
Made a fake neural network! Not gonna lie, kinda proud of this one.
On @openprocessing: https://t.co/V60KramSff
#genuary #genuary2022 #p5js
#genuary2022 day 10, Machine learning, wrong answers.
I work on ML, so when I first saw voronoi art I implemented it in JS as kNN with k=1. It works but is super slow compared to normal voronoi stuff. With k>1, the results are really cool though. #generativeart
Genuary 10 - machine learning, wrong answers only
#genuary2022
Text to image AI with the kids giving prompts of wrong answers to try to generate an image of the 'correct answer' (my large black circle on a white background template)
"Large black egg in clouds" (11yo)
Day 10: Machine learning, wrong answers only.
One of the VQGAN + Clip iterations with the input "generative art minimalistic circle"
#genuary #genuary2022 #ML
#genuary 2022 - Day 4 - The next next Fidenza
Vector fields with mesh lines, made with #threejs #genuary2022
https://t.co/76LW0e2mUW
220109 Magic Potion
Shader study (4/30)
https://t.co/foMEQqzAYD
#genuary #genuary2022 #generativeart #creativecoding #cheyuwu #2022cyw_genuary
Another Variation
#genuary2022 #genuary #generativeart #genartclub #creativecoding #p5js #processing
Genuary 2022 - Day 9: "Architecture"
Downtown Flyby
#genuary #genuary2022 #architecture #generativeart
Genuary: Day 8 - Single curve
I really wanted to do something like all the single line curves that I see others doing.
But I'm just not there yet.
So I did this. One curve repeated 360 times.
#genuary2022 #genartclub #genart
Genuary day 8: single curve only
Revisiting a favorite algorithm and adding some new twists!
#genuary2022 #genuary #genartclub
#genuary2022 prompt 8: single curve only: the same bezier curve rotated & translated in 3d space, under different colours.
#generative
Trade styles with a friend.
I'm a bit too late but @raphaelameaume and I traded our styles for #genuary
#genuary2022
I added some randomness to the phase and frequency of the 3 sine waves. https://t.co/UaoyXEatEP
@fx_hash_ #genuary2022 #generativeart #CleanNFT https://t.co/8XG8gxwNjn
#genuary2022 Day 8 Single Curve
void setup(){size(800,800);noFill();background(255,255,200);stroke(150,50,50);float a=0,inc=.3,r,p,e=8;beginShape();while(a<900){r=a*.35;p=r/5;curveVertex(400+r*cos(a)-p*sin(a*e),400+r*sin(a)+p*cos(a*e));e+=.000004*cos(a/200);a+=inc;}endShape();}