<?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>digitalize.ca &#187; Blog</title>
	<atom:link href="http://digitalize.ca/cat/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalize.ca</link>
	<description>Owned, operated, and obliterated by Mohammad Jangda</description>
	<lastBuildDate>Tue, 27 Dec 2011 17:17:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-beta3-20574</generator>
		<item>
		<title>Co-Authors Plus v2.6</title>
		<link>http://digitalize.ca/2011/12/co-authors-plus-v2-6/</link>
		<comments>http://digitalize.ca/2011/12/co-authors-plus-v2-6/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 17:17:15 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[Plugin Update]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1998</guid>
		<description><![CDATA[Co-Authors Plus v2.6: Search user’s display names, change byline order and more &#124; danielbachhuber. Thanks to Daniel, Co-Authors Plus, which I&#8217;ve long neglected, finally has an update with some long-overdue bug fixes and some sweet new features.]]></description>
			<content:encoded><![CDATA[<p><a href='http://danielbachhuber.com/2011/12/22/co-authors-plus-v2-6-search-users-display-names-change-byline-order-and-more/'>Co-Authors Plus v2.6: Search user’s display names, change byline order and more | danielbachhuber</a>.</p>
<p>Thanks to Daniel, <a href="http://wordpress.org/extend/plugins/co-authors-plus/">Co-Authors Plus</a>, which I&#8217;ve long neglected, finally has an update with some long-overdue bug fixes and some sweet new features.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/12/co-authors-plus-v2-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Review: Tintin in America</title>
		<link>http://digitalize.ca/2011/12/review-tintin-in-america/</link>
		<comments>http://digitalize.ca/2011/12/review-tintin-in-america/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 04:48:20 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[graphic novels]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[tintin]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1990</guid>
		<description><![CDATA[Tintin in America by Hergé My rating: 3 of 5 stars I&#8217;ve started reading through the whole Tintin series again (partially in preparation for the movie) and the experience is very similar to re-watching your old childhood TV shows. You get that warm, nostalgic feeling which slowly dissolves into doubt and and leaves you wondering [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.goodreads.com/book/show/790192" style="float: left; padding-right: 20px"><img src="http://photo.goodreads.com/books/1178382359m/790192.jpg" border="0" alt="Tintin in America" /></a><br />
      <a href="http://www.goodreads.com/book/show/790192">Tintin in America</a> by <a href="http://www.goodreads.com/author/show/2802356">Hergé</a><br/><br />
      My rating: <a href="http://www.goodreads.com/review/show/243166192">3 of 5 stars</a></p>
<p>      I&#8217;ve started reading through the whole Tintin series again (partially in preparation for the movie) and the experience is very similar to re-watching your old childhood TV shows. You get that warm, nostalgic feeling which slowly dissolves into doubt and and leaves you wondering how you could possibly enjoyed something so bad. This particular book has a lot of racist overtones and the dialogue is pretty poorly written (which I guess is really the norm for any comic book written in the early 20th Century).</p>
<p>Overall, though, the book is still a fun read and I can&#8217;t wait to re-read the rest.<br />
      <br/><br/><br />
      <a href="http://www.goodreads.com/review/show/243166192">View all my reviews</a></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/12/review-tintin-in-america/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On $wpdb-&gt;prepare</title>
		<link>http://digitalize.ca/2011/11/on-wpdb-prepare/</link>
		<comments>http://digitalize.ca/2011/11/on-wpdb-prepare/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 19:30:08 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wpdb]]></category>
		<category><![CDATA[wpdb-prepare]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1982</guid>
		<description><![CDATA[If you do the following, you&#8217;re a terrible person: There is absolutely no reason for prepare to be on a separate line. Here&#8217;s how you do it the right way: One line. Simple, easy to read, and not confusing.]]></description>
			<content:encoded><![CDATA[<p>If you do the following, you&#8217;re a terrible person:</p>
<pre class="brush: php; title: ; notranslate">
$query = &quot;SELECT ID from {$wpdb-&gt;posts} WHERE ID = %d&quot;;
$query = $wpdb-&gt;prepare( $query, $value );
</pre>
<p>There is absolutely no reason for <code>prepare</code> to be on a separate line.</p>
<p>Here&#8217;s how you do it the right way:</p>
<pre class="brush: php; title: ; notranslate">
$query = $wpdb-&gt;prepare( &quot;SELECT ID from {$wpdb-&gt;posts} WHERE ID = %d&quot;, $value );
</pre>
<p>One line. Simple, easy to read, and not confusing.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/11/on-wpdb-prepare/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>A letter to Canadians from the Honourable Jack Layton</title>
		<link>http://digitalize.ca/2011/08/a-letter-to-canadians-from-the-honourable-jack-layton/</link>
		<comments>http://digitalize.ca/2011/08/a-letter-to-canadians-from-the-honourable-jack-layton/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 02:57:47 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[etc.]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[canadian politics]]></category>
		<category><![CDATA[jack layton]]></category>
		<category><![CDATA[ndp]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1875</guid>
		<description><![CDATA[And finally, to all Canadians: Canada is a great country, one of the hopes of the world. We can be a better one – a country of greater equality, justice, and opportunity. We can build a prosperous economy and a society that shares its benefits more fairly. We can look after our seniors. We can [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>
<em>And finally, to all Canadians:</em> Canada is a great country, one of the hopes of the world. We can be a better one – a country of greater equality, justice, and opportunity. We can build a prosperous economy and a society that shares its benefits more fairly. We can look after our seniors. We can offer better futures for our children. We can do our part to save the world’s environment. We can restore our good name in the world. We can do all of these things because we finally have a party system at the national level where there are real choices; where your vote matters; where working for change can actually bring about change. In the months and years to come, New Democrats will put a compelling new alternative to you. My colleagues in our party are an impressive, committed team. Give them a careful hearing; consider the alternatives; and consider that we can be a better, fairer, more equal country by working together. Don’t let them tell you it can’t be done.</p>
<p>My friends, love is better than anger. Hope is better than fear. Optimism is better than despair. So let us be loving, hopeful and optimistic. And we’ll change the world.
</p></blockquote>
<p>Even at his weakest, Jack could still inspire us to be our strongest. Sir, you will be missed.</p>
<p><a href="http://www.ndp.ca/letter-to-canadians-from-jack-layton">Read the full letter</a> | <a href="http://happylayton.tumblr.com/">See Jack at his best best: happy</a> | <a href="http://toronto.openfile.ca/blog/news/2011/six-ways-jack-layton-helped-build-toronto">Six ways Jack Layton helped build Toronto</a></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/08/a-letter-to-canadians-from-the-honourable-jack-layton/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photo: &#8220;All The Ice Cream You Can Eat&#8221;</title>
		<link>http://digitalize.ca/2011/08/photo-all-the-ice-cream-you-can-eat/</link>
		<comments>http://digitalize.ca/2011/08/photo-all-the-ice-cream-you-can-eat/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 17:01:00 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[all you can eat]]></category>
		<category><![CDATA[dairy queen]]></category>
		<category><![CDATA[ice cream]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1868</guid>
		<description><![CDATA[Ice cream?! All you can eat?! 10 cents?! Sign me up! (Spotted at Dairy Queen) Posted from Toronto, Ontario, Canada.]]></description>
			<content:encoded><![CDATA[<p><a href="http://digitalize.ca/wp-content/uploads/2011/08/wpid-IMG_20110803_220857.jpg"><img alt="All The Ice Cream You Can Eat" src="http://digitalize.ca/wp-content/uploads/2011/08/wpid-IMG_20110803_220857.jpg" /></a></p>
<p>Ice cream?! All you can eat?! 10 cents?! Sign me up!</p>
<p>(Spotted at Dairy Queen)</p>
<p><br/><br/><a class="geolocation-link" href="#" id="geolocation1868" name="43.63142377410883,-79.54404974609372" onclick="return false;">Posted from Toronto, Ontario, Canada.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/08/photo-all-the-ice-cream-you-can-eat/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Distraction-Free Skin: Terminal/Matrix</title>
		<link>http://digitalize.ca/2011/08/wordpress-distraction-free-skin-terminalmatrix/</link>
		<comments>http://digitalize.ca/2011/08/wordpress-distraction-free-skin-terminalmatrix/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 17:21:23 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[distraction-free writing]]></category>
		<category><![CDATA[matrix]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[zen]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1844</guid>
		<description><![CDATA[Because all the cool kids want to feel like they&#8217;re writing posts in the Matrix. (Inspired by Zen)]]></description>
			<content:encoded><![CDATA[<p><img src="http://digitalize.ca/wp-content/uploads/2011/08/distraction-free-matrix.png" width="640" alt="Just Write! Like you're in the Matrix!" /></p>
<p>Because all the cool kids want to feel like they&#8217;re writing posts in the Matrix. (Inspired by <a href="http://wordpress.org/extend/plugins/zen/">Zen</a>)</p>
<p><script type="text/javascript" src="https://gist.github.com/1078876.js">;</script></p>
<p><noscript>
<pre>
<?php 
/**
 * Plugin Name: DFW Matrix
 * Plugin Description: Matrix-like Terminal style for WordPress' Fullscreen / Distraction-Free Writing mode. Styles borrowed from http://wordpress.org/extend/plugins/zen
 * License: GPL v2 Baby!
 */
add_action( 'admin_print_styles-post.php', 'dfw_terminal_style' );
add_action( 'admin_print_styles-post-new.php', 'dfw_terminal_style' );

function dfw_terminal_style() {
        ?>
        <style>
        .fullscreen-active,  
  	#wp-fullscreen-body,  
  	#fullscreen-overlay {
                background: #000 !important;
 	}
        #wp-fullscreen-body input[type=text],
        #wp-fullscreen-body textarea,  
        #wp-fullscreen-body #wp-fullscreen-title-prompt-text {
                font-family: Courier New, Courier, monospace;
                color: #00f91d;
        }
        </style>
        <?php
}
</pre>
<p></noscript></p>
<p><a href="https://gist.github.com/1078876">View on Github</a></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/08/wordpress-distraction-free-skin-terminalmatrix/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://digitalize.ca/2011/06/the-case-of-the-traveling-text-message/</link>
		<comments>http://digitalize.ca/2011/06/the-case-of-the-traveling-text-message/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 16:01:51 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[etc.]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[sherlock]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1832</guid>
		<description><![CDATA[The Case of The Traveling Text&#160;Message &#8212; Michele Tepper walks through one of the most powerful features of BBC&#8217;s Sherlock, which is just one of the many reasons why I love the series. I can&#8217;t wait for new episodes this year.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.micheletepper.com/blog/2011/6/14/the-case-of-the-traveling-text-message.html">The Case of The Traveling Text&nbsp;Message</a> &#8212; Michele Tepper walks through one of the most powerful features of BBC&#8217;s <a href="http://www.bbc.co.uk/programmes/b00t4pgh"><em>Sherlock</em></a>, which is just one of the many reasons why I love the series. I can&#8217;t wait for new episodes this year.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/06/the-case-of-the-traveling-text-message/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A final word and a thank-you &#124; Slave Lake Book Auction</title>
		<link>http://digitalize.ca/2011/06/a-final-word-and-a-thank-you-slave-lake-book-auction/</link>
		<comments>http://digitalize.ca/2011/06/a-final-word-and-a-thank-you-slave-lake-book-auction/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 16:01:19 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[etc.]]></category>
		<category><![CDATA[book auction]]></category>
		<category><![CDATA[books]]></category>
		<category><![CDATA[donation]]></category>
		<category><![CDATA[slave lake library]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1812</guid>
		<description><![CDATA[Well folks, that’s a wrap for the Slave Lake book auction. [...] While the auction was an unbelievable amount of hard work, it was also a lot of fun. I LOVED watching the bidding wars going on and all the fun comments between bidders, egging each other on (yes Angie, I’m looking at YOU!). I [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Well folks, that’s a wrap for the <a href="http://slavelakebookauction.wordpress.com/2011/06/18/a-final-word-and-a-thank-you/">Slave Lake book auction</a>.</p>
<p>[...]</p>
<p>While the auction was an unbelievable amount of hard work, it was also a lot of fun. I LOVED watching the bidding wars going on and all the fun comments between bidders, egging each other on (yes Angie, I’m looking at YOU!). I loved that some of the books were hand delivered to the winners. I loved that authors offered up a SECOND copy to auction losers who wanted to pony up the same amount as the winners. I loved that up until the last post I was still getting donations in.</p>
<p>So thank you all so, so much for making this auction a roaring success. Because of you Slave Lake Library now has $4,909 to put towards rebuilding their library.</p>
<p>And that’s just freaking awesome.</p></blockquote>
<p>Despite not winning any books, this is still beyond awesome. Great job <a href="http://lavenderlines.wordpress.com">Colleen</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/06/a-final-word-and-a-thank-you-slave-lake-book-auction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Swoop the Owl &#8211; Mobile Plush (on Kickstarter)</title>
		<link>http://digitalize.ca/2011/06/swoop-the-owl-mobile-plush-on-kickstarter/</link>
		<comments>http://digitalize.ca/2011/06/swoop-the-owl-mobile-plush-on-kickstarter/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 17:01:41 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[etc.]]></category>
		<category><![CDATA[kickstarter]]></category>
		<category><![CDATA[plush]]></category>
		<category><![CDATA[swoop the owl]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1791</guid>
		<description><![CDATA[I pledged. Because I&#8217;m not afraid to admit that I sleep with my phone beside me. Maybe you should too?]]></description>
			<content:encoded><![CDATA[<p>I pledged. Because I&#8217;m not afraid to admit that I sleep with my phone beside me. Maybe you should too?</p>
<p><iframe frameborder="0" height="410px" src="http://www.kickstarter.com/projects/jimmcgaw/swoop-the-owl-mobile-plush-for-iphone-and-ipod-tou/widget/video.html" width="480px"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/06/swoop-the-owl-mobile-plush-on-kickstarter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>On the failures of Online Banking</title>
		<link>http://digitalize.ca/2011/05/on-the-failures-of-online-banking/</link>
		<comments>http://digitalize.ca/2011/05/on-the-failures-of-online-banking/#comments</comments>
		<pubDate>Tue, 31 May 2011 17:36:03 +0000</pubDate>
		<dc:creator>Mohammad Jangda</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[etc.]]></category>
		<category><![CDATA[banking]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[money]]></category>

		<guid isPermaLink="false">http://digitalize.ca/?p=1614</guid>
		<description><![CDATA[It seems to me that with every upgrade or enhancement, online banking (in Canada) get less useful and far more difficult to use. Having had a 4-month co-op stint at a bank (doing QA for the Online Banking team), I know all about the red-tape involved, plus the antiquated mindset, skills, and technologies at play, [...]]]></description>
			<content:encoded><![CDATA[<p>It seems to me that with every upgrade or enhancement, online banking (in Canada) get less useful and far more difficult to use. Having had a 4-month co-op stint at a bank (doing QA for the Online Banking team), I know all about the red-tape involved, plus the antiquated mindset, skills, and technologies at play, so I&#8217;m not really surprised; just disappointed.</p>
<p>Some highlights:</p>
<ul>
<li>One bank no longer lets me view my statements online but rather forces me to download a PDF.</li>
<li>Several banks don&#8217;t actually let me download PDF statements.</li>
<li>One bank fails to list the actual statement date when viewing a statement.</li>
<li>Two banks limit their passwords at 6-8 characters.</li>
<li>One bank has two separate systems: one for their credit card and one for regular banking.</li>
<li>One bank forces me to indicate the fact that I&#8217;m from Canada every time I visit their site (because the domain on their cookie isn&#8217;t set correctly).</li>
</ul>
<p>Banks should spend less time on building peripheral <a href="http://www.rbcroyalbank.com/myfinancetracker/">money management webapps</a>, and focus instead on the core experience. They could pick up about a million cues from <a href="https://www.mint.com/">mint.com</a>.</p>
<p>As skeptical as I was about the idea of <a href="https://banksimple.com/">BankSimple</a>, I now wait with bated breath.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalize.ca/2011/05/on-the-failures-of-online-banking/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

