Live data from Hacker News

Fishdraw: Procedurally Generated Fish Drawings

fishdraw.glitch.me

81–90 of 91 posts

Re: Fishdraw: Procedurally Generated Fish Drawings

#82
post #74

That's nuts. Someone has solved the algorithm of fish and this is it. But I thought I recognized his name and workstyle before. This guy is literally a genius. Some other works I've seen before: https://github.com/LingDong-/rrpl - a "radical" new way to describe Chinese characters as a composition of parts http://nonflowers.lingdong.works/ - procedurally generated flowers in style of classic Chinese watercolor painti…

So my current "people who consistently do really cool niche stuff" list contains foone, Neil Cicierega, jan misali, and now this guy. Any other suggestions?

Inigo Quilez, the Shadertoy wizard.

Re: Fishdraw: Procedurally Generated Fish Drawings

#83
post #74

That's nuts. Someone has solved the algorithm of fish and this is it. But I thought I recognized his name and workstyle before. This guy is literally a genius. Some other works I've seen before: https://github.com/LingDong-/rrpl - a "radical" new way to describe Chinese characters as a composition of parts http://nonflowers.lingdong.works/ - procedurally generated flowers in style of classic Chinese watercolor painti…

So my current "people who consistently do really cool niche stuff" list contains foone, Neil Cicierega, jan misali, and now this guy. Any other suggestions?

Michael Fogleman https://www.michaelfogleman.com/

Re: Fishdraw: Procedurally Generated Fish Drawings

#84
post #74

Earlier quoted context omitted.

So my current "people who consistently do really cool niche stuff" list contains foone, Neil Cicierega, jan misali, and now this guy. Any other suggestions?

Definitely Tom7 (suckerpinch on youtube)

Yeah, it just can not be understated what an absolute gem that man is. I almost wish he'd post more often, but I'd always take quality over quantity, and he delivers.

Re: Fishdraw: Procedurally Generated Fish Drawings

#85

That's nuts. Someone has solved the algorithm of fish and this is it. But I thought I recognized his name and workstyle before. This guy is literally a genius. Some other works I've seen before: https://github.com/LingDong-/rrpl - a "radical" new way to describe Chinese characters as a composition of parts http://nonflowers.lingdong.works/ - procedurally generated flowers in style of classic Chinese watercolor painti…

Why Beijing? He lives in the US.

Agreed his work is excellent. I particularly like that he brings different aesthetics to generative art. Traditional Chinese brushstrokes, these 19th century European themed fish drawings.. It's nice to see something calm and classical.

Re: Fishdraw: Procedurally Generated Fish Drawings

#86
post #82
post #74

Earlier quoted context omitted.

So my current "people who consistently do really cool niche stuff" list contains foone, Neil Cicierega, jan misali, and now this guy. Any other suggestions?

Inigo Quilez, the Shadertoy wizard.

Agreed. Check out his incredible videos! Such as this mind-blowing one...

https://www.youtube.com/watch?v=8--5LwHRhjk

"Painting a Selfie Girl, with Maths"

Re: Fishdraw: Procedurally Generated Fish Drawings

#87
post #38

Earlier quoted context omitted.

Won't work: if(checkForSomething()) { let foo = 2; } else { let foo = 3; } console.log(foo); // won't work But: if(checkForSomething()) { var foo = 2; } else { var foo = 3; } console.log(foo); // will work That said, I religiously avoid "var" and just declare the variable beforehand with "let" because there are too many other gotchas with var. Less debugging headaches. And use "const" religiously as well, like C++ pe…

const in C++ is very different than const in JavaScript though. I guess you are well aware of that but I feel like being pedantic. This is allowed in JavaScript: const foo = {bar: 1}; foo.bar = 2;

const foo = Object.freeze({bar: 1});

Re: Fishdraw: Procedurally Generated Fish Drawings

#88
post #45

Does anyone have a good list of resources for people who want to get a get baseline on understanding and implementing procedural generation?

I would refer you to the demoscene. (I'm surprised to be the first one to mention the word in this discussion.) This guy has a lot of interesting stuff on his site: https://iquilezles.org/

Never dabbling in the demoscene as a 90s teenage hacker is one of my few computing regrets.

Re: Fishdraw: Procedurally Generated Fish Drawings

#89

That's nuts. Someone has solved the algorithm of fish and this is it. But I thought I recognized his name and workstyle before. This guy is literally a genius. Some other works I've seen before: https://github.com/LingDong-/rrpl - a "radical" new way to describe Chinese characters as a composition of parts http://nonflowers.lingdong.works/ - procedurally generated flowers in style of classic Chinese watercolor painti…

Why Beijing? He lives in the US. Agreed his work is excellent. I particularly like that he brings different aesthetics to generative art. Traditional Chinese brushstrokes, these 19th century European themed fish drawings.. It's nice to see something calm and classical.

Right. Pa, CMU. Is that current though?

Re: Fishdraw: Procedurally Generated Fish Drawings

#90
post #74

Earlier quoted context omitted.

So my current "people who consistently do really cool niche stuff" list contains foone, Neil Cicierega, jan misali, and now this guy. Any other suggestions?

Definitely Tom7 (suckerpinch on youtube)

That was a mistake on my part, definitely meant to include him! Very familiar with his work and it's all exceptional.
Post reply on HN