<?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>Easily Distracted &#187; Geek</title>
	<atom:link href="http://www.stevenbrown.ca/blog/archives/category/geek/feed" rel="self" type="application/rss+xml" />
	<link>http://www.stevenbrown.ca/blog</link>
	<description>Ooooh, shiny!</description>
	<lastBuildDate>Thu, 02 Feb 2012 19:32:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Gedit 3.2 GDP Completions on Ubuntu 11.10 Oneiric Ocelot</title>
		<link>http://www.stevenbrown.ca/blog/archives/1146</link>
		<comments>http://www.stevenbrown.ca/blog/archives/1146#comments</comments>
		<pubDate>Thu, 02 Feb 2012 19:32:37 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Gedit]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=1146</guid>
		<description><![CDATA[Curiosity gets the best of me sometimes. Okay, most of the time. Did you know GNOME&#8217;s text editor, gedit, has a plethora of extensions which can basically transform it into an IDE? Something I&#8217;ve always wanted is intellisense-style autocompletion. The closest thing I&#8217;ve found for gedit is GDP Completions Plugin in the gedit-developer-plugins package in [...]]]></description>
			<content:encoded><![CDATA[<p>Curiosity gets the best of me sometimes.  Okay, most of the time.  Did you know GNOME&#8217;s text editor, <code>gedit</code>, has a plethora of extensions which can basically transform it into an IDE?  Something I&#8217;ve always wanted is <a href="http://en.wikipedia.org/wiki/IntelliSense">intellisense</a>-style autocompletion.  The closest thing I&#8217;ve found for <code>gedit</code> is <em>GDP Completions Plugin</em> in the <em>gedit-developer-plugins</em> package in Ubuntu.</p>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> gedit-developer-plugins</pre></div></div>




<p>However, there&#8217;s a <a href="https://bugs.launchpad.net/gdp/+bug/912967">bug</a> in that package and the popup menu doesn&#8217;t actually work. <code>Ctrl + Space</code> is supposed to <a href="http://curtis.hovey.name/gallery/Sinzui/gdp-2-28-0/gdp-syntax-completion.png">bring it up</a>.  So you want to add the <a href="https://launchpad.net/~sinzui/+archive/ppa">Gedit Developer Plugins PPA</a> and upgrade to the more recent version.</p>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:user<span style="color: #000000; font-weight: bold;">/</span>ppa-name
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> upgrade gedit-developer-plugins</pre></div></div>




<p>If you try to run gedit now, you&#8217;ll notice it won&#8217;t&#8230;  run, that is.  <em>Great</em>.  I know, right?  The problem is that the bzr plugin (also included in the <code>gedit-developer-plugins</code> package) is trying to use the <em>gtk2</em> version of bzr-gtk, but that doesn&#8217;t work in the <em>gtk3</em> gedit.  Anyway, you can pull a copy of the gtk3 bazaar plugin into your local bzr plugins directory. (I found this info <a href="https://bugs.launchpad.net/ubuntu/+source/gedit-developer-plugins/+bug/872462/comments/4">here</a>).  Create <code>~/.bazaar/plugins/</code> if it doesn&#8217;t exist.</p>


<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> ~<span style="color: #000000; font-weight: bold;">/</span>.bazaar<span style="color: #000000; font-weight: bold;">/</span>plugins
<span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>.bazaar<span style="color: #000000; font-weight: bold;">/</span>plugins
bzr branch <span style="color: #c20cb9; font-weight: bold;">lp</span>:bzr-gtk<span style="color: #000000; font-weight: bold;">/</span>gtk3 gtk</pre></div></div>




<p>The <code>gedit-developer-plugins</code> package and <code>gedit</code> should work after that!  An alternative to the above would be to add a PPA that includes <code>bzr-gtk 3</code>.  Not sure if one exists at the moment, but that would be a cleaner solution.  And you thought it would be simple.  I know I did.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>

<p>It&#8217;s not as polished or featured as <a href="http://pydev.org/" title="Eclipse and PyDev is probably better if that's what you're lookign for">other implementations</a>, but it&#8217;s a good start.  Here&#8217;s a screenshot after I type <code>os.</code> then hit <code>Ctrl + Space</code>:</p>

<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2012/02/gedit-gdp-completions.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2012/02/gedit-gdp-completions.jpg" alt="" title="gedit-gdp-completions" width="695" height="279" class="alignnone size-full wp-image-1181" /></a></p>

<h3>Further reading</h3>

<ul>
<li><a href="http://live.gnome.org/Gedit/Plugins">Official Gedit Plugins Page</a> &#8211; Lists shipped plugins and links to many 3rd party plugins</li>
<li><a href="http://www.micahcarrick.com/gedit-as-a-django-ide-for-linux.html">Gedit as a Django IDE for Linux</a> &#8211; Micah Carrick describes how he makes gedit useful for him</li>
</ul>

<h4>External tools plugin</h4>

<ul>
<li><a href="https://live.gnome.org/Gedit/ExternalToolsPluginCommands">External Tools Plugin Command Collection</a> &#8211; Collection of scripts to be used in External Tools plugin</li>
<li><a href="https://live.gnome.org/Gedit/Plugins/ExternalTools">Using External Tools</a> &#8211; Writing your own mini-scripts for External Tools</li>
</ul>

<h4>Rolling your own gedit 3 plugin</h4>

<ul>
<li><a href="https://live.gnome.org/Gedit/PythonPluginHowTo" title="Intro to writing gedit3 plugins">Python Plugin How To for gedit 3</a> &#8211; Intro to writing gedit3 plugins</li>
<li><a href="http://www.micahcarrick.com/writing-plugins-for-gedit-3-in-python.html">Writing Plugins for gedit 3 with Python</a> &#8211; Another intro to plugin writing, by Micah</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1146/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNOME 3.0 Beta v0.0.6 Impressions</title>
		<link>http://www.stevenbrown.ca/blog/archives/1050</link>
		<comments>http://www.stevenbrown.ca/blog/archives/1050#comments</comments>
		<pubDate>Thu, 17 Mar 2011 08:08:09 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[3.0]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[impressions]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=1050</guid>
		<description><![CDATA[GNOME 3.0 is due for release April 16 and I&#8217;m pretty excited by it. So I finally decided to check out first-hand how it&#8217;s progressing. My perspective is that of a GNOME 2.X user, but like many people, I was a little skeptical of the changes in 3.0. I tried the 0.0.6 image from the [...]]]></description>
			<content:encoded><![CDATA[<p>GNOME 3.0 is due for release April 16 and I&#8217;m pretty excited by it.  So I finally decided to check out first-hand how it&#8217;s progressing.  My perspective is that of a GNOME 2.X user, but like many people, I was a little skeptical of the changes in 3.0.  I tried the 0.0.6 image from the <a href="http://www.gnome3.org/tryit.html">GNOME3 website</a> and ran it off the USB key.</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/system-info.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/system-info-300x231.jpg" alt="" title="system-info" width="300" height="231" class="alignnone size-medium wp-image-1057" /></a></p>
<h3>The Good</h3>
<ul>
<li>It&#8217;s pretty.  And minimal. Love the <a href="http://www.omgubuntu.co.uk/2010/11/gnome-3-to-get-a-new-font/">new font</a>.</li>
<li>High quality and scalable graphics and interface &#8211; tried it on both a 10&#8243; netbook and a 23&#8243; monitor with success.  Large title bars and close buttons &#8211; easy to hit.</li>
<li>All the updated core GNOME programs! I especially like the progress with Nautilus, the file manager. Instead of using a status bar, it uses a floating alt-type yellow info box to display info.  Plus it seems much faster.</li>
<li>Single stroke <a href="http://en.wikipedia.org/wiki/Expos%C3%A9_%28Mac_OS_X%29">exposé</a>-like effect that reveals all windows, scaled and tiled.  This is bound to the Windows (Super) key, which actually makes it more appropriately named for GNOME3 than any version of Windows.  Note: It can also be reached by clicking <strong>Activities</strong> in the top-left corner.  From here, you can use your mouse to switch to a window or quickly close windows, launch/switch-to a program from the left sidebar, or you can start typing a substring of a program to run, or a string to search using wikipedia or google (these options<a href="http://gnome3.org/img/search-big.png"> appear</a> after you type something&#8230; OR you can browse applications by clicking Applications. Additionally, on the right, you can manage workspaces. With the smart launcher and window manager functionality tied to a single key, I found myself actually starting to heart the windows key and its prime keyboard real estate.
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/activities.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/activities-300x168.jpg" alt="" title="activities" width="300" height="168" class="alignnone size-medium wp-image-1054" /></a></p>
</li>
<li>Don&#8217;t worry, you can still alt-tab! <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   And it&#8217;s improved, with <a href="http://www.stevenbrown.ca/blog/archives/100">mouse input</a>, and grouping instances of the same program.
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/alt-tab-with-groups.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/alt-tab-with-groups-300x189.jpg" alt="" title="alt-tab-with-groups" width="300" height="189" class="alignnone size-medium wp-image-1055" /></a></p>
</li>
<li><a href="http://gnome3.org/img/chat-big.png">Integrated chat</a> with notifications is great.</li>
<li>Modal windows are now attached to their parent window (by default, this can be changed).</li>
<li>Slick animations with meaning. Like the modal windows that slide out of the parent window&#8217;s title bar.  I think OSX does something like this&#8230;.</li>
<li>Yelp, the Help browser is about a billion times faster. Seriously. This is largely due to the shift from gecko to webkit, I believe.</li>
<li><a href="https://afaikblog.wordpress.com/2011/03/01/where-did-the-buttons-go/">No more minimize/maximize buttons</a>.  At first, I wasn&#8217;t sure about this and thought I wouldn&#8217;t like it, but the way the new desktop is designed, I don&#8217;t miss them.  You can add them back, if it&#8217;s a concern. And all the old window shortcuts still work: [Alt+F9] = Minimize; both [Alt+F10] and [double-click title bar] = Toggle Maximize; [Alt+right-mouse-button] = window menu.
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/minmax.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/minmax-300x251.jpg" alt="" title="minmax" width="300" height="251" class="alignnone size-medium wp-image-1052" /></a>
</li>
<li>GNOME is just much leaner than it has ever been before.  Instead of starting 3 different programs at login (<code>nautilus</code>, <code>gnome-panel</code>, <code>metacity</code>), it simply starts <code>gnome-shell</code>.</li>
</ul>
<h3>The Bad</h3>
<ul>
<li>Requires 3D support. Unfortunately, this is not always a simple request for us Linux users.  Tried it on my netbook and failed.  Couldn&#8217;t run it and probably never will thanks to the terribly supported poulsbo integrated graphics.</li>
<li>And not just any 3D support&#8230; Tried it on my desktop, also with integrated graphics, but a better supported ATI x1250 &#8211; performance wasn&#8217;t stellar, but it was usable.</li>
<li>Not very mature and not very customizable (yet). Panel Applets in prior versions of GNOME are extremely popular.  Now we have this huge piece of space we can&#8217;t do anything with.  But I&#8217;m sure something like panel applets will come eventually.</li>
<li>It&#8217;s really hard to train myself to look to the middle of the top panel for the time/date&#8230; I keep looking at the top-right.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
<li>Some of the changes had me fishing for functionality.  Like, where is the control-center?  It&#8217;s not in the <strong>Applications</strong> list under the <strong>Activities</strong> window.  It&#8217;s under the user menu, under <strong>System Settings</strong>.
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/where-is-control-center.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/where-is-control-center-169x300.jpg" alt="" title="where-is-control-center" width="169" height="300" class="alignnone size-medium wp-image-1053" /></a>  <a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/system-settings.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/system-settings-269x300.jpg" alt="" title="system-settings" width="269" height="300" class="alignnone size-medium wp-image-1056" /></a>  <a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/background-panel.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/background-panel-300x262.jpg" alt="" title="background-panel" width="300" height="262" class="alignnone size-medium wp-image-1081" /></a></p>
<p>And once you&#8217;re in the <strong>System Settings</strong>, you often want to change many things.  At first, I was opening System Settings, selecting a component (they&#8217;re called <em>Panels</em>) to adjust (<em>Background</em>, for example), making changes, closing, repeat.  When you open a panel from the System Settings window, that panel replaces the contents of the System Settings window.  I didn&#8217;t notice the <strong>All Settings</strong> button that replaced the search entry in the dark grey area!  After realizing that, it wasn&#8217;t so bad.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   And to be honest, I think the theme or something is not quite finished.  Looking at other screenshots on the web, the button is much more noticable.</li>
</ul>
<h3>The Ugly</h3>
<ul>
<li><em>BIG</em> change in the way it expects people to use it. This will likely cause lots of frustration.</li>
<li>Doesn&#8217;t <em>quite</em> seem ready for prime time.  I guess that makes sense, it&#8217;s still beta.</li>
<li>Some odd input lag every now and then.  Visual artifacts.  For both of these, I point my finger at my integrated graphics.  Just a general lack of polish.  But that&#8217;s to be expected with alpha/beta software.</li>
<li>Bold, black window titles with same-colour shadow.  Ugh&#8230; I expect that will change soon. <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<p>After trying Shell, I&#8217;m actually more excited for it.  It still lacks polish in areas, which is expected at this point, but I love the direction GNOME3 is taking GNOME.  I&#8217;m hoping I can get by on my integrated graphics, but I&#8217;m probably willing to purchase a low-end video card to get better performance.  Anyway, I&#8217;m really interested to see how <a href="http://en.wikipedia.org/wiki/Unity_(desktop_environment)">Canonical&#8217;s Unity</a> and <a href="http://en.wikipedia.org/wiki/GNOME_Shell">GNOME Shell</a> will evolve side by side.  Now I have to try Unity, I guess&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1050/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIY Wireless Booster</title>
		<link>http://www.stevenbrown.ca/blog/archives/970</link>
		<comments>http://www.stevenbrown.ca/blog/archives/970#comments</comments>
		<pubDate>Fri, 13 Nov 2009 04:07:55 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=970</guid>
		<description><![CDATA[To access the Internet on my desktop computer, I must use wireless. Unfortunately, it&#8217;s about as far away from the access point as possible: opposite corners of the house and different floors. And the wireless card I&#8217;ve got in my desktop is a little old and pretty cheap. Basically, I&#8217;ve had to battle with a [...]]]></description>
			<content:encoded><![CDATA[<p>To access the Internet on my desktop computer, I must use wireless.  Unfortunately, it&#8217;s about as far away from the access point as possible: opposite corners of the house and different floors.  And the wireless card I&#8217;ve got in my desktop is a little old and pretty cheap.  Basically, I&#8217;ve had to battle with a poor connection for years.  Often, I would have to manually move the antenna an inch this way or that, try reconnecting, and repeat.  I vented to my friend, Shirley, about my connection, and she said her friend was having similar issues, so Shirley recommended she make a signal booster.  That&#8217;s something I&#8217;d been thinking about doing, and thought it was about time.  I googled how to make a booster.  Enter the Parabolic Reflector available <a href="http://www.freeantennas.com/projects/template2/index.html">here</a>.  I&#8217;m sure there are lots others, but this is the one I decided to try out.</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/11/IMG_0283.JPG"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2009/11/IMG_0283-300x225.jpg" alt="Desktop antenna with booster" title="Desktop antenna with booster" width="300" height="225" class="alignnone size-medium wp-image-975" /></a></p>
<p>I made 3 of them.  the first was made entirely with paper and tinfoil and it worked fine, but I figured I would try making a couple more with different materials: 2 different strengths of card.  It&#8217;s good I did that too, as I ended up using 2 of them and giving the paper prototype to Shirley&#8217;s friend who most likely has better things to do than build paper parabolas.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   (I, on the other hand, do not.)</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/11/IMG_0277.JPG"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2009/11/IMG_0277-300x225.jpg" alt="Gluestick?  Check.  Scissors?  Check." title="Gluestick?  Check.  Scissors?  Check." width="300" height="225" class="alignnone size-medium wp-image-974" /></a></p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/11/IMG_0293.JPG"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2009/11/IMG_0293-300x225.jpg" alt="Access point hidden away, with booster pointed down slightly (towards my room)" title="Access point hidden away, with booster pointed down slightly (towards my room)" width="300" height="225" class="alignnone size-medium wp-image-971" /></a></p>
<p>What does it do?  It turns your omni-directional antenna into a directional antenna with a stronger signal.  The tinfoil does the radio wave reflecting and the shape (the parabola) just happens to be an efficient way to do that.  Using this new direction, I&#8217;ve &#8220;pointed&#8221; the antenna on my wireless router towards my room &#8211; even on a bit of an angle through the floor.  In my room, on my desktop PC, I&#8217;ve just pointed it horizontally in the direction of the access point.</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/11/wireless_strength.png"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2009/11/wireless_strength-300x117.png" alt="Wireless signal strength over a few days" title="Wireless signal strength over a few days" width="300" height="117" class="alignnone size-medium wp-image-976" /></a></p>
<p>The results have been great.  Without any home-made boosters, I received 25-35%, with one on the access point, i received 35-55%, and with one on both the access point and my desktop antennas, I&#8217;m receiving a pretty steady 62-68% (see the graph, above).  I still receive disconnects, but it&#8217;s now <em>much</em> easier to reconnect&#8230; usually happens automatically on the first try &#8211; I don&#8217;t even have to do anything!</p>
<p>So if you&#8217;re having wireless issues, give it a shot!  It certainly doesn&#8217;t cost much.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/970/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Canadian Income Tax 2009</title>
		<link>http://www.stevenbrown.ca/blog/archives/879</link>
		<comments>http://www.stevenbrown.ca/blog/archives/879#comments</comments>
		<pubDate>Wed, 15 Jul 2009 02:05:03 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[taxes]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=879</guid>
		<description><![CDATA[If you have any trouble understanding how income tax works or is calculated, play around on this webpage and see if it helps you. (It probably won&#8217;t, but you might have fun not learning anything!) It lets you dynamically compare different income taxes within Canada using a pretty graph and it lets you calculate your [...]]]></description>
			<content:encoded><![CDATA[<p>If you have any trouble understanding how income tax works or is calculated, play around on <a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/05/itax/canitax2009.html"><strong>this webpage</strong></a> and see if it helps you.  (It probably won&#8217;t, but you might have fun not learning anything!)  It lets you dynamically compare different income taxes within Canada using a pretty graph and it lets you calculate your own (simplified) tax results, whether your income is salary or hourly based.</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/05/canitax.png"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2009/05/canitax-300x145.png" alt="canitax" title="canitax" width="300" height="145" class="alignnone size-medium wp-image-880" /></a></p>
<h3>Why Did I do this?</h3>
<p>I didn&#8217;t do my taxes; an accountant did.  But when I was reading about them, I stumbled upon a couple webpages and became interested in the differences among the provinces and territories within Canada and<br />
different income ranges.  That&#8217;s what started this mini Javascript project.</p>
<h3>This is not a work of art</h3>
<p>I wrote it mostly on the bus using my recently acquired Dell Mini 12 netbook (on Windows XP&#8230; ew).  And from that experience, I can firmly say that writing even very simple things, it&#8217;s good to have a fair amount of time set aside in a relaxed environment.  I would write a couple things here and there for 20 minutes or so&#8230; then not look at it again for a few days&#8230; it took me 5 minutes to figure out what I wanted to do the next time I opened it.  The only times I made significant progress was when I sat down for more than an hour.  The code wasn&#8217;t really designed, it was just&#8230; written.  It&#8217;s messy, there&#8217;s lots of hard-coding, poorly named fields and variables (didn&#8217;t help with figuring out what I was doing last time), and if it were anything serious, I&#8217;d rewrite large chunks of it.  And make it prettier.  But as it stands, it&#8217;s just kinda fun.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>In addition to being curious about the taxes in Canada, I was also interested in trying a javascript graphing library. I had been impressed with different javascript-generated graphs on the web and wondered how difficult they were to create.  I used FLOT (with lots of copying and pasting from examples), and it seemed to work alright, but it depends on JQuery, which I wasn&#8217;t familiar with.  Actually, I&#8217;m still not very familiar with it&#8230; and wrote almost everything in regular javascript. I know it&#8217;s worth learning, but I guess I&#8217;ll save<br />
that for another time. <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Let me know of any errors in tax calculation.. or code design, for that matter.  There&#8217;s lots of those, but I&#8217;m sure I&#8217;m not aware of all of them!  hah.</p>
<p><em>(I&#8217;ve been sitting on this post for about 2 months now.  hah! Figured I might as well publish it.)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/879/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File List Applet &#8211; now with more autotools!</title>
		<link>http://www.stevenbrown.ca/blog/archives/846</link>
		<comments>http://www.stevenbrown.ca/blog/archives/846#comments</comments>
		<pubDate>Mon, 23 Mar 2009 04:40:31 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[applet]]></category>
		<category><![CDATA[autotools]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[FileListApplet]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=846</guid>
		<description><![CDATA[I decided that before I did any more work on the applet, I would improve its installation process to make it easier for people to try it out. So, the process to get and build the source now looks like this: Download Browse source here. Download the source: bzr branch http://stevenbrown.ca/src/FileListApplet Install Install dependencies (Ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>I decided that before I did any more work on <a href="http://www.stevenbrown.ca/blog/archives/497">the applet</a>, I would improve its installation process to make it easier for people to try it out.  So, the process to get and build the source now looks like this:</p>
<h3>Download</h3>
<ul>
<li>Browse source <a href="http://stevenbrown.ca/src/FileListApplet/">here</a>.</li>
<li>Download the source: <code>bzr branch http://stevenbrown.ca/src/FileListApplet</code></li>
</ul>
<h3>Install</h3>
<ol>
<li>Install dependencies (Ubuntu package names given): <code>sudo apt-get install python-xdg python-gnome2-desktop python-gtk2 python-pyinotify</code></li>
<li>Branch the source using the <code>bzr</code> command, above.</li>
<li><code>cd</code> into the directory.</li>
<li><code>./configure --prefix=/usr</code> <strong>(the prefix is important!)</strong></li>
<li><code>make</code></li>
<li><code>sudo make install</code></li>
<li>If the applet does not show up in your <em>Add to Panel</em> menu, try restarting the bonobo-activation-server: <code>killall bonobo-activation-server</code>.</li>
</ol>
<h3>Autotools</h3>
<p>Autotools is pretty much the standard in source package management on linux.  Except for the name, there is nothing <em>automatic</em> about <em>auto</em>tools.  Every encounter I&#8217;ve had with autotools has usually defeated me and left me frustrated and leaving whatever I was working on to do something else.  For me, because I had labeled it the next step, it basically stalled the entire project for a while. Most people tend to copy and paste other projects&#8217; autotools setup, but I figured that was overkill for my purposes and I didn&#8217;t find anything that quite suited me.  I looked at <a href="http://www.gnome.org/~seth/gnome-blog/">gnome-blog</a>, but it seemed like some stuff wasn&#8217;t quite working properly and some was completely unnecessary&#8230; in fact, this seemed to be a trend when looking at the autotools stuff in projects.  Why is this?  Autotools is not simple and due to this simple fact, I think it fails completely on many levels.  Developers massage it enough to get it working, but few actually understand it all &#8211; I know I sure don&#8217;t!  So please forgive the sloppiness and feel free to send patches. <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I gave up doing a couple things, like getting the revision number (<code>bzr revno</code>) and including it in the version string (see <code>configure.ac</code>). I know it&#8217;s probably something super simple, but I couldn&#8217;t seem to pass a variable containing a string as the version&#8230;.</p>
<p>I feel that GNOME, as a platform for development, could seriously benefit from some kind of frontend to autotools that handled GNOME development nicely and hid as much as possible from the developer (including all those nasty config files that pollute the package tree).  Anyway, I did <em>not</em> have an enjoyable time grappling with autotools, but I&#8217;ll end this mini-rant here.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/846/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Laptop&#8217;s New Life</title>
		<link>http://www.stevenbrown.ca/blog/archives/828</link>
		<comments>http://www.stevenbrown.ca/blog/archives/828#comments</comments>
		<pubDate>Mon, 09 Mar 2009 00:59:00 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=828</guid>
		<description><![CDATA[My laptop has had its fair share of problems, mostly because it&#8217;s aging; I bought it nearly 6 years ago!! I&#8217;m actually impressed it&#8217;s aged so well! A few days ago, the display started to flicker with increasing frequency and become distorted shortly after turning it on. Here&#8217;s a video showing the problem: (Warning: contains [...]]]></description>
			<content:encoded><![CDATA[<p>My laptop has had its fair share of problems, mostly because it&#8217;s aging; I bought it nearly 6 years ago!!  I&#8217;m actually impressed it&#8217;s aged so well!  A few days ago, the display started to flicker with increasing frequency and become distorted  shortly after turning it on.  Here&#8217;s a video showing the problem: <em>(Warning: contains a little bad language &#8211; woops&#8230;)</em>  </p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/jCYVfGVGWyY&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/jCYVfGVGWyY&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>(Link to video <a href="http://www.youtube.com/watch?v=jCYVfGVGWyY"><strong>here</strong></a> if embedded object doesn&#8217;t show up.)</p>
<p>Last night, I took it apart and tried wiggling every LCD-related wire I could find,  hoping to affect the display&#8217;s output and conclude it was a fixable loose connection.</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/03/laptop_in_pieces.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2009/03/laptop_in_pieces-300x224.jpg" alt="Laptop in Pieces" title="Laptop in Pieces" width="300" height="224" class="alignnone size-medium wp-image-833" /></a></p>
<p>Nope.  Fine.  Who needs a screen anyway?</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/03/img_8575.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2009/03/img_8575-300x224.jpg" alt="Screenless Laptop" title="Screenless Laptop" width="300" height="224" class="alignnone size-medium wp-image-832" /></a></p>
<p>I now have a very compact desktop &#8211; it even includes wireless, keyboard, mouse and speakers!  It just needs a monitor.  I haven&#8217;t decided whether I will make it a pseudo media PC to stream things from my desktop to the TV (a little work), or just to have it replace the family computer (almost no work!).  The family usually gets my computer hand-me-downs.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyway, looks like I&#8217;ll need a new laptop sometime soon.  I vowed to go smaller with my next laptop, but I&#8217;m not sure if a netbook would suffice.  Of course, I would like it to run Linux (Ubuntu?), have long battery life, reasonable storage, support WPA2, have a built-in 1.3MP camera, and all that good stuff.  Bluetooth would be nice, too.  Let me know if you have any suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/828/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Reading &#8211; XP and Design Patterns</title>
		<link>http://www.stevenbrown.ca/blog/archives/825</link>
		<comments>http://www.stevenbrown.ca/blog/archives/825#comments</comments>
		<pubDate>Mon, 09 Mar 2009 00:57:49 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Extreme Programming]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=825</guid>
		<description><![CDATA[I got a few books out from the library, recently, which I&#8217;ve been reading on the bus. I&#8217;m currently alternating between Extreme Programming Explained: Embrace Change and The Joy of Patterns: Using Patterns for Enterprise Development. I wish I had read the XP book before being project manager for my Software Engineering project at University, [...]]]></description>
			<content:encoded><![CDATA[<p>I got a few books out from the library, recently, which I&#8217;ve been reading on the bus.  I&#8217;m currently alternating between <a href="http://www.amazon.com/Extreme-Programming-Explained-Embrace-Change/dp/0321278658" >Extreme Programming Explained: Embrace Change</a> and <a href="http://www.amazon.com/Joy-Patterns-Using-Enterprise-Development/dp/0201657597" >The Joy of Patterns: Using Patterns for Enterprise Development</a>.  I wish I had read the XP book before being project manager for my Software Engineering project at University, a couple years ago.  But perhaps having gone through that experience allows me to relate to the material more directly.  It&#8217;s easy to read and the author, <a href="http://en.wikipedia.org/wiki/Kent_Beck" >Kent Beck</a> (one of the fathers of XP), identifies the reasons behind the development methodology, and the problems they help solve.  I&#8217;ve always had this feeling of agreement with XP practices, many of which seem like common sense, but haven&#8217;t always been able to articulate the reasons.  Thankfully, the author does not have this problem.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I&#8217;m about 50 pages in, and it&#8217;s quite good, so far.</p>
<p>I picked up the Design Patterns book because the one I wanted, <a href="http://www.amazon.com/Design-Patterns-Object-Oriented-Addison-Wesley-Professional/dp/0201633612" >Design Patterns: Elements of Reusable Object-Oriented Software</a>, wasn&#8217;t there.  (The library has 3 copies of it, but it&#8217;s always out with a wait-list of people requesting it.  This list now includes me.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )  Anyway, the one I picked up is extremely terse.  There are UML diagrams provided, sample code, and a problem description&#8230; but not much in way of explanation.  It&#8217;s format is kind of like this: there&#8217;s this problem, how do we address it?  <em>Boom, here&#8217;s a pattern.  Boom, here&#8217;s a diagram.  Done.  Next.</em>  Or&#8230; <em>but we could improve on this pattern with this other pattern.  Boom, another diagram.</em>  Why?  <em>Figure it out.</em></p>
<p>This book is fine if you&#8217;ve been exposed to the patterns previously, and need a refresher, but it is not a good source to learn from.  I&#8217;m familiar with some of the patterns, but even then, they may be called something different, or implemented slightly different, and it&#8217;s been a while, so it takes me longer to understand than if there was more explanation.  Looking forward to picking up the other patterns book.  If you have not been exposed to design patterns before, or are a relative beginner programmer, and definitely if you are not familiar with UML diagrams, <em>avoid</em> this book.  It&#8217;s a book on design patterns (not a simple topic) that&#8217;s less than 200 pages, so you can&#8217;t really expect a thorough resource.  I&#8217;m about half way through it.  On one hand, I&#8217;m curious what such a small book has to offer, but on the other, I&#8217;m not sure I&#8217;ll finish it.  I&#8217;ll probably concentrate on the XP book, for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/825/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2008 In Review</title>
		<link>http://www.stevenbrown.ca/blog/archives/550</link>
		<comments>http://www.stevenbrown.ca/blog/archives/550#comments</comments>
		<pubDate>Thu, 01 Jan 2009 02:18:06 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Recreation]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Christmas]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[Vancouver]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=550</guid>
		<description><![CDATA[Life This year has been pretty big. Naturally following up with lots of events from last year, these are some quick memories. My nephew, Rayden, was born on Feb 12th, six weeks early! This caused the father (my brother) to be indisposed for my dad&#8217;s (2nd) marriage on Feb 14th. I got bumped up to [...]]]></description>
			<content:encoded><![CDATA[<h3>Life</h3>
<p>This year has been pretty big.  Naturally following up with lots of events from <a href="http://www.stevenbrown.ca/blog/archives/253">last year</a>, these are some quick memories. My nephew, Rayden, was born on Feb 12th, six weeks early! This caused the father (my brother) to be indisposed for my dad&#8217;s (2nd) marriage on Feb 14th. I got bumped up to best man (but didn&#8217;t have to do much) and had a rather empty hotel room to myself in Vegas. I <a href="http://www.stevenbrown.ca/blog/archives/296">attended</a> the Open Web Vancouver conference. I went to Whistler mountain for the <a href="http://www.stevenbrown.ca/blog/archives/303">first time</a> in <em>years</em> and plan on going again soon. I went on a fantastic <a href="http://www.stevenbrown.ca/blog/archives/319">road trip</a> down the west coast of the United States, something I will <em>never</em> forget. I slacked off most of the summer but managed to do quite a bit of <a href="http://www.stevenbrown.ca/blog/archives/323">rollerblading</a> and <del datetime="2009-01-06T00:47:16+00:00">outdoor activity</del> hanging out with Kurt (visiting from Brazil). My brother, now a father, <a href="http://www.stevenbrown.ca/blog/archives/329">married</a> the mother of his child on August 3rd.  I was best man at this wedding, as well &#8211; with more responsibilities, but they were well received and totally worth it.  Our beloved cat, Sky, met an early and terribly <a href="http://www.stevenbrown.ca/blog/archives/406">unfortunate end</a>. We had our first encounter with bed bugs who are now the sworn enemy of our household. Vancouver, a city that sometimes doesn&#8217;t get snow all year, had its <a href=http://en.wikipedia.org/wiki/Climate_of_Vancouver">whitest Christmas <em>ever</em></a> with 60cm (2 ft) of snow! Perhaps we should have seen <a href="http://www.stevenbrown.ca/blog/archives/301">snow in April</a> as a sign&#8230;.?</p>
<p>That reminds me: Happy Holidays for 2008! Guess I was a little late on that&#8230;  Here are some pictures of our insane weather in Vancouver.</p>
<p>
<a href='http://www.stevenbrown.ca/blog/archives/550/img_8320' title='img_8320'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2008/12/img_8320-150x150.jpg" class="attachment-thumbnail" alt="Our House" title="img_8320" /></a>
<a href='http://www.stevenbrown.ca/blog/archives/550/img_8345' title='img_8345'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2008/12/img_8345-150x150.jpg" class="attachment-thumbnail" alt="Front-End Loader" title="img_8345" /></a>
<a href='http://www.stevenbrown.ca/blog/archives/550/img_8356' title='img_8356'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2008/12/img_8356-150x150.jpg" class="attachment-thumbnail" alt="Parking Lot" title="img_8356" /></a>
<a href='http://www.stevenbrown.ca/blog/archives/550/img_8316' title='img_8316'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2008/12/img_8316-150x150.jpg" class="attachment-thumbnail" alt="Back Yard" title="img_8316" /></a>
<a href='http://www.stevenbrown.ca/blog/archives/550/img_8360' title='img_8360'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2008/12/img_8360-150x150.jpg" class="attachment-thumbnail" alt="Merry Xmas!" title="img_8360" /></a>
</p>
<h3>Geekery</h3>
<p>With my free time, I think I was able to really exercise my geekiness in 2008.  I released a couple updates to the Rhythmbox <a href="http://www.stevenbrown.ca/blog/?s=jump-to-playing">Jump-to-Playing</a> plugin, which led me to submit my <a href="http://bugzilla.gnome.org/show_bug.cgi?id=557152">first patch</a> to an upstream project!  Said patch was accepted and will be in the next version of Rhythmbox!  Yay.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   It was just for some XML UI description, but it feels nice to have helped improve (even a tiny bit) a project that will be installed on thousands of computers in the next cycle.  I also released a usable proof-of-concept GNOME Panel <a href="http://www.stevenbrown.ca/blog/archives/497">File List Applet</a> which has stayed on my panel and I find quite useful. And I&#8217;ve done a couple little <a href="http://www.stevenbrown.ca/blog/archives/tag/scripts">scripts</a> and <a href="http://www.stevenbrown.ca/blog/archives/tag/how-to">how-to&#8217;s</a> that fall under the &#8220;nerd&#8221; category quite nicely. Oh yeah, and significant <a href="http://www.stevenbrown.ca/blog/archives/category/website">website</a> updates. Next website <em>todo item</em> is to customize the attachment page for my theme, I think&#8230;. Also, I joined Twitter.  And Identi.ca. And LinkedIn&#8230;.</p>
<h3>Art</h3>
<p>Not many artsy things done this year. But with the significant <a href="http://www.stevenbrown.ca/blog/archives/487">improvements</a> of tablet handling in Linux, I did some random <a href="http://www.stevenbrown.ca/blog/archives/311">doodles</a> and a <a href="http://www.stevenbrown.ca/blog/archives/523">birthday card</a>. I may not do it very often, but I still enjoy drawing, thank goodness.</p>
<h3>Blog Stats for 2008</h3>
<p>My Blog is by no means high traffic, but stats are fun! (These stats were obtained using the wordpress.com Stats plugin, and exclude the Feed stats, because I use Feedburner for that&#8230; although, I&#8217;m thinking I should revert that, now that I mostly use wordpress.com Stats.)</p>
<p><strong>Top 3 Referrers:</strong></p>
<ol>
<li><a href="http://live.gnome.org/RhythmboxPlugins/ThirdParty">http://live.gnome.org/RhythmboxPlugins/ThirdParty</a> (402)</li>
<li><a href="http://live.gnome.org/Boston2008/GUIHackfest">live.gnome.org/Boston2008/GUIHackfest</a> (209)</li>
<li><a href="http://siuyee.com">siuyee.com</a> (126)</li>
</ol>
<p><strong>Top 3 Posts and Pages:</strong></p>
<ol>
<li><a href="http://www.stevenbrown.ca/blog/archives/160">Pidgin 2.1 UI Ideas</a> (1,053)</li>
<li><a href="http://www.stevenbrown.ca/blog/archives/155">2D Game Art and the Virtual Console</a> (580)</li>
<li><a href="http://www.stevenbrown.ca/blog/archives/254">Rhythmbox Plugin: Jump to Playing 0.2</a> (455)</li>
</ol>
<p><strong>Top 3 Search Engine Terms: </strong></p>
<ol>
<li>rhythmbox (327)</li>
<li>bug (174)</li>
<li>pidgin (165)</li>
</ol>
<p><strong>Top 3 Clicks:</strong></p>
<ol>
<li><a href="http://developer.pidgin.im/attachment/ticket/2367/pidgin201gui.jpg">Pidgin UI screenshot attached to a bug</a> (57)</li>
<li><a href="http://pidgin.im/~seanegan/new-conversation-window.png">Pidgin UI mockup</a> (50) by <a href="http://www.bomahy.nl/hylke/blog/">Hylke Bons</a></li>
<li><a href="http://farm1.static.flickr.com/222/522406933_78f4d17560_o.jpg">SF2 HD Ken</a> (42)</li>
<p>The fourth was <a href="http://launchpad.net/desktopdrawers">launchpad.net/desktopdrawers</a> with 38 clicks, so it&#8217;s kinda cool I helped advertise a small project a little. (A project I&#8217;ve submitted patches to, no less. <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )
</ol>
<h3>Thanks</h3>
<p>Thank you, everyone, for a wonderful 2008. It&#8217;s been interesting, and despite a failing economy, I&#8217;m looking positively toward 2009.</p>
<p>Happy New Year!  (あけましておめでとうございます！)  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/550/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>1024&#215;768 Desktop</title>
		<link>http://www.stevenbrown.ca/blog/archives/541</link>
		<comments>http://www.stevenbrown.ca/blog/archives/541#comments</comments>
		<pubDate>Mon, 22 Dec 2008 05:44:03 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[HCI]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=541</guid>
		<description><![CDATA[Lots of people customize their desktops. Many don&#8217;t, but I do.. a little. Here&#8217;s mine: I actually had to remove the Time Tracker (Hamster) applet to scale my 1280&#215;1024 desktop down to 1024, but I think that was all. And I only just decided to try moving the Tomboy and Deskbar applets over to the [...]]]></description>
			<content:encoded><![CDATA[<p>Lots of people customize their desktops.  Many don&#8217;t, but I do.. a little.  Here&#8217;s mine:</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2008/12/1024x768desktopusage_annotations.png"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2008/12/1024x768desktopusage_annotations-300x225.png" alt="1024x768desktopusage_annotations" title="1024x768desktopusage_annotations" width="300" height="225" class="alignnone size-medium wp-image-542" /></a></p>
<p>I actually had to remove the Time Tracker (Hamster) applet to scale my 1280&#215;1024 desktop down to 1024, but I think that was all.  And I only just decided to try moving the Tomboy and Deskbar applets over to the top-left corner&#8230; looks a little odd, but it&#8217;s much more accessible.  It&#8217;s good to try out new things, right?  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   (When the keyboard will do, <code>Alt+F12</code> and <code>Alt+F3</code> for Tomboy and Deskbar, and <code>Super(windows-key)+Space</code> for Gnome-Do are good shortcuts to keep in mind.)</p>
<p>How about you?  (If you run Ubuntu, read <a href="https://lists.ubuntu.com/archives/ubuntu-devel/2008-December/027022.html">this</a> &#8211; which is why I tried scaling my 1280 desktop to a 1024, in the first place).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/541/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7</title>
		<link>http://www.stevenbrown.ca/blog/archives/516</link>
		<comments>http://www.stevenbrown.ca/blog/archives/516#comments</comments>
		<pubDate>Thu, 11 Dec 2008 16:30:54 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Geek]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[screenshots]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=516</guid>
		<description><![CDATA[I just upgraded from 2.6.3 (using my &#8220;wp-upgrade&#8221; script), and It&#8217;s fantastic! Go watch a video about the biggest features. It even includes an &#8220;automatic upgrade!!&#8221; This pretty much deprecates my script, unless you want to maintain snapshots of each version. (I&#8217;m not sure if anyone other than me was using it to begin with&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>I just upgraded from 2.6.3 (using <a href="http://www.stevenbrown.ca/blog/archives/335">my &#8220;wp-upgrade&#8221; script</a>), and It&#8217;s <em>fantastic</em>!  Go watch a <a href="http://wordpress.org/development/2008/12/coltrane/">video about the biggest features</a>.  It even includes an &#8220;automatic upgrade!!&#8221;  This pretty much deprecates my script, unless you want to maintain snapshots of each version.  (I&#8217;m not sure if anyone other than me was using it to begin with&#8230; but anyhow&#8230;.)  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2008/12/screenshot-blog-file-browser.png" alt="Screenshot: wp-upgrade Snapshots" title="Screenshot: wp-upgrade Snapshots" width="375" height="394" class="alignnone size-full wp-image-517" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/516/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

