Keyword Intervention is receiving lots of traffic this week from searches related to a television show called, yes, “Intervention.” All these great searches like “intervention nude“, “intervention cristy naked pics“, and “INTERVENTION CHRISTY NUDE” (all caps will somehow help your search?) have inspired me to update the layout and search engines it scrapes.
Notes on MIT Media Lab _res_ summer 2009
This summer I worked at the MIT Media Lab on my Automata project, an internet bot and online application that makes visible hidden relationships of power.
Some photos and notes from time at MIT Media Lab with Chris Csikszentmihályi.
New edition to Media Lab
Strange
Boston Contemporary
MIT Sailing, free for students.
Chris Csikszentmihályi
Me on the Mystic River
Chris’ robot kayak.
University of Florida Artist Talk, October 15, 2009
Thanks to Jack Stenner and Sean Miller for hosting my upcoming artist talk at the University of Florida in Gainesville.
University of Florida Artist Talk
Gainesville, FL
October 15, 2009
7:00 PM
Brief Notes on Days One and Two at TRANSITIO_MX, by Eduardo Navas
“Anemophilous Formula for Computer Art, 2007, by Joelle Dietrick and Owen Mundy. One of my five selections. It consists of a wall projection of Tallahassee’s airport lounge, which hosts a wall size photographic reproduction of Mcklay Gardens. The city is often bombarded with pollen during the month of March. The airport lounge offers a reference of nature in an artificial space. Under the concept of non-places, which was my curatorial thematic, this work was placed in Centro Multimedia’s hallway where people constantly walked, to emphasize the use of the original image in a “non-place.””
—Eduardo Navas
Reblogged from http://remixtheory.net/?p=394
Tag cloud with PHP
TRANSITIO_MX 03 New Media Art and Video Festival: Autonomies of Disagreement
The International Festival of Electronic Arts and Video Transitio_mx is the most important platform in Mexico that expresses and analyses the contemporary practices of artistic creation with electronic media and digital culture. It has a biannual character and has three main activities: a symposium, an exhibition, a contest.
Curator’s Inauguration: * Dissent. Non places & Device Art * (first disagreement)
Artistas: Sabrina Raaf, Paul Ramírez Jonas, Carlos Rosas, Vicky Funari, Sergio De la Torre, Joelle Dietrick, Owen Mundy, Yuri Suzuki, Nova Jiang, Ariel Guzik y Gilberto Esparza.
Curaduría: Machiko Kusahara y Eduardo Navas
Activity: Muestra internacional
Venue: CENART/Galería Manuel Felguérez/Galería AB/Área de Camerinos
drain: Journal of Contemporary Art and Culture launches Issue #10 COLD
drain: Journal of Contemporary Art and Culture is pleased to announce the launch of Issue #10 COLD
A collective behavior of baroque, abundant consumption has led to an economic and climatic meltdown. The push toward a frenzied emphasis on growth & mass consumption has manifested a cascade of aesthetic opulence in the form of brightly colored advertisements & plastic disposable goods. In the wake of this recent collapse; the purity, simplicity & refinement of a calmer and cooler culture is now alluring. Can transparent, clear and meditative practice counter this lavish, hot & hysterical culture? Subverting the old notion of icy bureaucratic indifference remediated through hot empathy, might the forces of hot commodity be slowed by an intervening cold? Is it possible for the lucidity of coolness to connect cultures & move us into the future?
This issue of Drain presents a collection of critical writing and art practices that has touched on many continents, climates and cultures to transform the way in which we think about how various degrees of cold collaborate.
We are pleased to present Celina Jeffery and Owen Mundy as our feature writer and artist.
This issue also includes essays by Edwin Janzen and Eduardo Navas, as well as interviews by Scott Waters with artist Andrew Morrow, Shannon Stratton with Michael Milano; reviews by Gean Moreno (on Ernesto Oroza) and Edith-Anne Pageot (on Construction Work: Lorraine Gilbert, Josée Dubeau, Jinny Yu).
In our Creative Writing section, we bring to you works by Adelheid Mers, Ellie Krakow, Kathryn Yusoff and Allison Kudla.
Art projects, include two sections; Freeze – with works by Leah Bailis, Lou Mallozzi, Sally Grizzell Larson, Noelle Mason and Deborah Wing-Sproul and Thaw – with works by Jonathan Van Dyke, Nitin Mukul, Kim Jackson DeBord, Rachel Moore, Adrian Göllner and Living Lenses
While this issue explored Cold as an aesthetic experience and concept of our times, THAW – The Meltdown- A Panel and discussion forum held at Atlanta Contemporary Art Center, took this investigation a step further through conversation that addressed the aftermath of the residual coldness.
We wish you an enjoyable read and look forward to contributions from you for our upcoming issues on Militarism and Rewind respectively.
Drain would not have been possible without the support of you, our patrons. Thank you for your continued support!
This issue was curated by Avantika Bawa and Stuart Keeler.
Managerial board: Avantika Bawa, Celina Jeffery, Adrian Parr
drain – Journal of Contemporary Art and Culture
www.drainmag.com
Visualizations of sitemap and content of owenmundy.com via manyeyes
Two stepper motors, one directly connected to PWM on BBB
Testing to see if this motor can connect directly to PWM on BBB (Freeduino).
Code embedded in previous post.
BBB (Freeduino) and stepper motor test
Test with BBB (Freeduino) board, Darlington H-Bridge, Mabuchi # PF35T-48L4 stepper motor. Many thanks to Tom Igoe and his Physical computing book.
-
/*
-
Owen Mundy
-
July 29, 2009
-
-
p. 262 of Physical Computing
-
Using BBB to run stepper motor by manually moving steppers
-
-
*/
-
-
int pin1 = 3; // PWM
-
int pin2 = 5; // PWM
-
int pin3 = 6; // PWM
-
int pin4 = 9; // PWM
-
int ledpin = 13; // LED
-
-
void setup()
-
{
-
pinMode(pin1, OUTPUT); // sets the pin as output
-
pinMode(pin2, OUTPUT); // sets the pin as output
-
pinMode(pin3, OUTPUT); // sets the pin as output
-
pinMode(pin4, OUTPUT); // sets the pin as output
-
pinMode(ledpin, OUTPUT); // sets the pin as output
-
}
-
-
void loop()
-
{
-
for (int i=0; i<24; i++)
-
{
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(10); // waits for a second
-
}
-
-
blink();
-
-
for (int i=0; i<24; i++)
-
{
-
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(10); // waits for a second
-
}
-
-
blink();
-
-
for (int i=0; i<6; i++)
-
{
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(10); // waits for a second
-
}
-
-
blink();
-
-
for (int i=0; i<6; i++)
-
{
-
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, LOW); // off
-
digitalWrite(pin4, HIGH); // on
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, LOW); // off
-
digitalWrite(pin2, HIGH); // on
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(10); // waits for a second
-
-
digitalWrite(pin1, HIGH); // on
-
digitalWrite(pin2, LOW); // off
-
digitalWrite(pin3, HIGH); // on
-
digitalWrite(pin4, LOW); // off
-
delay(10); // waits for a second
-
}
-
-
blink();
-
-
}
-
-
void blink()
-
{
-
digitalWrite(ledpin, HIGH); // on
-
delay(1000); // waits for a second
-
digitalWrite(ledpin, LOW); // off
-
}
You must be logged in to post a comment.