<?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>#include &#60;QBasicer.h&#62; &#187; Personal</title>
	<atom:link href="http://blog.vectec.net/category/personal/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.vectec.net</link>
	<description>A Chronological Account</description>
	<lastBuildDate>Tue, 20 Jul 2010 14:58:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Git Based Backups, a Followup</title>
		<link>http://blog.vectec.net/2010/03/31/git-based-backups-a-followup/</link>
		<comments>http://blog.vectec.net/2010/03/31/git-based-backups-a-followup/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 17:08:41 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=415</guid>
		<description><![CDATA[I&#8217;ve been using git based website backups for a while now.  In my previous post, I talked about how my backup system works.  So far, it&#8217;s worked fairly flawlessly, but there have been lessons learned.
The first lesson I learned is that you CAN dump a MySQL database and keep it in git, however, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using git based website backups for a while now.  In my <a href="http://blog.vectec.net/2010/03/07/git-based-backup/">previous post</a>, I talked about how my backup system works.  So far, it&#8217;s worked fairly flawlessly, but there have been lessons learned.</p>
<p>The first lesson I learned is that you CAN dump a MySQL database and keep it in git, however, you have to do it the right way.  Turns out, by default, mysqldump puts everything on one line, including new data.  This makes for extremely large database dumps, and makes it almost useless to tell what&#8217;s new and what&#8217;s old.  By using &#8220;&#8211;complete-insert&#8221;, it splits each row into a separate SQL command.  This makes the initial version quite a bit larger, but subsequent versions smaller.  My database 41MB when the dump is complete, which is quite large.  </p>
<p>The second lesson I&#8217;m now learning is that git stores the entire history locally inside the .git directory.  This initially doesn&#8217;t take much space, as it&#8217;s compressed, but it grows.  I have limited space on my host, and currently my .git directory is pushing 131MB.  My entire blog directory is now 191MB, so really, the content is just 19MB.  That&#8217;s a LOT of space (I blame it all on the database, the actual content doesn&#8217;t change much), although each individual diff is about 500K.  I did some digging, and the kernel.org folk <a href="https://git.wiki.kernel.org/index.php/GitFaq#How_do_I_use_git_for_large_projects.2C_where_the_repository_is_large.2C_say_approaching_1_TB.2C_but_a_checkout_is_only_a_few_hundred_MB.3F_Will_every_developer_need_1_TB_of_local_disk_space.3F">said</a>:</p>
<blockquote><p>In general, git is not a viable solution for the the case of a large repository with relatively small individual checkouts. However, if developers do not intend to clone, fetch, push into or push from their repositories, then use shallow clones </p></blockquote>
<p>Well that certainly limits the usefulness now doesn&#8217;t it!  Unless I&#8217;m missing something, it&#8217;s basically saying that if you use &#8217;shallow&#8217; copies, then you can&#8217;t really do anything with them unless you create patches locally and apply them in a full copy and commit.  In a large team, I would say this makes git almost useless.  Back to my situation, it means that it limits the usefulness of backups to almost zero.</p>
<p>So is git the best way to go? Well maybe. Perhaps backing up the database in the method I chose is the best way.  I probably would have been better compressing it, naming it, and shipping it to another server.  But hey, I had to find this out right?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2010/03/31/git-based-backups-a-followup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Git Based Backup</title>
		<link>http://blog.vectec.net/2010/03/07/git-based-backup/</link>
		<comments>http://blog.vectec.net/2010/03/07/git-based-backup/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 00:47:57 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=410</guid>
		<description><![CDATA[Hey Everybody, sorry about the extended absence.  I&#8217;ve been very busy of late!  I&#8217;ve recently decided to try out the newest thing in SCM (Source Control Management), Git.  Lots of people are getting on the git bandwagon, and I&#8217;m not sure if I&#8217;m totally on board yet.  One of the things [...]]]></description>
			<content:encoded><![CDATA[<p>Hey Everybody, sorry about the extended absence.  I&#8217;ve been very busy of late!  I&#8217;ve recently decided to try out the newest thing in SCM (Source Control Management), Git.  Lots of people are getting on the git bandwagon, and I&#8217;m not sure if I&#8217;m totally on board yet.  One of the things that appealed to me, however, is the ease of setting everything up. I&#8217;ve decided, after years, to have an actual backup solution for my website.  I&#8217;ve been left without backups before, and it&#8217;s bitten me in the arse recently.  As you can probably guess where this is going, yes, I&#8217;m doing git based backups of my website &#8211; database and all.</p>
<p>This lets me do some interesting things.  First of all, I can have nightly backups, and &#8216;checkpoints&#8217;, points where I could easily roll back changes if I screw something up.  Another is a site that only is a snapshot of the live site, whether for testing or redundancy (via branches).  And lastly, it lets me have a log of recent changes that I make, and look at changes and have the ability to revert changes that I may have done while working on a script.  I typically commit and push changes to a script with a detailed message when I make changes, outside of the nightly backup cycle.</p>
<p>At first, I was curious to see how MySQL dumps would do inside backups.  So far they seem to do very well, and don&#8217;t mind being in SCM.  It gets dumped to text, so stuff that doesn&#8217;t change&#8230; well doesn&#8217;t change.  I back up data to one spot regularly, and then semi-frequently to another.  This is how it&#8217;s laid out:<br />
<a href="http://blog.vectec.net/wp-content/uploads/2010/03/git.png"><img src="http://blog.vectec.net/wp-content/uploads/2010/03/git-300x230.png" alt="Git based backup solution" title="Git based backup solution" width="300" height="230" class="aligncenter size-medium wp-image-411" /></a></p>
<p>The live website is denoted with a 1, and the attached database is also pictured.  This is where the general traffic and changes are, aka, the critical data.  Every night, the data gets replicated to computer 2, which is completely in another country.  Unfortunately it&#8217;s on a slow link, and not 100% reliable, but hey, at least it&#8217;s somewhere right?  Computer #3 is my laptop, which is where I may or may not make changes to some files and testing, before committing them.  On the server (computer #1), changes are pulled and merged into the repository automatically (if they&#8217;re non conflicting), before the fresh changes are committed.  I&#8217;ve been running this nightly for about a half a week for my low traffic sites, and recently moved it to my blog.  The scripts that run will let git automatically add new files, and delete deleted files, having a perfect snapshot of the blog.  I&#8217;m going to continue testing this on more of my websites, before I make it available to the websites that I host, including a control panel type feature for managing snapshots.</p>
<p>It&#8217;s also worth noting that the connection between my server and the main git repository is secured by key based SSH authentication.  I haven&#8217;t had any issues with this so far and has been an excellent solution.</p>
<p>I like to give credit, where credit is due, so I&#8217;m going to give mad props to my webhost, who processed my request for a shell within 15 minutes, installed git within 15 minutes, and fixed the git installation in 15 minutes.  Their level of support has been truly remarkable.  A big thanks to you guys!  Check them out (<a href="http://asmallorange.com">A Small Orange</a>).  If you like them, and decide you want to sign up, don&#8217;t forget to use the referral link on my blog <img src='http://blog.vectec.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2010/03/07/git-based-backup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>RSS Readers</title>
		<link>http://blog.vectec.net/2009/10/18/rss-readers/</link>
		<comments>http://blog.vectec.net/2009/10/18/rss-readers/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 18:01:18 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=393</guid>
		<description><![CDATA[I&#8217;m not sure why, but lately Akregator has been behaving poorly.  Sometimes when it updates a feed, it adds articles from other feeds into the feed and marks them as unread.  This gets extremely annoying and every attempt I&#8217;ve made to fix the problem has not proved to be fruitful. 
To solve this, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure why, but lately <a href="http://akregator.kde.org/">Akregator</a> has been behaving poorly.  Sometimes when it updates a feed, it adds articles from other feeds into the feed and marks them as unread.  This gets extremely annoying and every attempt I&#8217;ve made to fix the problem has not proved to be fruitful. </p>
<div id="attachment_394" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.vectec.net/wp-content/uploads/2009/10/oddstream.png"><img src="http://blog.vectec.net/wp-content/uploads/2009/10/oddstream-300x175.png" alt="Akregator Showing the Articles in the Wrong Field" title="Akregator Showing the Articles in the Wrong Field" width="300" height="175" class="size-medium wp-image-394" /></a><p class="wp-caption-text">Akregator Showing the Articles in the Wrong Field</p></div>
<p>To solve this, I didn&#8217;t create a bug report with KDE nor tried to fix it myself.  I&#8217;ll have to admit that sometimes I&#8217;m not a very good member in the Open Source community.  I simply don&#8217;t have time to fix the problem.  I looked through Gentoo&#8217;s package manager Portage for some RSS readers.  The selection wasn&#8217;t very great, but I installed a few of them.  The first one, <a href="http://www.cmartin.tk/blam.html">Blam Newsreader</a> boasts to be simple.  Unfortunately it was TOO simple for my use.  I went down the list, and found <a href="http://liferea.sourceforge.net/">Liferea</a> (I don&#8217;t like the name much, it sounds a bit too much like <a href="http://en.wikipedia.org/wiki/Urea">urea</a>). I copied all my feeds from Akreagtor to Liferea and so far so good.  It has all the options and features I want from an RSS reader.  I&#8217;ve been using it for not very long, so I&#8217;ll update this later with more comments.  Here&#8217;s the interface&#8230;</p>
<div id="attachment_395" class="wp-caption alignnone" style="width: 310px"><a href="http://blog.vectec.net/wp-content/uploads/2009/10/liferea.png"><img src="http://blog.vectec.net/wp-content/uploads/2009/10/liferea-300x175.png" alt="Liferea Interface Reading a Web Comic" title="Liferea Interface Reading a Web Comic" width="300" height="175" class="size-medium wp-image-395" /></a><p class="wp-caption-text">Liferea Interface Reading a Web Comic</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2009/10/18/rss-readers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random Freezups</title>
		<link>http://blog.vectec.net/2009/03/09/random-freezups/</link>
		<comments>http://blog.vectec.net/2009/03/09/random-freezups/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 21:54:10 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[a100]]></category>
		<category><![CDATA[bump]]></category>
		<category><![CDATA[freeze]]></category>
		<category><![CDATA[ram]]></category>
		<category><![CDATA[sk9]]></category>
		<category><![CDATA[toshiba]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=377</guid>
		<description><![CDATA[My laptop is sick.  Very sick.  For the past few months, sometimes when I move it or bump it, the screen goes black and the sound skips.  Then sometimes, when I try to turn it back on, nothing happens.  It&#8217;s a problem that until the weekend, was easily avoidable and a [...]]]></description>
			<content:encoded><![CDATA[<p>My laptop is sick.  Very sick.  For the past few months, sometimes when I move it or bump it, the screen goes black and the sound skips.  Then sometimes, when I try to turn it back on, nothing happens.  It&#8217;s a problem that until the weekend, was easily avoidable and a livable nuisance. In an attempt to fix the problem, I reseated both my harddrive and ram.  Shortly after that, I began having freezups when it was sitting on my table.  Getting quickly VERY frustrated, I gave my laptop a few swift hits on the side, which seems to actually fixed the problem.  Since my &#8220;fix&#8221;, I&#8217;ve had one freezup.  I&#8217;ve done some reading, and one other persons says they have a faulty ram slot.  In a few months, I&#8217;m going to try putting in new (and more) ram, and hopefully not as cheap as the replacement ram that&#8217;s in there now.  If I still have problems, my laptop is still under warranty (which is now 2 and a half years old).  My only problem is if I get a replacement laptop, is if it&#8217;s as compatible with Linux as my current one is.  I&#8217;m very happy with the hardware currently in my laptop, and I&#8217;d be afraid to lose that compatibility. </p>
<p><i><b>Update:</b> It seems that my second stick of ram is not being recognized at all, but I haven&#8217;t tried to fix it yet.  Hopefully I can, sometimes I really need the extra memory.</i></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2009/03/09/random-freezups/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oh, Hi</title>
		<link>http://blog.vectec.net/2009/01/29/oh-hi/</link>
		<comments>http://blog.vectec.net/2009/01/29/oh-hi/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 23:00:55 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[ZDLSharp]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=375</guid>
		<description><![CDATA[Wow, has it really been two months since I&#8217;ve blogged?  Sorry guys!
If you&#8217;ve been talking to me lately, you probably know I&#8217;m pretty busy with school.  The assignments, papers, and midterms just keep on marching at me as fast as I can do them.  Unfortunately, my schedule is extremely inefficient for getting [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, has it really been two months since I&#8217;ve blogged?  Sorry guys!</p>
<p>If you&#8217;ve been talking to me lately, you probably know I&#8217;m pretty busy with school.  The assignments, papers, and midterms just keep on marching at me as fast as I can do them.  Unfortunately, my schedule is extremely inefficient for getting things done.  So let&#8217;s do a recap!</p>
<h3>Christmas</h3>
<p>Christmas was pretty busy, and unfortunately the weather played havoc with a few of my plans.  There was a few storms around Christmas and on New Years, which forced me to juggle things around a bit.  For those that don&#8217;t know, I got a shiny new Canon EOS 450D (Rebel XSi), and you can check out pictures on my <a href="http://www.flickr.com/photos/qbasicer/">flickr page</a>.</p>
<h3>School</h3>
<p>I&#8217;m taking a few interesting courses right now:
<ul>
<li>System Analysis, Design &#038; Project Management</li>
<li>Professional Practice</li>
<li>Computer Organization II</li>
<li>Operating Systems I</li>
<li>Anthropology &#8211; Religion and the Sacred</li>
</ul>
<p>This keeps me busy pretty much all the time, and I haven&#8217;t had much time to do anything but school work in the past couple weeks.</p>
<h3>Programming</h3>
<p>All of my current programming project are unfortunately put on hold.  Thing&#8217;s I&#8217;d love to get done is <a href="http://zdlsharp.vectec.net">qZDL</a>, and OCam.  OCam (name still under consideration), is a little program I developed during the Ottawa OCTranspo strike to look at the City of Ottawa webcams easily.  The app lets me flick through all the webcams in a way that&#8217;s analogous to using a TV (including &#8220;stations&#8221;).  I&#8217;m working to add more and more webcams to this, and maybe release it.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2009/01/29/oh-hi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Best iPhone Game</title>
		<link>http://blog.vectec.net/2008/11/24/the-best-iphone-game/</link>
		<comments>http://blog.vectec.net/2008/11/24/the-best-iphone-game/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 02:34:42 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[app store]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[appstore]]></category>
		<category><![CDATA[best game]]></category>
		<category><![CDATA[best iphone game]]></category>
		<category><![CDATA[best ipod game]]></category>
		<category><![CDATA[best ipod touch game]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod touch]]></category>
		<category><![CDATA[jellycar]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=348</guid>
		<description><![CDATA[
In my experience, Jellycar is by far the best iPhone/iPod touch game on the platform.  Full of great music, hilarious sound effects, and always a great challenge, Jellycar is a must have.  Best part it&#8217;s free!

Jellycar&#8217;s main screen is a bunch of little thumbnails of the maps, that slide and bounce around as [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.vectec.net/wp-content/uploads/2008/11/img_0031.png"><img src="http://blog.vectec.net/wp-content/uploads/2008/11/img_0031-300x200.png" alt="" title="Jellycar Title" width="300" height="200" class="alignnone size-medium wp-image-349" /></a></p>
<p>In my experience, Jellycar is by far the best iPhone/iPod touch game on the platform.  Full of great music, hilarious sound effects, and always a great challenge, Jellycar is a must have.  Best part it&#8217;s <b>free!</b></p>
<p><a href="http://blog.vectec.net/wp-content/uploads/2008/11/img_0032.png"><img src="http://blog.vectec.net/wp-content/uploads/2008/11/img_0032-300x200.png" alt="" title="Jellycar Welcome" width="300" height="200" class="alignnone size-medium wp-image-350" /></a></p>
<p>Jellycar&#8217;s main screen is a bunch of little thumbnails of the maps, that slide and bounce around as you tilt your device.  Tapping an icon will first pop up a dialog with the best time, and asking you to confirm your choice for the level.</p>
<p><a href="http://blog.vectec.net/wp-content/uploads/2008/11/img_0033.png"><img src="http://blog.vectec.net/wp-content/uploads/2008/11/img_0033-300x200.png" alt="" title="Jellycar Small" width="300" height="200" class="alignnone size-medium wp-image-351" /></a></p>
<p>When you load a level, you start as a small car, with a continuously counting timer.  In the top left hand corner there&#8217;s a progress bar of sorts.  The controls are simple: tap and hold the right side to go right, tap and hold the left side to go back, tilt left and right to roll the car, pinch to zoom, tap with all three fingers to pause.  But that&#8217;s not it!  Tap the car to convert your car into a monster truck.</p>
<p><a href="http://blog.vectec.net/wp-content/uploads/2008/11/img_0034.png"><img src="http://blog.vectec.net/wp-content/uploads/2008/11/img_0034-300x200.png" alt="" title="Jellycar Big" width="300" height="200" class="alignnone size-medium wp-image-352" /></a></p>
<p>You only get a limited amount of time with this car (as shown by the progress bar), but it&#8217;s usually required at some point in each level for completion.</p>
<p><a href="http://blog.vectec.net/wp-content/uploads/2008/11/img_0035.png"><img src="http://blog.vectec.net/wp-content/uploads/2008/11/img_0035-300x200.png" alt="" title="Jellycar Deform 1" width="300" height="200" class="alignnone size-medium wp-image-353" /></a></p>
<p>Why is it called Jellycar after all?  Well you see, your car and the level is made of a pliable jelly-like material.  You bounce, deform, and squish your way through the level, usually laughing the whole time at the silly sound effects.</p>
<p><a href="http://blog.vectec.net/wp-content/uploads/2008/11/img_0038.png"><img src="http://blog.vectec.net/wp-content/uploads/2008/11/img_0038-300x200.png" alt="" title="Jellycar Rebound" width="300" height="200" class="alignnone size-medium wp-image-356" /></a></p>
<p>If you think these levels are easy, think again.  Each level is challenging in its own way, and until used to the controls and the dynamics of the game, it&#8217;s actually extremely difficult.</p>
<p><a href="http://blog.vectec.net/wp-content/uploads/2008/11/img_0039.png"><img src="http://blog.vectec.net/wp-content/uploads/2008/11/img_0039-300x200.png" alt="" title="Jellycar Deform 2" width="300" height="200" class="alignnone size-medium wp-image-357" /></a></p>
<p>If you don&#8217;t have Jellycar, and you have an iPhone or iPod touch, I highly suggest you give it a try.  It&#8217;s probably the only App I actually use from the App Store.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2008/11/24/the-best-iphone-game/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Please Make it Stop!</title>
		<link>http://blog.vectec.net/2008/11/04/please-make-it-stop/</link>
		<comments>http://blog.vectec.net/2008/11/04/please-make-it-stop/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 16:38:12 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[america]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[mccain]]></category>
		<category><![CDATA[november 4th]]></category>
		<category><![CDATA[obama]]></category>
		<category><![CDATA[palin]]></category>
		<category><![CDATA[tuesday]]></category>
		<category><![CDATA[us]]></category>
		<category><![CDATA[usa]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=332</guid>
		<description><![CDATA[Why am I continually assulted with an election that gets more press coverage in Canada than Canada&#8217;s own election?  People complain about Canadian Politics, but that&#8217;s because everybody&#8217;s so fixated on the wrong country.

]]></description>
			<content:encoded><![CDATA[<p>Why am I continually assulted with an election that gets more press coverage in Canada than Canada&#8217;s own election?  People complain about Canadian Politics, but that&#8217;s because everybody&#8217;s so fixated on the wrong country.<br />
<a href="http://blog.vectec.net/wp-content/uploads/2008/11/facebook-edit.png"><img src="http://blog.vectec.net/wp-content/uploads/2008/11/facebook-edit-300x191.png" alt="" title="Facebook Election" width="300" height="191" class="alignnone size-medium wp-image-333" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2008/11/04/please-make-it-stop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Struggle For More Pixels</title>
		<link>http://blog.vectec.net/2008/10/19/struggle-for-more-pixels/</link>
		<comments>http://blog.vectec.net/2008/10/19/struggle-for-more-pixels/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 15:48:08 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=317</guid>
		<description><![CDATA[Anybody that uses a computer a lot, usually would agree that there&#8217;s just never enough pixels on the screen to do what you want.  This term, my old roommate left his monitor behind, and I&#8217;ve taken it into my room for use with my laptop.  My laptop&#8217;s display is 15.4 inch widescreen, with [...]]]></description>
			<content:encoded><![CDATA[<p>Anybody that uses a computer a lot, usually would agree that there&#8217;s just never enough pixels on the screen to do what you want.  This term, my old roommate left his monitor behind, and I&#8217;ve taken it into my room for use with my laptop.  My laptop&#8217;s display is 15.4 inch widescreen, with a native resolution of 1280&#215;800.  The current monitor I&#8217;m using has a native resolution of 1680&#215;1050 (just shy of 1080!), however, sometimes even that doesn&#8217;t feel like enough.  Having a dual monitor setup is perfect, but I wish it worked better in Linux for a setup where both monitors might be a different size.  </p>
<p>X seems to think that the best way to do this is to make a square screen, even if one screen is taller pixel-wise than the other, meaning I don&#8217;t get the bottom of the screen on the smaller monitor.  The other side-effect here is that the KDE panel goes across the bottom all the way, even if I wanted it just to be on one screen (Windows does this, and it&#8217;s a feature I like).  Dual monitors is something Windows gets right, and Linux absolutely fails at.  Then again, there might be a solution I don&#8217;t know about. At work, I have a nice setup.  I have a nice large square screen, and spend all day in VMWare, so switching around VMWare has become second nature.</p>
<p>I&#8217;m also thinking within a year I&#8217;m going to have to get my laptop replaced.  Heat has became a big issue for it, and even a chillpad struggles to keep it cool.  I&#8217;ve tried dusting it a couple times, but unfortunately the air circulation on it has never been that great.  I have the most problems when running something that gives the GPU a pretty good workout, usually pushing the sensor temps over 100C, and making the bottom of the laptop too hot to touch.  In my dual monitor setup, I must remember to keep the laptop lid open, even if the screen is in use to promote air circulation.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2008/10/19/struggle-for-more-pixels/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Who Turned Off the Pump?</title>
		<link>http://blog.vectec.net/2008/10/11/who-turned-off-the-pump/</link>
		<comments>http://blog.vectec.net/2008/10/11/who-turned-off-the-pump/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 18:34:36 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Ottawa Adventures]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=311</guid>
		<description><![CDATA[Every weekend, my friends and I go to a pub called &#8220;The Lieutenants Pump&#8221; for bunch at about noon.  Last week we got this letter:

Dear Valued Patron,
I regret to inform you that the Lieutenant&#8217;s Pump has been assessed a two day Liquor license suspension by the Alcohol and Gaming Commission.  The Commision found [...]]]></description>
			<content:encoded><![CDATA[<p>Every weekend, my friends and I go to a pub called &#8220;The Lieutenants Pump&#8221; for bunch at about noon.  Last week we got this letter:</p>
<blockquote>
<p>Dear Valued Patron,</p>
<p>I regret to inform you that the Lieutenant&#8217;s Pump has been assessed a two day Liquor license suspension by the Alcohol and Gaming Commission.  The Commision found us guilty of being over capacity by five people on the patio during last years Stanley Cup Finals.</p>
<p>On the night of the infraction, we did everything in our power to control the patio but did not foresee people jumping the fence.  We had staff supervising the patio and when people hopped the fence they were immediately escorted off.</p>
<p>We were not aware at the time that this would be considered insufficient by the Commission. Somehow, the Commission expected us to prevent the fence jumping.  Short of barbed wire and electrification I&#8217;m not sure how this could have been accomplished.  None the less, in its wisdom the Commission has concluded that the suspension is warranted as a general deterrent to other operators and as a specific deterrent to us letting it happen again.</p>
<p><b>The Lieutenant&#8217;s Pump will be closed October 11, 12 and 13</b> which is Thanksgiving weekend including Monday.</p>
<p>I apologize in advance for any inconvenience this closure will cause.  Any concerns about this situation should be directed to:</p>
<p>Ted Meekin<br />
Minister of Government and Consumer Services<br />
4320 &#8211; 99 Wellesely St. E.<br />
4<sup>th</sup> Fl. Whitney Block<br />
Toronto M7A 1W3</p>
<p>416 &#8211; 327 &#8211; 6611<br />
<a href="mailto:TmcMeekin.MPP@Liberal.OLA.ORG">TmcMeekin.MPP@Liberal.OLA.ORG</a></p>
<div style="text-align:right;">&#8220;See You At the Pump&#8221;<br />
&lt;SIGNATURE&gt;<br />
John Couse<br />
Owner
</div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2008/10/11/who-turned-off-the-pump/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting Lost</title>
		<link>http://blog.vectec.net/2008/09/05/getting-lost/</link>
		<comments>http://blog.vectec.net/2008/09/05/getting-lost/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 23:05:03 +0000</pubDate>
		<dc:creator>QBasicer</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://blog.vectec.net/?p=301</guid>
		<description><![CDATA[I had a meeting with a company this morning at 10:30 in a part of the city I&#8217;ve never been to before.  Between Google Maps and OC Transpo&#8217;s trip planner, I was about to figure out approximate times and buses I&#8217;d have to take.  Since the meeting was at 10:30, I obviously didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I had a meeting with a company this morning at 10:30 in a part of the city I&#8217;ve never been to before.  Between Google Maps and OC Transpo&#8217;s trip planner, I was about to figure out approximate times and buses I&#8217;d have to take.  Since the meeting was at 10:30, I obviously didn&#8217;t want to be late, so I targeted to be there about 10:00.  Both websites said the latest I could get there, without being late, was 9:00.</p>
<p>I woke up early at 6:45, and got up about 8:00, got showered, etc, and left by 8:30.  I jumped on the 96 to Bayview, hopped off, and picked up the 182 to where I thought the building was (according to Google Maps).  I started in search for a Tim Hortons, found one, but the line was ridiculously long. I started back to the building.  When I got to the building, I remembered the email said suite 300.  I get to suite 300, but it&#8217;s not that company.  I try looking it up on my cellphone through webmail, the my phone was rejecting the webmail&#8217;s server certificate.  Great.  I do a quick google, and find a result for a building down the road, so with 20 minutes to my interview, I hike it about a kilometer to the other building.  Upon reaching the elevator of this 7 storey building, and I got in and pressed floor 3.  She started to press floor 3, then realized I already had.  Knowing about the meeting today, she asked if I was the person whom had the meeting.</p>
<p>The meeting went fairly good, about 50 minutes long.  I left the building, and went to the bus stop, and waited for about 15 minutes for a bus to arrive.  A 15 minute bus ride to a transit terminal, and I took a bus back home.  It took me about an hour and 20 minutes to get home, and in 30C heat with 35C humidex.  I probably covered about 5.5 km (3mi) of walking today, but I could do with the exercise.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.vectec.net/2008/09/05/getting-lost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
