<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Easily Distracted</title>
	
	<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>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/stevenbrownca" /><feedburner:info uri="stevenbrownca" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Gedit 3.2 GDP Completions on Ubuntu 11.10 Oneiric Ocelot</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/vfxFh3J4rYE/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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=vfxFh3J4rYE:kL8mZobDsXE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=vfxFh3J4rYE:kL8mZobDsXE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=vfxFh3J4rYE:kL8mZobDsXE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=vfxFh3J4rYE:kL8mZobDsXE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=vfxFh3J4rYE:kL8mZobDsXE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=vfxFh3J4rYE:kL8mZobDsXE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=vfxFh3J4rYE:kL8mZobDsXE:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/vfxFh3J4rYE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1146/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/1146</feedburner:origLink></item>
		<item>
		<title>Back to School with Cheesecake</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/Yb8e61CIu8s/1126</link>
		<comments>http://www.stevenbrown.ca/blog/archives/1126#comments</comments>
		<pubDate>Sat, 22 Oct 2011 00:40:02 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[culinary]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[school]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=1126</guid>
		<description><![CDATA[Recently, I&#8217;ve been busy for a variety of reasons. The most significant reason? I&#8217;ve gone back to school! Shocking, I know. But it&#8217;s probably not what you expect. Since April 11th, I&#8217;ve been going to culinary school in downtown Vancouver. It&#8217;s an 11 block program (each block consists of 4 weeks, so&#8230; 44 weeks) &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I&#8217;ve been busy for a variety of reasons. The most significant reason? I&#8217;ve gone back to school!  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> </p>
<p>Shocking, I know. But it&#8217;s probably not what you expect.  Since April 11th, I&#8217;ve been going to culinary school in downtown Vancouver. It&#8217;s an 11 block program (each block consists of 4 weeks, so&#8230; 44 weeks) &#8211; I should be done in February 2012.  In addition, I just completed a 4-month stage (unpaid internship) at a hotel. I would go there after class (or before class, depending on the class) about 3 times a week.  Lots of getting up early, and some getting home late.  It can be tough work. I&#8217;ve been physically exhausted.  Heck, I&#8217;m exhausted, right now.  And you know what?  I love it.  There is something really satisfying about cooking.  You produce something you can be proud of in relatively short period of time&#8230; and the kitchen can be an exhilarating place to be. I&#8217;ve always liked a bit of adrenaline in my life and I guess I didn&#8217;t find that in an office environment.</p>
<p>Anyway, I haven&#8217;t been taking photos at school.  And I should be.  So today I took some photos.  I&#8217;m currently in block 7: baking and pastry.  Here are some cheesecakes I decorated today.  My partner and I had finished pretty much everything, so we had lots of time to play around. <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><div id="attachment_1127" class="wp-caption alignnone" style="width: 310px"><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/10/IMG_2718.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/10/IMG_2718-300x225.jpg" alt="" title="Cheesecake 1" width="300" height="225" class="size-medium wp-image-1127" /></a><p class="wp-caption-text">whipped cream rosettes with orange segments and strawberry.  Probably should have left the orange bits off the rosettes, but oh well.</p></div><br />
<div id="attachment_1128" class="wp-caption alignnone" style="width: 310px"><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/10/IMG_2719.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/10/IMG_2719-300x225.jpg" alt="" title="Cheesecake 2" width="300" height="225" class="size-medium wp-image-1128" /></a><p class="wp-caption-text">rosettes on top of kiwi slices, with strawberry on top of orange segments.</p></div><br />
<div id="attachment_1130" class="wp-caption alignnone" style="width: 310px"><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/10/IMG_2720.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/10/IMG_2720-300x225.jpg" alt="" title="Cheesecake 2 side" width="300" height="225" class="size-medium wp-image-1130" /></a><p class="wp-caption-text">The cheescakes turned out really well. No burning, no cracks (thanks to a sour cream topping), and quite level and smooth. Clean!</p></div><br />
<div id="attachment_1129" class="wp-caption alignnone" style="width: 310px"><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/10/IMG_2724.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/10/IMG_2724-300x225.jpg" alt="" title="Cheesecake 3 - Halloween Cheesecake!" width="300" height="225" class="size-medium wp-image-1129" /></a><p class="wp-caption-text">Spent way too much time on this, but had a lot of fun doing it. Marzipan pumpkin and chocolate &quot;Booo&quot; leaning on rosettes, Messy spider is 2 strawberries covered in chocolate with marzipan eyes and chocolate disc legs. All on chocolate webbing.</p></div></p>
<p>The cheesecakes go for $18.  It&#8217;s a good deal considering how much cream cheese is in them&#8230; each about 750g?  But whoever gets that halloween one will have a bunch of chocolate shrapnel when they attempt to cut it. Hah! <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=Yb8e61CIu8s:1iJmtL4SPvE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=Yb8e61CIu8s:1iJmtL4SPvE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=Yb8e61CIu8s:1iJmtL4SPvE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=Yb8e61CIu8s:1iJmtL4SPvE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=Yb8e61CIu8s:1iJmtL4SPvE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=Yb8e61CIu8s:1iJmtL4SPvE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=Yb8e61CIu8s:1iJmtL4SPvE:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/Yb8e61CIu8s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1126/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/1126</feedburner:origLink></item>
		<item>
		<title>Attacked and almost robbed</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/kxPzxq-2PvI/1087</link>
		<comments>http://www.stevenbrown.ca/blog/archives/1087#comments</comments>
		<pubDate>Sat, 03 Sep 2011 21:28:00 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[Vancouver]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=1087</guid>
		<description><![CDATA[Last night, at about midnight, I was attacked while approaching my parked car at a bus exchange in North Vancouver. I was returning from downtown and was on my way home. I had just got off the bus, walked over to my car, put my bags in my trunk and was unlocking the driver side [...]]]></description>
			<content:encoded><![CDATA[<p>Last night, at about midnight, I was attacked while approaching my parked car at a bus exchange in North Vancouver.  I was returning from downtown and was on my way home.  I had just got off the bus, walked over to my car, put my bags in my trunk and was unlocking the driver side door when I saw a man approaching me in the parking lot.  I didn&#8217;t think much of it, I thought he wanted to ask me a question or something.  So I just stood there and waited for him to approach me.  He yelled something, which I didn&#8217;t understand until he said it a few more times, &#8220;Give me your shit!&#8221;   I was totally taken aback.  Was this really happening?  Is he serious?  I noticed he was holding something threateningly in his left hand, thought it might be a chain or something.  It was dark and hard to see&#8230; and I still couldn&#8217;t believe this was happening.  </p>
<p>My door was open, but I didn&#8217;t let on to that.  I lowered my key and tried to talk him out of it, saying it couldn&#8217;t end well and stepped cautiously towards him.  I may have had my hands up and open.  Obviously, he wasn&#8217;t a rational person.  Even if I did pop my trunk and give him all my stuff, I had no insurance he would leave me alone.  I suppose that&#8217;s when I decided I would have to defend myself as best I could and find help.  He swung his weapon at my head a few times, some of which I managed to block with my arm and sweatshirt.  I charged him, knocked him back a bit and retreated to the bus exchange looking for help.</p>
<p>I was being pursued, but I didn&#8217;t have have to try very hard to keep a safe distance.  As I jogged through the bus exchange, there was a young couple there (waiting for their bus, presumably), no buses, and no authorities.  I didn&#8217;t really want to bring this lunatic into them, and felt a sense of regret.  They cast concerned glances at me and asked if I was alright.  The assailant was still a safe distance behind me, ranting and stomping on.  That&#8217;s when I noticed blood on my hands.  I was bleeding?  I was aware of a different sensation on left side of my face, but it didn&#8217;t hurt.  I may have actually said that aloud, both shocked and annoyed, &#8220;I&#8217;m bleeding?!&#8221;</p>
<p>Then I actually got a bit of luck.  Nearby, I noticed the police had set up a roadblock, so I ran over there and got help.  The assailant was surprisingly cooperative, dropping his weapon, lying down on the ground and putting his hands on his head.  I later found out it was a studded belt &#8211; I guess he was swinging the clasp at me?  He was taken away, would be put in jail for the night (minimum) and be charged with assault and robbery.  I was interviewed, the young couple were interviewed, and I got a ride home from the officer.  After I was home, I was finally able to see what I looked like.  </p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/09/IMG_2704.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/09/IMG_2704-225x300.jpg" alt="" title="IMG_2704" width="225" height="300" class="alignnone size-medium wp-image-1119" /></a></p>
<p>After cleaning up and sleeping, it looks a bit better.  Bit of a shiner, though.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/09/IMG_2708.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/09/IMG_2708-225x300.jpg" alt="" title="IMG_2708" width="225" height="300" class="alignnone size-medium wp-image-1118" /></a></p>
<p>Aside from being a little shaken, a couple cuts and welts, I&#8217;m okay.  I was not robbed.  Nobody else got hurt.  And I&#8217;m thankful that things turned out the way they did, as it could have been much worse.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>UPDATE 2011/09/04:</strong><br />
The shiner keeps developing.  It&#8217;s so&#8230;  colorful!  ^_^<br />
<a href="http://www.stevenbrown.ca/blog/wordpress/../files/2011/09/IMG_2709.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/09/IMG_2709-225x300.jpg" alt="" title="IMG_2709" width="225" height="300" class="alignnone size-medium wp-image-1124" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=kxPzxq-2PvI:NveGZZHj3ws:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=kxPzxq-2PvI:NveGZZHj3ws:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=kxPzxq-2PvI:NveGZZHj3ws:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=kxPzxq-2PvI:NveGZZHj3ws:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=kxPzxq-2PvI:NveGZZHj3ws:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=kxPzxq-2PvI:NveGZZHj3ws:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=kxPzxq-2PvI:NveGZZHj3ws:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/kxPzxq-2PvI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1087/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/1087</feedburner:origLink></item>
		<item>
		<title>GNOME 3.0 Beta v0.0.6 Impressions</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/juub75nZ-cc/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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=juub75nZ-cc:0_Pna32p6KM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=juub75nZ-cc:0_Pna32p6KM:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=juub75nZ-cc:0_Pna32p6KM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=juub75nZ-cc:0_Pna32p6KM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=juub75nZ-cc:0_Pna32p6KM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=juub75nZ-cc:0_Pna32p6KM:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=juub75nZ-cc:0_Pna32p6KM:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/juub75nZ-cc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1050/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/1050</feedburner:origLink></item>
		<item>
		<title>Japan Disaster</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/iyTC56k7Pt8/1073</link>
		<comments>http://www.stevenbrown.ca/blog/archives/1073#comments</comments>
		<pubDate>Tue, 15 Mar 2011 21:05:54 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[donate]]></category>
		<category><![CDATA[earthquake]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[tsunami]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=1073</guid>
		<description><![CDATA[As you no doubt already know, Japan has been devastated by a monstrous natural disaster. On Thursday March 11th, at 2:46pm, Japan experienced a massive magnitude 9.0 earthquake originating just a few hundred kilometers north-east of Tokyo. The quake caused a giant tsunami which actually caused much more damage than the original earthquake. I&#8217;ve been [...]]]></description>
			<content:encoded><![CDATA[<p><div id="attachment_1091" class="wp-caption alignnone" style="width: 410px"><a href="http://www.boston.com/bigpicture/2011/03/massive_earthquake_hits_japan.html"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/03/bp1-e1300221447679.jpg" alt="http://www.boston.com/bigpicture/2011/03/massive_earthquake_hits_japan.html" title="Photo from Boston.com" width="400" height="469" class="size-full wp-image-1091" /></a><p class="wp-caption-text">http://www.boston.com/bigpicture/2011/03/massive_earthquake_hits_japan.html</p></div></p>
<p>As you no doubt already know, Japan has been devastated by a monstrous natural disaster.  On Thursday March 11th, at 2:46pm, Japan experienced a massive magnitude 9.0 earthquake originating just a few hundred kilometers north-east of Tokyo.  The quake caused a giant tsunami which actually caused much more damage than the original earthquake.  I&#8217;ve been constantly glued to the news.</p>
<p>An effort to summarize some key events follows&#8230;</p>
<p>At this time:</p>
<ul>
<li>Over 3000 confirmed dead, <em>many</em> more expected (upwards of 10,000)</li>
<li>Thousands still missing</li>
<li>Complete cities destroyed, thousands made homeless.</li>
<li>A nuclear power plant in Fukushima was damaged from the quake.  People near the plant were evacuated and fears of a meltdown are growing as the plant grows more unstable.</li>
<li>Aftershocks are expected to continue for months, most recent one was magnitude 6.1.</li>
<li>To provide power to the eastern part of the country, all <a href="http://en.wikipedia.org/wiki/Kant%C5%8D_region">Kanto</a> regions have cycling blackout periods, which apparently also affects hospitals.</li>
<li>Food and gas are running out and being rationed.  A friend of mine, in an area largely unaffected by the quake and tsunami, says it takes 2-3 hours to get to a gas station.</li>
<li>In the areas hit hardest, it has become colder and snow is expected, lowering chances for trapped survivors.</li>
</ul>
<p><strong>Vivid Images</strong> at Boston.com: <a href="http://www.boston.com/bigpicture/2011/03/massive_earthquake_hits_japan.html">1</a> (source of image above), <a href="http://www.boston.com/bigpicture/2011/03/japan_earthquake_aftermath.html">2</a>, <a href="http://www.boston.com/bigpicture/2011/03/japan_-_vast_devastation.html">3</a>, <a href="http://www.boston.com/bigpicture/2011/03/japan_-_new_fears_as_the_trage.html">4</a></p>
<p><strong>News Coverage</strong>: <a href="http://www.bbc.co.uk/news/world-middle-east-12307698">BBC Live</a>.  BBC has been my primary source for the above information.</p>
<p>If you are able, you may want to consider donating to relief efforts.  <a href="http://www.redcross.ca/article.asp?id=38380">Donate to the Canadian Red Cross</a>.  Or, take a look at some other <a href="http://www.cbc.ca/japanrelief/">well known charities</a> listed at the CBC.  </p>
<p>Japan is special to me.  Having lived there for a year, I fondly consider Japan to be a second home.  I have many friends and acquaintances in Japan.  Fortunately, everyone I&#8217;ve contacted, so far, is safe.    I still can&#8217;t believe the destruction.  My heart goes out to all of Japan&#8230;.</p>
<p>I encourage you to leave links to images, videos, news updates, and corrections in the comments.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=iyTC56k7Pt8:hLS1-HFJGYk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=iyTC56k7Pt8:hLS1-HFJGYk:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=iyTC56k7Pt8:hLS1-HFJGYk:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=iyTC56k7Pt8:hLS1-HFJGYk:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=iyTC56k7Pt8:hLS1-HFJGYk:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=iyTC56k7Pt8:hLS1-HFJGYk:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=iyTC56k7Pt8:hLS1-HFJGYk:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/iyTC56k7Pt8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1073/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/1073</feedburner:origLink></item>
		<item>
		<title>Beware of Snoctopus Man</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/GJ71Wryq9no/1035</link>
		<comments>http://www.stevenbrown.ca/blog/archives/1035#comments</comments>
		<pubDate>Mon, 28 Feb 2011 00:17:11 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Recreation]]></category>
		<category><![CDATA[snow]]></category>
		<category><![CDATA[Vancouver]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=1035</guid>
		<description><![CDATA[Snoctopus Man says this blog is not dead. &#8230;It&#8217;s just on holiday.]]></description>
			<content:encoded><![CDATA[<p>Snoctopus Man says this blog is not dead.  &#8230;It&#8217;s just on holiday.</p>
<p>
<a href='http://www.stevenbrown.ca/blog/archives/1035/img_2408' title='IMG_2408'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/02/IMG_2408-150x150.jpg" class="attachment-thumbnail" alt="IMG_2408" title="IMG_2408" /></a>
<a href='http://www.stevenbrown.ca/blog/archives/1035/img_2409' title='IMG_2409'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/02/IMG_2409-150x150.jpg" class="attachment-thumbnail" alt="IMG_2409" title="IMG_2409" /></a>
<a href='http://www.stevenbrown.ca/blog/archives/1035/img_2410' title='IMG_2410'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/02/IMG_2410-150x150.jpg" class="attachment-thumbnail" alt="IMG_2410" title="IMG_2410" /></a>
<a href='http://www.stevenbrown.ca/blog/archives/1035/img_2412' title='IMG_2412'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/02/IMG_2412-150x150.jpg" class="attachment-thumbnail" alt="IMG_2412" title="IMG_2412" /></a>
<a href='http://www.stevenbrown.ca/blog/archives/1035/img_2413' title='IMG_2413'><img width="150" height="150" src="http://www.stevenbrown.ca/blog/wordpress/../files/2011/02/IMG_2413-150x150.jpg" class="attachment-thumbnail" alt="IMG_2413" title="IMG_2413" /></a>
</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=GJ71Wryq9no:QP0EHtiwT7g:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=GJ71Wryq9no:QP0EHtiwT7g:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=GJ71Wryq9no:QP0EHtiwT7g:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=GJ71Wryq9no:QP0EHtiwT7g:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=GJ71Wryq9no:QP0EHtiwT7g:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=GJ71Wryq9no:QP0EHtiwT7g:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=GJ71Wryq9no:QP0EHtiwT7g:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/GJ71Wryq9no" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1035/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/1035</feedburner:origLink></item>
		<item>
		<title>Mother’s Day Lunch and Knife 4 Life</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/tujh84dqvJs/1019</link>
		<comments>http://www.stevenbrown.ca/blog/archives/1019#comments</comments>
		<pubDate>Thu, 13 May 2010 07:22:43 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Recreation]]></category>
		<category><![CDATA[Cooking]]></category>
		<category><![CDATA[Family]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[knives]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=1019</guid>
		<description><![CDATA[I made a late lunch for my mom on Mother&#8217;s Day. Yup. There&#8217;s that omelet again! My mom wasn&#8217;t here when I made it last weekend, so naturally, I had to make it again. I stuffed these with a lot of onion and mushroom. Not a bad thing, at all, but it certainly prevented them [...]]]></description>
			<content:encoded><![CDATA[<p>I made a late lunch for my mom on Mother&#8217;s Day.<br />
<a href="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1481.resized.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1481.resized-300x225.jpg" alt="" title="IMG_1481.resized" width="300" height="225" class="alignnone size-medium wp-image-1020" /></a></p>
<p>Yup.  There&#8217;s that omelet <a href="http://www.stevenbrown.ca/blog/archives/1002">again</a>!  My mom wasn&#8217;t here when I made it last weekend, so <em>naturally</em>, I had to make it again. <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /><br />
<a href="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1480.resized.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1480.resized-300x225.jpg" alt="" title="IMG_1480.resized" width="300" height="225" class="alignnone size-medium wp-image-1021" /></a></p>
<p>I stuffed these with a <em>lot</em> of onion and mushroom.  Not a bad thing, at all, but it certainly prevented them from being sealed.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>And I think I&#8217;ve finally found the right pans.  It&#8217;s funny, I kept trying to do it on non-stick pans, and low heat.  Well, it works much better on buttered steel pans, over high heat.  (Bit-a-butter-makes-it-better?)  Plus, it&#8217;s way quicker!  You just have to be careful not to burn it, or overcook it.</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1478-e1273732351963.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1478-300x225.jpg" alt="" title="IMG_1478" width="300" height="225" class="alignnone size-medium wp-image-1024" /></a></p>
<p>Also on the weekend, I got myself a new chef&#8217;s knife.  I will have this knife for the rest of my life.  Using it is an absolute pleasure.<br />
<a href="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1469-e1273734783618.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1469-300x225.jpg" alt="" title="IMG_1469" width="300" height="225" class="alignnone size-medium wp-image-1028" /></a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=tujh84dqvJs:FmPi0FvXcK4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=tujh84dqvJs:FmPi0FvXcK4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=tujh84dqvJs:FmPi0FvXcK4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=tujh84dqvJs:FmPi0FvXcK4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=tujh84dqvJs:FmPi0FvXcK4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=tujh84dqvJs:FmPi0FvXcK4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=tujh84dqvJs:FmPi0FvXcK4:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/tujh84dqvJs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1019/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/1019</feedburner:origLink></item>
		<item>
		<title>Gourmet</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/Q1GJ5xCmQMo/1002</link>
		<comments>http://www.stevenbrown.ca/blog/archives/1002#comments</comments>
		<pubDate>Mon, 03 May 2010 07:10:44 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Recreation]]></category>
		<category><![CDATA[Cooking]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=1002</guid>
		<description><![CDATA[Yes, I&#8217;m alive. And I&#8217;m well. It&#8217;s been a long time since I posted anything&#8230;. I have 6 posts categorized as drafts, so it&#8217;s not like I&#8217;ve completely ignored blogging. ^_^ But wow, it&#8217;s been a while. This post will basically be some pictures, since it&#8217;s not hard to put together. I took some casual [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, I&#8217;m alive. And I&#8217;m well. It&#8217;s been a long time since I posted anything&#8230;.  I have 6 posts categorized as drafts, so it&#8217;s not like I&#8217;ve completely ignored blogging.  ^_^  But wow, it&#8217;s been a while.  This post will basically be some pictures, since it&#8217;s not hard to put together.  I took some casual cooking classes, a while back, in November.  It was lots of fun, met some great people, and learned quite a bit.  My interest in cooking, food, and the kitchen has only increased.  But cooking&#8230; I&#8217;m still just starting.</p>
<p>On Friday night, I had the house to myself and made myself a nice meal:  inside round steak on top of spinach, red pepper, asparagus, green beans, carrot, mushroom.  Cooked and paired with some cheap pinot noir.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1449.resized.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1449.resized-300x225.jpg" alt="" title="IMG_1449.resized" width="300" height="225" class="size-medium wp-image-1006" /></a></p>
<p>Still practicing cooking meat.  I like medium-rare.  As I get more confident, I&#8217;ll buy nicer cuts of meat.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   And the great thing about steak?  It&#8217;s super quick and easy!!</p>
<p>Saturday afternoon, I made a <a href="http://911cheferic.com/component/option,com_garyscookbook/func,detail/id,419/">French-style omelette</a> for myself and two homestay students.  In hindsight, this was slightly overcooked and the pan I chose was not the best for the job&#8230; but at least it wasn&#8217;t browned and I know better for next time.</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1455.resized.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1455.resized-300x225.jpg" alt="" title="IMG_1455.resized" width="300" height="225" class="alignnone size-medium wp-image-1010" /></a></p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1454.resized.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1454.resized-300x225.jpg" alt="" title="IMG_1454.resized" width="300" height="225" class="alignnone size-medium wp-image-1009" /></a></p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1458.resized.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1458.resized-300x225.jpg" alt="" title="IMG_1458.resized" width="300" height="225" class="alignnone size-medium wp-image-1008" /></a></p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1457.resized.jpg"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2010/05/IMG_1457.resized-300x225.jpg" alt="" title="IMG_1457.resized" width="300" height="225" class="alignnone size-medium wp-image-1004" /></a></p>
<p>I&#8217;ve attempted this elusive French omelette a few times, but I don&#8217;t normally put that much effort into the rest of the plate.  I had some fresh spinach from the night earlier, and I thought tomatoes and lightly fried zuchini would go well with everything.  Sprinkled a bit of olive oil, white balsamic vinegar, grated cheddar and mozzarella&#8230;..  Inside the omelette was sautéed onion, mushroom, red pepper, garlic, spinach, and melted cheese.  </p>
<p>There was certainly a lot of work put into this single dish, but man did I enjoy it.  Everything.  The preparation, the cooking, and the eating.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Gourmet couch candy</h3>
<p>I&#8217;ve really been enjoying these shows: <a href="http://www.youtube.com/watch?v=7KrjeJDNKUA&#038;feature=related">Good Eats</a>, <a href="http://v.youku.com/v_show/id_cz00XMjExNDkxNTI=.html">Chef at Home</a> (though I hate the theme music), and <a href="http://www.youtube.com/watch?v=bzjR0yL4f0Y&#038;feature=related">Posh Nosh</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=Q1GJ5xCmQMo:XfFFXthYxuY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=Q1GJ5xCmQMo:XfFFXthYxuY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=Q1GJ5xCmQMo:XfFFXthYxuY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=Q1GJ5xCmQMo:XfFFXthYxuY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=Q1GJ5xCmQMo:XfFFXthYxuY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=Q1GJ5xCmQMo:XfFFXthYxuY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=Q1GJ5xCmQMo:XfFFXthYxuY:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/Q1GJ5xCmQMo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/1002/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/1002</feedburner:origLink></item>
		<item>
		<title>DIY Wireless Booster</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/7uV8Xjea2ys/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>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=7uV8Xjea2ys:L5fGM62uz9E:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=7uV8Xjea2ys:L5fGM62uz9E:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=7uV8Xjea2ys:L5fGM62uz9E:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=7uV8Xjea2ys:L5fGM62uz9E:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=7uV8Xjea2ys:L5fGM62uz9E:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=7uV8Xjea2ys:L5fGM62uz9E:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=7uV8Xjea2ys:L5fGM62uz9E:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/7uV8Xjea2ys" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/970/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/970</feedburner:origLink></item>
		<item>
		<title>Happy Halloween!</title>
		<link>http://feedproxy.google.com/~r/stevenbrownca/~3/V_AwkeD_m-o/962</link>
		<comments>http://www.stevenbrown.ca/blog/archives/962#comments</comments>
		<pubDate>Sun, 01 Nov 2009 01:39:48 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[DSi]]></category>
		<category><![CDATA[flipnote]]></category>
		<category><![CDATA[halloween]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://www.stevenbrown.ca/blog/?p=962</guid>
		<description><![CDATA[Did this FlipNote animation on the bus, yesterday. The pumpkins, this year: I did the one on the left (least effort!). ^.^ And it should resemble the pumpkin in the FlipNote animation, above. Happy Halloween!]]></description>
			<content:encoded><![CDATA[<p>Did this FlipNote animation on the bus, yesterday.</p>
<p><object data="http://ugomemo.hatena.ne.jp/js/ugoplayer_s.swf" type="application/x-shockwave-flash" width="279" height="240"><param name="movie" value="http://ugomemo.hatena.ne.jp/js/ugoplayer_s.swf"></param><param name="FlashVars" value="did=58CA55A0A09B1AAD&amp;file=9B1AAD_093C16DCAB532_000"></param></object></p>
<p>The pumpkins, this year:</p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/10/IMG_0221.resized.JPG"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2009/10/IMG_0221.resized-300x225.jpg" alt="unlit jackolanterns" title="unlit jackolanterns" width="300" height="225" class="alignnone size-medium wp-image-963" /></a></p>
<p><a href="http://www.stevenbrown.ca/blog/wordpress/../files/2009/10/IMG_0222.resized.JPG"><img src="http://www.stevenbrown.ca/blog/wordpress/../files/2009/10/IMG_0222.resized-300x225.jpg" alt="lit up jackolanterns" title="lit up jackolanterns" width="300" height="225" class="alignnone size-medium wp-image-964" /></a></p>
<p>I did the one on the left (least effort!).  ^.^  And it should resemble the pumpkin in the FlipNote animation, above.  <img src='http://www.stevenbrown.ca/blog/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Happy Halloween!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=V_AwkeD_m-o:Zu86ZIhZu2I:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=V_AwkeD_m-o:Zu86ZIhZu2I:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=V_AwkeD_m-o:Zu86ZIhZu2I:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=V_AwkeD_m-o:Zu86ZIhZu2I:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=V_AwkeD_m-o:Zu86ZIhZu2I:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/stevenbrownca?a=V_AwkeD_m-o:Zu86ZIhZu2I:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/stevenbrownca?i=V_AwkeD_m-o:Zu86ZIhZu2I:F7zBnMyn0Lo" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/stevenbrownca/~4/V_AwkeD_m-o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.stevenbrown.ca/blog/archives/962/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.stevenbrown.ca/blog/archives/962</feedburner:origLink></item>
	</channel>
</rss>

