<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>The Art of Nathan Selikoff &#187; Strange Attractors</title>
	<atom:link href="http://nathanselikoff.com/category/strange-attractors/feed" rel="self" type="application/rss+xml" />
	<link>http://nathanselikoff.com</link>
	<description>Just another Creative Outsiders weblog</description>
	<lastBuildDate>Thu, 02 Sep 2010 14:06:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Helios iPhone App Icon Spotted in the Santa Monica Apple Store</title>
		<link>http://nathanselikoff.com/586/strange-attractors/helios-iphone-app-icon-spotted-in-the-santa-monica-apple-store</link>
		<comments>http://nathanselikoff.com/586/strange-attractors/helios-iphone-app-icon-spotted-in-the-santa-monica-apple-store#comments</comments>
		<pubDate>Sat, 28 Aug 2010 10:33:42 +0000</pubDate>
		<dc:creator>nathan</dc:creator>
				<category><![CDATA[Strange Attractors]]></category>

		<guid isPermaLink="false">http://nathan.creativeoutsiders.com/?p=586</guid>
		<description><![CDATA[This is a bit old (January of this year) but the icon for the Helios iPhone app is pictured here (I licensed  to the developers). Exciting!]]></description>
			<content:encoded><![CDATA[<p>This is a bit old (January of this year) but the icon for the <a href="http://chemicalwedding.tv/helios.html">Helios iPhone app</a> is pictured here (I licensed <a href="http://nathanselikoff.com/247/strange-attractors/helios">my artwork, <em>Helios</em></a> to the developers). Exciting!</p>
<p><img class="alignnone size-large wp-image-587" title="Helios iPhone App Icon in the Santa Monica Apple Store" src="http://nathanselikoff.com/files/2010/08/helios-iphone-app-apple-store-600x450.jpg" alt="Helios iPhone App Icon in the Santa Monica Apple Store" width="600" height="450" /></p>
]]></content:encoded>
			<wfw:commentRss>http://nathanselikoff.com/586/strange-attractors/helios-iphone-app-icon-spotted-in-the-santa-monica-apple-store/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chaotic Particles using OpenCL</title>
		<link>http://nathanselikoff.com/536/tech-notes/chaotic-particles-using-opencl</link>
		<comments>http://nathanselikoff.com/536/tech-notes/chaotic-particles-using-opencl#comments</comments>
		<pubDate>Thu, 15 Jul 2010 02:38:25 +0000</pubDate>
		<dc:creator>nathan</dc:creator>
				<category><![CDATA[Strange Attractors]]></category>
		<category><![CDATA[Tech Notes]]></category>

		<guid isPermaLink="false">http://nathan.creativeoutsiders.com/?p=536</guid>
		<description><![CDATA[I like to visualize strange attractors in real time, and OpenCL is a promising technology to take this to the next level, as it can utilize all processing cores available on a system, be they GPU, CPU, or a combination. As long as the algorithm can be made massively parallel.]]></description>
			<content:encoded><![CDATA[<p>First, a big thank you to Memo Akten for writing an OpenCL C++ wrapper for OpenFrameworks and providing a great million particle demo (see http://vimeo.com/7332496). You are looking at one of my modifications, where the mouse position becomes input to two parameters of a two dimensional chaotic dynamical system (a strange attractor). A serendipitous coding accident created some really intriguing effects.</p>
<object width='620' height='348'><param name='allowfullscreen' value='true' /><param name='allowscriptaccess' value='always' /><param name='movie' value='http://vimeo.com/moogaloop.swf?clip_id=13349189&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1' /><embed src='http://vimeo.com/moogaloop.swf?clip_id=13349189&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1' type='application/x-shockwave-flash' allowfullscreen='true' allowscriptaccess='always' width='620' height='348'></embed></object><p><a href='http://vimeo.com/13349189'>View on Vimeo</a>.</p>
<p>I like to <a href="http://nathanselikoff.com/251/strange-attractors/aesthetic-exploration">visualize strange attractors in real time</a>, and OpenCL is a promising technology to take this to the next level, as it can utilize all processing cores available on a system, be they GPU, CPU, or a combination. As long as the algorithm can be made massively parallel. This is not too hard with the equations I&#8217;m working with&#8230; they are simple iterated functions &#8211; pop in an x and y coordinate and get a new x and y coordinate. Repeat this many times, and the strange attractor appears. Although most people are used to having one thread perform this iteration, there&#8217;s really no reason that a million threads can be performing it. As long as the starting positions of the particles are randomized, you&#8217;ll still get the strange attractor.</p>
<p>Almost. There’s an interesting numerical side-effect&#8230; when the attractor goes into a less chaotic orbit, and then comes back out to a more chaotic orbit, everything is “sparkly”; i.e. the points in the attractor are not well distributed. Because they all started from a fixed set of points (not theoretically but in practice, as they are floats), they zip around to a fixed set of points in the attractor. Or something like that.</p>
<p>Anyway, I attempted to overcome that with some added randomness. In the process, I have come across two really cool “accidents”, of which this is one (I love accidents in code). Basically, I’m adding a bit of random jitter to each particle. But the random value range I first tried was big enough to create this amazing motion. WOW.</p>
<p><a href="http://vimeo.com/7332496">Memo’s demo on Vimeo</a><br />
<a href="http://memo.tv/opencl_in_openframeworks_example_1_milion_particles"> Memo’s post on his website with more info</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nathanselikoff.com/536/tech-notes/chaotic-particles-using-opencl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aesthetic Exploration</title>
		<link>http://nathanselikoff.com/251/strange-attractors/aesthetic-exploration</link>
		<comments>http://nathanselikoff.com/251/strange-attractors/aesthetic-exploration#comments</comments>
		<pubDate>Mon, 29 Mar 2010 01:40:35 +0000</pubDate>
		<dc:creator>nathan</dc:creator>
				<category><![CDATA[Strange Attractors]]></category>

		<guid isPermaLink="false">http://nathan.creativeoutsiders.com/?p=251</guid>
		<description><![CDATA[Æxploration (Aesthetic Exploration) represents a new direction in my artwork - a focus on interactive algorithmic motion as performance and installation. What once was my internal artist's tool has become externalized - the beauty and the mess exposed for all to see. This is experimental, in-progress work, as I revamp my codebase once again and seek opportunities to perform and collaborate using its generative visuals.]]></description>
			<content:encoded><![CDATA[<div id="attachment_400" class="wp-caption alignnone" style="width: 610px"><a href="http://nathanselikoff.com/files/2010/03/selikoff-aesthetic-exploration-screen-capture.jpg"><img class="size-full wp-image-400" title="Aesthetic Exploration" src="http://nathanselikoff.com/files/2010/03/selikoff-aesthetic-exploration-screen-capture.jpg" alt="Aesthetic Exploration by Nathan Selikoff" width="600" height="463" /></a><p class="wp-caption-text">Aesthetic Exploration by Nathan Selikoff. Real-time interactive video projection (screen capture).</p></div>
<object width='620' height='348'><param name='allowfullscreen' value='true' /><param name='allowscriptaccess' value='always' /><param name='movie' value='http://vimeo.com/moogaloop.swf?clip_id=4405096&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1' /><embed src='http://vimeo.com/moogaloop.swf?clip_id=4405096&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1' type='application/x-shockwave-flash' allowfullscreen='true' allowscriptaccess='always' width='620' height='348'></embed></object><p><a href='http://vimeo.com/4405096'>View on Vimeo</a>.</p>
<p>Æxploration (Aesthetic Exploration) represents a new direction in my  artwork &#8211; a focus on interactive algorithmic motion as performance and  installation. What once was my internal artist&#8217;s tool has become externalized &#8211; the beauty and the mess exposed for all to see. This is  experimental, in-progress work, as I revamp my codebase once again and  seek opportunities to perform and collaborate using its generative  visuals.</p>
<p>Until recently, my goal has been to generate individual, high  quality, still images, and the interactive software I have developed has  been geared towards that purpose &#8211; an artist&#8217;s tool that is a byproduct  of the process, viewable only by myself. But in October of 2008, I  participated in Create Chaos &#8211; a local conference for creative  professionals &#8211; as a performer, using my software to create new artwork  live. The response was very positive, and opened up a last minute  performance opportunity with <a href="http://www.mgfest.com/">MGFest</a>.</p>
<p>In the course of a single day I made some changes to my code  that completely revolutionized what I was seeing on the screen while  using my software &#8211; suddenly, I was thinking about and playing with the  principles of motion graphics design and time-based media. I also  enjoyed and benefitted from the process of collaboration, both in the  performances themselves and in discussions surrounding them. Based  heavily on this experience, I have continued to develop my software in  this new direction and look forward to seeing where this exploration  takes me.</p>
]]></content:encoded>
			<wfw:commentRss>http://nathanselikoff.com/251/strange-attractors/aesthetic-exploration/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chaotic Attractors from Create Chaos 2008</title>
		<link>http://nathanselikoff.com/260/strange-attractors/chaotic-attractors-from-create-chaos-2008</link>
		<comments>http://nathanselikoff.com/260/strange-attractors/chaotic-attractors-from-create-chaos-2008#comments</comments>
		<pubDate>Sun, 28 Mar 2010 01:59:52 +0000</pubDate>
		<dc:creator>nathan</dc:creator>
				<category><![CDATA[Strange Attractors]]></category>

		<guid isPermaLink="false">http://nathan.creativeoutsiders.com/?p=260</guid>
		<description><![CDATA[Two new attractors from a live art session at Create Chaos 2008 in Orlando.]]></description>
			<content:encoded><![CDATA[<p>I have enhanced a few of the images I created live at <a href="http://www.flickr.com/photos/createchaos2008/">this</a> <a href="http://mgfest.com/08orlando/index.php">event</a>,  producing two new pieces, <em>Apparition</em> and <em>Sign Language</em>.</p>
<div id="attachment_261" class="wp-caption alignnone" style="width: 610px"><a href="http://nathanselikoff.com/files/2010/03/apparition-med.jpg"><img class="size-full wp-image-261" title="Apparition" src="http://nathanselikoff.com/files/2010/03/apparition-med.jpg" alt="Apparition by Nathan Selikoff" width="600" height="600" /></a><p class="wp-caption-text">Apparition by Nathan Selikoff. 2009. Dimensions variable. Open edition print.</p></div>
<div id="attachment_258" class="wp-caption alignnone" style="width: 610px"><a href="http://nathanselikoff.com/files/2010/03/sign-language-med.jpg"><img class="size-full wp-image-258" title="Sign Language" src="http://nathanselikoff.com/files/2010/03/sign-language-med.jpg" alt="Sign Language by Nathan Selikoff" width="600" height="400" /></a><p class="wp-caption-text">Sign Language by Nathan Selikoff. 2009. Dimensions variable. Open edition print.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://nathanselikoff.com/260/strange-attractors/chaotic-attractors-from-create-chaos-2008/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Helios</title>
		<link>http://nathanselikoff.com/247/strange-attractors/helios</link>
		<comments>http://nathanselikoff.com/247/strange-attractors/helios#comments</comments>
		<pubDate>Sun, 28 Mar 2010 01:36:08 +0000</pubDate>
		<dc:creator>nathan</dc:creator>
				<category><![CDATA[Strange Attractors]]></category>

		<guid isPermaLink="false">http://nathan.creativeoutsiders.com/?p=247</guid>
		<description><![CDATA[Helios was the sun god in Greek mythology, and a perfect name for this artwork, which came from my life-long fascination with cosmology. Specifically, I have always loved x-ray solar photographs and their coloration and forms, which served as reference and inspiration for this piece.]]></description>
			<content:encoded><![CDATA[<p><em>Helios</em> was the sun god in Greek mythology, and a perfect name for this artwork, which came from my life-long fascination with cosmology. Specifically, I have always loved <a href="http://umbra.nascom.nasa.gov/images/latest.html">x-ray solar photographs</a> and their coloration and forms, which served as reference and inspiration for this piece.</p>
<div id="attachment_248" class="wp-caption alignnone" style="width: 610px"><a href="http://nathanselikoff.com/files/2010/03/helios-var-1198505515-med.jpg"><img class="size-large wp-image-248" title="Helios" src="http://nathanselikoff.com/files/2010/03/helios-var-1198505515-med-600x600.jpg" alt="Helios by Nathan Selikoff" width="600" height="600" /></a><p class="wp-caption-text">Helios by Nathan Selikoff. 2007. Dimensions variable. Open edition print.</p></div>
<p>Helios has become one of my most popular images! If you would like a desktop wallpaper version of this artwork, just <a href="http://eepurl.com/i7Pt">sign up for my email newsletter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://nathanselikoff.com/247/strange-attractors/helios/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
