Masterpiece

“There are many common misunderstandings of the history of art, but perhaps none is more basic than the confusion over what determines the quality of art. Although it is of course possible to consider separately the quality of a number of different attributes of an artist’s work, the overall importance of art is a function of innovation. Important artists are innovators whose work changes the practices of their successors; important works of art are those that embody these innovations. Artists have made innovations in many areas, including subject matter, composition, scale, materials, and technique. But whatever the nature of an artist’s innovation, its importance ultimately depends on the extent of its influence on other artists.

It should immediately be noted that the importance at issue here is not the short run-interest that gains an artist immediate critical or commercial success, but the long-run importance that eventually causes his work to hang in major museums and makes his contribution the subject of study by scholars of art. These two types of success have often coincided, but in many cases they have not.”

David W. Galenson “Old Masters and Young Geniuses: The Two Life Cycles of Artistic Creativity”

Posted in Uncategorized | Leave a comment

Sea Side

Click to see it in action.

Posted in Uncategorized | Tagged | Leave a comment

Prosseing js Dancing squidAmoeba

Click to see in action!

Posted in Uncategorized | Leave a comment

RasterVideo

I have been playing with cinder a c++ library for creative coding. Extrapolating from the tutorial, I created this little program that rasterize into dots the video feed of the camera. You can download RasterVideo and try it yourself (MacOS X only).

Posted in Uncategorized | Leave a comment

Processing exploration


Using Processing 1.5, source code.
Need a sound track…

Posted in Uncategorized | Leave a comment

Readings

“Kafka on the Shore” by Haruki Murakami:

An amazing and gripping story from the Japanese master of magical realism. An highly recommended read.


“The Brothers Karamazov” by Fyodor Dostoyevsky:

My expectations were a bit to high for this classique. The debates about religion and free will were not relevant to me.

Posted in Book | Leave a comment

City

20110813-055554.jpg

Posted in Uncategorized | Leave a comment

Steam power

20110813-064710.jpg

20110813-064729.jpg

20110813-064810.jpg

Posted in Uncategorized | Leave a comment

SpaceTeam prototype 0

xcode and space team running
Presented to you by Ralph Gootee, and myself.

Posted in Uncategorized | Leave a comment

Setting up clojure+incanter+slime on linux

First install the wonderful emacs starter kit.
Using ELPA we are going to install a few packages M-x package-list-packages. Select the following packages by pressing i and then x when you are done to install them:
clojure-mode, paredit, slime, slime-repl, swank-clojure

Now install leiningen by following the instruction on the page.

Create a new project lein new myproject then edit myproject/project.clj as follow:

(defproject mkt_data "1.0.0-SNAPSHOT"
:description "FIXME: write"
:dependencies [[org.clojure/clojure "1.2.0"]
[org.clojure/clojure-contrib "1.2.0"]
[incanter "1.2.3-SNAPSHOT"]]
:dev-dependencies [[swank-clojure "1.2.1"]] )

Almost done, we lein is going to do all the hard work for us:
cd myproject
lein deps
lein swank

Posted in Uncategorized | Leave a comment