Category Archives: Of Interest

Garkov (Garfield + Markov)

Josh Millard made this cool web app that uses a Markov model to generate Garfield comics. Most of them are pretty nonsensical, but if you try for a while you can usually find a few good ones.

Posted in Of Interest | Leave a comment

Myoelectric Sensors and Actuators

One of my friends pointed these videos out to me. In the first one Daito Manabe uses Myoelectrodes (electrodes for sensing muscle tension) to make music with his body movements. In the second, he turns the setup around and uses electrical … Continue reading

Posted in Of Interest | Leave a comment

Data Visualization Links

NYTimes article on importance of Data Viz: http://www.nytimes.com/2011/04/03/business/03stream.html there own Infographics: http://www.smallmeans.com/new-york-times-infographics/   IBM’s research on Data Visualization: http://www-958.ibm.com/software/data/cognos/manyeyes/   Hyper Local Information using data: http://www.everyblock.com/   Great Blogs on Data Viz: http://flowingdata.com/ http://datavisualization.ch/ http://www.informationisbeautiful.net/ http://www.coolinfographics.com/

Posted in Class Information, Of Interest | 1 Comment

Fabric Simulation

I found a very interesting sketch on openprocessing.org: Fabric Simulation This sketch is interesting because it uses complex mathematical methods (i.e. Verlet Integration) to represent something so mundane. Also, the inherent gravity in the simulation can be turned on/off, and … Continue reading

Posted in Of Interest | 2 Comments

Love Will… [Found on OpenProcessing]

http://openprocessing.org/visuals/?visualID=3767   This project seemed very cool, since the code itself was the art: Code: void setup() {   love(“my_road”,”your_road”,”you&me”); } voidlove(Stringy, Stringm, Stringl){   if(y!=m) l.split(“&”);   love(y,m,l); } On certain machines, the code will throw a StackOverflow error, which is (presumably) the artist’s statement … Continue reading

Posted in Of Interest | Leave a comment

NameFlake Generator

In search of inspiration for Exercise 2, I browsed through sketches on OpenProcessing.org with the tag “text”. This is one I found particularly interesting, because it achieves almost exactly what we are supposed to achieve for Exercise 2 – it … Continue reading

Posted in Of Interest | Leave a comment

3d Art Gallery

http://www.screamyguy.net/gallery/index.htm The above sketch is very impressive – it’s a virtual 3d art gallery that you can walk around in (and get this – there’s a jetpack button). This might be a good example if you’re curious about powerful 3d … Continue reading

Posted in Of Interest | Leave a comment

This program makes a 3D model based on the structure of the text input.  By visually representing the structure of the text, it highlights this dimension of writing. Many of the algorithms we will be experimenting with will probably strip … Continue reading

Posted in Of Interest | Leave a comment

Drawing Machine

This program creates a very stylized graphic pattern at the clicking point. Again, like many other generative artworks, this is done with pretty simple code. What I find of particular interest is how the author creates a subtle “brush” effect. … Continue reading

Posted in Of Interest | Leave a comment

Tree Generator

A piece I found interesting done in processing is a tree generator I found on OpenProcessing a week ago. My first reaction was, that’s so pretty, and I liked it for it’s simple beauty. It is aesthetically pleasing to me. … Continue reading

Posted in Of Interest | 1 Comment