<?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/"
	>

<channel>
	<title>eric's extremeboredom</title>
	<atom:link href="http://eric.extremeboredom.net/feed" rel="self" type="application/rss+xml" />
	<link>http://eric.extremeboredom.net</link>
	<description>adventures into and out of extreme boredom.</description>
	<pubDate>Wed, 26 Nov 2008 06:52:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Caught</title>
		<link>http://eric.extremeboredom.net/2008/11/25/329</link>
		<comments>http://eric.extremeboredom.net/2008/11/25/329#comments</comments>
		<pubDate>Wed, 26 Nov 2008 06:52:02 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://eric.extremeboredom.net/?p=329</guid>
		<description><![CDATA[View Larger Map
(That would be me in the green)
]]></description>
			<content:encoded><![CDATA[<p><iframe width="500" height="450" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/sv?cbp=12,243.22343836365962,,3,9.467952502421813&amp;cbll=47.618239,-122.330886&amp;v=1&amp;panoid=sa36BQmMlSKIzTCOeC3Puw&amp;gl=&amp;hl=en"></iframe><br /><small><a id="cbembedlink" href="http://maps.google.com/maps?cbp=12,243.22343836365962,,3,9.467952502421813&#038;cbll=47.618239,-122.330886&#038;ll=47.618239,-122.330886&#038;layer=c" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>(That would be me in the green)</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2008/11/25/329/feed</wfw:commentRss>
		</item>
		<item>
		<title>DNS SRV Lookups on Linux from C#</title>
		<link>http://eric.extremeboredom.net/2008/11/21/322</link>
		<comments>http://eric.extremeboredom.net/2008/11/21/322#comments</comments>
		<pubDate>Fri, 21 Nov 2008 20:07:01 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Mono]]></category>

		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://eric.extremeboredom.net/?p=322</guid>
		<description><![CDATA[The .NET framework&#8217;s System.Net.Dns class is incredibly lacking. It only supports the basic name to address and address to name functionality, while I needed to do an SRV lookup.
Looking around, I only found windows-only C# examples that used dnsapi, so I wrote a quick wrapper around glibc&#8217;s libresolv library.
http://gist.github.com/27591
$ gmcs -out:srv.exe -unsafe srv.cs
$ ./srv.exe _xmpp-server._tcp.gmail.com
20 [...]]]></description>
			<content:encoded><![CDATA[<p>The .NET framework&#8217;s System.Net.Dns class is incredibly lacking. It only supports the basic name to address and address to name functionality, while I needed to do an SRV lookup.</p>
<p>Looking around, I only found windows-only C# examples that used dnsapi, so I wrote a quick wrapper around glibc&#8217;s libresolv library.</p>
<p><a href="http://gist.github.com/27591">http://gist.github.com/27591</a></p>
<pre>$ gmcs -out:srv.exe -unsafe srv.cs
$ ./srv.exe _xmpp-server._tcp.gmail.com
20 0 5269 xmpp-server2.l.google.com
20 0 5269 xmpp-server3.l.google.com
20 0 5269 xmpp-server4.l.google.com
5 0 5269 xmpp-server.l.google.com
20 0 5269 xmpp-server1.l.google.com</pre>
<p>The code could be easily modified to support other DNS record types too. I think this would make a good addition to the Mono namespace somewhere.</p>
<p>The res_query() function is extremely annoying to use, and the documentation is almost non-existent. If there is a more modern API that I should be using instead, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2008/11/21/322/feed</wfw:commentRss>
		</item>
		<item>
		<title>Mono 2.0 Packages for Ubuntu Intrepid</title>
		<link>http://eric.extremeboredom.net/2008/10/15/296</link>
		<comments>http://eric.extremeboredom.net/2008/10/15/296#comments</comments>
		<pubDate>Thu, 16 Oct 2008 02:37:45 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Open Source]]></category>

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

		<guid isPermaLink="false">http://eric.extremeboredom.net/?p=296</guid>
		<description><![CDATA[I was disappointed to read that <a href="https://answers.launchpad.net/ubuntu/+source/mono/+question/44628">Intrepid will not include Mono 2.0</a>, so I created packages. They're available for download from my <a href="https://launchpad.net/~firerabbit/+archive">PPA</a>.

<pre>deb http://ppa.launchpad.net/firerabbit/ubuntu intrepid main
deb-src http://ppa.launchpad.net/firerabbit/ubuntu intrepid main</pre>

Please let me know if you find them useful!

Note that these packages are <strong>unofficial</strong>, if you have any problems, please let me know directly. Do not file an ubunu bug.

Also, <a href="http://eric.extremeboredom.net/stuff/pkg-mono-2.0~ppa0.patch.txt">here's the diff</a> against the <a href="http://svn.debian.org/wsvn/pkg-mono/mono/trunk/">pkg-mono repository</a> which is currently at v1.9.1.]]></description>
			<content:encoded><![CDATA[<p>I was disappointed to read that <a href="https://answers.launchpad.net/ubuntu/+source/mono/+question/44628">Intrepid will not include Mono 2.0</a>, so I created packages. They&#8217;re available for download from my <a href="https://launchpad.net/~firerabbit/+archive">PPA</a>.</p>
<pre>deb http://ppa.launchpad.net/firerabbit/ubuntu intrepid main
deb-src http://ppa.launchpad.net/firerabbit/ubuntu intrepid main</pre>
<p>Please let me know if you find them useful!</p>
<p>Note that these packages are <strong>unofficial</strong>, if you have any problems, please let me know directly. Do not file an ubunu bug.</p>
<p>Also, <a href="http://eric.extremeboredom.net/stuff/pkg-mono-2.0~ppa0.patch.txt">here&#8217;s the diff</a> against the <a href="http://svn.debian.org/wsvn/pkg-mono/mono/trunk/">pkg-mono repository</a> which is currently at v1.9.1.</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2008/10/15/296/feed</wfw:commentRss>
		</item>
		<item>
		<title>Why didn&#8217;t Nokia change Qt&#8217;s licensing model?</title>
		<link>http://eric.extremeboredom.net/2008/10/04/288</link>
		<comments>http://eric.extremeboredom.net/2008/10/04/288#comments</comments>
		<pubDate>Sat, 04 Oct 2008 23:03:43 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://eric.extremeboredom.net/?p=288</guid>
		<description><![CDATA[Background
Licensing issues have always surrounded Qt. The GNOME project was started partially because at the time, Qt was closed-source and there was a need for a free software desktop. Today, Qt is dual-licensed: GPL and commercial, so KDE is certainly a free software desktop just as GNOME. 
However, the GTK/GNOME library stack has one major [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Background</strong></p>
<p>Licensing issues have always surrounded Qt. The GNOME project was started partially because at the time, Qt was closed-source and there was a need for a free software desktop. Today, Qt is dual-licensed: GPL and commercial, so KDE is certainly a free software desktop just as GNOME. </p>
<p>However, the GTK/GNOME library stack has one major difference: it is LGPL. Why does this matter?</p>
<p>Commercial development. Now, please don&#8217;t get me wrong - I&#8217;m a huge fan of free software and the GPL, but there are certain situations where GPL is not an option. A example is an ISV with a flagship free, open source product who wants to sell customizations to businesses. These customizations would likely contain code to access proprietary internal systems, and are just not something this ISV would be able to release to the wider world.</p>
<p><strong>Nokia, Trollltech, and mobile development</strong></p>
<p>After hearing about Nokia&#8217;s acquisition of Trolltech, I started thinking about why they bought them, and what their plans are.</p>
<p>My initial thought was (written from Nokia&#8217;s point of view):</p>
<blockquote><p>Wow, the iPhone is a very nice phone - and a very nice software platform, people love writing iPhone applications. Right now, most of our phones are based on Java Mobile or Symbian, which nobody really enjoys. We could try to write our own new platform, but that would take a lot of time&#8230; and hey! There&#8217;s this thing called Qt which is arguably just as good as Cocoa, and already has a lot of developer support. Let&#8217;s buy them and adopt it as our future phone platform, and build a great community of both open source and commercial developers.</p></blockquote>
<p>Then I realized there&#8217;s a serious flaw with this theory: Nokia has maintained Qt&#8217;s dual-licensing model as-is.</p>
<p><strong>Qt is now the <em>only</em> mobile phone platform that costs money to <em>develop</em> with.</strong></p>
<p>Sure, Apple and other companies charge a per-release fee to digitally sign your application, make it available for download, etc&#8230; but Qt is different. Qt licenses are sold on a <em>per-developer</em> basis. But that&#8217;s not the <a href="http://trolltech.com/products/appdev/licensing/licensing#qt-commercial-license">worst part</a>:</p>
<blockquote><p> You must purchase a Qt Commercial License from Qt Software or from one of its authorized resellers before you start developing commercial software. The Commercial license does not allow the incorporation of code developed with the Open Source Edition of Qt into a commercial product.</p></blockquote>
<p>Qt is the ONLY framework I can find that forces you to shell out before you have a single line of code written. This completely prevents developers from experimenting, and makes the platform unreachable to individuals and startups. You&#8217;re either all in or all out - there&#8217;s no middle ground. </p>
<p>Let&#8217;s compare that to other mobile platforms:</p>
<table border="1">
<tr>
<th>Name</th>
<th>Costs</th>
</tr>
<tr>
<td>iPhone</td>
<td>Free SDK; a one-time $99 developer fee for an unlimited number of applications; 30% of app sales to cover hosting and distribution costs or free distribution and hosting of free applications</td>
</tr>
<tr>
<td>Windows Mobile</td>
<td>Free SDK</td>
</tr>
<tr>
<td>Blackberry</td>
<td>Free SDK; You can get your app signed/certified but its not required, and most people dont bother</td>
</tr>
<tr>
<td>Palm</td>
<td>Free SDK</td>
</tr>
<tr>
<td>Symbian</td>
<td>Free SDK; $200 per year; $20-$500 signing fee per application release depending on type of application</td>
</tr>
<tr>
<td>Java ME</td>
<td>Free SDK; Presumably on its way to being open-source along with the rest of java</td>
</tr>
<tr>
<td>Android</td>
<td>Free/open-source SDK</td>
</tr>
<tr>
<td>Qt</td>
<td>Unknown per developer cost at <em>start</em> of development. Pricing information is unavailable online, and they&#8217;ve been completely ignoring a friend&#8217;s sales inquiry. A commercial Qt linux <em>desktop</em> license was around <a href="http://www.qtforum.org/article/24612/How-much-Qt-commercial-license-cost.html">$3,500 earlier this year</a>.</td>
</tr>
</table>
<p style="font-size: small;">Note I&#8217;m only comparing platforms that anyone to publish software. BREW doesn&#8217;t count because you have to form a business deal with the carrier to make apps available (Verizon &#8220;Get it now&#8221;, etc.). Also please let me know if you have any additional information to add to this table - companies seem to go out of their way to make this information extremely hard to find.</p>
<p><strong>Qt is unique</strong> - no other platform works this way. With this sort of pricing structure, Nokia Qt phones will never see the type of developer interest that we&#8217;re seeing with the iPhone and Android.</p>
<p>But Nokia certainly knows this, so why not change things? It&#8217;s hard to say - maybe they aren&#8217;t excited about the cell phone industry becoming more open, maybe they think they can make more money off of a small number of Qt licenses than thousands of developers under the iphone model. And how does Maemo fit into all this?</p>
<p>Qt is a really great toolkit - it&#8217;s a real shame to see its potential squandered.</p>
<p>You may have noticed that almost everything here applies beyond the mobile realm too. KDE is the only modern desktop platform out there without a free commercial SDK. I suppose it really is the true free software desktop.</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2008/10/04/288/feed</wfw:commentRss>
		</item>
		<item>
		<title>Roombacide</title>
		<link>http://eric.extremeboredom.net/2008/02/21/286</link>
		<comments>http://eric.extremeboredom.net/2008/02/21/286#comments</comments>
		<pubDate>Thu, 21 Feb 2008 23:08:08 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://eric.extremeboredom.net/2008/02/21/286</guid>
		<description><![CDATA[My roomba tried to commit suicide today.

It managed to line up the two shoes and box you see here trapping itself, then went around in circles until it&#8217;s battery died.
Sadly, this Roomba has hated life from the very beginning. The day after I got it, it forced it&#8217;s way under my couch scratching it&#8217;s self [...]]]></description>
			<content:encoded><![CDATA[<p>My roomba tried to commit suicide today.</p>
<p style="text-align: center;"><a href="http://eric.extremeboredom.net/images/photos/roomba-trapped.jpg?ViewImage"><img src="http://eric.extremeboredom.net/images/photos/roomba-trapped.jpg?Size=400" /></a></p>
<p>It managed to line up the two shoes and box you see here trapping itself, then went around in circles until it&#8217;s battery died.</p>
<p>Sadly, this Roomba has hated life from the very beginning. The day after I got it, it forced it&#8217;s way under my couch scratching it&#8217;s self up and eventually getting stuck.</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2008/02/21/286/feed</wfw:commentRss>
		</item>
		<item>
		<title>SCALE 2008 Wrapup</title>
		<link>http://eric.extremeboredom.net/2008/02/12/285</link>
		<comments>http://eric.extremeboredom.net/2008/02/12/285#comments</comments>
		<pubDate>Tue, 12 Feb 2008 19:00:38 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://eric.extremeboredom.net/2008/02/12/285</guid>
		<description><![CDATA[
I had a great time at SCALE, here&#8217;s a wrap-up of some of the things that went on:

The first day had two tracks all about open source in healthcare. Speakers included Scott Shreeve (co-founder of Medsphere, and founder of Crossover Health) who gave a very motivating talk about the importance of transparency in healthcare, and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://flickr.com/photos/specialkevin/2260962337/in/set-72157603896957964/"><img src="http://farm3.static.flickr.com/2144/2260962337_7f1f40353a.jpg?v=0"/></a></p>
<p>I had a great time at <a href="http://www.socallinuxexpo.org/">SCALE</a>, here&#8217;s a wrap-up of some of the things that went on:</p>
<ul>
<li>The first day had two tracks all about open source in healthcare. Speakers included Scott Shreeve (co-founder of <a href="http://www.medsphere.com/">Medsphere</a>, and founder of <a href="http://crossoverhealth.wordpress.com/">Crossover Health</a>) who gave a very motivating talk about the importance of transparency in healthcare, and how open technology can revolutionize the U.S. system (or current lack there of). A marketing executive from Medsphere spoke about the company in general. <a href="http://www.vwdude.com/">Christian</a> and <a href="http://www.fredtrotter.com/">Fred Trotter</a> didn&#8217;t go easy on him, asking many direct questions about Medsphere&#8217;s past attacks on the open-source community and the lawsuit against the founders and unknown members of the community who downloaded the then-release source code. The guy basically knew nothing, I hope Fred will post more information on <a href="http://www.gplmedicine.org/">GPL Medicine</a> or <a href="http://www.fredtrotter.com/">his blog</a> in the coming days.</li>
<li>Due to a miscommunication, the <a href="http://live.gnome.org/GnomeEventsBox">GNOME event supplies box</a> didn&#8217;t make it out. We made a late night run to Kinkos and printed a huge banner, posters, and fliers. Thanks to Rosanna Yuen for her help on IRC figuring out what was going on (sorry for coming off as a stalker!), and to everyone who worked on the <a href="http://live.gnome.org/MarketingTeam/MarketingMaterial">GNOME Marketing Materials</a>. The &#8220;Happy People&#8221; poster was a big hit.</li>
<li>A group of developers and community members from <a href="http://www.foresightlinux.org/">Foresight Linux</a> were at the booth next to us, it was great to meet and talk to them. <a href="http://wiki.rpath.com/wiki/Conary">Conary</a> is a very interesting package management system, and I certainly plan to learn more about it.</li>
<li>Since we didn&#8217;t have the computer from the event box, Christian brought in his dual display quad-core desktop. He has both of his monitors rotated 90°, and we&#8217;re fairly sure that more people came by to talk about that than GNOME. By the end of the conference, the Gentoo folks across from us had done the same with their case-modded strangely mouse-less computer.</li>
<li>On the second day of the expo, <a href="http://www.digitalprognosis.com/">Jeff Schroeder</a> (another fellow GNOME volunteer) and the Foresight folks got there before us, and didn&#8217;t have the computer&#8217;s password. They asked the Gentoo guys for a Live CD so they could reset it. They asked what operating system the computer was running, and after hearing &#8220;Ubuntu&#8221;, their response was &#8220;FAIL SAUCE&#8221;. Of course, their Live CD completely failed to boot so Jeff got a Live CD from the Ubuntu booth which worked perfectly. He returned the Gentoo CD. Ehm, what was that phrase? Ah yes&#8230;FAIL SAUCE.</li>
<li>While standing at the booth, I got a random message on AIM. Since there was nobody coming up to the booth to talk to me at the time, I thought I&#8217;d try to engage this person in Linux conversation, which sadly fell on deaf ears. <a href="http://eric.extremeboredom.net/stuff/iluvsarah5674.log">Here&#8217;s the log</a>, what do you think? Pedophile trying to cover his ass, intoxicated cop, Chris Hansen, or really a clueless highschool student?</li>
<li><a href="http://www.0xdeadbeef.com/weblog/">Christopher Blizzard</a> from <a href="http://www.mozilla.com/">Mozilla</a> as well as a few other people expressed interest in my D-Bus Javascript bindings, so I&#8217;m going to try to find time soon to answer everyone&#8217;s email on the <a href="https://lists.mozilla.org/listinfo/dev-platforms-linux">dev-platforms-linux mailing list</a>, and get an initial release out there. If anyone is interested in helping out, please let me know. The bindings make it possible for XUL application and extension developers to interact with D-Bus services, allowing for deeper integration into the Linux desktop.</li>
<li>It was incredible how many companies in the expo hall were there promoting closed-source proprietary software. I was especially irritated with the folks from Promise, who didn&#8217;t even understand why someone might possibly want an open/free API for querying health information of their RAID hardware. Ironically, their booth was next to OpenBSD and across from the Free Software Foundation.</li>
<li>There was someone from HP trying to raise awareness about their commitment to linux/opensource. I&#8217;ve been very impressed with their open-source printing/scanning software (scanning over the network using XSane works!), so I was happy to see them support SCALE. However, the web interface on the neat little linux-powered NAS device he had on display is not open source, I hope this changes in the near future. Also, although I wasn&#8217;t told anything specific, I&#8217;ll be watching the news for an announcement about HP laptops preloaded with Linux later this year.</li>
<li>I had a good chat with one of the <a href="http://www.inkscape.org/">Inkscape</a> developers. One of my questions was if there were plans to use a docking library instead of having so many floating windows, and was very surprised/impressed when he showed me that it had already been implemented, and is coming in the next release! Although I&#8217;m not an artist myself, it is exciting to see free graphics software continue to improve, the next release will be a big step. Now if only GIMP would hurry up and follow suit&#8230;</li>
<li>The booth to our right was run by a family business called <a href="http://www.randrinc.com/">RANDR</a> that develops and maintains open-source business software. Very cool to see what they&#8217;ve been able to accomplish, check them out!</li>
<li>Thanks again to one of the guys running the <a href="http://www.postgresql.org/">PostgreSQL</a> booth for letting me borrow his laptop power cable!</li>
<li>A single person recognized the <a href="http://www.toorcon.org/">Toorcon</a> t-shirt I was wearing on the second day of the expo.</li>
<li>Lastly, I direct your attention to <a href="http://flickr.com/photos/specialkevin/2260967005/in/set-72157603896957964/">this photograph</a> which perhaps depicts Sun&#8217;s true commitment to Linux.</li>
</ul>
<p>While I absolutely had a great time, I found that very few people hadn&#8217;t heard of GNOME, and there wasn&#8217;t all that much to say to most people about it. Common questions were people wondering what&#8217;s coming in the next release, how to properly pronounce &#8220;GNOME&#8221;, and of course, why choose GNOME over KDE. </p>
<p>Running a booth and being involved in projects is absolutely the best way to get the most out of conferences, and I look forward to having a project of my own to show off at future expos. We were also tossing around the idea of having a hacker booth with bean bags chairs, music, and soft lighting, etc. where people can work on stuff and learn about open source software development.</p>
<p>Photos from <a href="http://flickr.com/photos/jordanlarrigan2/sets/72157603889681924/">Jordan</a> and <a href="http://flickr.com/photos/specialkevin/sets/72157603896957964/">Kevin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2008/02/12/285/feed</wfw:commentRss>
		</item>
		<item>
		<title>SCALE 2008</title>
		<link>http://eric.extremeboredom.net/2008/02/07/284</link>
		<comments>http://eric.extremeboredom.net/2008/02/07/284#comments</comments>
		<pubDate>Thu, 07 Feb 2008 19:53:39 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

		<guid isPermaLink="false">http://eric.extremeboredom.net/2008/02/07/284</guid>
		<description><![CDATA[
I&#8217;m heading down to LA tonight for SCALE, the Southern California Linux Expo. I&#8217;ll be volunteering at the GNOME booth in the Exhibition Hall, so if you&#8217;re in the area, stop by and say hi!
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.socallinuxexpo.org/"><img src="http://www.socallinuxexpo.org/scale6x/images/promos/southern-california-linux-expo-1.gif" /></a></p>
<p>I&#8217;m heading down to LA tonight for SCALE, the Southern California Linux Expo. I&#8217;ll be volunteering at the GNOME booth in the Exhibition Hall, so if you&#8217;re in the area, stop by and say hi!</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2008/02/07/284/feed</wfw:commentRss>
		</item>
		<item>
		<title>Seattle South Lake Union Streetcar opening day</title>
		<link>http://eric.extremeboredom.net/2007/12/13/283</link>
		<comments>http://eric.extremeboredom.net/2007/12/13/283#comments</comments>
		<pubDate>Thu, 13 Dec 2007 20:28:03 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Events]]></category>

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

		<guid isPermaLink="false">http://eric.extremeboredom.net/2007/12/13/283</guid>
		<description><![CDATA[(All photos credit whoever they link to, I don&#8217;t have a working camera right now, sadly.)
Yesterday was opening day for the new South Lake Union Streetcar line in Seattle, WA. This is not to be confused with the first stretch of light rail, scheduled to arrive late 2009.

I met a group of friends downtown at [...]]]></description>
			<content:encoded><![CDATA[<p>(All photos credit whoever they link to, I don&#8217;t have a working camera right now, sadly.)</p>
<p>Yesterday was opening day for the new South Lake Union Streetcar line in Seattle, WA. This is not to be confused with the first stretch of light rail, scheduled to arrive late 2009.</p>
<p style="text-align:center"><a href="http://flickr.com/photos/21507218@N07/2108466174/"><img src="http://farm3.static.flickr.com/2399/2108466174_826831c5d1.jpg?v=0" alt="map"/></a></p>
<p>I met a group of friends downtown at the Westlake station to join in on the festivities. After collecting a bags worth of streetcar swag, we piled into the inaugural run of the purple train along with probably 200 other people. It was <em>crowded</em>. Sadly amidst all the chaos, only one out of the five people in our group got a <a href="http://flickr.com/photos/seattlebonvivant/2106500266/">golden ticket</a>.</p>
<p style="text-align:center"><a href="http://flickr.com/photos/jdong/2106771337/"><img src="http://farm3.static.flickr.com/2029/2106771337_f0b502982e.jpg?v=0"/></a></p>
<p style="text-align:center"><a href="http://flickr.com/photos/cheftami/2106776842/"><img src="http://farm3.static.flickr.com/2192/2106776842_2afe51e36b.jpg?v=0"/><span style="font-size: xx-small">I think I see the back corner of my head somewhere in this picture.</span></a></p>
<p>For some reason - probably to be <em>absolutely sure</em> that there would be no accidents on the first day - they were running the streetcars at a maximum of 12mph (they are governed for 30mph, but will unlikely be run over 25mpg according to a City representative). Because of this, it was a <em>slow</em> ride, and left many people unimpressed. The city probably should have told everyone about the speed cap in advance.</p>
<p>One of the things that was being handed out was a &#8220;passport&#8221; containing a list of retailers, restaurants, and other businesses along the streetcar line. These participating businesses would stamp their name in your passport if you stopped by, and if you got 10 stamps, you could drop the passport off to enter into a drawing for prizes. Many businesses were also giving discounts to streetcar riders.</p>
<p style="text-align:center"><a href="http://flickr.com/photos/seattlebonvivant/2106934382/"><img src="http://farm3.static.flickr.com/2267/2106934382_a44865ae49.jpg?v=0" alt="passport"/></a></p>
<p>We got off the streetcar the North end of the line, popped open our passports, and found a nearby participating restaurant for lunch. Afterwards we set off, by train and foot, to explore. The passport served as a guide - getting enough stamps to enter the contest was really just a secondary goal. We all had a great time walking and riding around a neighborhood that none of us have spent much time in, and discovered new coffee shops, parks, expensive-yet-amazing condos, and a very cheap and tasty happy hour menu. The city did a great job with this program.</p>
<p style="text-align:center"><a href="http://flickr.com/photos/cheftami/2105977703/"><img src="http://farm3.static.flickr.com/2248/2105977703_c95cb3fd78.jpg?v=0" alt=""/></a></p>
<p>Throughout our travels, we bumped into a reporter for the <a href="http://www.seattlepi.com/">Seattle PI</a>. Both Andrew and Jessika were quoted in an <a href="http://seattlepi.nwsource.com/transportation/343274_streetcar13.html">article about the streetcar</a>.</p>
<blockquote><p>Three blocks from the streetcar line, near Fairview Avenue North, the streetcar&#8217;s debut brought busy sales of the SLUT T-shirts at the Kapow Coffee shop, where entrepreneur Jeremiah St. Georges has been selling them.</p>
<p>Outside the shop, Andrew Filer called the line a &#8220;small start&#8221; toward developing density that will support it &#8212; &#8220;a good idea in the long run. I like it.&#8221;</p>
<p>But Jesika McEvoy, sporting one of St. Georges&#8217; T-shirts, was unconvinced. &#8220;Why spend a lot of money on something that doesn&#8217;t go very fast and stops at every stoplight? It seems like Paul Allen should have funded this exclusively &#8230; the only ones benefiting are him and a couple of retailers.&#8221;</p></blockquote>
<p>The day ended with 11 stamps, a streetcar ride back downtown, and a bus ride home.</p>
<p style="text-align:center"><a href="http://flickr.com/photos/caseysail/2107805134/"><img src="http://farm3.static.flickr.com/2170/2107805134_09229fdf23.jpg?v=0" alt=""/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2007/12/13/283/feed</wfw:commentRss>
		</item>
		<item>
		<title>Conferences Roundup</title>
		<link>http://eric.extremeboredom.net/2007/09/16/281</link>
		<comments>http://eric.extremeboredom.net/2007/09/16/281#comments</comments>
		<pubDate>Sun, 16 Sep 2007 21:59:19 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Conferences]]></category>

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

		<guid isPermaLink="false">http://eric.extremeboredom.net/2007/09/16/281</guid>
		<description><![CDATA[I&#8217;ve been to a lot of conferences over the past few months, here&#8217;s a short summary of them:
May &#8216;07: Toorcon Seattle (BETA)

I wrote a separate post about this, see here.
July &#8216;07: Ubuntu Live

I took the train down to Portland with Andy, which is so much more enjoyable than flying, I don&#8217;t even know where start. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been to a lot of conferences over the past few months, here&#8217;s a <strike>short</strike> summary of them:</p>
<p><b>May &#8216;07: Toorcon Seattle (BETA)</b></p>
<p><img src="http://eric.extremeboredom.net/images/for_blog/toorcon_sea_07_bar.png" alt="" /></p>
<p>I wrote a separate post about this, see <a href="http://eric.extremeboredom.net/2007/05/13/277">here</a>.</p>
<p><b>July &#8216;07: Ubuntu Live</b></p>
<p><img src="http://eric.extremeboredom.net/images/for_blog/logo_date_loc.gif" alt=""/></p>
<p>I took the train down to Portland with Andy, which is so much more enjoyable than flying, I don&#8217;t even know where start. Unfortunately, Amtrak&#8217;s trains on the west cost are quite slow, and at least between Seattle and Portland, don&#8217;t have priority on the track. The trip home was delayed over two hours because the freight company was using the tracks, so we were stuck in the middle of nowhere for a while.</p>
<p>My happiness with mass transit continued after getting off the train, when I walked a few blocks from the Amtrak station and hopped on <a href="http://www.trimet.org/">Portland&#8217;s light rail</a>, which is absolutely wonderful. It dropped me off right in front of my hotel, across the street from the convention center where the conference took place. And best of all, this was all within the free ride zone. <a href="http://vwdude.com/">Chris</a> and <a href="http://shreeve.blogspot.com/">Steve</a> arrived from California by air and also were impressed with the continence of the rail system, which took them from the airport right to the hotel, for under $3. </p>
<p>Fortunately, the first leg of light rail starts operating here in Seattle in 2009, and will eventually stop a block and a half from my apartment. More information on that <a href="http://www.soundtransit.org/x1171.xml">here</a>.</p>
<p>Onto the conference itself, there were some excellent keynotes, including <a href="http://www.markshuttleworth.com/">Mark Shuttleworth</a> (founder of Canonical/Ubuntu) and <a href="http://emoglen.law.columbia.edu/">Eben Moglen</a> (from the <a href="http://www.softwarefreedom.org/">SFLC</a>). Eben Moglen&#8217;s talked about GPLv3, and also encouraged everyone to shift their thinking from &#8220;open source&#8221; to &#8220;free software&#8221;. He had a very positive response from the crowd, which I think is great news. </p>
<p>There was also talk about the effect &#8220;web 2.0&#8243; has on software freedom, specifically about how we&#8217;ve been moving from proprietary software on the desktop to proprietary software on the web. This time however, we loose control of who controls and has access to our data, not only the file format it&#8217;s stored in.</p>
<p>Chris and I are both irritated by all the attention web applications have been getting recently. We both hope developers will start writing great free desktop software again some day soon. The linux desktop should be innovative, NOT just <a href="http://online-desktop.org/wiki/Online_Desktop">the best shell to the web</a>.</p>
<p>The sessions weren&#8217;t as technical as we had hoped, but we all certainly learned something new. Sadly, <a href="http://eric.extremeboredom.net/2007/07/20/280">the BoF I arranged</a> was a non-event, and I was <em>completely</em> blown off by everyone from Canonical.</p>
<p>Someone from <a href="http://www.openmoko.com/">OpenMoko</a> had a booth at the vendor area showing off the Neo1978, and I have to say, I don&#8217;t like it. It&#8217;s rather big and bulky, but more importantly, the screen is inset from the case, which I find to be very unappealing. The lack of EDGE or WiFi is also a big deal breaker, and software is very unintuitive and clunky, but I see there&#8217;s good progress being made there.</p>
<p><b>July &#8216;07: OSCON</b></p>
<p><img src="http://conferences.oreillynet.com/images/os2007/banners/210x60.jpg" width="210" height="60"  border="0"  alt="OSCON 2007" title="OSCON 2007"  /></p>
<p>I didn&#8217;t pay for any sessions at <a href="conferences.oreillynet.com/os2007/">OSCON</a>, but the exhibition hall was HUGE, and I spent almost half the day there. Intel dominated the floor with people demoing their new <a href="http://osstbb.intel.com/">Thread Building Blocks framework</a> (which looks very cool), as well as their new <a href="http://www.moblin.org/">Moblin hardware platform</a> (which doesn&#8217;t interest me at all).</p>
<p><a href="http://www.mozilla.org/">Mozilla</a> also had a solid presence there. Chris and I had a good chat with someone about <a href="http://en.wikipedia.org/wiki/XUL">XUL</a>, which I still need to follow up on.</p>
<p><a href="http://www.sun.com/">Sun</a> was there, but I hope nobody else tried to use any of the computers they had on display, some very pissed off looking woman yelled at me and scared me off. Fortunately, I did manage to get some OpenSolaris DVDs before running away. I need to find time to install Nexenta and see what all the ZFS fuss is about.</p>
<p><b>July &#8216;07: Facebook Developer Garage</b></p>
<p><img src="http://eric.extremeboredom.net/images/for_blog/fb_garage_sea.png" alt=""/></p>
<p>At <a href="http://www.billmonk.com/">work</a>, we developed a <a href="">Facebook application</a>, so I figured I&#8217;d show up and represent. </p>
<p>There were three people from <a href="http://www.facebook.com/">Facebook</a> who talked a bit about the platform and took questions/feedback from the crowd, but were all very careful not to talk about future plans.</p>
<p>The Facebook Platform is interesting to startups because it provides instant access to a huge user base, and has already proven to be a successful way to bootstrap a product.</p>
<p>Overall, most people were extremely excited about the platform, but at the same time, had complaints about functionality and features. The representatives from Facebook acknowledged everything that was brought up, but because of their policy to not speculate on the future, they made no commitments, and I don&#8217;t think anyone left feeling confident that specific things would change. I suspect a Windows developer would feel the same way having run into problems or limitations with their proprietary platform.</p>
<p>Although they claim otherwise, Facebook is a closed, proprietary platform, much like Windows or OS X. As a developer for this platform, you&#8217;re limited to a small set of functionality that could change underneath you any day, and may not work as documented.</p>
<p>Facebook is about more than social networking, they are creating a new type of operating system, much like Google has been doing with their online web-based applications. </p>
<p>Personally, I&#8217;m not ready to loose the freedom to tinker with applications that I use, or have my data stored online (and possibly owned) by a third party. If this is the case, I&#8217;ve lost my freedom, and might as well go back to using Windows.</p>
<p><b>August &#8216;07: DEFCON</b></p>
<p><img src="http://eric.extremeboredom.net/images/for_blog/dc15_header_cropped.png" alt=""/></p>
<p>I&#8217;ve been saying I&#8217;d go to DEFCON for a few years, and this time I actually made it! Just about everyone I know was there, so it would have been a very boring weekend in Seattle had I not. Generally I enjoy the social aspect of conferences more than the talks themselves, and DEFCON offers plenty of other things to do besides attending talks all day. Some friends got second place in the aCTF contest, next year I look forward to being more active in both that and the badge hacking competition.</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2007/09/16/281/feed</wfw:commentRss>
		</item>
		<item>
		<title>Seattle Linux User&#8217;s Group Meets this Saturday</title>
		<link>http://eric.extremeboredom.net/2007/08/30/282</link>
		<comments>http://eric.extremeboredom.net/2007/08/30/282#comments</comments>
		<pubDate>Fri, 31 Aug 2007 05:49:47 +0000</pubDate>
		<dc:creator>FireRabbit</dc:creator>
		
		<category><![CDATA[Events]]></category>

		<category><![CDATA[Open Source]]></category>

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

		<guid isPermaLink="false">http://eric.extremeboredom.net/2007/08/30/282</guid>
		<description><![CDATA[I&#8217;ve been working with a few other people to resurrect GSLUG, the Greater Seattle Linux User&#8217;s group. 
The next meeting is this Saturday (September 1st, 2007) at 12:00pm, here&#8217;s the announcement that Ian sent out on the list:

  The September 2007, inaugural meeting of the Greater Seattle
  Linux Users Group (GSLUG) will be [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working with a few other people to resurrect <a href="http://www.gslug.org/">GSLUG, the Greater Seattle Linux User&#8217;s group</a>. </p>
<p>The next meeting is this Saturday (September 1st, 2007) at 12:00pm, here&#8217;s the announcement that Ian sent out on the list:</p>
<pre>
  The September 2007, inaugural meeting of the Greater Seattle
  Linux Users Group (GSLUG) will be held on Saturday, September 1st,
  starting promptly at 12:00 PM on the North Seattle Community College
  campus.

  We are confirmed to use room IB 3319. (Yes, the same room we've
  had in the past)

  Parking is free on weekends.

  For directions and complete details, please visit the meeting's Wiki
  entry:

      <a href="http://wiki.gslug.org/index.php/Meeting_2007-09-01">http://wiki.gslug.org/index.php/Meeting_2007-09-01</a>
      (Links to: <a href="http://www.northseattle.edu/maps/">http://www.northseattle.edu/maps/</a> for directions)

  Please feel free to forward this announcement as appropriate.

  This will be the first meeting GSLUG has had in quite a while, and
  things have changed. The presentation format will be that of Lightning
  talks (Several talks from 5-10 minutes in length, with open Q&#038;A
  afterwards) instead of the traditional hour or so long presentations.
</pre>
<p>Microsoft might be right on the other side of the water, but Linux and Free Software is alive in Seattle! If you&#8217;re reading this and in the Seattle area, I hope to see you there! (Also, I&#8217;m giving a talk!)</p>
]]></content:encoded>
			<wfw:commentRss>http://eric.extremeboredom.net/2007/08/30/282/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
