clojure-art

2016-02-23T19:33:37.000004Z

Also does anyone knows any live internet community based around generative art? 😛

nkraft 2016-02-23T20:05:03.000005Z

I wish I could find one. There's sites like https://devart.withgoogle.com and http://www.soban-art.com, and I've played a lot with the C++ Cinder library https://www.libcinder.org, but internet communities seem to be hard to find.

nkraft 2016-02-23T20:05:26.000007Z

Are there interactive art libraries for Clojure?

eggsyntax 2016-02-23T20:06:27.000008Z

@karol: there are a couple of generative art blogs around, that'd probably be the best place to look.

eggsyntax 2016-02-23T20:07:56.000009Z

@nkraft: quil is definitely the big one. http://thi.ng clearly gets used for a lot of generative art stuff. A lot of clj folks write their own. But pretty much any lib you can find in java or JS can be used in clj (some more painfully than others, esp if they're stateful in a fundamental way).

2016-02-23T20:12:15.000010Z

thanks for links I will check them out. Something like reddit would be great but gen art sub reddit seems to be almost dead :< It would be nice to have a place where someone could share art and check others for inspiration but sometimes we definetly cant have nice things 😛

eggsyntax 2016-02-23T20:17:16.000011Z

It's been a few years since i was involved w/ those communities, but I'm sure they're still out there. You might want to ask a few of the well-known folks in that field -- it's a fairly small world. Casey Reas or Ben Fry, who co-wrote processing, would probably be good folks to ask (@REAS and @benfry respectively).

👍 1
eggsyntax 2016-02-23T20:17:29.000012Z

(on twitter)

nkraft 2016-02-23T20:20:46.000013Z

Quil looks interesting, a lot like Cinder, actually, though probably more fun.

2016-02-23T20:34:09.000014Z

Because of Clojure REPL Quil is now my main tool for graphics. After having ability to modify running sketch its hard to go back to modify -> compile -> rerun cycle ;d

nkraft 2016-02-23T21:22:22.000015Z

I agree, the REPL makes everything better. Still, for things like installation art where I might want to interface something with various bits of hardware, I seem to end up with Cinder again.

nkraft 2016-02-23T21:25:05.000016Z

Hopefully, Clojure will catch up in low level and machine control libraries but it may never. The language was really meant for things more elegant than reading sensors.