<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>the law of averages &#187; cc</title>
	<atom:link href="http://yergler.net/blog/category/cc/feed/" rel="self" type="application/rss+xml" />
	<link>http://yergler.net/blog</link>
	<description>...because eventually i'll be right...</description>
	<pubDate>Sun, 09 Nov 2008 19:45:34 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
	http://creativecommons.org/licenses/by-sa/3.0/us/<creativeCommons:license></creativeCommons:license>		<item>
		<title>Unicode output from Zope 3</title>
		<link>http://yergler.net/blog/2008/07/19/unicode-output-from-zope-3/</link>
		<comments>http://yergler.net/blog/2008/07/19/unicode-output-from-zope-3/#comments</comments>
		<pubDate>Sat, 19 Jul 2008 19:57:33 +0000</pubDate>
		<dc:creator>Nathan Y.</dc:creator>
		
		<category><![CDATA[cc]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[license engine]]></category>

		<category><![CDATA[python]]></category>

		<category><![CDATA[zope]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/?p=563</guid>
		<description><![CDATA[	The Creative Commons licene engine has gone through several iterations, the most recent being a Zope 3 / Grok application. This has actually been a great implementation for us1, but since the day it was deployed there&#8217;s been a warning in README.txt:

If you get a UnicodeDecodeError from the cc.engine (you'll see this if it's
running in [...]]]></description>
			<content:encoded><![CDATA[	<p>The Creative Commons licene engine has gone through several iterations, the most recent being a Zope 3 / Grok application. This has actually been a great implementation for us<sup><a href="#fn1346128719492557bbe319f">1</a></sup>, but since the day it was deployed there&#8217;s been a warning in <a href="http://code.creativecommons.org/svnroot/cc.engine/trunk/README.txt" onclick="javascript:pageTracker._trackPageview('/outbound/article/code.creativecommons.org');"><code>README.txt</code></a>:</p>
<pre>
If you get a UnicodeDecodeError from the cc.engine (you'll see this if it's
running in the foreground) when you try to access the http://host:9080/license/
then it's likely that the install of python you are using is set to use ASCII
as it's default output.  You can change this to UTF-8 by creating the file
/usr/lib/python&lt;version&gt;/sitecustomize.py and adding these lines:
  import sys
  sys.setdefaultencoding("utf-8")
</pre>
	<p>This always struck me as a bit inelegant&#8212;having to muck with something outside my application directory.  After all, this belief that the application should be self-contained is the reason I use <a href="http://pypi.python.org/zc.buildout" onclick="javascript:pageTracker._trackPageview('/outbound/article/pypi.python.org');">zc.buildout</a> and share Jim&#8217;s belief in the evil of the system Python.  Like a lot of inelegant things, though, it never rose quite to the level of annoyance needed to motivate me to <em>do it right</em>.</p>
	<p>Today I was working on moving the license engine to a different server<sup><a href="#fn812363912492557bbe3d54">2</a></sup> and ran into this problem again.  I decided to dig in and see if I could track it down.  In fact I did track down the initial problem&#8212;I was <a href="http://code.creativecommons.org/viewsvn?view=rev&#38;revision=10535" onclick="javascript:pageTracker._trackPageview('/outbound/article/code.creativecommons.org');">making a comparison</a> between an encoded Unicode string and without specifying an explicit codec to use for the decode.  Unfortunately once I fixed that I found it was <a href="http://en.wikipedia.org/wiki/Turtles_all_the_way_down" onclick="javascript:pageTracker._trackPageview('/outbound/article/en.wikipedia.org');">turtles all the way down</a>.</p>
	<p>Turns out the default Zope 3 page template machinery uses <a href="http://www.python.org/doc/lib/module-StringIO.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.python.org');"><code>StringIO</code></a> to collect the output.  <code>StringIO</code> uses, uh, strings&#8212;strings with the default system encoding.  Reading the module documentation, it would appear that mixing String and Unicode input in your StringIO will cause this sort of issue.</p>
	<p>Andres suggested marking my templates as UTF-8 XML using something like:</p>
<pre>
 &lt; ?xml version="1.0" encoding="UTF-8" ?&gt;
</pre>
	<p>but even after doing this and fixing the resulting entity errors, there&#8217;s still obviously some 8 bit Strings leaking into the output.  In conversations on IRC the question was then asked: &#8220;is there a reason you don&#8217;t want a reasonable system wide encoding if your locale can support it?&#8221;  </p>
	<p>I guess not<sup><a href="#fn706463163492557bbe4908">3</a></sup>.</p>
	<p><strong>UPDATE</strong> Martijn has a tangentially related <a href="http://faassen.n--tree.net/blog/view/weblog/2005/08/02/0" onclick="javascript:pageTracker._trackPageview('/outbound/article/faassen.n--tree.net');">post</a> which sheds some light on why Python does/should ship with <code>ascii</code> as the default codec.  At least people smarter than me have problems with this sort of thing, too.</p>
	<p><hr noshade /></p>
	<p id="fn1346128719492557bbe319f"><sup>1</sup> Yes, I may be a bit biased&#8212;I wrote the Zope3/Grok implementation.  Of course, I wrote the previous implementation, too, and I can say without a doubt it was&#8230; <em>&#8220;sub-optimal&#8221;</em>.</p>
	<p id="fn812363912492557bbe3d54"><sup>2</sup> We&#8217;re doing a lot of shuffling lately to complete a 32 to 64 bit conversion; see the <a href="http://labs.creativecommons.org/2008/07/15/32-to-64bit-remotely/" onclick="javascript:pageTracker._trackPageview('/outbound/article/labs.creativecommons.org');">CC Labs blog post</a> for the harrowing details.</p>
	<p id="fn706463163492557bbe4908"><sup>3</sup> So the warning remains.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2008/07/19/unicode-output-from-zope-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Technology Summit</title>
		<link>http://yergler.net/blog/2008/06/19/technology-summit/</link>
		<comments>http://yergler.net/blog/2008/06/19/technology-summit/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 21:13:13 +0000</pubDate>
		<dc:creator>Nathan Y.</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[cc]]></category>

		<category><![CDATA[nerd van]]></category>

		<category><![CDATA[techsummit]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/?p=555</guid>
		<description><![CDATA[	Yesterday was the first ever Creative Commons Technology Summit, hosted at Google.  My photos and better ones taken by Joi.
	
	I drove the Nerd Van (myself, Asheesh and the interns) to Google.
	I&#8217;m still recovering (and inflicting pain&#8212;CC board meeting today) and collecting feedback, but I think it was a really successful day.  We learned [...]]]></description>
			<content:encoded><![CDATA[	<p>Yesterday was the first ever <a href="http://creativecommons.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/creativecommons.org');">Creative Commons</a> <a href="http://wiki.creativecommons.org/Creative_Commons_Technology_Summit_2008-06-18" onclick="javascript:pageTracker._trackPageview('/outbound/article/wiki.creativecommons.org');">Technology Summit</a>, hosted at Google.  <a href="http://www.flickr.com/photos/nathan_y/sets/72157605691484201/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.flickr.com');">My photos</a> and <a href="http://www.flickr.com/photos/joi/sets/72157605687076555/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.flickr.com');">better ones</a> taken by Joi.</p>
	<p><a href="http://www.flickr.com/photos/nathan_y/2590362132/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.flickr.com');" title="Nerd Van by Nathan Y, on Flickr"><img src="http://farm4.static.flickr.com/3028/2590362132_39ac46ff4d.jpg" width="500" height="375" alt="Nerd Van" /></a></p>
	<p>I drove the Nerd Van (myself, <a href="http://asheesh.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/asheesh.org');">Asheesh</a> and the interns) to Google.</p>
	<p>I&#8217;m still recovering (and inflicting pain&#8212;CC board meeting today) and collecting feedback, but I think it was a really successful day.  We learned some things we&#8217;ll do differently next time (yes, there will be a next time).  Anyway, special recognition to the CC interns for <a href="http://techblog.creativecommons.org/category/techsummit/" onclick="javascript:pageTracker._trackPageview('/outbound/article/techblog.creativecommons.org');">live blogging</a> the event and for generally doing anything asked of them.  I feel like I should write more about the event, but I&#8217;m feeling pretty brain dead at the moment.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2008/06/19/technology-summit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Avoiding git PTSD</title>
		<link>http://yergler.net/blog/2008/06/13/avoiding_git_ptsd/</link>
		<comments>http://yergler.net/blog/2008/06/13/avoiding_git_ptsd/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 21:56:25 +0000</pubDate>
		<dc:creator>Nathan Y.</dc:creator>
		
		<category><![CDATA[cc]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[git]]></category>

		<category><![CDATA[ptsd]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/?p=554</guid>
		<description><![CDATA[	In an attempt to prevent additional git (or maybe just git-svn?) induced PTSD, Asheesh kindly created a git phrasebook.  If you, too, are a Subversion deserter and want to figure out how the whole branching thing works in git, this may be useful to you.  
	Someday I&#8217;ll write up my thoughts on distributed [...]]]></description>
			<content:encoded><![CDATA[	<p>In an attempt to prevent additional <a href="http://en.wikipedia.org/wiki/Git_(software)" onclick="javascript:pageTracker._trackPageview('/outbound/article/en.wikipedia.org');">git</a> (or maybe just git-svn?) induced <a href="http://en.wikipedia.org/wiki/PTSD" onclick="javascript:pageTracker._trackPageview('/outbound/article/en.wikipedia.org');">PTSD</a>, <a href="http://asheesh.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/asheesh.org');">Asheesh</a> kindly created a <a href="http://wiki.creativecommons.org/Git_phrasebook" onclick="javascript:pageTracker._trackPageview('/outbound/article/wiki.creativecommons.org');">git phrasebook</a>.  If you, too, are a <a href="http://en.wikipedia.org/wiki/Subversion_(software)" onclick="javascript:pageTracker._trackPageview('/outbound/article/en.wikipedia.org');">Subversion</a> deserter and want to figure out how the whole branching thing works in git, this may be useful to you.  </p>
	<p>Someday I&#8217;ll write up my thoughts on distributed version control and &#8220;convention versus configuration&#8221;, which seem to overlap in this deployment.  But not today.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2008/06/13/avoiding_git_ptsd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Getting Things Zero&#8217;d</title>
		<link>http://yergler.net/blog/2008/06/11/getting-things-zerod/</link>
		<comments>http://yergler.net/blog/2008/06/11/getting-things-zerod/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 06:18:16 +0000</pubDate>
		<dc:creator>Nathan Y.</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[cc]]></category>

		<category><![CDATA[gtd]]></category>

		<category><![CDATA[inbox zero]]></category>

		<category><![CDATA[rtm]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/?p=553</guid>
		<description><![CDATA[	I really love task lists&#8212;especially the crossing off part&#8212;but lately they haven&#8217;t really been helping me out. Between the day job, consulting work, dating, and a more active social life than I had in Indiana, it seems like I never quite get to the crossing off part. This has become particularly clear at work where [...]]]></description>
			<content:encoded><![CDATA[	<p>I really love task lists&#8212;especially the crossing off part&#8212;but lately they haven&#8217;t really been helping me out. Between the day job, consulting work, dating, and a more active social life than I had in Indiana, it seems like I never quite get to the crossing off part. This has become particularly clear at work where I use two simple labels for email: <code>action</code> and <code>reply</code>. I&#8217;m a little ashamed to admit that the <code>action</code> queue currently has 196 items in it, the oldest dating to August of last year. My CC inbox has 404 messages in it right now, of which 182 are starred. Starring is supposed to indicate something that needs my attention.  Somehow this doesn&#8217;t seem productive. Mike, if you&#8217;re reading this, I&#8217;m sorry.  Believe me, I&#8217;m sorry.</p>
	<p>So I&#8217;m trying something a little different.  This evening I watched the <a href="http://video.google.com/videoplay?docid=973149761529535925&#38;q=inbox+zero&#38;ei=TcRQSKWXLqP6qwOxptSuDA" onclick="javascript:pageTracker._trackPageview('/outbound/article/video.google.com');">Google Tech Talk</a> by Merlin Mann on <a href="http://inboxzero.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/inboxzero.com');">Inbox Zero</a>.  While the second half played I managed to clear out my yergler.net inbox.</p>
	<p><embed style="width:400px; height:326px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=973149761529535925&#38;hl=en" flashvars=""> </embed></p>
	<p>Tomorrow I&#8217;m planning to <a href="http://www.43folders.com/2006/01/04/email-dmz" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.43folders.com');">create an email DMZ</a> and begin at zero with my work inbox.  Just keeping the flow of information to a reasonable level is just the first step, though.  </p>
	<p>I&#8217;ve had a <a href="http://www.rememberthemilk.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.rememberthemilk.com');">Remember the Milk</a> (RTM) account for quite a while but never got in the habit of using it.  After watching an <a href="http://video.google.com/videoplay?docid=-3324975082418734422&#38;pr=goog-sl" onclick="javascript:pageTracker._trackPageview('/outbound/article/video.google.com');">introduction</a> to <a href="http://live.gnome.org/Tasque" onclick="javascript:pageTracker._trackPageview('/outbound/article/live.gnome.org');">Tasque</a>, I decided to look again.  Tasque is a simple task list application for Gnome, in the same vein as <a href="http://www.gnome.org/projects/tomboy/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.gnome.org');">Tomboy</a> for notes.  I love Tomboy.  I think I&#8217;ll love Tasque, too.</p>
	<p>I don&#8217;t know if the RTM elves have been hacking away at the site since I last looked or if I just never really dug in, but it actually seems to have the features I want in a task list.  And there&#8217;s even a handy <a href="http://blog.rememberthemilk.com/2008/05/guest-post-advanced-gtd-with-remember.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/blog.rememberthemilk.com');">blog post</a> on how you can use RTM to GTD (get things done).</p>
	<p>Finally, the piece that ties both sides together: their <a href="http://www.rememberthemilk.com/services/gmail/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.rememberthemilk.com');">Firefox extension</a>.  My workflow this evening looked like this:</p>
<ol>
<li>Go to the next email</li>
<li>Decide that had some action associated with it</li>
<li>Add the <code>action</code> label to it, which also created it as a task to RTM</li>
<li>Later, when skimming through the <code>action</code> list I saw one I could knock out in a few minutes.  And when I finished and removed the <code>action</code> label, the task in RTM was marked as complete.  Sweet.</li>
</ol>


 ]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2008/06/11/getting-things-zerod/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenWeb 2008 Slides</title>
		<link>http://yergler.net/blog/2008/04/22/openweb-2008-slides/</link>
		<comments>http://yergler.net/blog/2008/04/22/openweb-2008-slides/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 21:43:24 +0000</pubDate>
		<dc:creator>Nathan Y.</dc:creator>
		
		<category><![CDATA[cc]]></category>

		<category><![CDATA[conf]]></category>

		<category><![CDATA[conference]]></category>

		<category><![CDATA[openweb]]></category>

		<category><![CDATA[smw]]></category>

		<category><![CDATA[vancouver]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/?p=550</guid>
		<description><![CDATA[	As promised, slides for my OpenWeb talk, Deploying the Semantic Web with ccREL and RDFa, are available.  And while we&#8217;re talking about the Semantic Web, note that the slide page is using another low barrier Semantic Web tool, Semantic MediaWiki.

 ]]></description>
			<content:encoded><![CDATA[	<p><a href="http://yergler.net/blog/2008/04/14/openweb-2008-vancouver/" >As promised,</a> slides for my OpenWeb talk, <em>Deploying the Semantic Web with ccREL and RDFa</em>, are <a href="http://wiki.creativecommons.org/Deploying_the_Semantic_Web_with_ccREL_and_RDFa" onclick="javascript:pageTracker._trackPageview('/outbound/article/wiki.creativecommons.org');">available</a>.  And while we&#8217;re talking about the Semantic Web, note that the <a href="http://wiki.creativecommons.org/Deploying_the_Semantic_Web_with_ccREL_and_RDFa" onclick="javascript:pageTracker._trackPageview('/outbound/article/wiki.creativecommons.org');">slide page</a> is using another low barrier Semantic Web tool, <a href="http://semantic-mediawiki.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/semantic-mediawiki.org');">Semantic MediaWiki</a>.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2008/04/22/openweb-2008-slides/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenWeb 2008 Vancouver</title>
		<link>http://yergler.net/blog/2008/04/14/openweb-2008-vancouver/</link>
		<comments>http://yergler.net/blog/2008/04/14/openweb-2008-vancouver/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 18:26:34 +0000</pubDate>
		<dc:creator>Nathan Y.</dc:creator>
		
		<category><![CDATA[cc]]></category>

		<category><![CDATA[conf]]></category>

		<category><![CDATA[ccrel]]></category>

		<category><![CDATA[conference]]></category>

		<category><![CDATA[vancouver]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/?p=547</guid>
		<description><![CDATA[	I&#8217;m in Canada (O! Canada!) for the OpenWeb Vancouver 2008 conference today and tomorrow.  I&#8217;ll be speaking tomorrow morning on Creative Commons licenses and the Semantic Web&#8212;specifically about how things like ccREL and RDFa allow us to build a real life, scalable, extensible Semantic Web deployment without really thinking about it (&#8220;It&#8217;s SemWeb! And [...]]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;m in Canada (<a href="http://en.wikipedia.org/wiki/O_Canada" onclick="javascript:pageTracker._trackPageview('/outbound/article/en.wikipedia.org');">O! Canada!</a>) for the <a href="http://www.openwebvancouver.ca/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.openwebvancouver.ca');">OpenWeb Vancouver 2008</a> conference today and tomorrow.  I&#8217;ll be speaking tomorrow morning on Creative Commons licenses and the Semantic Web&#8212;specifically about how things like <a href="http://wiki.creativecommons.org/ccREL" onclick="javascript:pageTracker._trackPageview('/outbound/article/wiki.creativecommons.org');">ccREL</a> and <a href="http://rdfa.info" onclick="javascript:pageTracker._trackPageview('/outbound/article/rdfa.info');">RDFa</a> allow us to build a real life, scalable, extensible Semantic Web deployment without really thinking about it (&#8220;It&#8217;s SemWeb! And <em>I</em> helped!&#8221;)</p>
	<p>OpenWeb Vancouver is a community run conference, much like <a href="http://us.pycon.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/us.pycon.org');">PyCon</a>.  And much like PyCon it looks like it has a really great value proposition (unfortunately much like PyCon it also seems to have crappy <a href="http://www.tummy.com/Community/Articles/pycon2008-network/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.tummy.com');">wifi</a>... sigh).</p>
	<p>I&#8217;ll post slides soon (read: when I actually write them).</p>

 ]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2008/04/14/openweb-2008-vancouver/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Technology Internships at Creative Commons</title>
		<link>http://yergler.net/blog/2008/03/11/technology-internships-at-creative-commons/</link>
		<comments>http://yergler.net/blog/2008/03/11/technology-internships-at-creative-commons/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 22:05:43 +0000</pubDate>
		<dc:creator>Nathan Y.</dc:creator>
		
		<category><![CDATA[cc]]></category>

		<category><![CDATA[intern]]></category>

		<category><![CDATA[summer]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/2008/03/11/technology-internships-at-creative-commons/</guid>
		<description><![CDATA[	If you don&#8217;t read the Creative Commons blog, you missed the announcement that the deadline for applying to be a CC intern this summer has been extended until March 21 (a week from Friday).  On the tech side we&#8217;re looking for computer science/software engineering students who want to help us build tools to support [...]]]></description>
			<content:encoded><![CDATA[	<p>If you don&#8217;t read the <a href="http://creativecommons.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/creativecommons.org');">Creative Commons</a> blog, you missed <a href="http://creativecommons.org/weblog/entry/8111" onclick="javascript:pageTracker._trackPageview('/outbound/article/creativecommons.org');">the announcement</a> that the deadline for applying to be a CC intern this summer has been extended until March 21 (a week from Friday).  On the tech side we&#8217;re looking for computer science/software engineering students who want to help us build tools to support the CC license ecology.  Questions?  I&#8217;m happy to <a href="http://wiki.creativecommons.org/User:Nathan_Yergler" onclick="javascript:pageTracker._trackPageview('/outbound/article/wiki.creativecommons.org');">answer them</a>.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2008/03/11/technology-internships-at-creative-commons/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creative Commons TechBlog Launches</title>
		<link>http://yergler.net/blog/2007/04/12/creative-commons-techblog-launches/</link>
		<comments>http://yergler.net/blog/2007/04/12/creative-commons-techblog-launches/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 22:25:19 +0000</pubDate>
		<dc:creator>Nathan Y.</dc:creator>
		
		<category><![CDATA[cc]]></category>

		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/2007/04/12/creative-commons-techblog-launches/</guid>
		<description><![CDATA[	So we (Creative Commons) just launched our new TechBlog.  Posts about what I&#8217;m doing at CC, and CC-related tech/geek info will appear there.

 ]]></description>
			<content:encoded><![CDATA[	<p>So we (Creative Commons) just launched our new <a href="http://techblog.creativecommons.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/techblog.creativecommons.org');">TechBlog</a>.  Posts about what I&#8217;m doing at CC, and CC-related tech/geek info will appear there.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2007/04/12/creative-commons-techblog-launches/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Open Source is my day job</title>
		<link>http://yergler.net/blog/2007/03/22/open-source-is-my-day-job/</link>
		<comments>http://yergler.net/blog/2007/03/22/open-source-is-my-day-job/#comments</comments>
		<pubDate>Thu, 22 Mar 2007 21:30:28 +0000</pubDate>
		<dc:creator>Nathan Y.</dc:creator>
		
		<category><![CDATA[cc]]></category>

		<category><![CDATA[michigan]]></category>

		<category><![CDATA[open source]]></category>

		<category><![CDATA[talks]]></category>

		<guid isPermaLink="false">http://yergler.net/blog/2007/03/22/open-source-is-my-day-job/</guid>
		<description><![CDATA[	On Monday I gave a talk at the University of Michigan School of Information on what it&#8217;s like to run an open source project and things to think about it you&#8217;re going to do it as part of a business.  They sort of got the shaft&#8212;Jon Phillips is CC&#8217;s resident expert on community building [...]]]></description>
			<content:encoded><![CDATA[	<p>On Monday I gave a talk at the University of Michigan School of Information on what it&#8217;s like to run an open source project and things to think about it you&#8217;re going to do it as part of a business.  They sort of got the shaft&#8212;<a href="http://creativecommons.org/about/people#53" onclick="javascript:pageTracker._trackPageview('/outbound/article/creativecommons.org');">Jon Phillips</a> is CC&#8217;s resident expert on community building and open source management.  But Jon doesn&#8217;t like &#8220;in the middle&#8221;.  So they got me.</p>
	<p>I thought the talk went well.  For once even though I talked too fast I had enough content to fill the time.  Usually I talk too fast and run way under.  And it felt like I had a good idea what the &#8220;story&#8221; was I was trying to tell, so that made it easier to put everything together.  Putting the talk together reminded me that I&#8217;ve been really insanely lucky; for the past six years of my life, I&#8217;ve been at jobs where I&#8217;m paid to either consume or develop (or both) open source software.  That beats the hell out of <acronym title="Microsoft Certified Systems Engineer">MCSE</acronym> bullshit<sup><a href="#fn1531331370492557bcb71d4">1</a></sup>.</p>
	<p>Slides, links, etc available <a href="http://yergler.net/OpenSourceIsMyDayJob" >here</a>.</p>
	<p><hr noshade /></p>
	<p id="fn1531331370492557bcb71d4"><sup>1</sup> In my humble opinion, of course.</p>

 ]]></content:encoded>
			<wfw:commentRss>http://yergler.net/blog/2007/03/22/open-source-is-my-day-job/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
