<?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>compu.terlicio.us &#187; Ramblings</title>
	<atom:link href="http://compu.terlicio.us/category/ramblings/feed/" rel="self" type="application/rss+xml" />
	<link>http://compu.terlicio.us</link>
	<description>Flying, Computers, and Food</description>
	<lastBuildDate>Thu, 08 Oct 2009 09:07:30 +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>Poor Programming Proliferation</title>
		<link>http://compu.terlicio.us/2009/06/poor-programming-proliferation/</link>
		<comments>http://compu.terlicio.us/2009/06/poor-programming-proliferation/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 20:19:32 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Coding Practices]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Rant]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=145</guid>
		<description><![CDATA[It seems, reading the news, that nuclear proliferation will be the end of the world. For a WordPress developer, on the other hand, poor plugin programming seems likely be the end of the world. I rarely take shots at other people online (it seems rather trollish to me), but the sheer horror of Fire Studio&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>It seems, reading the news, that nuclear proliferation will be the end of the world. For a WordPress developer, on the other hand, poor plugin programming seems likely be the end of the world. I rarely take shots at other people online (it seems rather trollish to me), but the sheer horror of <a href="http://fire-studios.com/blog/wordpress-plugin-templates">Fire Studio&#8217;s Wordpress Plugin Templates </a>compel me to say something.<br />
<span id="more-145"></span><br />
While I certainly applaud people who make plugin development easier, if one <em>is</em> going to distribute a plugin framework, it should, at the very least, follow the minimum best practices for WordPress programming. Fire Studio&#8217;s Wordpress Plugin Templates is an epic fail in this regard. I fall pray to these mistakes from time to time myself, and there may be differences of opinion and style in programming. Nonetheless, as the Wordpress Plugin Template is designed to be distributed, I must list out the reasons why NOT to use the Wordpress Plugin Templates.</p>
<p><strong>1:</strong> Overuse of the options table:<br />
<code>get_option()</code> and <code>set_option()</code> are wonderfully useful features, if used in moderation. If not used in moderation, they result in a hellish jumble of entries in the wp-options table. Instead of using many discreet entries, an &#8220;options&#8221; object or array should be serialized into a <code>set_option()</code> call. While this <em>may</em> be overkill for a very simple plugin, once you get to any number of options it is a necessity.</p>
<p><strong>2: </strong> No NONCEs<br />
This is such an offensive mistake it makes me cry a little. As <a href="http://compu.terlicio.us/2008/05/stopping-nonces-part-1/">I</a>(and <a href="http://markjaquith.wordpress.com/2006/06/02/wordpress-203-nonces/">Mark Jaquith</a> and <a href="http://www.prelovac.com/vladimir/improving-security-in-wordpress-plugins-using-nonces">Vladimir Prelovac</a> and <a href="http://lorelle.wordpress.com/2009/03/07/firewalling-and-hack-proofing-your-wordpress-blog/">many others</a>) have written, using nonces is a <strong>must</strong> for any plugin which takes options from a user. Strangely enough, the nonce field is included, but then never checked (WTF?). Without the use of nonces, a nefarious user can arbitrarily change your plugin settings, and possibly even take over your database. Particularly if there are</p>
<p><strong>3: </strong> No SQL Injection Security<br />
Not having nonces is one thing. It&#8217;s bad, but I&#8217;ve forgotten from time to time myself. But not even escaping input before putting it in the database is, to quote &#8220;Yahtzee&#8221;, <a href="http://www.splitreason.com/product/582">pants on head retarded</a>!. Escaping user input is probably the single simplest and most basic security. It&#8217;s the last line of defense against people replacing your header image with horrific porn. Don&#8217;t write code without it.</p>
<p><strong>4: </strong> Unnecessary use of <code>global</code> variables<br />
This exists on two levels:<br />
A) In <code>purpose.php</code>, both <code>$wp_query</code> and <code>$post</code> are called into the function via global. While this probably won&#8217;t do any harm, globally including everything everywhere is what made earlier version of php such a nightmare and it looks messy. If you don&#8217;t need a variable, don&#8217;t include it.<br />
B) <code>$var1</code>-<code>$var4</code> are declared to static values at the top of the file where they will clutter up the global namespace. They are never accessed from their global context, they are always <code>get_option()</code>ed. In fact, the only reason they are declared here is so that they can be <code>add_option</code>ed into options. EVERY TIME THE CODE RUNS. That&#8217;s four superfluous function calls every single time the file loads. This should be done once, on plugin install. Not every single time WordPress loads a page.</p>
<p><strong>5: </strong> Include vs. Require<br />
I realize that this is pretty nit-picky, but, when including files that are <strong>required</strong> for the program to function, the appropriate function is <code>require()</code> (or better yet, <code>require_once()</code>. If the file is missing, the code to break while trying to include the file, instead of mysteriously throwing messages about redeclaration of functions.</p>
<p>In conclusion, while the concept of a plugin framework is laudable, Fire Studio&#8217;s implementation falls far short of any reasonable mark of best practices, and only serves to encourage worst practices.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2009/06/poor-programming-proliferation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>µAudio 0.7 Preview</title>
		<link>http://compu.terlicio.us/2009/05/audio-07-preview/</link>
		<comments>http://compu.terlicio.us/2009/05/audio-07-preview/#comments</comments>
		<pubDate>Fri, 29 May 2009 15:39:59 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[audio player]]></category>
		<category><![CDATA[micro-audio]]></category>
		<category><![CDATA[Software Preview]]></category>
		<category><![CDATA[WordCamp]]></category>
		<category><![CDATA[µAudio]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=141</guid>
		<description><![CDATA[With several major features now in &#181;Audio 0.7, I wanted to preview what&#8217;s coming up.
1) Static JavaScript. Instead of using the *.js.php which I have been using, javascript templates are being parsed by a small JS templating engine and stored as static files. This should significantly cut down on the amount of time spent processing [...]]]></description>
			<content:encoded><![CDATA[<p>With several <a href="http://redmine.paintedrockcommunications.com/projects/show/micro-audio">major features</a> now in &micro;Audio 0.7, I wanted to preview what&#8217;s coming up.</p>
<p>1) Static JavaScript. Instead of using the *.js.php which I have been using, javascript templates are being parsed by a small JS templating engine and stored as static files. This should significantly cut down on the amount of time spent processing php. Each file is stored as filename-hashcode.js.</p>
<p>2) Bootstrapper. People have told me a) They don&#8217;t think it&#8217;s fair to count the size without jQuery (it probably isn&#8217;t) and b) They don&#8217;t want to load jQuery on every pageload. To that end, the default install will now include a tiny bootstrapper (hopefully under 200 Bytes) that doesn&#8217;t load the player until and unless someone actually wants to use them.</p>
<p>3) Single audio player. For legacy browsers, there will only be one player, the awesome <a href="http://www.schillmania.com/projects/soundmanager2/">Sound Manager 2</a> player. User interface will be provided via jQuery based controls. Using a single &#8220;invisible&#8221; player allows a consistent JavaScript interface for all the players, and, should help to</p>
<p>4) &lt;audio&gt; tag based player. This will probably be beta only in 0.7, but I want to move towards using the native browser implementation instead of flash. Using a javascript interface and sound manager means it should be a seamless user experience, and the only difference is whether the JavaScript is calling the sound manager js or the &lt;audio&gt; tag.</p>
<p>I&#8217;ll be at WordCamp in San Francisco this weekend, anyone who wants to bend my ear about a feature can do so. Twitter at <a href="http://twitter.com/jwriteclub">jwriteclub</a> to get together.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2009/05/audio-07-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing &#181;Mint</title>
		<link>http://compu.terlicio.us/2008/10/announcing-mint/</link>
		<comments>http://compu.terlicio.us/2008/10/announcing-mint/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 02:43:00 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Plug-ins]]></category>
		<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[announcements]]></category>
		<category><![CDATA[micro-mint]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[µMint]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=83</guid>
		<description><![CDATA[
I am happy to announce the release of a new plugin today: µMint. Like my other µ plugins, it&#8217;s a small, lightweight plugin to (hopefully) do something useful. In this case, µMint allows you to painlessly integrate Shaun Inman&#8217;s Mint into Wordpress. Unlike the currently existent solution, µMint does not make use of iframes. Instead, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://compu.terlicio.us/wp-content/uploads/2008/10/mm_sidebar1.jpg" style="float: left; padding: 4px;"><img class="size-medium wp-image-85" title="µMint Sidebar Widget" src="http://compu.terlicio.us/wp-content/uploads/2008/10/mm_sidebar1.jpg" alt="µMint Sidebar" width="141" height="149" /></a></p>
<p>I am happy to announce the release of a new plugin today: µMint. Like my other µ plugins, it&#8217;s a small, lightweight plugin to (hopefully) do something useful. In this case, µMint allows you to painlessly integrate <a title="Mint Gardener" href="http://www.shauninman.com/">Shaun Inman&#8217;s</a> <a href="http://haveamint.com">Mint</a> into Wordpress. Unlike the currently existent solution, µMint does not make use of iframes. Instead, µMint is designed to work with both the <a href="http://84degrees.com/expose/">Exposé API</a>, by <a href="http://84degrees.com">Adam Livesley</a> as well as the included API, µAPI for Mint. Furthermore, there is a development version of a connector whcih allows Wordpress to directly query Mint, when the two share a database.</p>
<p>µAPI does more than just get your stats, it displays them for you. You can have your choice of a sidebar widget, a dashboard widget, or both. And, in the µ plugin philosophy, stats are cached periodically to reduce the number of API calls required.</p>
<p>I think that µAPI neatly bridges the gap between Mint and Wordpress, and I hope you&#8217;ll <a href="http://compu.terlicio.us/code/plugins/mint/">give it a try</a>.</p>
<div id="attachment_84" class="wp-caption alignright" style="width: 508px"><a href="http://compu.terlicio.us/wp-content/uploads/2008/10/mm_dashboard.jpg"><img class="size-full wp-image-84" title="µMint Dashboard" src="http://compu.terlicio.us/wp-content/uploads/2008/10/mm_dashboard.jpg" alt="µMint for Wordpress Dashboard" width="498" height="321" /></a><p class="wp-caption-text">µMint for Wordpress Dashboard</p></div>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2008/10/announcing-mint/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google Chrome: Not Evil?</title>
		<link>http://compu.terlicio.us/2008/09/google-chrome-not-evil/</link>
		<comments>http://compu.terlicio.us/2008/09/google-chrome-not-evil/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 21:32:19 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=64</guid>
		<description><![CDATA[It is with great fanfare &#8212; and a comic book &#8212; that Google released their new Chrome browser public beta.
Although it has been generally well received, there is some controversy surrounding Chrome. Initial concerns hinged on the End User License Agreement &#8212; or EULA &#8212; specifically, terms it contains regarding the user&#8217;s intellectual property. In [...]]]></description>
			<content:encoded><![CDATA[<p>It is with great <a title="Google Chrome News" href="http://news.google.com/news?q=google+chrome">fanfare</a> &#8212; and a <a title="Google Chrome Comic" href="http://www.google.com/googlebooks/chrome/">comic book</a> &#8212; that Google released their new <a title="Google Chrome" href="http://www.google.com/chrome">Chrome browser</a> public beta.</p>
<p>Although it has been <a title="Ars Technica Review of Google Chrome" href="http://arstechnica.com/news.ars/post/20080902-hands-on-with-chrome-googles-browser-shines-mostly.html">generally well received</a>, there is some <a title="Chrome EULA at LGF" href="http://littlegreenfootballs.com/article/31140_Google_Owns_Everything_You_Create_with_Their_New_Browser">controversy surrounding Chrome</a>. Initial concerns hinged on the End User License Agreement &#8212; or EULA &#8212; specifically, terms it contains regarding the user&#8217;s intellectual property. In addition, there are serious questions about how much information Chrome collects and what, if any, anonomizations are made to the data before Google logs it.<span id="more-64"></span></p>
<p>The potentially offensive terms from the EULA relate to the intellectual property of the user. Specifically, Google more or less asserts a an unlimited license to anything you do with the browser:</p>
<blockquote><p>11. Content license from you<br />
11.1 You retain copyright and any other rights you already hold in Content which you submit, post or display on or through, the Services. <strong>By submitting, posting or displaying the content you give Google a perpetual, irrevocable, worldwide, royalty-free, and non-exclusive license to reproduce, adapt, modify, translate, publish, publicly perform, publicly display and distribute any Content which you submit, post or display on or through, the Services.</strong> This license is for the sole purpose of enabling Google to display, distribute and promote the Services and may be revoked for certain Services as defined in the Additional Terms of those Services.</p></blockquote>
<p>(Emphasis courtesy of <a title="Google Chrome News at Gizmondo" href="http://gizmodo.com/5044871/google-chrome-eula-claims-ownership-of-everything-you-create-using-chrome-from-blog-posts-to-emails">Gizmondo</a>)</p>
<p>Although Google appears to have <a title="Google (sorta) Backs Down on the Chrome EULA" href="http://arstechnica.com/news.ars/post/20080903-google-on-chrome-eula-controversy-our-bad-well-change-it.html">backed off of the EULA terms</a>, there are still potential issues with the browser. As CNet&#8217;s <a title="Google Chrome User Tracking" href="http://news.cnet.com/8301-13860_3-10031661-56.html?tag=newsLeadStoriesArea.0">Ina Fried reports</a>, there are potentially serious issues with what and how much user input google tracks through Chrome&#8217;s &#8220;OmniBar&#8221;:</p>
<blockquote><p>&#8230;Google will have access to any keystrokes that are typed into the browser&#8217;s Omnibox, even before a user hits enter&#8230;Google has every intention of retaining some of that data even after it provides the promised suggestions&#8230; the company plans to store about 2 percent of that data&#8230;along with the Internet Protocol address of the computer that typed it.</p>
<p>In theory, that means that if one were to type the address of a site&#8211;even if they decide not to hit enter&#8211;they could leave incriminating evidence on Google&#8217;s servers.</p></blockquote>
<p>While I do plan to give Chrome a try, I think that at this point the only logical choice is to stay away from Chrome as a day to day browser.</p>
<p><strong>Update:</strong> In addition to the flaws listed above, Google apparently <a title="Java Exploit in Chrome" href="http://www.readwriteweb.com/archives/security_flaw_in_google_chrome.php">couldn&#8217;t be bothered to patch</a> the Java exploit in WebKit.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2008/09/google-chrome-not-evil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mug, SmugMug</title>
		<link>http://compu.terlicio.us/2008/07/mug-smugmug/</link>
		<comments>http://compu.terlicio.us/2008/07/mug-smugmug/#comments</comments>
		<pubDate>Sun, 13 Jul 2008 19:45:47 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[photograph]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[SmugMug]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=57</guid>
		<description><![CDATA[
The photograph is married to the eye,
Grafts on its bride one-sided skins of truth&#8230;.
                                         ~ [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
The photograph is married to the eye,<br />
Grafts on its bride one-sided skins of truth&#8230;.<br />
                                         ~ Dylan Thomas
</p></blockquote>
<p>I have finally uploaded photos to some of my posts. I had been having trouble with flickr with regards to multiple accounts, etc, and have been generally annoyed with flickr lately. Recently, SmugMug was mentioned to me. After trying it out a bit I was quite happy with SmugMug and, as <a href="http://benjaminsterling.com/">Ben Striling&#8217;s</a> brilliant PhotoXhibit plugin supports SmugMug I was quickly sold on SmugMug.</p>
<p>So, enjoy the delicious photo goodness of . . . photos.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2008/07/mug-smugmug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OLPC XO</title>
		<link>http://compu.terlicio.us/2008/01/olpc-xo/</link>
		<comments>http://compu.terlicio.us/2008/01/olpc-xo/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 19:27:47 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Devices]]></category>
		<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[100 laptop]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[OLPC]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[toys]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/2008/01/12/olpc-xo/</guid>
		<description><![CDATA[<ul id="px2" title="OLPC XO Glamour Shots">
<li><a href="http://jwriteclub.smugmug.com/photos/330985492_aSaJJ-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330985492_aSaJJ-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330985492_aSaJJ-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330985492_aSaJJ-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330987861_kfvVL-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330987861_kfvVL-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330987861_kfvVL-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330987861_kfvVL-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330972035_ypn2C-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330972035_ypn2C-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330972035_ypn2C-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330972035_ypn2C-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330973072_iW3ET-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330973072_iW3ET-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330973072_iW3ET-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330973072_iW3ET-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330973806_5AkFb-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330973806_5AkFb-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330973806_5AkFb-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330973806_5AkFb-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330975128_A6hfE-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330975128_A6hfE-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330975128_A6hfE-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330975128_A6hfE-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330975812_Xht9a-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330975812_Xht9a-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330975812_Xht9a-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330975812_Xht9a-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330976551_BtNq3-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330976551_BtNq3-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330976551_BtNq3-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330976551_BtNq3-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330977145_ptanB-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330977145_ptanB-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330977145_ptanB-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330977145_ptanB-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330979202_8WmpC-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330979202_8WmpC-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330979202_8WmpC-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330979202_8WmpC-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330980426_SbCfq-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330980426_SbCfq-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330980426_SbCfq-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330980426_SbCfq-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330981118_MJV26-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330981118_MJV26-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330981118_MJV26-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330981118_MJV26-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330981725_hB9Je-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330981725_hB9Je-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330981725_hB9Je-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330981725_hB9Je-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330982406_dNLYC-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330982406_dNLYC-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330982406_dNLYC-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330982406_dNLYC-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330983063_HuAnW-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330983063_HuAnW-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330983063_HuAnW-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330983063_HuAnW-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330984415_exXQ7-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330984415_exXQ7-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330984415_exXQ7-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330984415_exXQ7-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330984915_5bjir-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330984915_5bjir-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330984915_5bjir-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330984915_5bjir-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
</ul>
<link id="px_editstylesheet" type="text/css" href="http://compu.terlicio.us/wp-content/plugins/photoxhibit/photoxhibit.php?option=css&gid=2&1284081404" rel="stylesheet"/>It&#8217;s been years in coming. And it costs about 188% of its original projected price. But Nick Negroponte&#8217;s &#8220;$100 Laptop&#8221; has finally arrived. To be more specific, mine arrived in the mail toady.  What follows is my initial impression of the &#8220;XO&#8221; and some pictures.

Construction:
This is one area where the XO excels. The diminutive [...]]]></description>
			<content:encoded><![CDATA[<ul id="px2" title="OLPC XO Glamour Shots">
<li><a href="http://jwriteclub.smugmug.com/photos/330985492_aSaJJ-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330985492_aSaJJ-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330985492_aSaJJ-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330985492_aSaJJ-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330987861_kfvVL-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330987861_kfvVL-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330987861_kfvVL-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330987861_kfvVL-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330972035_ypn2C-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330972035_ypn2C-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330972035_ypn2C-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330972035_ypn2C-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330973072_iW3ET-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330973072_iW3ET-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330973072_iW3ET-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330973072_iW3ET-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330973806_5AkFb-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330973806_5AkFb-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330973806_5AkFb-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330973806_5AkFb-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330975128_A6hfE-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330975128_A6hfE-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330975128_A6hfE-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330975128_A6hfE-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330975812_Xht9a-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330975812_Xht9a-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330975812_Xht9a-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330975812_Xht9a-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330976551_BtNq3-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330976551_BtNq3-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330976551_BtNq3-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330976551_BtNq3-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330977145_ptanB-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330977145_ptanB-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330977145_ptanB-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330977145_ptanB-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330979202_8WmpC-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330979202_8WmpC-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330979202_8WmpC-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330979202_8WmpC-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330980426_SbCfq-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330980426_SbCfq-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330980426_SbCfq-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330980426_SbCfq-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330981118_MJV26-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330981118_MJV26-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330981118_MJV26-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330981118_MJV26-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330981725_hB9Je-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330981725_hB9Je-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330981725_hB9Je-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330981725_hB9Je-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330982406_dNLYC-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330982406_dNLYC-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330982406_dNLYC-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330982406_dNLYC-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330983063_HuAnW-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330983063_HuAnW-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330983063_HuAnW-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330983063_HuAnW-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330984415_exXQ7-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330984415_exXQ7-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330984415_exXQ7-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330984415_exXQ7-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
<li><a href="http://jwriteclub.smugmug.com/photos/330984915_5bjir-L.jpg" rel="g2" " title="" " alt=""><img src="http://jwriteclub.smugmug.com/photos/330984915_5bjir-Ti.jpg" metadata="%7B%22tnurl%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330984915_5bjir-Ti.jpg%22%2C%22url%22%3A%22http%3A%2F%2Fjwriteclub.smugmug.com%2Fphotos%2F330984915_5bjir-L.jpg%22%2C%22alt%22%3A%22%22%7D" alt=""/></a></li>
</ul>
<link id="px_editstylesheet" type="text/css" href="http://compu.terlicio.us/wp-content/plugins/photoxhibit/photoxhibit.php?option=css&gid=2&1284081404" rel="stylesheet"/><p>It&#8217;s been years in coming. And it costs about 188% of its original projected price. But Nick Negroponte&#8217;s &#8220;$100 Laptop&#8221; has finally arrived. To be more specific, mine arrived in the mail toady.  What follows is my initial impression of the &#8220;XO&#8221; and some pictures.</p>
<p><span id="more-14"></span></p>
<h3>Construction:</h3>
<p>This is one area where the XO excels. The diminutive lappy is rock solid. One can imagine a post apocalyptic world in which the OLPC is the only technological reminder of an earlier era. I must confess to skepticism when I first read that the XO had a rotating screen. It seemed that the Achilles heel of laptops of 10 times the cost, would be unlikely to be sturdily implemented in a laptop less expensive than many DVD players</p>
<p>As advertised, the keyboard appears water resistant. Of course this is probably made somewhat superfluous by the fact that the &#8220;ears&#8221;, which cover the ports, are not secure enough to keep water out of the ports. So, yeah, the keyboard survived that dunking in a river, unfortunately, the top half is full of water.</p>
<h3>Ergonomics:</h3>
<p>The XO fails miserably when it comes to ergonomics. I second the comment that many others have made that the keyboard is too small for even the tiniest of hands. In addition, the key action is much too shallow, although there is a slight springiness to the action that keeps your fingers from feeling like you are pounding on a plastic board.</p>
<p>Apart from the problems with the keyboard, the &#8220;top&#8221; of the laptop &#8212; the screen side &#8212; is much too heavy. It appears that the bulk of the electronics are in the screen half. While this is certainly a novel approach, I suspect that the reason that most other manufacturers place the electronics in the base is the same reason that the XO fails in this regard: the unit is dangerously top heavy. And yes, the XO is very sturdy, but I cannot praise a design that seems designed to make the accidents inevitable in a device used by kids <em>more </em>likely.</p>
<h3>Interface:</h3>
<p>My initial impression of &#8220;Sugar&#8221;, the XO&#8217;s operating system, was quite positive, when I was running it under VMWare on an Intel core quad. Unfortunately, on the 433MHz AMD Geode processor, Sugar bogs down with only a few programs &#8212; called &#8220;activities&#8221; &#8212; running. In addition, one &#8220;fundamental&#8221; application, web browsing, fails miserably. It can be argued that the primary purpose of a computer like the XO is for activities like word processing. In the modern, web centric world, however, I think that a solid web browser is key. The XO&#8217;s browser only supports one tab. In addition, even moderately sized web pages are unmanageable given the impossible, stuttery nature of scrolling. Finally, flash claims to be installed, but not a single flash app that I tried to load &#8212; YouTube, Simpleviewer and an MP3 player &#8212; loaded.</p>
<p>Apart from performance issues, I am not sold on the layout of sugar. Instead of a traditional menu based system (K or Windows), Sugar employs a weird dock based system somewhat reminiscent of OS X, except it doesn&#8217;t really work. The dock surrounds the entire window when it is visible, much like a picture frame. In the short time that I used the XO, however, the &#8220;dock&#8221; was invariably invisible whenever I wanted to use it for something, and it invariably appeared as soon as I tried to do something near the edge of the screen &#8212; unless it didn&#8217;t. I cannot quite figure out the logic behind it at the moment, however, sometimes it seems to appear or not on a logic all its own.</p>
<h3>Final Word:</h3>
<p>While the XO is an interesting device, I, for one, cannot really recommend  it either as a system for those in the third world, or anywhere else. While it came in close to on target price wise, that is actually not my main criticism. I think that it is amazing that they OLPC foundation is able to design a laptop for $188(ish). The problem is that it is so underpowered and difficult to use that it seems rather a waste at any price. Particularly given that many of the areas it is destined for lack clean water and available power.</p>
<p>In addition, all other criticisms aside, I cannot help but wonder at the logic of introducing youngsters to an operating system unlike anything they are likely to ever use once they advance beyond the XO. There are a number of operating systems in use around the world today. None of them bear significant resemblance to Sugar. How are students raised on this proprietary system supposed to transition to &#8220;real&#8221; computers?</p>
<p>Finally, the model for continued software development and troubleshooting for the XO relies mostly upon the users (children) writing their own software and providing their own service. Not only do I doubt both the ethical and moral efficacity of such a system, I rather suspect that the mesh networking and peer created software will spawn massive bugs and viruses that spread across the network.</p>
<p>In short, while an interesting experiment, I do not think that the XO will prove a viable solution in the wild.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2008/01/olpc-xo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Young Women Should NOT Have Blogs</title>
		<link>http://compu.terlicio.us/2007/12/why-young-women-should-not-have-blogs/</link>
		<comments>http://compu.terlicio.us/2007/12/why-young-women-should-not-have-blogs/#comments</comments>
		<pubDate>Sat, 22 Dec 2007 04:02:10 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Ramblings]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[help this site!]]></category>
		<category><![CDATA[lolcat]]></category>
		<category><![CDATA[MovableType]]></category>
		<category><![CDATA[terlicio.us]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/2007/12/21/why-young-women-should-not-have-blogs/</guid>
		<description><![CDATA[My good buddy Jessie who also has her blog here on the terlicio.us servers just updated her CSS and put up a new post.
Plus, she&#8217;s a Movable Type fangirl.
&#8216;Nuff Said!
]]></description>
			<content:encoded><![CDATA[<p>My good buddy <a title="Toasterlicious" href="http://toas.terlicio.us/">Jessie</a> who also has her blog here on the terlicio.us servers just updated her CSS and put up a <a title="Help!" href="http://toas.terlicio.us/2007/12/still-too-damn-funny/">new post</a>.</p>
<p>Plus, she&#8217;s a Movable Type fangirl.</p>
<p>&#8216;Nuff Said!</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2007/12/why-young-women-should-not-have-blogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Another Blog (sigh)</title>
		<link>http://compu.terlicio.us/2007/10/another-blog-sigh/</link>
		<comments>http://compu.terlicio.us/2007/10/another-blog-sigh/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 11:13:22 +0000</pubDate>
		<dc:creator>Christopher O'Connell</dc:creator>
				<category><![CDATA[Ramblings]]></category>

		<guid isPermaLink="false">http://compu.terlicio.us/?p=5</guid>
		<description><![CDATA[File under: Don&#8217;t know what&#8217;s good for me.
Despite the fact that I am not the world&#8217;s most dilligent when it comes to blogs &#8212; I&#8217;ve given up 2 over the past several years due to inactivity &#8212; I decided to start another one.  What&#8217;s going to be different about this blog? Well to start with, [...]]]></description>
			<content:encoded><![CDATA[<p>File under: Don&#8217;t know what&#8217;s good for me.</p>
<p>Despite the fact that I am not the world&#8217;s most dilligent when it comes to blogs &#8212; I&#8217;ve given up 2 over the past several years due to inactivity &#8212; I decided to start another one.  What&#8217;s going to be different about this blog? Well to start with, I am not going to try to write a rambling diary about inconsequentialities. Instead I am going to try and confine this blog to things of actual interest (to me): Computers/Coding, Airplanes, and anything else I find genuinely interesting.</p>
<p>We&#8217;ll see how it goes.</p>
]]></content:encoded>
			<wfw:commentRss>http://compu.terlicio.us/2007/10/another-blog-sigh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
