<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>buildtestrepeat</title>
	<atom:link href="http://buildtestrepeat.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://buildtestrepeat.wordpress.com</link>
	<description>Interaction Design at CIID</description>
	<lastBuildDate>Thu, 19 Jan 2012 05:35:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='buildtestrepeat.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>buildtestrepeat</title>
		<link>http://buildtestrepeat.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://buildtestrepeat.wordpress.com/osd.xml" title="buildtestrepeat" />
	<atom:link rel='hub' href='http://buildtestrepeat.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Visual Ambi-Presence, Post #3: Constants, Variables and Functions for the SearchLight</title>
		<link>http://buildtestrepeat.wordpress.com/2012/01/19/visual-ambi-presence-post-3-constants-variables-and-functions-for-the-searchlight/</link>
		<comments>http://buildtestrepeat.wordpress.com/2012/01/19/visual-ambi-presence-post-3-constants-variables-and-functions-for-the-searchlight/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 05:34:16 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/?p=187</guid>
		<description><![CDATA[This post explores the code that will go into the SearchLight&#8217;s Arduino so that it knows what angles to adjust the servo motors holding the light. Take a look! Constants roomXdim = 30     // x dimension of room &#8230; <a href="http://buildtestrepeat.wordpress.com/2012/01/19/visual-ambi-presence-post-3-constants-variables-and-functions-for-the-searchlight/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=187&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This post explores the code that will go into the SearchLight&#8217;s Arduino so that it knows what angles to adjust the servo motors holding the light. Take a look!</p>
<p><strong>Constants</strong></p>
<p><code>roomXdim = 30     // x dimension of room</code><br />
<code>roomYdim = 30     // y dimension of room</code><br />
<code>roomZdim = 10     // height of room<span id="more-187"></span></code><br />
<code>lightBoxZ = 0.8     // displacement of the SearchLight from the ceiling</code><br />
<code>zLight = roomZdim - lightBoxZ     // height of SearchLight from the floor</code><br />
<code>xLight = 1     // displacement of SearchLight from room origin in x dimension</code><br />
<code>yLight = 1     // displacement of SearchLight from room origin in y dimension</code></p>
<p><strong>Variables</strong></p>
<p><code>xRef = (computer input)     // person's x location received via computer</code><br />
<code>yRef = (computer input)     // person's y location received via computer</code><br />
<code>xPerson = xRef - xLight     // person's x relation to SearchLight</code><br />
<code>yPerson = xRef - yLight     // person's y relation to SearchLight</code></p>
<p><strong>Functions</strong></p>
<p><code>thetaPitch = atan((yPerson) / (xPerson))     // degree of rotation across x/y</code><br />
<code>thetaTilt = atan(sqrt(sq(xPerson) + sq(yPerson)) / zLight)     // degree of        // rotation across (x,y)/z</code></p>
<p><strong>Diagram</strong></p>
<div id="attachment_188" class="wp-caption alignnone" style="width: 310px"><a href="http://buildtestrepeat.files.wordpress.com/2012/01/diagram-120118.jpg"><img class="size-medium wp-image-188" title="diagram 120118" src="http://buildtestrepeat.files.wordpress.com/2012/01/diagram-120118.jpg?w=300&#038;h=224" alt="" width="300" height="224" /></a><p class="wp-caption-text">Rough diagram explaining code</p></div>
<p><strong>Example</strong></p>
<p>Let&#8217;s say someone was standing at the coordinates (20, 20) from the origin in the given room. What would be the angles at which the SearchLight would pitch and tilt?</p>
<p><code>xRef = 20</code><br />
<code>yRef = 20</code><br />
<code>xPerson = 19</code><br />
<code>yPerson = 19</code><br />
<code>thetaPitch = atan(19 / 19) = .785 </code>(radians, or 45 degrees)<br />
<code>thetaTilt = atan(sqrt(sq(19) + sq(19)) / 9.2) = 1.241 </code>(radians, or 71 degrees)</p>
<p>So according to the math as we&#8217;ve laid it out in the post, the SearchLight would arrive at a position 45 degrees from the origin across the x, y plane and 71 degrees from the origin of the z-axis towards x, y plane.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/187/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/187/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/187/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=187&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2012/01/19/visual-ambi-presence-post-3-constants-variables-and-functions-for-the-searchlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab61ff3204950197b01317165b2b3a89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmbandr</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2012/01/diagram-120118.jpg?w=300" medium="image">
			<media:title type="html">diagram 120118</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual &#8220;Ambi-Presence&#8221;, Post #2: Math is a Blast</title>
		<link>http://buildtestrepeat.wordpress.com/2012/01/06/math/</link>
		<comments>http://buildtestrepeat.wordpress.com/2012/01/06/math/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 04:35:44 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ambi-presence]]></category>
		<category><![CDATA[kinect]]></category>
		<category><![CDATA[math]]></category>
		<category><![CDATA[searchlight]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/?p=174</guid>
		<description><![CDATA[Just for clarity we&#8217;ve documented the equations we&#8217;ll be using for the SearchLight. Check it out! &#8230;you know, if you&#8217;re into that stuff. SearchLight Math (PDF)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=174&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just for clarity we&#8217;ve documented the equations we&#8217;ll be using for the SearchLight. Check it out! &#8230;you know, if you&#8217;re into that stuff.</p>
<p><a href="http://buildtestrepeat.files.wordpress.com/2012/01/searchlight-math-models1.pdf">SearchLight Math</a> (PDF)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/174/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/174/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/174/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=174&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2012/01/06/math/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab61ff3204950197b01317165b2b3a89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmbandr</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual &#8220;Ambi-Presence&#8221;, Post #1: Working with Kinect, Ardunio, Servos, and a Flashlight</title>
		<link>http://buildtestrepeat.wordpress.com/2012/01/03/visual-ambi-presence-post-1-working-with-kinect-ardunio-servos-and-a-flashlight/</link>
		<comments>http://buildtestrepeat.wordpress.com/2012/01/03/visual-ambi-presence-post-1-working-with-kinect-ardunio-servos-and-a-flashlight/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 04:16:36 +0000</pubDate>
		<dc:creator>Will</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ambi-presence]]></category>
		<category><![CDATA[kinect]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[searchlight]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/?p=158</guid>
		<description><![CDATA[Chris has been exploring the concept of Ambi-Presence &#8211; using technology to create an atmosphere of cohabitation &#8211; over the past several months during his studies at CIID. During the project he built a prototype of a tool that helps &#8230; <a href="http://buildtestrepeat.wordpress.com/2012/01/03/visual-ambi-presence-post-1-working-with-kinect-ardunio-servos-and-a-flashlight/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=158&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Chris has been exploring the concept of Ambi-Presence &#8211; using technology to create an atmosphere of cohabitation &#8211; over the past several months during his studies at CIID. During the project he built a prototype of a tool that helps merge together sound in two separate spaces. Several of his past blogposts on BuildTestRepeat have been about the design of that tool.</p>
<p>Thomas and I are now working with Chris to prototype a tool for visualizing the presence of people existing in two separate spaces. As opposed to most popular tools out there used for communicating over long distances in real-time &#8211; tools such as web cameras, basic microphones, texting and instant messaging &#8211; the goal of this tool is to bring people out from behind the glass screens of computers, phones, and TVs and into our own rooms.</p>
<p>The way we&#8217;re doing this is by building a tool that can be mounted on a ceiling, which projects a beam of light onto the place equivalent to where a person exists in some other room either sitting or standing. To demonstrate the concept, we&#8217;ll place a Kinect in room #1 to track the location of a person in that room, and we&#8217;ll place a pan-tilt flashlight mount onto the ceiling  in room #2 to project the location that person.</p>
<p>The pan-tilt flashlight mount has been built over the past couple days with PVC pipe, foam core, servo motors, and an arduino (see below). Thomas just got the arduino to work with the servo motors, so we&#8217;re moving onto the next part of the project &#8211; the Kinect Sensor.</p>
<div id="attachment_159" class="wp-caption aligncenter" style="width: 310px"><a href="http://buildtestrepeat.files.wordpress.com/2012/01/searchlight.jpg"><img class="size-medium wp-image-159" title="searchLight" src="http://buildtestrepeat.files.wordpress.com/2012/01/searchlight.jpg?w=300&#038;h=198" alt="" width="300" height="198" /></a><p class="wp-caption-text">The &quot;SearchLight&quot; &amp; Kinect</p></div>
<p>Using the Kinect Sensor we&#8217;re trying to find a reliable way to track a person&#8217;s position in a room. We&#8217;re using <a href="http://openkinect.org/wiki/Main_Page">OpenKinect</a> - an open source library of code for processing and manipulating data from the Kinect &#8211; to experiment on the possibilities. As great as the OpenKinect project is, no one has developed the skeleton tracker that Microsoft includes with its own SDK for the Kinect, but we&#8217;re exploring other ways to reliably track postion, such as through a facial recognition algorithm. Stay tuned!</p>
<div id="attachment_163" class="wp-caption aligncenter" style="width: 310px"><a href="http://buildtestrepeat.files.wordpress.com/2012/01/kinectmath.jpg"><img class="size-medium wp-image-163" title="KinectMath" src="http://buildtestrepeat.files.wordpress.com/2012/01/kinectmath.jpg?w=300&#038;h=234" alt="" width="300" height="234" /></a><p class="wp-caption-text">Thomas doing math</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=158&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2012/01/03/visual-ambi-presence-post-1-working-with-kinect-ardunio-servos-and-a-flashlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab61ff3204950197b01317165b2b3a89?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dmbandr</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2012/01/searchlight.jpg?w=300" medium="image">
			<media:title type="html">searchLight</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2012/01/kinectmath.jpg?w=300" medium="image">
			<media:title type="html">KinectMath</media:title>
		</media:content>
	</item>
		<item>
		<title>Arduino Surround Sound</title>
		<link>http://buildtestrepeat.wordpress.com/2011/11/08/arduino-surround-sound/</link>
		<comments>http://buildtestrepeat.wordpress.com/2011/11/08/arduino-surround-sound/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 14:08:35 +0000</pubDate>
		<dc:creator>cbierbower</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/?p=149</guid>
		<description><![CDATA[One of the tests I&#8217;m working on is to see the effects of spacial sound in telepresence.  If you could hear someone walking around in real space would it make their presence more substancial?  I&#8217;ve done 4 experiments in this &#8230; <a href="http://buildtestrepeat.wordpress.com/2011/11/08/arduino-surround-sound/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=149&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>One of the tests I&#8217;m working on is to see the effects of spacial sound in telepresence.  If you could hear someone walking around in real space would it make their presence more substancial?  I&#8217;ve done 4 experiments in this area but there doesn&#8217;t seem to be any easy way to combine surround sound with live audio over the internet (unless you want to spend $10,000).  So I&#8217;ve decided to build my own surround sound that I can program and have react to sensor input.  I stayed up late and it seems to be working!</p>
<span style="text-align:center; display: block;"><a href="http://buildtestrepeat.wordpress.com/2011/11/08/arduino-surround-sound/"><img src="http://img.youtube.com/vi/25o6v3K76jI/2.jpg" alt="" /></a></span>
<p>Here is a video that I always think of as being a really cool example of how powerful spacial sound can be. Put on some headphones, press play and close your eyes. Extremely fun for a youtube video:</p>
<span style="text-align:center; display: block;"><a href="http://buildtestrepeat.wordpress.com/2011/11/08/arduino-surround-sound/"><img src="http://img.youtube.com/vi/8IXm6SuUigI/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=149&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2011/11/08/arduino-surround-sound/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ec6f607e099e0153c7a5b6429d737?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cbierbower</media:title>
		</media:content>
	</item>
		<item>
		<title>Project Direction</title>
		<link>http://buildtestrepeat.wordpress.com/2011/11/08/project-direction/</link>
		<comments>http://buildtestrepeat.wordpress.com/2011/11/08/project-direction/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 10:31:16 +0000</pubDate>
		<dc:creator>cbierbower</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CIID]]></category>
		<category><![CDATA[long distance relationship]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Telepresence]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/?p=144</guid>
		<description><![CDATA[More on this later, but I&#8217;m already well on my way to really focusing in on couples in a long distance relationship. I think there is a very strong need to address here and a lot of the existing solutions &#8230; <a href="http://buildtestrepeat.wordpress.com/2011/11/08/project-direction/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=144&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>More on this later, but I&#8217;m already well on my way to really focusing in on couples in a long distance relationship. I think there is a very strong need to address here and a lot of the existing solutions only build iteratively on the analogy of a phone call.</p>
<p>This NYTimes article is a good example of how strong a desire there is for a good solution in this area: <a href="http://www.nytimes.com/2011/11/06/fashion/skype-postpones-sweet-sorrow.html?_r=3">New York Times: Skype Postpones Sweet Sorrow</a></p>
<p><a href="http://www.nytimes.com/2011/11/06/fashion/skype-postpones-sweet-sorrow.html?_r=3"><img class="aligncenter size-full wp-image-145" title="06AFTERHOURS-articleLarge" src="http://buildtestrepeat.files.wordpress.com/2011/11/06afterhours-articlelarge.jpeg?w=640" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=144&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2011/11/08/project-direction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ec6f607e099e0153c7a5b6429d737?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cbierbower</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2011/11/06afterhours-articlelarge.jpeg" medium="image">
			<media:title type="html">06AFTERHOURS-articleLarge</media:title>
		</media:content>
	</item>
		<item>
		<title>Mic Check</title>
		<link>http://buildtestrepeat.wordpress.com/2011/11/07/mic-check/</link>
		<comments>http://buildtestrepeat.wordpress.com/2011/11/07/mic-check/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 19:39:55 +0000</pubDate>
		<dc:creator>cbierbower</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/?p=137</guid>
		<description><![CDATA[I&#8217;ve been doing sound tests.  Ranging from experiments to see how people collaborate using audio alone to how much they value sound fidelity.  I think this experiment with the same recording over a range of bit rates really shows how important &#8230; <a href="http://buildtestrepeat.wordpress.com/2011/11/07/mic-check/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=137&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been doing sound tests.  Ranging from experiments to see how people collaborate using audio alone to how much they value sound fidelity.  I think this experiment with the same recording over a range of bit rates really shows how important sound quality could be to a couple.  The couples I&#8217;ve interviewed often find their conversations are often intimate, especially when they are apart.  Most of my interview subjects would quickly become frustrated if they had to repeat something &#8220;corny&#8221;.</p>
<p><object height="81" width="100%"><param name="wmode" value="transparent"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F24412493&amp;g=1&amp;show_comments=true&amp;auto_play=false&amp;color=000000"></param><embed height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F24412493&amp;g=1&amp;show_comments=true&amp;auto_play=false&amp;color=000000" type="application/x-shockwave-flash" width="100%"> </embed> </object><br />
&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=137&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2011/11/07/mic-check/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ec6f607e099e0153c7a5b6429d737?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cbierbower</media:title>
		</media:content>
	</item>
		<item>
		<title>Research Phase</title>
		<link>http://buildtestrepeat.wordpress.com/2011/11/04/research-phase/</link>
		<comments>http://buildtestrepeat.wordpress.com/2011/11/04/research-phase/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 13:54:21 +0000</pubDate>
		<dc:creator>cbierbower</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/?p=126</guid>
		<description><![CDATA[Much research has been done on perfecting distance based virtual presence from a fidelity perspective. I&#8217;d like to take a new approach and review it from the perspective of impact. I really enjoy projects that completely rethink a problem, rather &#8230; <a href="http://buildtestrepeat.wordpress.com/2011/11/04/research-phase/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=126&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Much research has been done on perfecting distance based virtual presence from a fidelity perspective. I&#8217;d like to take a new approach and review it from the perspective of impact. I really enjoy projects that completely rethink a problem, rather than those which make more subtle changes, or simply a smoother version of what already exists.</p>
<p>I&#8217;ve spent the last few weeks mapping out existing telepresence offerings and their history, conducting a range of interviews and reading a variety of research on the related field of virtual reality.</p>
<p><a href="http://buildtestrepeat.files.wordpress.com/2011/11/dsc_0267.jpg"><img class="aligncenter size-full wp-image-131" title="Timeline" src="http://buildtestrepeat.files.wordpress.com/2011/11/dsc_0267.jpg?w=640&#038;h=318" alt="" width="640" height="318" /></a></p>
<p>I&#8217;ve been reading <a href="http://www.amazon.com/Infinite-Reality-Avatars-Eternal-Revolution/dp/0061809500">Infinite Reality</a>.  It&#8217;s a bit light but what has been interesting are the virtual reality fMRI studies that have been conducted. I&#8217;m fascinated by how quickly and readily users will have physical reactions to events they rationally know to be illusions. This could be important in a variety of ways, the most obvious being that lower fidelity avatars can still be very effective as long as they are used correctly.</p>
<p>I have found myself fascinated with the research on how behaviour and perception changes based on different modes of communication and incarnations of avatars.  I have been inspired by some research at MIT Media labs on the <a href="http://robotic.media.mit.edu/projects/robots/mebot/mebot.html">MeBot</a> project. I don’t think I want to go this route (avatar robots) but it shows how powerful working prototypes can be for exploring a new form of communication.</p>
<p>I have also conducted interviews with employees at international design firms and couples in long distance relationships. Both of which have been extremely interesting. These are two very different problems to solve for each of these groups.</p>
<p><a href="http://buildtestrepeat.files.wordpress.com/2011/11/photo-2.jpg"><img class="aligncenter size-full wp-image-132" title="Back Camera" src="http://buildtestrepeat.files.wordpress.com/2011/11/photo-2.jpg?w=640&#038;h=478" alt="" width="640" height="478" /></a></p>
<p>Many think these problems will naturally be solved when bandwidth is sufficient. I suspect that there is a great deal of design that could create a far better experience in the near and distant future. I generally feel that further bandwidth gains alone will only solve a minority share of the existing problems. In my thesis proposal presentation I made the analogy to video games:</p>
<p>We can either continue to throw bandwidth at this problem</p>
<p><a href="http://buildtestrepeat.files.wordpress.com/2011/11/a260b622f75c56a818b04704c59b650a.jpeg"><img class="aligncenter size-full wp-image-133" title="a260b622f75c56a818b04704c59b650a" src="http://buildtestrepeat.files.wordpress.com/2011/11/a260b622f75c56a818b04704c59b650a.jpeg?w=640" alt=""   /></a></p>
<p>or we can create an alternative user experience. I think one of these could be very disruptive.</p>
<p><a href="http://buildtestrepeat.files.wordpress.com/2011/11/4f998dc1c4c651999caacefd67676d05.jpeg"><img class="aligncenter size-full wp-image-134" title="4f998dc1c4c651999caacefd67676d05" src="http://buildtestrepeat.files.wordpress.com/2011/11/4f998dc1c4c651999caacefd67676d05.jpeg?w=640" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=126&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2011/11/04/research-phase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ec6f607e099e0153c7a5b6429d737?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cbierbower</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2011/11/dsc_0267.jpg" medium="image">
			<media:title type="html">Timeline</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2011/11/photo-2.jpg" medium="image">
			<media:title type="html">Back Camera</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2011/11/a260b622f75c56a818b04704c59b650a.jpeg" medium="image">
			<media:title type="html">a260b622f75c56a818b04704c59b650a</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2011/11/4f998dc1c4c651999caacefd67676d05.jpeg" medium="image">
			<media:title type="html">4f998dc1c4c651999caacefd67676d05</media:title>
		</media:content>
	</item>
		<item>
		<title>Telepresence Call to Arms</title>
		<link>http://buildtestrepeat.wordpress.com/2011/10/26/telepresence-call-to-arms/</link>
		<comments>http://buildtestrepeat.wordpress.com/2011/10/26/telepresence-call-to-arms/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 17:36:50 +0000</pubDate>
		<dc:creator>cbierbower</dc:creator>
				<category><![CDATA[CIID]]></category>
		<category><![CDATA[Copenhagen Institute of Interaction Design]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Telepresence]]></category>
		<category><![CDATA[Video Call]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/?p=111</guid>
		<description><![CDATA[The current state of video calls: Poor experience is tolerated Little emotion is conveyed Communication is anything but natural This reminds me of how people thought of blackberry&#8217;s in 2006. It was pretty neat that you had your email on &#8230; <a href="http://buildtestrepeat.wordpress.com/2011/10/26/telepresence-call-to-arms/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=111&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The current state of video calls:</p>
<ul>
<li>Poor experience is tolerated</li>
<li>Little emotion is conveyed</li>
<li>Communication is anything but natural</li>
</ul>
<p>This reminds me of how people thought of blackberry&#8217;s in 2006. It was pretty neat that you had your email on the go, but most people didn&#8217;t even realize just how horrible their experience was.</p>
<p><a href="http://buildtestrepeat.files.wordpress.com/2011/10/398c84877b024b7a6d89a0730fc008fa.jpeg"><img class="aligncenter size-full wp-image-112" title="398c84877b024b7a6d89a0730fc008fa" src="http://buildtestrepeat.files.wordpress.com/2011/10/398c84877b024b7a6d89a0730fc008fa.jpeg?w=640" alt=""   /></a></p>
<p>Telepresence is in need of the same iPhone launch like kick start in order to make it clear just how hackish current telepresence is. The innovation that needs to happen will not be in slightly higher quality video feeds, but in a completely new way of thinking about communication and what it means to be with someone who is far away.</p>
<p>There are existing solutions. Some are for business, and I haven&#8217;t encountered any that seem enjoyable at all. They technically get the job done, but all fun seems to be lost in the process as so often happens in business focused products. Almost every other product is a surprisingly flawed consumer solutions based purely on the fact that there happens to be a webcam on top of your laptop display.</p>
<p>I like some more than others. Google Video seems robust but poorly designed, Skype has good voice quality but drops the call constantly. FaceTime doesn&#8217;t even need the application to be open inorder to receive a call and frames the video so the subject is really the only thing in the shot.  These are good iterative ideas, but small changes will not open up an extremely limited form of telepresence.</p>
<p>I often talk about these solutions as the prison visitation call. You hunch over a computer and speak with the other person.  You can see their facial expression, but the information conveyed is pretty limited beyond that.</p>
<p><a href="http://buildtestrepeat.files.wordpress.com/2011/10/prison-visit-277x300.jpeg"><img class="aligncenter size-full wp-image-113" title="prison-visit-277x300" src="http://buildtestrepeat.files.wordpress.com/2011/10/prison-visit-277x300.jpeg?w=640" alt=""   /></a></p>
<p>Over the coming weeks I need to figure out what drives people to use video calling. I&#8217;ll try to find out what they&#8217;re missing in their long distance communication and see how many of those problems can be addressed by rethinking current technology.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=111&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2011/10/26/telepresence-call-to-arms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ec6f607e099e0153c7a5b6429d737?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cbierbower</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2011/10/398c84877b024b7a6d89a0730fc008fa.jpeg" medium="image">
			<media:title type="html">398c84877b024b7a6d89a0730fc008fa</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2011/10/prison-visit-277x300.jpeg" medium="image">
			<media:title type="html">prison-visit-277x300</media:title>
		</media:content>
	</item>
		<item>
		<title>CIID Final Project Begins</title>
		<link>http://buildtestrepeat.wordpress.com/2011/09/29/ciid-final-project-begins/</link>
		<comments>http://buildtestrepeat.wordpress.com/2011/09/29/ciid-final-project-begins/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 10:43:31 +0000</pubDate>
		<dc:creator>cbierbower</dc:creator>
				<category><![CDATA[CIID]]></category>
		<category><![CDATA[Copenhagen Institute of Interaction Design]]></category>
		<category><![CDATA[Design Thinking]]></category>
		<category><![CDATA[Interaction Design]]></category>
		<category><![CDATA[Telepresence]]></category>
		<category><![CDATA[Telerobotics]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/?p=98</guid>
		<description><![CDATA[There have been so many advances in asynchronous communication and collaboration over the course of the last few decades. This is easy to see when moving from your email inbox to current Facebook threads and real time collaborative editing in &#8230; <a href="http://buildtestrepeat.wordpress.com/2011/09/29/ciid-final-project-begins/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=98&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There have been so many advances in asynchronous communication and collaboration over the course of the last few decades. This is easy to see when moving from your email inbox to current Facebook threads and real time collaborative editing in google docs. However there is an opportunity to move people even closer to the emotional connections they feel during real world collaboration and interaction.</p>
<p>I think this opportunity has been validated by what we’ve seen recently with Microsoft purchasing Skype. There is a large group of people who want the full immersion experience that video chat is starting to offer.   They can accomplish collaborative tasks faster and with a greater connection than they could via text only solutions. I personally think we are on the edge of a wave of what people think of as communication on the web, both in 1 to 1 and many to many. I believe a significantly larger share of the face to face connection that salesmen and grandparents alike point to when justifying their travel costs can be achieved digitally. Though certainly nice, I don’t think that higher resolution video is the whole solution. I intend to investigate the true nature of problem solving/distance communication and begin to address the unmet needs I find to create a much more engaging experience.</p>
<p>This final project will consume the next 3 months.  I hope to use this blog to share and chronicle my thoughts and any developments.</p>
<p><a href="http://buildtestrepeat.files.wordpress.com/2011/09/tage_erlander_1960-tal.jpg"><img class="aligncenter size-full wp-image-100" title="Tage_Erlander_1960-tal" src="http://buildtestrepeat.files.wordpress.com/2011/09/tage_erlander_1960-tal.jpg?w=640&#038;h=461" alt="" width="640" height="461" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/98/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/98/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/98/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=98&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2011/09/29/ciid-final-project-begins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ec6f607e099e0153c7a5b6429d737?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cbierbower</media:title>
		</media:content>

		<media:content url="http://buildtestrepeat.files.wordpress.com/2011/09/tage_erlander_1960-tal.jpg" medium="image">
			<media:title type="html">Tage_Erlander_1960-tal</media:title>
		</media:content>
	</item>
		<item>
		<title>More Interesting uses of LED&#8217;s</title>
		<link>http://buildtestrepeat.wordpress.com/2011/08/21/more-interesting-uses-of-leds/</link>
		<comments>http://buildtestrepeat.wordpress.com/2011/08/21/more-interesting-uses-of-leds/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 20:40:30 +0000</pubDate>
		<dc:creator>cbierbower</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[LED]]></category>

		<guid isPermaLink="false">http://buildtestrepeat.wordpress.com/2011/08/21/more-interesting-uses-of-leds/</guid>
		<description><![CDATA[This time for devices talking to each other rather than cities talking to their residents.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=96&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This time for devices talking to each other rather than cities talking to their residents. </p>
<object width="526" height="374">
<param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param>
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="always"/>
<param name="wmode" value="transparent"></param>
<param name="bgColor" value="#ffffff"></param>
<param name="flashvars" value="vu=http://video.ted.com/talk/stream/2011G/Blank/HaraldHaas_2011G-320k.mp4&su=http://images.ted.com/images/ted/tedindex/embed-posters/HaraldHaas_2011G-embed.jpg&vw=512&vh=288&ap=0&ti=1202&lang=eng&introDuration=15330&adDuration=4000&postAdDuration=830&adKeys=talk=harald_haas_wireless_data_from_every_light_bulb;year=2011;theme=what_s_next_in_tech;theme=a_taste_of_tedglobal_2011;theme=not_business_as_usual;theme=new_on_ted_com;theme=the_creative_spark;event=TEDGlobal+2011;tag=Technology;tag=internet;tag=invention;&preAdTag=tconf.ted/embed;tile=1;sz=512x288;" />
<embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="526" height="374" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talk/stream/2011G/Blank/HaraldHaas_2011G-320k.mp4&su=http://images.ted.com/images/ted/tedindex/embed-posters/HaraldHaas_2011G-embed.jpg&vw=512&vh=288&ap=0&ti=1202&lang=eng&introDuration=15330&adDuration=4000&postAdDuration=830&adKeys=talk=harald_haas_wireless_data_from_every_light_bulb;year=2011;theme=what_s_next_in_tech;theme=a_taste_of_tedglobal_2011;theme=not_business_as_usual;theme=new_on_ted_com;theme=the_creative_spark;event=TEDGlobal+2011;tag=Technology;tag=internet;tag=invention;&preAdTag=tconf.ted/embed;tile=1;sz=512x288;"></embed>
</object>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/buildtestrepeat.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/buildtestrepeat.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/buildtestrepeat.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/buildtestrepeat.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/buildtestrepeat.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/buildtestrepeat.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/buildtestrepeat.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/buildtestrepeat.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/buildtestrepeat.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/buildtestrepeat.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/buildtestrepeat.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/buildtestrepeat.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/buildtestrepeat.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/buildtestrepeat.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=buildtestrepeat.wordpress.com&amp;blog=19216274&amp;post=96&amp;subd=buildtestrepeat&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://buildtestrepeat.wordpress.com/2011/08/21/more-interesting-uses-of-leds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/967ec6f607e099e0153c7a5b6429d737?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">cbierbower</media:title>
		</media:content>
	</item>
	</channel>
</rss>
