In case you didn't know, pixelpusher (evan.raskob) is a live video performance artist, or "pixelist" based in London, UK. Click the Info button above for hiring and contact info.
gallery

ICE_SNAKE==NOISE at Unleashed Devices 1 September to 22 October 2010

by pixelpusher on Wednesday 18 August 2010
[Blog]

Unleashed Devices exhibition at Watermans

http://tintarts.org/wp-content/Unleashed_Devices_eflyer.pdf

I’m pleased to say that my performance piece, ICE_SNAKE==NOISE will be adapted into an interactive audio-visual installation for Unleashed Devices at Watermans Gallery from 1 September to 22 October 2010.

After a few years of adding visual flair to the sonic cacephony of countless (nearly) NOISE==NOISE nights across London, I finally jumped into the thick of it and created my own audio-visual performance piece.

ICE SNAKE==NOISE slithered up out of a dark period of my life. Literally, it was dark: the dead cold of winter in England, depressing December, where sunny days are a far off memory chewed up and spat out by a biting, inescapable cold. I had a clear goal – to take the frustration and cold anger of a winter away from loved ones and bring that energy into a dramatic performance, at once sonically powerful but also textured and ever-changing, wriggling, like a true snake.

Ryan Jordan, the maestro of audiovisual vertigo who organizes NOISE==NOISE, asked me to perform in Ipswitch, and as I wasn’t going anywhere for the December holidays I agreed. With little time to prepare, I hashed together bits of pieces I was working on using 3D drawing of wormlike, slithering shapes in Fluxus, and lashed them to a soundtrack of chaotic distortion using SuperCollider (for the first time). For the texture of the snake, I used photos of these lattice-like networks of ice, frozen to the roof of our Dalston studio overnight before the winter sun’s moderate warmth blunted their edges, into shapeless, gray slugs.

rooftop ice

I’m very pleased with the result – performing it is like taming a wild beast, you don’t control it as much as ride it through until you both tire out and surrender.

For this installation, I invite others to experience the piece by performing it themselves. Put on the headphones and imagine yourself in the dead of winter in the ancient countryside, the howling wind slashing at your skin, piercing spikes of cold penetrating your bare flesh under your clothes, the swirling snow dizzying your mind until all grows numb and silent.

Here is a live recording of myself playing it back in December:

No Comments Digg del.icio.us

Creating a custom image gallery in wordpress using lightbox

by pixelpusher on Monday 15 September 2008
[Blog, Software]

I spent a bit of time trying to get lightbox working in Wordpress with the new, built-in image gallery shorcode that is part of wordpress.

First, get Lightbox2 from its plug-in page.  Download it, unarchive it, and put the lightbox-2 folder into the plugins folder in your Wordpress installation, and use the Wordpress control panel to activate it, as per the instructions.

I had issues with thumbnails not being auto-generated – there are many solutions in this thread on the Wordpress site, but after making sure that all of my images were standard 24-bit PNG it seemed to work very well.

Then, get my slightly-modified media.php file – what I did was to add the lightbox code to the default photo gallery shortcode function.  Rename the file to “media.php” and put it in your wp-includes folder in your wordpress installation.  You’ll probably want to keep your old media.php file before you do this – just rename the original one media.php.bak.

For the WP hackers out there, what I did was to simply cut the wp_get_attachment_link function from the file wp-includes/post-template.php and add it to media.php in place of the original function call.  then I modified that code to add the lightbox ref=”GALLERY_NAME” property to every image attachment link returned.

Once that is finished, you can upload images via the regular “add media” tool in the editor and display them via the gallery shortcode, and viola! They will be automatically open in a lightbox-enabled slide show.

UPDATE (for WP 2.6.5):

This no longer works, because they’ve changed media.php.  The new fix is to edit your wp-includes/media.php file so that starting from line 109 is the following:

		//$link = wp_get_attachment_link($id, $size, true);

        $pt = str_replace(" ", "_", $pt);
        $thumb = wp_get_attachment_image($id,
            $size='thumbnail', $icon = false); 

        $link= "<a href='". wp_get_attachment_url($id) .
            "' title='$post_title' rel='lightbox[$pt]'>$thumb</a>";
One Comment Digg del.icio.us
pixelpusher

Promote Your Page Too