<?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>Process</title>
	<atom:link href="http://leebyron.com/how/feed/" rel="self" type="application/rss+xml" />
	<link>http://leebyron.com/how</link>
	<description>The process work of Lee Byron</description>
	<lastBuildDate>Thu, 06 May 2010 20:26:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Streamgraphs in processing.js</title>
		<link>http://leebyron.com/how/2010/05/06/streamgraphs-in-processing-js/</link>
		<comments>http://leebyron.com/how/2010/05/06/streamgraphs-in-processing-js/#comments</comments>
		<pubDate>Thu, 06 May 2010 20:26:15 +0000</pubDate>
		<dc:creator>Lee Byron</dc:creator>
				<category><![CDATA[Process]]></category>
		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://leebyron.com/how/?p=281</guid>
		<description><![CDATA[Jason Sundram of runningwithdata.tumblr.com took the Streamgraph open source code and produced a port to processing.js with a number of very cool examples.
Check out the examples and source code at http://runningwithdata.tumblr.com/post/566345323/streamgraph-js
Rock on!
]]></description>
			<content:encoded><![CDATA[<p>Jason Sundram of <a href="http://runningwithdata.tumblr.com/">runningwithdata.tumblr.com</a> took the Streamgraph open source code and produced a port to <a href="http://processingjs.org/">processing.js</a> with a number of very cool examples.</p>
<p>Check out the examples and source code at <a href="http://runningwithdata.tumblr.com/post/566345323/streamgraph-js">http://runningwithdata.tumblr.com/post/566345323/streamgraph-js</a></p>
<p>Rock on!</p>
]]></content:encoded>
			<wfw:commentRss>http://leebyron.com/how/2010/05/06/streamgraphs-in-processing-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Code to generate Streamgraphs, now available</title>
		<link>http://leebyron.com/how/2010/03/30/streamgraph-code/</link>
		<comments>http://leebyron.com/how/2010/03/30/streamgraph-code/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 01:10:55 +0000</pubDate>
		<dc:creator>Lee Byron</dc:creator>
				<category><![CDATA[Process]]></category>

		<guid isPermaLink="false">http://leebyron.com/how/?p=274</guid>
		<description><![CDATA[Not quite two years ago, I published a paper with Martin Wattenberg titled &#8220;Stacked Graphs — Aesthetics and Geometry&#8221; in which we discussed the problems surrounding the use of stacked graphs, and presented a new stacked graph layout technique we called Streamgraphs. Streamgraphs had been seen before in a project I did with last.fm data [...]]]></description>
			<content:encoded><![CDATA[<p>Not quite two years ago, I published a paper with Martin Wattenberg titled <a href="http://leebyron.com/else/streamgraph/">&#8220;Stacked Graphs — Aesthetics and Geometry&#8221;</a> in which we discussed the problems surrounding the use of stacked graphs, and presented a new stacked graph layout technique we called Streamgraphs. Streamgraphs had been seen before in a project I did with last.fm data called <a href="http://leebyron.com/what/lastfm/">Listening History</a> as well as in a graphic in the New York Times called <a href="http://leebyron.com/what/boxoffice/">Ebb and Flow at the Box Office</a>.</p>
<p>I&#8217;ve finally gotten to consolidating the code used to produce the graphics for the paper, cleaning them up and adding crucial comments for better understanding. It&#8217;s presented as a processing applet, and available on <a href="http://github.com/leebyron/streamgraph_generator" target="_blank">github</a>.</p>
<p>You can now download the <a href="http://github.com/leebyron/streamgraph_generator" target="_blank">source code for Streamgraphs</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://leebyron.com/how/2010/03/30/streamgraph-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ofxSDL</title>
		<link>http://leebyron.com/how/2010/03/24/ofxsdl/</link>
		<comments>http://leebyron.com/how/2010/03/24/ofxsdl/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 18:58:45 +0000</pubDate>
		<dc:creator>Lee Byron</dc:creator>
				<category><![CDATA[openFrameworks]]></category>

		<guid isPermaLink="false">http://leebyron.com/how/?p=272</guid>
		<description><![CDATA[I love openFrameworks, but there a few things it just doesn&#8217;t do well. Namely joystick events.
openFrameworks uses a windowing system under the hood called GLUT, or the openGL Utility Toolkit. GLUT&#8217;s primary benefit is being exceptionally simple and ubiquitous. Anywhere you can use openGL, you can use GLUT. However GLUT has it&#8217;s limitations; in it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I love <a href="http://www.openframeworks.cc" target="_blank">openFrameworks</a>, but there a few things it just doesn&#8217;t do well. Namely joystick events.</p>
<p>openFrameworks uses a windowing system under the hood called GLUT, or the openGL Utility Toolkit. GLUT&#8217;s primary benefit is being exceptionally simple and ubiquitous. Anywhere you can use openGL, you can use GLUT. However GLUT has it&#8217;s limitations; in it&#8217;s simplicity it lacks full featured events from keyboards, mouse and joystick controllers.</p>
<p>That&#8217;s where SDL comes in. SDL is similar to GLUT in many ways, but rather than being made as a general purpose utility like GLUT, it is targeted at simple video game creation. This gives it quite reasonable joystick controller and mouse event support.</p>
<p>Thanks to the work over the last year, openFrameworks has become more and more abstracted from it&#8217;s windowing toolkit. This was vital for getting openFrameworks to seamlessly work on an iPhone, where GLUT doesn&#8217;t exist. I took advantage of this abstraction and made an addOn called <a href="http://github.com/leebyron/ofxSDL" target="_blank">ofxSDL</a>. It will cause openFrameworks to use SDL rather than GLUT as it&#8217;s windowing system, giving you access to better joystick support.</p>
<p><a href="http://github.com/leebyron/ofxSDL" target="_blank">ofxSDL</a> is still in infancy, and there is a list of todo items before it could be considered finished, but I wanted to put it out there for anyone interested to use and give feedback on.</p>
]]></content:encoded>
			<wfw:commentRss>http://leebyron.com/how/2010/03/24/ofxsdl/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dropbox custom domain</title>
		<link>http://leebyron.com/how/2010/03/09/dropbox-custom-domain/</link>
		<comments>http://leebyron.com/how/2010/03/09/dropbox-custom-domain/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 08:34:17 +0000</pubDate>
		<dc:creator>Lee Byron</dc:creator>
				<category><![CDATA[Process]]></category>

		<guid isPermaLink="false">http://leebyron.com/how/?p=261</guid>
		<description><![CDATA[If you don&#8217;t already use Dropbox, you should.
Besides keeping your files backed up and computers in sync, it also allows you to share files with others. You&#8217;ll never cringe at attaching huge files to emails ever again. However the links to these shared files can look kind of cryptic and unprofessional. If you&#8217;re sharing files [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t already use Dropbox, <a href="https://www.dropbox.com/referrals/NTIyMTk1MzU5">you should</a>.</p>
<p>Besides keeping your files backed up and computers in sync, it also allows you to share files with others. You&#8217;ll never cringe at attaching huge files to emails ever again. However the links to these shared files can look kind of cryptic and unprofessional. If you&#8217;re sharing files with clients, <code>http://dl.dropbox.com/u/918273645/file.zip</code> just doesn&#8217;t cut it.</p>
<p>I decided to remap these urls to something a little more legible, professional, and just incase a link to a public file starts getting shared like crazy: an intersticial.</p>
<p>I added a subdomain to my website, <code>http://box.leebyron.com</code> to use as the base URL for these links. <code>http://box.leebyron.com/file.zip</code> is the goal.</p>
<p>There are two files in this new subdomain, <a href="http://gist.github.com/326328#file_.htaccess"><code>.htaccess</code></a> and <a href="http://gist.github.com/326328#file_index.php"><code>index.php</code></a>. Similar to how pretty-urls and custom 404s are implemented.</p>
<p>Check out these files at <a href="http://gist.github.com/326328">http://gist.github.com/326328</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://leebyron.com/how/2010/03/09/dropbox-custom-domain/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2008 senior show-reel</title>
		<link>http://leebyron.com/how/2009/12/24/2008-portfolio/</link>
		<comments>http://leebyron.com/how/2009/12/24/2008-portfolio/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 08:07:18 +0000</pubDate>
		<dc:creator>Lee Byron</dc:creator>
				<category><![CDATA[Flirtastic]]></category>
		<category><![CDATA[Info Design]]></category>
		<category><![CDATA[NYT]]></category>
		<category><![CDATA[Play]]></category>
		<category><![CDATA[Process]]></category>
		<category><![CDATA[Processing]]></category>

		<guid isPermaLink="false">http://leebyron.com/how/?p=243</guid>
		<description><![CDATA[I meant to publish this a long time ago, but time slipped by me. Better late than never.

In my senior year I gave a presentation to the IDSA in which I had to summarize my work in 7 minutes. I opted to speak over a video, rather than a powerpoint, since it would force me [...]]]></description>
			<content:encoded><![CDATA[<p>I meant to publish this a long time ago, but time slipped by me. Better late than never.</p>
<div class="media"><object width="454" height="340"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="bgcolor" value="#FFFFFF" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8365373&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=D57687&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=8365373&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=D57687&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always"width="454" height="340" bgcolor="#FFFFFF"></embed></object></div>
<p>In my senior year I gave a presentation to the IDSA in which I had to summarize my work in 7 minutes. I opted to speak over a video, rather than a powerpoint, since it would force me to stick to my time-limit.</p>
<p>It&#8217;s been too long since this presentation, and I forget my speech, so you&#8217;ll just have to imagine what it was I was babbling while this played.</p>
<p>The central theme was the power of using computation and data in design to create things previously impossible.</p>
]]></content:encoded>
			<wfw:commentRss>http://leebyron.com/how/2009/12/24/2008-portfolio/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Design @ ONA 2009 (#ONAux)</title>
		<link>http://leebyron.com/how/2009/10/05/design-ona-2009/</link>
		<comments>http://leebyron.com/how/2009/10/05/design-ona-2009/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 18:17:40 +0000</pubDate>
		<dc:creator>Lee Byron</dc:creator>
				<category><![CDATA[Info Design]]></category>
		<category><![CDATA[NYT]]></category>
		<category><![CDATA[Process]]></category>
		<category><![CDATA[San Francisco]]></category>

		<guid isPermaLink="false">http://leebyron.com/how/?p=233</guid>
		<description><![CDATA[This past weekend I had the pleasure to speak at ONA09 in a panel (#ONAux) with Aron Pilhofer and Elliott Malkin of the NYT and Jesse James Garrett of Adaptive Path. I spoke briefly about the new challenges of designing online, the importance of capturing attention, and specifically how animation and interaction can help draw [...]]]></description>
			<content:encoded><![CDATA[<p>This past weekend I had the pleasure to speak at <a href="http://conference.journalists.org/2009conference/" target="_blank">ONA09</a> in a panel (<a href="http://search.twitter.com/search?q=ONAux" target="_blank">#ONAux</a>) with Aron Pilhofer and Elliott Malkin of the NYT and Jesse James Garrett of Adaptive Path. I spoke briefly about the new challenges of designing online, the importance of capturing attention, and specifically how animation and interaction can help draw viewers in to interactive graphics.</p>
<p>I&#8217;m happy to make public the slides I used for my talk at <a href="http://leebyron.com/else/ona09/" target="_blank">/else/ona09</a>.</p>
<p>I made reference to <a href="http://www.youtube.com/watch?v=OmSbdvzbOzY">The Dot and The Line</a>, and some of my work at the NYT:</p>
<ul>
<li><a href="http://leebyron.com/how/2008/08/09/olympic-medals-cartogram/" target="_blank">A Map of Olympic Medals</a></li>
<li><a href="http://leebyron.com/how/2008/07/06/cash-flow-bubble-chart/" target="_blank">Winners in a Long Presidential Campaign</a></li>
<li><a href="http://leebyron.com/how/2008/08/04/a-collection-of-olympic-torches/" target="_blank">A Collection of Olympic Torches</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://leebyron.com/how/2009/10/05/design-ona-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
