<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>rainer kohlberger</title>
	
	<link>http://kohlberger.net</link>
	<description />
	<lastBuildDate>Fri, 15 Jul 2011 16:26:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/kNET" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="knet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>space is only noise if you can see</title>
		<link>http://kohlberger.net/pjs/space-is-only-noise-if-you-can-see</link>
		<comments>http://kohlberger.net/pjs/space-is-only-noise-if-you-can-see#comments</comments>
		<pubDate>Mon, 27 Jun 2011 16:13:07 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=483</guid>
		<description><![CDATA[float max_distance; int ncount = 8; int ecount = 6; int[] layer1 = new int[ncount]; int[] layer2 = new int[ncount]; int[] layer3 = new int[ncount]; float offset = 4; void setup() { size(220, 220); noSmooth(); //noStroke(); ellipseMode(CENTER); rectMode(CENTER); max_distance = dist(0, 0, width, height); size = (width / ncount) * 1.0; calculateElements(); noLoop(); } void [...]]]></description>
			<content:encoded><![CDATA[<p><script type="application/processing">

float max_distance;
int ncount = 8;
int ecount = 6;
int[] layer1 = new int[ncount];
int[] layer2 = new int[ncount];
int[] layer3 = new int[ncount];
float offset = 4;

void setup() {
  size(220, 220); 
  noSmooth();
  //noStroke();
  ellipseMode(CENTER);
  rectMode(CENTER);
  max_distance = dist(0, 0, width, height);

  size = (width / ncount) * 1.0;
  calculateElements();
  
  noLoop();
	
}

void calculateElements() {

  for(int i = 0; i < ncount; i ++) {
  
    	layer1[i] = new Array(ncount);
    	layer2[i] = new Array(ncount);
		layer3[i] = new Array(ncount);
    	
    	for(int j = 0; j < ncount; j ++) {
    	
    		layer1[i][j] = (int)random (0, ecount);
    		layer2[i][j] = (int)random (0, ecount);
			layer3[i][j] = (int)random (0, ecount);
    	
    	}

  }	
  
  redraw();

}

void drawElements(float px, float py, int element) {

	//noFill();
	//stroke(0);
	
	
	
	switch (element) {


	case 0:
		rect (px, py, size, 1.0);
    	break;
  	case 1:
		rect (px, py, size, 5.0);
	  	break;
  	case 2:
	  	rect(px, py, 3.0, size);
  		break;
  	case 3:
  		fill(255);
	  	rect(px, py, 1.0, size);
	  	break;
	case 4:
		rect (px, py, size * 0.5, size * 0.5);
		break;
	case 5:
		fill(255);
		rect (px, py, 5.0, 5.0);

	}


}

void draw() 
{
  background(255);
  

  for(int i = 0; i < ncount; i ++) {
    for(int j = 0; j < ncount; j ++) {

      fill (0);
      
      
      float px = i * (width / ncount) + (width / ncount / 2.0);
      float py = j * (float)(height / ncount) + (height / ncount / 2.0);
      
      drawElements(px, py, layer1[i][j]);
      drawElements(px, py, layer2[i][j]);
      drawElements(px, py, layer3[i][j]);
            
    }
  }
}

void mousePressed() {
	calculateElements();
}


void mouseDragged() {
	calculateElements();
}

void mouseMoved() {
	animate = true;
	calculateElements();
}

void mouseOut() {
	animate = false;
}

</script></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/pjs/space-is-only-noise-if-you-can-see/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>field</title>
		<link>http://kohlberger.net/work/field</link>
		<comments>http://kohlberger.net/work/field#comments</comments>
		<pubDate>Mon, 27 Jun 2011 14:54:39 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=405</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/fieldScreenshot-485x323.png" alt="" width="485" height="323" />field is an abstract audiovisual work that generates itself through real-time camera input. Brightness saturation and color are interpreted, and translated into a constructed grid. The image plays the sound. An App by Rainer Kohlberger Sound by Wilm Thoben Winner of the ZKM App Art Award. Prize for Artistic Innovation Jury Statement: Austrian video artist [...]]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/fieldScreenshot-485x323.png" alt="" width="485" height="323" />
<a href='http://kohlberger.net/work/field/attachment/fieldscreenshot' title='fieldScreenshot'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/fieldScreenshot-700x466.png" class="attachment-gallery" alt="fieldScreenshot" title="fieldScreenshot" /></a>
<a href='http://kohlberger.net/work/field/attachment/screenshot-2011-05-15-23-35-44' title='Screenshot 2011.05.15 23.35.44'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/Screenshot-2011.05.15-23.35.44-700x466.png" class="attachment-gallery" alt="Screenshot 2011.05.15 23.35.44" title="Screenshot 2011.05.15 23.35.44" /></a>
<a href='http://kohlberger.net/work/field/attachment/screenshot-2011-05-15-23-35-50' title='Screenshot 2011.05.15 23.35.50'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/Screenshot-2011.05.15-23.35.50-700x466.png" class="attachment-gallery" alt="Screenshot 2011.05.15 23.35.50" title="Screenshot 2011.05.15 23.35.50" /></a>
<a href='http://kohlberger.net/work/field/attachment/field1' title='field1'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/field1-700x466.png" class="attachment-gallery" alt="field1" title="field1" /></a>
<a href='http://kohlberger.net/work/field/attachment/field2' title='field2'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/field2-700x466.png" class="attachment-gallery" alt="field2" title="field2" /></a>

<p>field is an abstract audiovisual work that generates itself through real-time camera input. Brightness saturation and color are interpreted, and translated into a constructed grid. The image plays the sound.</p>
<p><a href="http://itunes.apple.com/de/app/field/id447102469?mt=8"><img src="http://kohlberger.net/wp-content/files/appstorebadge1.png" alt="field on the App Store" title="appstorebadge" width="162" height="56" class="alignnone size-full wp-image-551" /></a></p>
<p>An App by Rainer Kohlberger<br />
Sound by Wilm Thoben</p>
<p>Winner of the ZKM App Art Award. Prize for Artistic Innovation</p>
<p>Jury Statement:</p>
<p>Austrian video artist and media designer, Rainer Kohlberger, was awarded with the innovation prize for his audiovisual app field. </p>
<p>In this app, the iPads camera reacts to light and colors in the environment and translates them in an aesthetic way in tones, sounds, and geometrical patterns. Formally speaking, Kohlberger draws on concrete art. The term concrete art was first coined in 1924 by Dutch painter, Theo van Doesburg, before being programmat- ically defined a few years later, in 1930, in the founding manifesto of the group Art Concrete for a direction in art the ideal foundation of which was anchored in mathematics and geometry. It is not “abstract” in the proper sense since it does not extract from what already exists in material reality; on the contrary, it rather materializes intellectual content, possessing no symbolic significance, and is more or less generated from geometrical con- struction.<br />
During the 1960s, Op-Art and Kinetics artists made the logical step of also generating the mathematical foundation purely by programming: in other words, to have the works generate themselves according to an algorithm. With Rainer Kohlberger’s app, a further step has been taken: external influences, such as real light and real movement become part of the algorithm, and extend the geometric and acoustic input in endless variations.</p>
<p><iframe src="http://www.facebook.com/plugins/like.php?app_id=199629066752358&amp;href=https%3A%2F%2Fwww.facebook.com%2Fpages%2Ffield%2F239588716067281&amp;send=false&amp;layout=standard&amp;width=450&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/field/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>can offff</title>
		<link>http://kohlberger.net/txt/can-offff</link>
		<comments>http://kohlberger.net/txt/can-offff#comments</comments>
		<pubDate>Wed, 08 Jun 2011 16:07:15 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=480</guid>
		<description><![CDATA[Part of the «Let’s feed the future» Workshop Collaborative at OFFF2011 in Barcelona.]]></description>
			<content:encoded><![CDATA[<p>Part of the <a href="http://www.creativeapplications.net/offf2011/">«Let’s feed the future» Workshop Collaborative</a> at OFFF2011 in Barcelona.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/can-offff/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wissensbilanz</title>
		<link>http://kohlberger.net/work/wissensbilanz</link>
		<comments>http://kohlberger.net/work/wissensbilanz#comments</comments>
		<pubDate>Fri, 27 May 2011 15:03:47 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=413</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/thumb.png" alt="" width="460" height="296" />Typographic illustrations for a book published by Universität für angewandte Kunst. April 2011.]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/thumb.png" alt="" width="460" height="296" />
<a href='http://kohlberger.net/work/wissensbilanz/attachment/wissensbilanz1' title='Wissensbilanz1'><img width="700" height="525" src="http://kohlberger.net/wp-content/files/Wissensbilanz1-700x525.jpg" class="attachment-gallery" alt="Wissensbilanz1" title="Wissensbilanz1" /></a>
<a href='http://kohlberger.net/work/wissensbilanz/attachment/wissensbilanz2' title='Wissensbilanz2'><img width="700" height="525" src="http://kohlberger.net/wp-content/files/Wissensbilanz2-700x525.jpg" class="attachment-gallery" alt="Wissensbilanz2" title="Wissensbilanz2" /></a>
<a href='http://kohlberger.net/work/wissensbilanz/attachment/wissensbilanz3' title='Wissensbilanz3'><img width="700" height="525" src="http://kohlberger.net/wp-content/files/Wissensbilanz3-700x525.jpg" class="attachment-gallery" alt="Wissensbilanz3" title="Wissensbilanz3" /></a>
<a href='http://kohlberger.net/work/wissensbilanz/attachment/wissensbilanz4' title='Wissensbilanz4'><img width="700" height="525" src="http://kohlberger.net/wp-content/files/Wissensbilanz4-700x525.jpg" class="attachment-gallery" alt="Wissensbilanz4" title="Wissensbilanz4" /></a>
<a href='http://kohlberger.net/work/wissensbilanz/attachment/wissensbilanz5' title='Wissensbilanz5'><img width="700" height="525" src="http://kohlberger.net/wp-content/files/Wissensbilanz5-700x525.jpg" class="attachment-gallery" alt="Wissensbilanz5" title="Wissensbilanz5" /></a>
<a href='http://kohlberger.net/work/wissensbilanz/attachment/wissensbilanz6' title='Wissensbilanz6'><img width="700" height="525" src="http://kohlberger.net/wp-content/files/Wissensbilanz6-700x525.jpg" class="attachment-gallery" alt="Wissensbilanz6" title="Wissensbilanz6" /></a>
<a href='http://kohlberger.net/work/wissensbilanz/attachment/wissensbilanz7' title='Wissensbilanz7'><img width="700" height="525" src="http://kohlberger.net/wp-content/files/Wissensbilanz7-700x525.jpg" class="attachment-gallery" alt="Wissensbilanz7" title="Wissensbilanz7" /></a>

<p>Typographic illustrations for a book published by <a href="http://www.dieangewandte.at">Universität für angewandte Kunst</a>. April 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/wissensbilanz/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rain in milan</title>
		<link>http://kohlberger.net/txt/rain-in-milan</link>
		<comments>http://kohlberger.net/txt/rain-in-milan#comments</comments>
		<pubDate>Wed, 27 Apr 2011 15:49:47 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=462</guid>
		<description><![CDATA[Created an installation version of rain that was part of bulthaup shifting contexts at the Milan Design Week 2011.]]></description>
			<content:encoded><![CDATA[<p>Created an installation version of <a href="http://kohlberger.net/work/rain">rain</a> that was part of <a href="http://www.bulthaup.com/shiftingcontexts/">bulthaup shifting contexts</a> at the Milan Design Week 2011. </p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/rain-in-milan/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work in progress</title>
		<link>http://kohlberger.net/work/work-in-progress</link>
		<comments>http://kohlberger.net/work/work-in-progress#comments</comments>
		<pubDate>Thu, 17 Mar 2011 15:43:59 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=456</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/poster-485x646.png" alt="" width="485" height="646" />Generative Posters. Soon.]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/poster-485x646.png" alt="" width="485" height="646" /><p><img src="http://kohlberger.net/wp-content/files/poster.png" alt="" title="poster" width="768" height="1024" class="alignnone size-full wp-image-457" /></p>
<p>Generative Posters. Soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/work-in-progress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shift</title>
		<link>http://kohlberger.net/work/shift</link>
		<comments>http://kohlberger.net/work/shift#comments</comments>
		<pubDate>Sun, 27 Feb 2011 14:54:42 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=410</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/shift-003.jpg" alt="" width="220" height="401" />Generative Laser. Installation at 22 presents in Prague February 2011. More Infos + moving images soon.]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/shift-003.jpg" alt="" width="220" height="401" />
<a href='http://kohlberger.net/work/shift/attachment/shift1' title='shift1'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/shift1-700x466.jpg" class="attachment-gallery" alt="shift1" title="shift1" /></a>
<a href='http://kohlberger.net/work/shift/attachment/shift2' title='shift2'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/shift2-700x466.jpg" class="attachment-gallery" alt="shift2" title="shift2" /></a>
<a href='http://kohlberger.net/work/shift/attachment/shift3' title='shift3'><img width="466" height="700" src="http://kohlberger.net/wp-content/files/shift3-466x700.jpg" class="attachment-gallery" alt="shift3" title="shift3" /></a>
<a href='http://kohlberger.net/work/shift/attachment/shift4' title='shift4'><img width="466" height="700" src="http://kohlberger.net/wp-content/files/shift4-466x700.jpg" class="attachment-gallery" alt="shift4" title="shift4" /></a>
<a href='http://kohlberger.net/work/shift/attachment/shift5' title='shift5'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/shift5-700x466.jpg" class="attachment-gallery" alt="shift5" title="shift5" /></a>
<a href='http://kohlberger.net/work/shift/attachment/shift6' title='shift6'><img width="700" height="700" src="http://kohlberger.net/wp-content/files/shift6-700x700.jpg" class="attachment-gallery" alt="shift6" title="shift6" /></a>
<a href='http://kohlberger.net/work/shift/attachment/shift7' title='shift7'><img width="466" height="700" src="http://kohlberger.net/wp-content/files/shift7-466x700.jpg" class="attachment-gallery" alt="shift7" title="shift7" /></a>
<a href='http://kohlberger.net/work/shift/attachment/shift-flyer' title='shift-flyer'><img width="497" height="700" src="http://kohlberger.net/wp-content/files/shift-flyer-497x700.jpg" class="attachment-gallery" alt="shift-flyer" title="shift-flyer" /></a>

<p>Generative Laser. Installation at <a href="http://www.22presents.com">22 presents</a> in Prague February 2011. More Infos + moving images soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/shift/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>shift in prague</title>
		<link>http://kohlberger.net/txt/shift-in-prague</link>
		<comments>http://kohlberger.net/txt/shift-in-prague#comments</comments>
		<pubDate>Sat, 26 Feb 2011 16:01:04 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=471</guid>
		<description><![CDATA[Part of the Exhibition Shift that we did in Prague]]></description>
			<content:encoded><![CDATA[<p>Part of the Exhibition <a href="http://kohlberger.net/work/shift">Shift</a> that <a href="http://praxisberlin.net">we</a> did in Prague</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/shift-in-prague/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>teaching</title>
		<link>http://kohlberger.net/txt/teaching</link>
		<comments>http://kohlberger.net/txt/teaching#comments</comments>
		<pubDate>Wed, 12 Jan 2011 15:59:34 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=469</guid>
		<description><![CDATA[Teaching «Generative Design» in Hagenberg]]></description>
			<content:encoded><![CDATA[<p>Teaching «Generative Design» in <a href="http://www.fh-ooe.at/en/hagenberg-campus/studiengaenge/bachelors-degree-programmes/mtd/">Hagenberg</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/teaching/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>this happened</title>
		<link>http://kohlberger.net/txt/this-happened</link>
		<comments>http://kohlberger.net/txt/this-happened#comments</comments>
		<pubDate>Mon, 22 Nov 2010 15:58:14 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=467</guid>
		<description><![CDATA[I gave a talk about Theseus at this happened Utrecht.]]></description>
			<content:encoded><![CDATA[<p>I gave a talk about <a href="http://kohlberger.net/work/theseus">Theseus</a> at <a href="http://thishappened.nl/">this happened</a> Utrecht.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/this-happened/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Music Workshop</title>
		<link>http://kohlberger.net/txt/visual-music-workshop</link>
		<comments>http://kohlberger.net/txt/visual-music-workshop#comments</comments>
		<pubDate>Thu, 11 Nov 2010 15:54:45 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=465</guid>
		<description><![CDATA[I hosted a Visual Music Workshop at Node 2011 in Frankfurt.]]></description>
			<content:encoded><![CDATA[<p>I hosted a <a href="http://node10.vvvv.org/events/visual-music">Visual Music Workshop</a> at Node 2011 in Frankfurt.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/visual-music-workshop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rk</title>
		<link>http://kohlberger.net/work/rk</link>
		<comments>http://kohlberger.net/work/rk#comments</comments>
		<pubDate>Thu, 11 Nov 2010 15:37:36 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=443</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/card_000014-485x325.png" alt="" width="485" height="325" />Unique Business Cards. Edition of 50.]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/card_000014-485x325.png" alt="" width="485" height="325" />
<a href='http://kohlberger.net/work/rk/attachment/card_000024' title='card_000024'><img width="700" height="469" src="http://kohlberger.net/wp-content/files/card_000024-700x469.png" class="attachment-gallery" alt="card_000024" title="card_000024" /></a>
<a href='http://kohlberger.net/work/rk/attachment/card_000028' title='card_000028'><img width="700" height="469" src="http://kohlberger.net/wp-content/files/card_000028-700x469.png" class="attachment-gallery" alt="card_000028" title="card_000028" /></a>
<a href='http://kohlberger.net/work/rk/attachment/card_000026' title='card_000026'><img width="700" height="469" src="http://kohlberger.net/wp-content/files/card_000026-700x469.png" class="attachment-gallery" alt="card_000026" title="card_000026" /></a>
<a href='http://kohlberger.net/work/rk/attachment/card_000023' title='card_000023'><img width="700" height="469" src="http://kohlberger.net/wp-content/files/card_000023-700x469.png" class="attachment-gallery" alt="card_000023" title="card_000023" /></a>
<a href='http://kohlberger.net/work/rk/attachment/card_000014' title='card_000014'><img width="700" height="469" src="http://kohlberger.net/wp-content/files/card_000014-700x469.png" class="attachment-gallery" alt="card_000014" title="card_000014" /></a>
<a href='http://kohlberger.net/work/rk/attachment/card_000046' title='card_000046'><img width="700" height="469" src="http://kohlberger.net/wp-content/files/card_000046-700x469.png" class="attachment-gallery" alt="card_000046" title="card_000046" /></a>
<a href='http://kohlberger.net/work/rk/attachment/card_000003' title='card_000003'><img width="700" height="469" src="http://kohlberger.net/wp-content/files/card_000003-700x469.png" class="attachment-gallery" alt="card_000003" title="card_000003" /></a>
<a href='http://kohlberger.net/work/rk/attachment/card_000021' title='card_000021'><img width="700" height="469" src="http://kohlberger.net/wp-content/files/card_000021-700x469.png" class="attachment-gallery" alt="card_000021" title="card_000021" /></a>
<a href='http://kohlberger.net/work/rk/attachment/card_000005' title='card_000005'><img width="700" height="469" src="http://kohlberger.net/wp-content/files/card_000005-700x469.png" class="attachment-gallery" alt="card_000005" title="card_000005" /></a>

<p>Unique Business Cards. Edition of 50.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/rk/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And never go to sleep</title>
		<link>http://kohlberger.net/pjs/and-never-go-to-sleep</link>
		<comments>http://kohlberger.net/pjs/and-never-go-to-sleep#comments</comments>
		<pubDate>Wed, 27 Oct 2010 16:16:27 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=486</guid>
		<description><![CDATA[float radius = 150.0; bool animate = true; float[] l = new float[12]; float[] speed = new float[12]; float length = 0.1; float weight = 3.0; int ncount = 12; var isiOS = navigator.userAgent.match(/like Mac OS X/i) != null; var isiPad = navigator.userAgent.match(/iPad/i) != null; if (isiPad) nCount = 5; void setup() { size( 220, [...]]]></description>
			<content:encoded><![CDATA[<p><script type="application/processing">

float radius = 150.0;
bool animate = true;
float[] l = new float[12];
float[] speed = new float[12];
float length = 0.1;
float weight = 3.0;
int ncount = 12;
var isiOS = navigator.userAgent.match(/like Mac OS X/i) != null;
var isiPad = navigator.userAgent.match(/iPad/i) != null;
if (isiPad) nCount = 5;

void setup() {

  size( 220, 220 );
  strokeWeight( 10 );
  frameRate( 30 );
  X = width / 2;
  Y = height / 2;
  nX = X;
  nY = Y;


  randomize();
  
  

}

void randomize() {
	
	speed1 = random (3, 8);
	speed2 = random (3, 8);

	for (i = 0; i < ncount; i++) {
		l[i] = random (0.2, 2.0);
		speed[i] = (int)random (0, 2);
		if (speed[i] == 0) speed[i] = speed1;
		if (speed[i] == 1) speed[i] = speed2;
	}
	
}

void draw(){
  
  
  if (animate) radius = radius + sin( frameCount / 8 );
  
  noFill();
  stroke (0, 0, 0);
  strokeWeight (10);  
  background( 255 );
  
  if (animate)
	  ellipse( X, Y, radius, radius ); 

  if (!animate) {

iterations = ncount;
length = map (mouseX, 0, width, 0.1, 5.0);
weight = map (mouseY, 0, height, 1.0, 6.0);


if (isiOS) iterations = 5;

	  for (i = 0; i < iterations; i++) {
	
		pos = (i * PI/2 + frameCount / speed[i] / 2) * length;
		aradius = (radius / iterations) * i;
		strokeWeight (weight);
		arc (X, Y, aradius, aradius, pos, pos+PI/2);
	
	    pos = i * length * PI/2 + frameCount / speed[i];
		aradius = (radius / iterations) * i;
		strokeWeight (weight / 2.0);
		arc (X, Y, aradius, aradius, pos, pos+PI/2);
		
		
	  }
  }
  
  
  
}

void mousePressed() {
	animate = false;
}

void mouseOver() {
	animate = false;
}

void mouseOut() {
	animate = true;
}

void mouseReleased() {
	animate = true;
	randomize();
}

</script></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/pjs/and-never-go-to-sleep/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>killshots</title>
		<link>http://kohlberger.net/work/killshots</link>
		<comments>http://kohlberger.net/work/killshots#comments</comments>
		<pubDate>Tue, 14 Sep 2010 19:26:14 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?page_id=263</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/killshots13.jpg" alt="" width="485" height="685" />Generative Posters exhibited within the context of Schmiede Festival in Salzburg September 2010. Based on photographs taken together with Herr Schobel on a trip to Iceland in July 2010.]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/killshots13.jpg" alt="" width="485" height="685" />
<a href='http://kohlberger.net/work/killshots/attachment/killshots7' title='killshots7'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots7.jpg" class="attachment-gallery" alt="killshots7" title="killshots7" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots13' title='killshots13'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots13.jpg" class="attachment-gallery" alt="killshots13" title="killshots13" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots5' title='killshots5'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots5.jpg" class="attachment-gallery" alt="killshots5" title="killshots5" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots11' title='killshots11'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots11.jpg" class="attachment-gallery" alt="killshots11" title="killshots11" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots6' title='killshots6'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots6.jpg" class="attachment-gallery" alt="killshots6" title="killshots6" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots9' title='killshots9'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots9.jpg" class="attachment-gallery" alt="killshots9" title="killshots9" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots10-2' title='killshots10'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots101-494x700.jpg" class="attachment-gallery" alt="killshots10" title="killshots10" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots1' title='killshots1'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots1.jpg" class="attachment-gallery" alt="killshots1" title="killshots1" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots14' title='killshots14'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots14.jpg" class="attachment-gallery" alt="killshots14" title="killshots14" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots4' title='killshots4'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots4.jpg" class="attachment-gallery" alt="killshots4" title="killshots4" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots8' title='killshots8'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots8.jpg" class="attachment-gallery" alt="killshots8" title="killshots8" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots12' title='killshots12'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots12.jpg" class="attachment-gallery" alt="killshots12" title="killshots12" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots3' title='killshots3'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots3-494x700.jpg" class="attachment-gallery" alt="killshots3" title="killshots3" /></a>
<a href='http://kohlberger.net/work/killshots/attachment/killshots2' title='killshots2'><img width="494" height="700" src="http://kohlberger.net/wp-content/files/killshots2.jpg" class="attachment-gallery" alt="killshots2" title="killshots2" /></a>

<p>Generative Posters exhibited within the context of Schmiede Festival in Salzburg September 2010. Based on photographs taken together with <a href="http://herrschobel.at/">Herr Schobel</a> on a trip to Iceland in July 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/killshots/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repair</title>
		<link>http://kohlberger.net/work/repair</link>
		<comments>http://kohlberger.net/work/repair#comments</comments>
		<pubDate>Fri, 10 Sep 2010 15:14:28 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=427</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/repair3-485x272.jpg" alt="" width="485" height="272" />Creative Direction of Screen Visuals for the Ars Electronica 2010 Awards Ceremony. The Design scales to any number of screens. In Linz we had six projections synchronized. View a video on Vimeo.]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/repair3-485x272.jpg" alt="" width="485" height="272" />
<a href='http://kohlberger.net/work/repair/attachment/repair1' title='repair1'><img width="700" height="393" src="http://kohlberger.net/wp-content/files/repair1-700x393.jpg" class="attachment-gallery" alt="repair1" title="repair1" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repair2' title='repair2'><img width="700" height="393" src="http://kohlberger.net/wp-content/files/repair2-700x393.jpg" class="attachment-gallery" alt="repair2" title="repair2" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repair3' title='repair3'><img width="700" height="393" src="http://kohlberger.net/wp-content/files/repair3-700x393.jpg" class="attachment-gallery" alt="repair3" title="repair3" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repair4' title='repair4'><img width="700" height="393" src="http://kohlberger.net/wp-content/files/repair4-700x393.jpg" class="attachment-gallery" alt="repair4" title="repair4" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repair5' title='repair5'><img width="700" height="393" src="http://kohlberger.net/wp-content/files/repair5-700x393.jpg" class="attachment-gallery" alt="repair5" title="repair5" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repair6' title='repair6'><img width="700" height="393" src="http://kohlberger.net/wp-content/files/repair6-700x393.jpg" class="attachment-gallery" alt="repair6" title="repair6" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repair7' title='repair7'><img width="700" height="393" src="http://kohlberger.net/wp-content/files/repair7-700x393.jpg" class="attachment-gallery" alt="repair7" title="repair7" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repair8' title='repair8'><img width="700" height="393" src="http://kohlberger.net/wp-content/files/repair8-700x393.jpg" class="attachment-gallery" alt="repair8" title="repair8" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repairphoto1' title='repairphoto1'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/repairphoto1-700x466.jpg" class="attachment-gallery" alt="repairphoto1" title="repairphoto1" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repairphoto2' title='repairphoto2'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/repairphoto2-700x466.jpg" class="attachment-gallery" alt="repairphoto2" title="repairphoto2" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repairphoto3' title='repairphoto3'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/repairphoto3-700x466.jpg" class="attachment-gallery" alt="repairphoto3" title="repairphoto3" /></a>
<a href='http://kohlberger.net/work/repair/attachment/repairphoto4' title='repairphoto4'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/repairphoto4-700x466.jpg" class="attachment-gallery" alt="repairphoto4" title="repairphoto4" /></a>

<p>Creative Direction of Screen Visuals for the Ars Electronica 2010 Awards Ceremony. The Design scales to any number of screens. In Linz we had six projections synchronized. View a video on <a href="http://vimeo.com/16484506">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/repair/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ars2010</title>
		<link>http://kohlberger.net/work/ars2010</link>
		<comments>http://kohlberger.net/work/ars2010#comments</comments>
		<pubDate>Mon, 06 Sep 2010 23:55:16 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=210</guid>
		<description><![CDATA[Creative Direction of «Screen Visuals» for the Ars Electronica Awards 2010]]></description>
			<content:encoded><![CDATA[<p>Creative Direction of <a href="http://vimeo.com/16484506">«Screen Visuals»</a> for the Ars Electronica Awards 2010</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/ars2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>killshots</title>
		<link>http://kohlberger.net/txt/killshots-tx</link>
		<comments>http://kohlberger.net/txt/killshots-tx#comments</comments>
		<pubDate>Sat, 04 Sep 2010 23:36:36 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=205</guid>
		<description><![CDATA[«killshots» is a series of generative posters]]></description>
			<content:encoded><![CDATA[<p><a href="http://kohlberger.net/work/killshots">«killshots»</a> is a series of generative posters</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/killshots-tx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theseus</title>
		<link>http://kohlberger.net/work/theseus</link>
		<comments>http://kohlberger.net/work/theseus#comments</comments>
		<pubDate>Thu, 29 Jul 2010 13:12:06 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?page_id=169</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/theseusthumb.jpg" alt="" width="460" height="307" />Exhibition Design for THESEUS Innovation Center Internet of Things Fraunhofer Heinrich-Hertz-Institut Berlin Installation / Generative Animation Creative Direction: Rainer Kohlberger + Thomas Schrott June 2010 Black Polygons are applied with glue to the wall. Everything else is projected. Some more Information in German Documentation Video]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/theseusthumb.jpg" alt="" width="460" height="307" /><p>Exhibition Design for THESEUS Innovation Center Internet of Things<br />
Fraunhofer Heinrich-Hertz-Institut Berlin<br />
Installation / Generative Animation<br />
Creative Direction: Rainer Kohlberger + <a href="http://www.thomasschrott.at">Thomas Schrott</a><br />
June 2010</p>
<p>Black Polygons are applied with glue to the wall. Everything else is projected.<br />
<a href="http://www.thomasschrott.at/projekt.php?arbeitid=90">Some more Information in German</a></p>
<h3>Documentation</h3>

<a href='http://kohlberger.net/work/theseus/attachment/theseus2' title='Theseus'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/theseus2.jpg" class="attachment-gallery" alt="Theseus" title="Theseus" /></a>
<a href='http://kohlberger.net/work/theseus/attachment/theseus4' title='Theseus'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/theseus4.jpg" class="attachment-gallery" alt="Theseus" title="Theseus" /></a>
<a href='http://kohlberger.net/work/theseus/attachment/theseus1' title='Theseus'><img width="700" height="464" src="http://kohlberger.net/wp-content/files/theseus1.jpg" class="attachment-gallery" alt="Theseus" title="Theseus" /></a>
<a href='http://kohlberger.net/work/theseus/attachment/theseus3' title='Theseus'><img width="700" height="466" src="http://kohlberger.net/wp-content/files/theseus3.jpg" class="attachment-gallery" alt="Theseus" title="Theseus" /></a>

<h3>Video</h3>

    <!-- Begin VideoJS -->
    <div class="video-js-box vim-css">
      <!-- Using the Video for Everybody Embed Code http://camendesign.com/code/video_for_everybody -->
      <video class="video-js" width="700" height="393" poster="http://kohlberger.net/wp-content/files/theseusposter2.jpg" controls preload="auto" >
      <source src="http://kohlberger.net/mov/Theseus/Theseus.mov" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
      <source src="http://kohlberger.net/mov/Theseus/Theseus.webm" type='video/webm; codecs="vp8, vorbis"' />
      <source src="http://kohlberger.net/mov/Theseus/Theseus.ogv" type='video/ogg; codecs="theora, vorbis"' />
      <!-- Flash Fallback. Use any flash video player here. Make sure to keep the vjs-flash-fallback class. -->
      <object class="vjs-flash-fallback" width="700" height="393" type="application/x-shockwave-flash"
        data="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf">
        <param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf" />
        <param name="allowfullscreen" value="true" />
        <param name="flashvars" value='config={"playlist":["http://video-js.zencoder.com/oceans-clip.png", {"url": "http://kohlberger.net/mov/Theseus/Theseus.mov" ,"autoPlay":false ,"autoBuffering":true }]}' />
              <!-- Image Fallback -->
      <img src="http://kohlberger.net/wp-content/files/theseusposter2.jpg" width="700" height="393" alt="Poster Image" title="No video playback capabilities." />
      </object>
    </video>
    <!-- Download links provided for devices that can't play video in the browser. -->
    <p class="vjs-no-video"><strong>Download Video:</strong>
      <a href="http://kohlberger.net/mov/Theseus/Theseus.mov">MP4</a>
      <a href="http://kohlberger.net/mov/Theseus/Theseus.webm">WebM</a>
      <a href="http://kohlberger.net/mov/Theseus/Theseus.ogv">Ogg</a>
      <br>
      <!-- Support VideoJS by keeping this link. -->
      <a href="http://videojs.com">HTML5 Video Player</a> by <a href="http://videojs.com">VideoJS</a>
    </p>
  </div>
  <!-- End VideoJS -->

]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/theseus/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://kohlberger.net/mov/Theseus/Theseus.webm" length="16495485" type="video/webm" />
<enclosure url="http://kohlberger.net/mov/Theseus/Theseus.ogv" length="9203188" type="video/ogg" />
<enclosure url="http://kohlberger.net/mov/Theseus/Theseus.mov" length="297" type="video/quicktime" />
		</item>
		<item>
		<title>Theseus</title>
		<link>http://kohlberger.net/txt/theseus-txt</link>
		<comments>http://kohlberger.net/txt/theseus-txt#comments</comments>
		<pubDate>Tue, 29 Jun 2010 13:48:21 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=167</guid>
		<description><![CDATA[Exhibition Design / Generative Installation at Theseus Innovation Center at Fraunhofer HHI Berlin]]></description>
			<content:encoded><![CDATA[<p>Exhibition Design / Generative Installation at <a href="http://kohlberger.net/work/theseus">Theseus Innovation Center at Fraunhofer HHI Berlin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/theseus-txt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sweet spot</title>
		<link>http://kohlberger.net/pjs/sweet-spot</link>
		<comments>http://kohlberger.net/pjs/sweet-spot#comments</comments>
		<pubDate>Sun, 27 Jun 2010 16:18:53 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=490</guid>
		<description><![CDATA[float max_distance; int ncount = 5; float[] offsetx = new float[ncount]; float[] offsety = new float[ncount]; float offset = 4; void setup() { size(220, 220); smooth(); noStroke(); max_distance = dist(0, 0, width, height); calculateOffset(); noLoop(); } void calculateOffset() { for(int i = 0; i < ncount; i ++) { //offset[i] = random (- 10, 10 [...]]]></description>
			<content:encoded><![CDATA[<p><script type="application/processing">

float max_distance;
int ncount = 5;
float[] offsetx = new float[ncount];
float[] offsety = new float[ncount];
float offset = 4;

void setup() {
  size(220, 220); 
  smooth();
  noStroke();
  max_distance = dist(0, 0, width, height);

  calculateOffset();
  
  noLoop();
	
}

void calculateOffset() {

  for(int i = 0; i < ncount; i ++) {
  
    	//offset[i] = random (- 10, 10 );
    	offsetx[i] = new Array(ncount);
    	
    	for(int j = 0; j < ncount; j ++) {
    	
    		offsetx[i][j] = random (-offset, offset);
    	
    	}
    	
    	offsety[i] = new Array(ncount);
    	
    	for(int j = 0; j < ncount; j ++) {
    	
    		offsety[i][j] = random (-offset, offset);
    	
    	}
    	

  }	
  
  redraw();

}


void draw() 
{
  background(255);

  for(int i = 0; i < ncount; i ++) {
    for(int j = 0; j < ncount; j ++) {
      //float size = dist(mouseX, mouseY, i, j);
      //size = size/max_distance * 66;
      //ellipse(i, j, size, size);
      fill (0);
      size = width / ncount * 0.9;
      float px = i * (width * 0.98 / ncount) + (width * 0.02) + offsetx[i][j];
      float py = j * (height * 0.98 / ncount) + (height * 0.02) + offsety[i][j];
      rect (px, py, size, size);
    }
  }
}

void mousePressed() {
	calculateOffset();
}


void mouseDragged() {
	calculateOffset();
}

void mouseMoved() {
	animate = true;
	calculateOffset();
}

void mouseOut() {
	animate = false;
}

</script></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/pjs/sweet-spot/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>constellations</title>
		<link>http://kohlberger.net/work/constellations</link>
		<comments>http://kohlberger.net/work/constellations#comments</comments>
		<pubDate>Fri, 04 Jun 2010 23:40:31 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=208</guid>
		<description><![CDATA[Audiovisual live performance «Constellations» at Akademie der Künste, Berlin]]></description>
			<content:encoded><![CDATA[<p>Audiovisual live performance <a href="http://vimeo.com/16480887">«Constellations»</a> at Akademie der Künste, Berlin</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/constellations/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>hfg</title>
		<link>http://kohlberger.net/work/hfg</link>
		<comments>http://kohlberger.net/work/hfg#comments</comments>
		<pubDate>Fri, 04 Jun 2010 22:01:26 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=200</guid>
		<description><![CDATA[Hosting the Workshop «Generative Design &#038; Animation» at HfG Schwäbisch Gmünd]]></description>
			<content:encoded><![CDATA[<p>Hosting the Workshop «Generative Design &#038; Animation» at <a href="http://ig.hfg-gmuend.de/">HfG Schwäbisch Gmünd</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/hfg/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tu</title>
		<link>http://kohlberger.net/work/tu</link>
		<comments>http://kohlberger.net/work/tu#comments</comments>
		<pubDate>Tue, 04 May 2010 22:10:52 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=203</guid>
		<description><![CDATA[Teaching «Audiovisual Design» at TU Berlin / Audiokommunikation]]></description>
			<content:encoded><![CDATA[<p>Teaching «Audiovisual Design» at <a href="http://www.ak.tu-berlin.de/">TU Berlin / Audiokommunikation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/tu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rain</title>
		<link>http://kohlberger.net/txt/rain-tx</link>
		<comments>http://kohlberger.net/txt/rain-tx#comments</comments>
		<pubDate>Wed, 31 Mar 2010 16:44:32 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=144</guid>
		<description><![CDATA[rain is a minimalistic audio visual composition you can play yourself]]></description>
			<content:encoded><![CDATA[<p><a href="http://kohlberger.net/rain">rain</a> is a minimalistic audio visual composition you can play yourself</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/rain-tx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rain</title>
		<link>http://kohlberger.net/work/rain</link>
		<comments>http://kohlberger.net/work/rain#comments</comments>
		<pubDate>Thu, 25 Mar 2010 17:09:31 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?page_id=93</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/rain-thumb.png" alt="" width="460" height="320" />tap to create black sound stripes double tap to create phases shake to create colored beat stripes double swipe to change background loop the longer a stripe the lower its pitch. after creating a stripe, use your second finger to alter the length. the app transmits all sequences via OSC messages on port 4444. OSC [...]]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/rain-thumb.png" alt="" width="460" height="320" />
<a href='http://kohlberger.net/work/rain/attachment/rain1' title='rain1'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain1.png" class="attachment-gallery" alt="rain1" title="rain1" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain2' title='rain2'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain2.png" class="attachment-gallery" alt="rain2" title="rain2" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain3' title='rain3'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain3.png" class="attachment-gallery" alt="rain3" title="rain3" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain4' title='rain4'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain4.png" class="attachment-gallery" alt="rain4" title="rain4" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain5' title='rain5'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain5.png" class="attachment-gallery" alt="rain5" title="rain5" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain6' title='rain6'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain6.png" class="attachment-gallery" alt="rain6" title="rain6" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain7' title='rain7'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain7.png" class="attachment-gallery" alt="rain7" title="rain7" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain8' title='rain8'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain8.png" class="attachment-gallery" alt="rain8" title="rain8" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain9' title='rain9'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain9.png" class="attachment-gallery" alt="rain9" title="rain9" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain10' title='rain10'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain10.png" class="attachment-gallery" alt="rain10" title="rain10" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain11' title='rain11'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain11.png" class="attachment-gallery" alt="rain11" title="rain11" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain12' title='rain12'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain12.png" class="attachment-gallery" alt="rain12" title="rain12" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain13' title='rain13'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain13.png" class="attachment-gallery" alt="rain13" title="rain13" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain14' title='rain14'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain14.png" class="attachment-gallery" alt="rain14" title="rain14" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain15' title='rain15'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain15.png" class="attachment-gallery" alt="rain15" title="rain15" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain16' title='rain16'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain16.png" class="attachment-gallery" alt="rain16" title="rain16" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain17' title='rain17'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain17.png" class="attachment-gallery" alt="rain17" title="rain17" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain18' title='rain18'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain18.png" class="attachment-gallery" alt="rain18" title="rain18" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain19' title='rain19'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain19.png" class="attachment-gallery" alt="rain19" title="rain19" /></a>
<a href='http://kohlberger.net/work/rain/attachment/rain20' title='rain20'><img width="480" height="320" src="http://kohlberger.net/wp-content/files/rain20.png" class="attachment-gallery" alt="rain20" title="rain20" /></a>

<p>tap to create black sound stripes<br />
double tap to create phases<br />
shake to create colored beat stripes<br />
double swipe to change background loop</p>
<p>the longer a stripe the lower its pitch.<br />
after creating a stripe, use your second finger to alter the length.</p>
<p>the app transmits all sequences via OSC messages on port 4444.<br />
<a href='http://kohlberger.net/wp-content/files/OSC-to-MIDI-router.zip'>OSC to MIDI router (OSCulator template)</a></p>
<h3>credits</h3>
<p>rain was created by rainer kohlberger 2010.<br />
sound samples by max kickinger.</p>
<p><a href="http://itunes.apple.com/de/app/rain/id364248990?mt=8"><img src="http://kohlberger.net/wp-content/files/appstorebadge.png" alt="rain on the App Store" title="appstorebadge" width="162" height="56" class="alignnone size-full wp-image-103" /></a></p>
<h3>Video</h3>

    <!-- Begin VideoJS -->
    <div class="video-js-box vim-css">
      <!-- Using the Video for Everybody Embed Code http://camendesign.com/code/video_for_everybody -->
      <video class="video-js" width="700" height="394" poster="http://kohlberger.net/wp-content/files/rainPoster.png" controls preload="auto" >
      <source src="http://kohlberger.net/mov/rain/rain.mov" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
      <source src="http://kohlberger.net/mov/rain/rain.webm" type='video/webm; codecs="vp8, vorbis"' />
      
      <!-- Flash Fallback. Use any flash video player here. Make sure to keep the vjs-flash-fallback class. -->
      <object class="vjs-flash-fallback" width="700" height="394" type="application/x-shockwave-flash"
        data="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf">
        <param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf" />
        <param name="allowfullscreen" value="true" />
        <param name="flashvars" value='config={"playlist":["http://video-js.zencoder.com/oceans-clip.png", {"url": "http://kohlberger.net/mov/rain/rain.mov" ,"autoPlay":false ,"autoBuffering":true }]}' />
              <!-- Image Fallback -->
      <img src="http://kohlberger.net/wp-content/files/rainPoster.png" width="700" height="394" alt="Poster Image" title="No video playback capabilities." />
      </object>
    </video>
    <!-- Download links provided for devices that can't play video in the browser. -->
    <p class="vjs-no-video"><strong>Download Video:</strong>
      <a href="http://kohlberger.net/mov/rain/rain.mov">MP4</a>
      <a href="http://kohlberger.net/mov/rain/rain.webm">WebM</a>
      
      <br>
      <!-- Support VideoJS by keeping this link. -->
      <a href="http://videojs.com">HTML5 Video Player</a> by <a href="http://videojs.com">VideoJS</a>
    </p>
  </div>
  <!-- End VideoJS -->

]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/rain/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://kohlberger.net/mov/rain/rain.webm" length="26632188" type="video/webm" />
<enclosure url="http://kohlberger.net/mov/rain/rain.mov" length="288" type="video/quicktime" />
		</item>
		<item>
		<title>signal  noise</title>
		<link>http://kohlberger.net/pjs/signal-noise</link>
		<comments>http://kohlberger.net/pjs/signal-noise#comments</comments>
		<pubDate>Wed, 17 Mar 2010 16:17:24 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=488</guid>
		<description><![CDATA[int[] weights = new int[3]; float max_distance; void setup() { size(220, 220); noSmooth(); calcWeights(); noLoop(); } void calcWeights() { for (int i = 0; i]]></description>
			<content:encoded><![CDATA[<p><script type="application/processing">

int[] weights = new int[3];

float max_distance;

void setup() {
  size(220, 220); 
  noSmooth();
  calcWeights();
  noLoop();
}

void calcWeights() {
	for (int i = 0; i<3; i++) {
		weights[i] = random(1, 7);
	}
}

void draw() 
{
  background(255);

  noStroke();
  
  stroke (0);
  size = weights[0];
  
  for(int i = -height; i <= height * 2; i += 20) {

  	strokeWeight (size);
  	offset = mouseY;
  	line (0, i + offset, width, i + offset);
  	
  }  
  
  stroke (0);
  size = weights[1];

for(int i = -height; i <= height * 2; i += 11) {
  //float size = (mouseY - i) / i;
	//size = size/max_distance * 50;
	strokeWeight (size);
	offset = mouseY / 1.5;
	line (0, i + offset, width, i + offset);
	
}  


  size = weights[2];

for(int i = -height; i <= height * 2; i += 22) {
	strokeWeight (size);
	offset = mouseY / 2.0;
	line (0, i + offset, width, i + offset);
	
} 

  
  
}

void mousePressed() {
	loop();
	calcWeights();
	redraw();
}

void mouseReleased() {
	noLoop();
}

void mouseOver() {
	loop();
}

void mouseOut() {
	noLoop();
	randomize();
}

</script></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/pjs/signal-noise/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>algorithmicmediacreation</title>
		<link>http://kohlberger.net/work/algorithmicmediacreation</link>
		<comments>http://kohlberger.net/work/algorithmicmediacreation#comments</comments>
		<pubDate>Fri, 29 Jan 2010 21:55:03 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=156</guid>
		<description><![CDATA[Last semester I was teaching at the Upper Austria University of Applied Sciences / School of Media. The course was named «Algorithmic Media Creation»]]></description>
			<content:encoded><![CDATA[<p>Last semester I was teaching at the <a href="http://www.fh-ooe.at/en/hagenberg-campus/studiengaenge/bachelors-degree-programmes/mtd/">Upper Austria University of Applied Sciences</a> / School of Media. The course was named «Algorithmic Media Creation»</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/algorithmicmediacreation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ghostwriter</title>
		<link>http://kohlberger.net/work/ghostwriter</link>
		<comments>http://kohlberger.net/work/ghostwriter#comments</comments>
		<pubDate>Tue, 10 Nov 2009 19:29:38 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?page_id=48</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/Ghostwriter5-485x716.jpg" alt="" width="485" height="716" />When I heared that 2009&#8242;s topic of the biennal stop.spot! festival would be «Text and Music» I started documenting all the Hooklines that suddenly appeared in my head all day. «Hooks» are those tiny edgy fragments of a songtext that nests inside your head and mostly they come with a strong connection to their accociated [...]]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/Ghostwriter5-485x716.jpg" alt="" width="485" height="716" /><p>When I heared that 2009&#8242;s topic of the biennal stop.spot! festival would be «Text and Music» I started documenting all the Hooklines that suddenly appeared in my head all day. <a href="http://en.wikipedia.org/wiki/Hook_(music)">«Hooks»</a> are those tiny edgy fragments of a songtext that nests inside your head and mostly they come with a strong connection to their accociated music. Some of them reoccure over and over again, sometimes I didn&#8217;t hear the corresponding song in two years. For this installation I took the most significant ones and created realtime animated pictures out of them.</p>
<p>Exhibited at <a href="http://stopspot.servus.at/2009/">stop.spot! 2009</a>, O.K Centrum für Gegenwartskunst Linz</p>
<h3>Video Documentation</h3>

    <!-- Begin VideoJS -->
    <div class="video-js-box vim-css">
      <!-- Using the Video for Everybody Embed Code http://camendesign.com/code/video_for_everybody -->
      <video class="video-js" width="854" height="482" poster="http://kohlberger.net/mov/Ghostwriter/GhostStripes.jpg" controls preload="auto" >
      <source src="http://kohlberger.net/mov/Ghostwriter/GhostwriterDoc.mov" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
      <source src="http://kohlberger.net/mov/Ghostwriter/Ghostwriter.webm" type='video/webm; codecs="vp8, vorbis"' />
      <source src="http://kohlberger.net/mov/Ghostwriter/GhostwriterDoc.ogv" type='video/ogg; codecs="theora, vorbis"' />
      <!-- Flash Fallback. Use any flash video player here. Make sure to keep the vjs-flash-fallback class. -->
      <object class="vjs-flash-fallback" width="854" height="482" type="application/x-shockwave-flash"
        data="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf">
        <param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf" />
        <param name="allowfullscreen" value="true" />
        <param name="flashvars" value='config={"playlist":["http://video-js.zencoder.com/oceans-clip.png", {"url": "http://kohlberger.net/mov/Ghostwriter/GhostwriterDoc.mov" ,"autoPlay":false ,"autoBuffering":true }]}' />
              <!-- Image Fallback -->
      <img src="http://kohlberger.net/mov/Ghostwriter/GhostStripes.jpg" width="854" height="482" alt="Poster Image" title="No video playback capabilities." />
      </object>
    </video>
    <!-- Download links provided for devices that can't play video in the browser. -->
    <p class="vjs-no-video"><strong>Download Video:</strong>
      <a href="http://kohlberger.net/mov/Ghostwriter/GhostwriterDoc.mov">MP4</a>
      <a href="http://kohlberger.net/mov/Ghostwriter/Ghostwriter.webm">WebM</a>
      <a href="http://kohlberger.net/mov/Ghostwriter/GhostwriterDoc.ogv">Ogg</a>
      <br>
      <!-- Support VideoJS by keeping this link. -->
      <a href="http://videojs.com">HTML5 Video Player</a> by <a href="http://videojs.com">VideoJS</a>
    </p>
  </div>
  <!-- End VideoJS -->

<h3>Shots</h3>

<a href='http://kohlberger.net/work/ghostwriter/attachment/ghostwriter-5' title='Ghostwriter'><img width="466" height="700" src="http://kohlberger.net/wp-content/files/Ghostwriter4-466x700.jpg" class="attachment-gallery" alt="Ghostwriter" title="Ghostwriter" /></a>
<a href='http://kohlberger.net/work/ghostwriter/attachment/ghostwriter6-2' title='Ghostwriter6'><img width="466" height="700" src="http://kohlberger.net/wp-content/files/Ghostwriter61-466x700.jpg" class="attachment-gallery" alt="Ghostwriter6" title="Ghostwriter6" /></a>
<a href='http://kohlberger.net/work/ghostwriter/attachment/ghostwriter-6' title='Ghostwriter'><img width="473" height="700" src="http://kohlberger.net/wp-content/files/Ghostwriter5-473x700.jpg" class="attachment-gallery" alt="Ghostwriter" title="Ghostwriter" /></a>
<a href='http://kohlberger.net/work/ghostwriter/attachment/ghostwriter-2' title='Ghostwriter'><img width="466" height="700" src="http://kohlberger.net/wp-content/files/Ghostwriter1-466x700.jpg" class="attachment-gallery" alt="Ghostwriter" title="Ghostwriter" /></a>
<a href='http://kohlberger.net/work/ghostwriter/attachment/ghostwriter-4' title='Ghostwriter'><img width="466" height="700" src="http://kohlberger.net/wp-content/files/Ghostwriter3-466x700.jpg" class="attachment-gallery" alt="Ghostwriter" title="Ghostwriter" /></a>
<a href='http://kohlberger.net/work/ghostwriter/attachment/ghostwriter7-2' title='Ghostwriter7'><img width="525" height="700" src="http://kohlberger.net/wp-content/files/Ghostwriter71-525x700.jpg" class="attachment-gallery" alt="Ghostwriter7" title="Ghostwriter7" /></a>

]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/ghostwriter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://kohlberger.net/mov/Ghostwriter/Ghostwriter.webm" length="38453602" type="video/webm" />
<enclosure url="http://kohlberger.net/mov/Ghostwriter/GhostwriterDoc.ogv" length="45053351" type="video/ogg" />
<enclosure url="http://kohlberger.net/mov/Ghostwriter/GhostwriterDoc.mov" length="318" type="video/quicktime" />
		</item>
		<item>
		<title>hecatomb</title>
		<link>http://kohlberger.net/work/hecatomb</link>
		<comments>http://kohlberger.net/work/hecatomb#comments</comments>
		<pubDate>Wed, 04 Nov 2009 21:54:43 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=197</guid>
		<description><![CDATA[Some Contributions + Visual Support on Audion&#8217;s Hecatomb Tour in North America]]></description>
			<content:encoded><![CDATA[<p>Some Contributions + Visual Support on <a href="http://www.enohenze.de/works2009/hecatomb/">Audion&#8217;s Hecatomb Tour</a> in North America</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/hecatomb/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ghostwriter</title>
		<link>http://kohlberger.net/txt/ghostwritertxt</link>
		<comments>http://kohlberger.net/txt/ghostwritertxt#comments</comments>
		<pubDate>Fri, 30 Oct 2009 04:40:56 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=80</guid>
		<description><![CDATA[Created the installation Ghostwriter exhibited at the stop.spot! festival 2009]]></description>
			<content:encoded><![CDATA[<p>Created the installation <a href="http://kohlberger.net/work/ghostwriter">Ghostwriter</a> exhibited at the <a href="http://stopspot.servus.at/2009/">stop.spot! festival</a> 2009</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/txt/ghostwritertxt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Human Nature</title>
		<link>http://kohlberger.net/work/human-nature</link>
		<comments>http://kohlberger.net/work/human-nature#comments</comments>
		<pubDate>Mon, 12 Oct 2009 02:11:17 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?page_id=57</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/humannature3-485x260.jpg" alt="" width="485" height="260" />Creative Direction / Algorithmic Animation Nature: Realtime generated Visuals Event: Ars Electronica 2009 Award Ceremony Location: Brucknerhaus Linz Commissioned by checksum5 Video Shots]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/humannature3-485x260.jpg" alt="" width="485" height="260" /><p>Creative Direction / Algorithmic Animation<br />
Nature: Realtime generated Visuals<br />
Event: Ars Electronica 2009 Award Ceremony<br />
Location: Brucknerhaus Linz<br />
Commissioned by <a href="http://www.checksum5.com/" _mce_href="http://www.checksum5.com/">checksum5</a></p>
<h3>Video</h3>

    <!-- Begin VideoJS -->
    <div class="video-js-box vim-css">
      <!-- Using the Video for Everybody Embed Code http://camendesign.com/code/video_for_everybody -->
      <video class="video-js" width="500" height="281" poster="http://kohlberger.net/wp-content/files/nica.jpg" controls preload="auto" >
      <source src="http://kohlberger.net/mov/HumanNatureDocumentationPreview.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"' />
      
      
      <!-- Flash Fallback. Use any flash video player here. Make sure to keep the vjs-flash-fallback class. -->
      <object class="vjs-flash-fallback" width="500" height="281" type="application/x-shockwave-flash"
        data="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf">
        <param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.1.swf" />
        <param name="allowfullscreen" value="true" />
        <param name="flashvars" value='config={"playlist":["http://video-js.zencoder.com/oceans-clip.png", {"url": "http://kohlberger.net/mov/HumanNatureDocumentationPreview.mp4" ,"autoPlay":false ,"autoBuffering":true }]}' />
              <!-- Image Fallback -->
      <img src="http://kohlberger.net/wp-content/files/nica.jpg" width="500" height="281" alt="Poster Image" title="No video playback capabilities." />
      </object>
    </video>
    <!-- Download links provided for devices that can't play video in the browser. -->
    <p class="vjs-no-video"><strong>Download Video:</strong>
      <a href="http://kohlberger.net/mov/HumanNatureDocumentationPreview.mp4">MP4</a>
      
      
      <br>
      <!-- Support VideoJS by keeping this link. -->
      <a href="http://videojs.com">HTML5 Video Player</a> by <a href="http://videojs.com">VideoJS</a>
    </p>
  </div>
  <!-- End VideoJS -->

<h3>Shots</h3>

<a href='http://kohlberger.net/work/human-nature/attachment/humannature-2' title='humannature'><img width="700" height="530" src="http://kohlberger.net/wp-content/files/humannature-700x530.jpg" class="attachment-gallery" alt="humannature" title="humannature" /></a>
<a href='http://kohlberger.net/work/human-nature/attachment/humannature2' title='humannature2'><img width="700" height="477" src="http://kohlberger.net/wp-content/files/humannature2-700x477.jpg" class="attachment-gallery" alt="humannature2" title="humannature2" /></a>
<a href='http://kohlberger.net/work/human-nature/attachment/humannature3' title='humannature3'><img width="691" height="371" src="http://kohlberger.net/wp-content/files/humannature3.jpg" class="attachment-gallery" alt="humannature3" title="humannature3" /></a>
<a href='http://kohlberger.net/work/human-nature/attachment/nica' title='nica'><img width="700" height="393" src="http://kohlberger.net/wp-content/files/nica-700x393.jpg" class="attachment-gallery" alt="nica" title="nica" /></a>

]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/human-nature/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://kohlberger.net/mov/HumanNatureDocumentationPreview.mp4" length="21851447" type="video/mp4" />
		</item>
		<item>
		<title>humannature</title>
		<link>http://kohlberger.net/work/humannature</link>
		<comments>http://kohlberger.net/work/humannature#comments</comments>
		<pubDate>Sat, 05 Sep 2009 01:24:55 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=44</guid>
		<description><![CDATA[Designed and animated realtime generated Visuals for the Ars Electronica 2009 Festival Award Ceremony]]></description>
			<content:encoded><![CDATA[<p>Designed and animated <a href="http://kohlberger.net/work/human-nature">realtime generated Visuals</a> for the <a href="http://www.aec.at/humannature/en/">Ars Electronica 2009 Festival</a> Award Ceremony</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/humannature/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>glitch</title>
		<link>http://kohlberger.net/work/glitch</link>
		<comments>http://kohlberger.net/work/glitch#comments</comments>
		<pubDate>Tue, 01 Sep 2009 20:40:28 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=148</guid>
		<description><![CDATA[One of my prints from the «ohne autor» series has been published in the book glitch – designing imperfection]]></description>
			<content:encoded><![CDATA[<p>One of my prints from the <a href="http://kohlberger.net/ohne-autor">«ohne autor» series</a> has been published in the book <a href="http://www.designingimperfection.com/">glitch – designing imperfection</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/glitch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>filmriss redesign</title>
		<link>http://kohlberger.net/work/filmrissat-redesign</link>
		<comments>http://kohlberger.net/work/filmrissat-redesign#comments</comments>
		<pubDate>Tue, 19 May 2009 16:30:23 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/filmrissat-redesign</guid>
		<description><![CDATA[redesigned filmriss.at]]></description>
			<content:encoded><![CDATA[<p>redesigned <a href="http://filmriss.at">filmriss.at</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/filmrissat-redesign/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PAN AM SCAN at the Electronic Church</title>
		<link>http://kohlberger.net/work/pan-am-scan-at-the-electronic-church</link>
		<comments>http://kohlberger.net/work/pan-am-scan-at-the-electronic-church#comments</comments>
		<pubDate>Fri, 17 Apr 2009 15:45:35 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/pan-am-scan-at-the-electronic-church</guid>
		<description><![CDATA[performed with PAN AM SCAN at the Electronic Church in Berlin]]></description>
			<content:encoded><![CDATA[<p>performed with <a href="http://vimeo.com/4188883">PAN AM SCAN at the Electronic Church</a> in Berlin</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/pan-am-scan-at-the-electronic-church/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>screen savers</title>
		<link>http://kohlberger.net/work/screen-savers</link>
		<comments>http://kohlberger.net/work/screen-savers#comments</comments>
		<pubDate>Mon, 02 Feb 2009 16:28:39 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/screen-savers-post</guid>
		<description><![CDATA[Visual Design and Implementation of Screen Savers, a work by Bjørn Melhus]]></description>
			<content:encoded><![CDATA[<p>Visual Design and Implementation of <a href="http://kohlberger.net/work/screen-savers">Screen Savers</a>, a work by Bjørn Melhus</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/screen-savers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sala Agua</title>
		<link>http://kohlberger.net/work/sala-agua</link>
		<comments>http://kohlberger.net/work/sala-agua#comments</comments>
		<pubDate>Fri, 13 Jun 2008 00:21:36 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/sala-agua</guid>
		<description><![CDATA[Interaction, Visual Design and Programming for «Sala Agua», the Acciona Pavillon at EXPO 08/ Zaragoza/ Spain]]></description>
			<content:encoded><![CDATA[<p>Interaction, Visual Design and Programming for <a href="http://kohlberger.net/work/sala-agua">«Sala Agua»</a>, the Acciona Pavillon at EXPO 08/ Zaragoza/ Spain</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/sala-agua/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Genetic Sequence Flipper</title>
		<link>http://kohlberger.net/work/genetic-sequence-flipper</link>
		<comments>http://kohlberger.net/work/genetic-sequence-flipper#comments</comments>
		<pubDate>Tue, 13 May 2008 00:13:45 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/genetic-sequence-flipper</guid>
		<description><![CDATA[Screen Design &#038; Implementation of the Software for the «Genetic Sequence Flipper» commissioned by ArchiMeDes and exhibited at Odysseum Köln]]></description>
			<content:encoded><![CDATA[<p>Screen Design &#038; Implementation of the Software for the <a href="http://kohlberger.net/genflip/">«Genetic Sequence Flipper»</a> commissioned by <a href="http://www.archi-me-des.de/">ArchiMeDes</a> and exhibited at <a href="http://www.odysseum.de">Odysseum Köln</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/genetic-sequence-flipper/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>film:riss 08</title>
		<link>http://kohlberger.net/work/filmriss-08</link>
		<comments>http://kohlberger.net/work/filmriss-08#comments</comments>
		<pubDate>Sat, 12 Apr 2008 17:15:40 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/filmriss-08</guid>
		<description><![CDATA[updated the film:riss 08 website]]></description>
			<content:encoded><![CDATA[<p>updated the <a href="http://www.filmriss.at/08">film:riss 08</a> website</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/filmriss-08/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>madeby.at</title>
		<link>http://kohlberger.net/work/madebyat</link>
		<comments>http://kohlberger.net/work/madebyat#comments</comments>
		<pubDate>Sun, 30 Sep 2007 19:37:44 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/madebyat</guid>
		<description><![CDATA[created the website madeby.at for Tanja Lattner, a textile designer from Linz]]></description>
			<content:encoded><![CDATA[<p>created the website <a href="http://madeby.at">madeby.at</a> for Tanja Lattner, a textile designer from Linz</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/madebyat/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>completed studies</title>
		<link>http://kohlberger.net/work/kalkulierte-abstraktion</link>
		<comments>http://kohlberger.net/work/kalkulierte-abstraktion#comments</comments>
		<pubDate>Mon, 09 Jul 2007 15:16:34 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/completed-studies</guid>
		<description><![CDATA[completed my study at the]]></description>
			<content:encoded><![CDATA[<p>completed my study at the <a href=http://www.fh-salzburg.ac.at/master/medien-design/multimediaart/">University of Applied Sciences Salzburg/ MultiMediaArt</a>. passed the <a href="http://kohlberger.net/work/kalkulierte-abstraktion">diploma</a> exam with distinction.</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/kalkulierte-abstraktion/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ohne Autor</title>
		<link>http://kohlberger.net/work/ohne-autor</link>
		<comments>http://kohlberger.net/work/ohne-autor#comments</comments>
		<pubDate>Fri, 27 Apr 2007 12:32:24 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=340</guid>
		<description><![CDATA[<img src="http://kohlberger.net/wp-content/files/glitch.jpg" alt="" width="220" height="223" />Wie damit umgehen, wenn man in der Kunst keine Kunst mehr findet, wenn Dinge im Kunstraum stattfinden, die dort vermeintlich nicht hingehören, wenn Kunst in außerkünstlerischen Feldern agiert und als solche kaum mehr erkennbar ist? Der Ansatz den Kunstraum zu öffnen und den Kunstbegriff in den sozialen, gesellschaftlichen und politischen Alltag auszudehnen, fordert die Kunstkritik [...]]]></description>
			<content:encoded><![CDATA[<img src="http://kohlberger.net/wp-content/files/glitch.jpg" alt="" width="220" height="223" />
<a href='http://kohlberger.net/work/ohne-autor/attachment/newglitch' title='newglitch'><img width="700" height="447" src="http://kohlberger.net/wp-content/files/newglitch-700x447.jpg" class="attachment-gallery" alt="newglitch" title="newglitch" /></a>
<a href='http://kohlberger.net/work/ohne-autor/attachment/patterns' title='patterns'><img width="700" height="510" src="http://kohlberger.net/wp-content/files/patterns-700x510.jpg" class="attachment-gallery" alt="patterns" title="patterns" /></a>
<a href='http://kohlberger.net/work/ohne-autor/attachment/richter' title='richter'><img width="564" height="700" src="http://kohlberger.net/wp-content/files/richter-564x700.jpg" class="attachment-gallery" alt="richter" title="richter" /></a>
<a href='http://kohlberger.net/work/ohne-autor/attachment/whataday' title='whataday'><img width="700" height="700" src="http://kohlberger.net/wp-content/files/whataday-700x700.jpg" class="attachment-gallery" alt="whataday" title="whataday" /></a>

<p>Wie damit umgehen, wenn man in der Kunst keine Kunst mehr findet, wenn Dinge im Kunstraum stattfinden, die dort vermeintlich nicht hingehören, wenn Kunst in außerkünstlerischen Feldern agiert und als solche kaum mehr erkennbar ist?  Der Ansatz den Kunstraum zu öffnen und den Kunstbegriff in den sozialen, gesellschaftlichen und politischen Alltag auszudehnen, fordert die Kunstkritik und das Publikum, das diese Projekte eigentlich doch erreichen wollen, nach wie vor heraus. Die Diskrepanz zwischen Anspruch, Vermittlung und Rezeption sind das Motiv dieses Projekts und seiner Veranstaltungen. Zentral stehen die Veranstaltungen und mit ihnen die Diskussionen mit Künstlern, Kunsttheoretikern und -wissenschaftlern und dem Publikum, das zu den Veranstaltungen eingeladen ist.
</p>
<p>In „wege aus der kunst“ geht es um die Bedingungen der Vermittlung, um Definitions- und Kommunikationsfragen – was ist eigentlich (noch) Kunst, was ist Kunstwahrnehmung. Wie gehen Kunstinstitutionen mit künstlerischen Projekten um, die sich jenseits eines gängigen Kunstbegriffs bewegen. Welche Rolle spielt die Kunstkritik? Wo befindet sich das Publikum?
</p>
<p>Als „Hintergrundfolie der Ausstellung sind im lothringer13/laden Arbeiten aus Rainer Kohlbergers Projekt „ohne autor“ zu sehen. „ohne autor“ ist eine Sammlung von Fehldrucken von Apparaten und Maschinen, die ihre eigentliche Funktion nicht erfüllen und nun für den Kunstraum aufbereitet sind. Als Erzeugnisse einer selbst generierten, unkünstlerischen Ästhetik stehen sie in paradoxer Entsprechung zu künstlerischen Strategien, die tradierte Vorstellungen unterlaufen, und damit sich selbst und ihren Betrachter zur Neupositionierung anhalten. Als dem entgegen bewusst mit künstlerischen Intentionen produzierte Positionen sind in „wege aus der kunst“ Videos von Ulf Aminde, Claudia Djabbari, Lisa Erb, Valio Tchekov und Georg Winter zu sehen.<br />
Alle ihre Arbeiten repräsentieren oder dokumentieren künstlerische Projekte, die nicht primär Kunst sein wollen und doch Strategien der Kunst anwenden. </p>
<p>Projektleitung: Diana Ebster </p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/ohne-autor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ohne autor im laden</title>
		<link>http://kohlberger.net/work/ohne-autor-im-laden</link>
		<comments>http://kohlberger.net/work/ohne-autor-im-laden#comments</comments>
		<pubDate>Sat, 07 Apr 2007 18:17:15 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/http:/kohlberger.net/ohne-autor-im-laden</guid>
		<description><![CDATA[Ohne Autor exhibited at lothringer13/ laden in munich]]></description>
			<content:encoded><![CDATA[<p><a href="http://kohlberger.net/ohne-autor/">Ohne Autor</a> exhibited at <a href="http://laden.lothringer13.de/">lothringer13/ laden</a> in munich</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/ohne-autor-im-laden/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>film:riss 07</title>
		<link>http://kohlberger.net/work/filmriss-07</link>
		<comments>http://kohlberger.net/work/filmriss-07#comments</comments>
		<pubDate>Thu, 15 Mar 2007 20:02:39 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/http:/kohlberger.net/filmriss-07</guid>
		<description><![CDATA[updated the website for film:riss 07]]></description>
			<content:encoded><![CDATA[<p>updated the website for <a href="http://www.filmriss.at/07">film:riss 07</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/filmriss-07/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>piano con moto</title>
		<link>http://kohlberger.net/work/piano-con-moto</link>
		<comments>http://kohlberger.net/work/piano-con-moto#comments</comments>
		<pubDate>Tue, 30 Jan 2007 14:11:17 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/http:/kohlberger.net/piano-con-moto</guid>
		<description><![CDATA[PIANO CON MOTO at Tesla, Berlin]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rohrmoser.tv/proxy/piano_moto.html">PIANO CON MOTO</a> at <a href="http://www.tesla-berlin.de/">Tesla</a>, Berlin</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/piano-con-moto/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>flux</title>
		<link>http://kohlberger.net/work/flux</link>
		<comments>http://kohlberger.net/work/flux#comments</comments>
		<pubDate>Tue, 19 Dec 2006 23:21:45 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=25</guid>
		<description><![CDATA[did visuals for these noisy guys at the fluc in vienna]]></description>
			<content:encoded><![CDATA[<p>did visuals for <a href="http://www.wald-entertainment.com/space/?p=55">these noisy guys</a> at the fluc in vienna</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/flux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pd workshop</title>
		<link>http://kohlberger.net/work/pd-workshop</link>
		<comments>http://kohlberger.net/work/pd-workshop#comments</comments>
		<pubDate>Sat, 02 Dec 2006 22:39:38 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=24</guid>
		<description><![CDATA[gave a Pd workshop at the University of Applied Sciences/ Multi Media Art in Salzburg]]></description>
			<content:encoded><![CDATA[<p>gave a <a href="http://www.puredata.info">Pd</a> workshop at the University of Applied Sciences/ <a href="http://www.fh-sbg.ac.at/mma___MultiMediaArt.32.0.html">Multi Media Art</a> in Salzburg</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/pd-workshop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gen</title>
		<link>http://kohlberger.net/work/gen</link>
		<comments>http://kohlberger.net/work/gen#comments</comments>
		<pubDate>Sat, 18 Nov 2006 17:02:09 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=6</guid>
		<description><![CDATA[curated gen.related together with Judith at the Galerie 5020 in Salzburg]]></description>
			<content:encoded><![CDATA[<p>curated <a href="http://kohlberger.net/genrelated.net/">gen.related</a> together with <a href="http://www.judithholzer.net">Judith</a> at the <a href="http://www.galerie5020.at">Galerie 5020</a> in Salzburg</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/gen/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>offscreen executive</title>
		<link>http://kohlberger.net/work/offscreen-executive</link>
		<comments>http://kohlberger.net/work/offscreen-executive#comments</comments>
		<pubDate>Sat, 30 Sep 2006 20:26:22 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/http:/kohlberger.net/offscreen-executive</guid>
		<description><![CDATA[executive director at offscreen from October 2005 to September 2006]]></description>
			<content:encoded><![CDATA[<p>executive director at <a href="http://offscren.at">offscreen</a> from October 2005 to September 2006</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/offscreen-executive/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tta</title>
		<link>http://kohlberger.net/work/tta-2</link>
		<comments>http://kohlberger.net/work/tta-2#comments</comments>
		<pubDate>Fri, 01 Sep 2006 18:09:39 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=20</guid>
		<description><![CDATA[jury member of EUROPRIX Top Talent Award 2006]]></description>
			<content:encoded><![CDATA[<p>jury member of <a href="http://www.toptalent.europrix.org">EUROPRIX Top Talent Award</a> 2006</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/tta-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>citysound</title>
		<link>http://kohlberger.net/work/citysound</link>
		<comments>http://kohlberger.net/work/citysound#comments</comments>
		<pubDate>Sat, 19 Aug 2006 16:19:05 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=21</guid>
		<description><![CDATA[designed + programmed CitySound]]></description>
			<content:encoded><![CDATA[<p>designed + programmed <a href="http://www.citysound.at">CitySound</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/citysound/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>praktikum</title>
		<link>http://kohlberger.net/work/praktikum</link>
		<comments>http://kohlberger.net/work/praktikum#comments</comments>
		<pubDate>Tue, 01 Aug 2006 18:09:10 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=19</guid>
		<description><![CDATA[doing my internship for Ulf Langheinrich (Granular Synthesis) in Munich and Roma]]></description>
			<content:encoded><![CDATA[<p>doing my internship for <a href="http://www.epidemic.net/geogb/art/gs/ulf/indexgb.html">Ulf Langheinrich</a> (Granular Synthesis) in Munich and Roma</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/praktikum/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>buzz buzz</title>
		<link>http://kohlberger.net/work/buzz-buzz</link>
		<comments>http://kohlberger.net/work/buzz-buzz#comments</comments>
		<pubDate>Sat, 01 Jul 2006 18:08:52 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=18</guid>
		<description><![CDATA[did the technical implementation for buzz-buzz, a work by lucas horvath exhibited at the salzburger kunstverein]]></description>
			<content:encoded><![CDATA[<p>did the technical implementation for <a href="http://blowup.kohlberger.net/buzz-buzz/">buzz-buzz</a>, a work by lucas horvath <a href="http://www.salzburger-kunstverein.at/av/default.asp?detail=264&#038;typ=jp&#038;sel_id=1&#038;lang=1">exhibited at the salzburger kunstverein</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/buzz-buzz/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kreisen berlin</title>
		<link>http://kohlberger.net/work/kreisen-berlin</link>
		<comments>http://kohlberger.net/work/kreisen-berlin#comments</comments>
		<pubDate>Thu, 01 Jun 2006 18:08:11 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=16</guid>
		<description><![CDATA[presented our installation kreisen at the inventionen festival, Berlin]]></description>
			<content:encoded><![CDATA[<p>presented our installation <a href="http://www.rohrmoser.tv/kreisen-barc.htm">kreisen</a> at the <a href="http://www.kgw.tu-berlin.de/inventionen/index_06.html">inventionen festival</a>, Berlin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/kreisen-berlin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>boheme-electronique</title>
		<link>http://kohlberger.net/work/boheme-electronique</link>
		<comments>http://kohlberger.net/work/boheme-electronique#comments</comments>
		<pubDate>Mon, 01 May 2006 18:07:11 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=14</guid>
		<description><![CDATA[created the video installation Boheme electronique, part of the exhibition for Ingeborg Bachmann&#8217;s 80th birthday in Vienna]]></description>
			<content:encoded><![CDATA[<p>created the video installation <a href="http://blowup.kohlberger.net/boheme-electronique/">Boheme electronique</a>, part of the exhibition for Ingeborg Bachmann&#8217;s 80th birthday in Vienna</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/boheme-electronique/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>instant36 #2</title>
		<link>http://kohlberger.net/work/instant36-2</link>
		<comments>http://kohlberger.net/work/instant36-2#comments</comments>
		<pubDate>Tue, 04 Apr 2006 18:06:47 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=13</guid>
		<description><![CDATA[organized instant36 for the second time]]></description>
			<content:encoded><![CDATA[<p>organized <a href="http://instant36.at">instant36</a> for the second time</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/instant36-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ccrma</title>
		<link>http://kohlberger.net/work/ccrma</link>
		<comments>http://kohlberger.net/work/ccrma#comments</comments>
		<pubDate>Mon, 03 Apr 2006 18:06:21 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=12</guid>
		<description><![CDATA[presented our installation kreisen at the newstage festival at the CCRMA, stanford university]]></description>
			<content:encoded><![CDATA[<p>presented our installation <a href="http://www.rohrmoser.tv/kreisen-barc.htm">kreisen</a> at the newstage festival at the <a href="http://ccrma.stanford.edu/">CCRMA</a>, stanford university</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/ccrma/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>filmriss site 06</title>
		<link>http://kohlberger.net/work/filmriss-site-06</link>
		<comments>http://kohlberger.net/work/filmriss-site-06#comments</comments>
		<pubDate>Sat, 01 Apr 2006 18:05:18 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=10</guid>
		<description><![CDATA[designed a new website for film:riss 06]]></description>
			<content:encoded><![CDATA[<p>designed a new website for <a href="http://www.filmriss.at">film:riss 06</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/filmriss-site-06/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title />
		<link>http://kohlberger.net/work/8</link>
		<comments>http://kohlberger.net/work/8#comments</comments>
		<pubDate>Wed, 01 Feb 2006 18:02:45 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=8</guid>
		<description><![CDATA[created an animated entry screen named pxl bastard for subnet]]></description>
			<content:encoded><![CDATA[<p>created an animated entry screen named <a href="http://blowup.kohlberger.net/a-little-bastard/">pxl bastard</a> for <a href="http://subnet.at">subnet</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/8/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vagabonds</title>
		<link>http://kohlberger.net/work/vagabonds</link>
		<comments>http://kohlberger.net/work/vagabonds#comments</comments>
		<pubDate>Fri, 20 May 2005 20:42:52 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://kohlberger.net/?p=29</guid>
		<description><![CDATA[Screening of our little road movie Vagabonds on US Soil at Crossing Europe 2005]]></description>
			<content:encoded><![CDATA[<p>Screening of our little road movie Vagabonds on US Soil at <a href="http://www.crossingeurope.at/index.php?id=38&#038;movie=225&#038;L=0">Crossing Europe</a> 2005</p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/vagabonds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>old site</title>
		<link>http://kohlberger.net/work/old-site</link>
		<comments>http://kohlberger.net/work/old-site#comments</comments>
		<pubDate>Sun, 18 Jan 2004 23:00:43 +0000</pubDate>
		<dc:creator>rainer</dc:creator>
				<category><![CDATA[txt]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://192.168.2.20/~rainer/kNET/?p=23</guid>
		<description><![CDATA[Now can I get an encore, do you want more? Then visit my old portfolio site.]]></description>
			<content:encoded><![CDATA[<p>Now can I get an encore, do you want more? Then visit <a href="http://kohlberger.net/index-portfolio.php">my old portfolio site.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kohlberger.net/work/old-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

