Blog

24 August, 2013

TEMP Art Space

I'm just finally getting around to updating my website with new work. Here's a photo of my newest gallery showing of my "Tiny Artists" series. These software programs and resulting posters investigate color theory, and how far you can come in creating software that creates beautiful themes without too many restrictions in the code.

These prints were shown as a part of the Everything is Temp gallery exhibition at the TEMP Art Space in Tribeca, Manhattan. You can read more about the project on the work page.

26 September, 2012

Dumbo Arts Festival

This week I'll be showing 27 graphic prints as a part of the Center for the Recently Possible exhibit. "Tiny Artists" is a series of small computer programs that print graphic posters according to their individual style, taste, and current mood. Each program is born with a short lifespan and can only create a limited number of works. A program will then delete itself and leave no digital trace of itself or its creations. The printed graphics are the only originals. "Tiny Artists" is a simulation of the commissioning of artists, a story of life and death in software, and a comment on the originality of art in the digital world.

25 August, 2012

Brooklyn Goes Neon

During walks these last couple of months I've noticed an increased usage of neon signs on Brooklyn storefronts. Yesterday I decided to go for a 2 hour walk and try to photograph as many signs as possible. It totaled 25, even though I only photographed signs for stores that were obviously young.

Here's the 25 photos. There's really no common design style, although the trendiest stores seem to go for white neon with newer sans serif fonts.

The Spritzenhaus neon sign is a good example of the newer neon sign designs in Williamsburg, Brooklyn.

24 August, 2012

Jenkins, Capistrano, Resque and God

I'm currently working on a web application that uses Resque heavily to send jobs to a separate server that picks up these jobs, runs them, and reports back to the Rails app hosted on Heroku.

Until now we have been deploying the workers by SSH'ing into the worker server, pulling down the changes from the github repo, and killing the workers manually by running "kill -QUIT PID". Not exactly continuous integration. So this week I took a stab at optimizing our deployment setup. This is how I did it.

I wanted this: Whenever I push something to the "production" branch on Github, a server running Jenkins will pull down the code and run the tests. If they pass, Jenkins will run a capistrano script that will deploy the code to the worker server. We are using God to monitor our Resque processes, so capistrano would need to kill these processes in order for God to start them up again with the new code.

The big takeaways are:

1) RVM (which we use on the jenkins server for tests and on the worker server for production gems) needs to be installed under the users running the code. This means the "jenkins" user on the Jenkins server and the "worker" user on the worker server. That will save you hours of banging your head against the table.

2) Most docs about god says that it should run as root. That caused me serious headaches, so I run it as the "worker" user, and it works perfectly.

Here's the god configuration file we use to start the processes the first time. Notice how we make god keep track of the process PID's in a custom folder, so we can later use them in a rake script to kill the processes.

Here's the Capfile and deploy.rb that we use to make Jenkins deploy the new code, install dependencies via bundler, and kill the processes. Normally Capistrano creates all the "current", "releases" and "shared" folders to keep track of different revisions of the code. However, Git has this built in, so this script will just deploy the code directly into the deploy_to folder. Clean and simple. Notice how we override the normal Capistrano methods in order to provide rollback functionality directly in git.

Lastly, here's the rake script that kills the processes. God will start them up again in order to reload the code.

04 April, 2012

Generative Artwork

Here are a few examples of the simple generative artwork I made for the band Silence is a Virus. All images are generated using Processing.