<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>RU-FI-OOOOOH!</title>
	<atom:link href="http://mirzmaster.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mirzmaster.wordpress.com</link>
	<description>Sohail Mirza, standing in for Peter.</description>
	<lastBuildDate>Sun, 15 Jan 2012 18:40:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mirzmaster.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>RU-FI-OOOOOH!</title>
		<link>http://mirzmaster.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mirzmaster.wordpress.com/osd.xml" title="RU-FI-OOOOOH!" />
	<atom:link rel='hub' href='http://mirzmaster.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Helpful Hints: Create an APT proxy in 3 easy steps using apt-cacher-ng</title>
		<link>http://mirzmaster.wordpress.com/2011/08/20/helpful-hints-create-an-apt-proxy-in-3-easy-steps-using-apt-cacher-ng/</link>
		<comments>http://mirzmaster.wordpress.com/2011/08/20/helpful-hints-create-an-apt-proxy-in-3-easy-steps-using-apt-cacher-ng/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 04:46:28 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Helpful Hints]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[intermediate skills]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[slower internet connection]]></category>
		<category><![CDATA[terminal window]]></category>
		<category><![CDATA[three easy steps]]></category>
		<category><![CDATA[ubuntu repositories]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=281</guid>
		<description><![CDATA[Pre-requisites This Helpful Hints tutorial will require a number of basic and intermediate skills.  In order to complete this tutorial you should be comfortable doing the following: Installing Ubuntu packages Using sudo to act as the super-user Editing a text file Looking up your computer&#8217;s IP address If you&#8217;re not certain how to perform some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=281&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>Pre-requisites</h2>
<p>This Helpful Hints tutorial will require a number of basic and intermediate skills.  In order to complete this tutorial you should be comfortable doing the following:</p>
<ul>
<li>Installing Ubuntu packages</li>
<li>Using sudo to act as the super-user</li>
<li>Editing a text file</li>
<li><a href="http://www.howtogeek.com/howto/17012/how-to-find-your-ip-address-in-ubuntu/">Looking up your computer&#8217;s IP address</a></li>
</ul>
<p>If you&#8217;re not certain how to perform some of these actions, you may find tutorials for them readily available online.</p>
<h2>Why an APT proxy?</h2>
<p>If you&#8217;re like me, you might have a number of Ubuntu machines at home.  If this is the case, you know it can be a pain to quickly update them all since the same updates need to be downloaded to each computer.  If there are a lot of updates to be downloaded, this can take a while on a slower Internet connection.</p>
<p>If this sounds like your situation, then you can speed things up by setting up an <acronym title="Advanced Packaging Tool">APT</acronym> proxy on your network at home. APT is the tool your Ubuntu system uses to retrieve updates and manage the installation of programs. An APT proxy will basically allow you to designate one of the machines on your network as the update server &#8212; the one machine where all the others will get their system updates from.  The idea is that the proxy will only have to download updates once, and these are then distributed to all the other Ubuntu machines on the network.</p>
<p>To accomplish this we can very easily setup <code>apt-cacher-ng</code>, a proxy tool readily available from the Ubuntu repositories.  I did play around with <code>apt-proxy</code> first, but found that less straightforward to use.</p>
<h2>Taking it step-by-step</h2>
<p>So here are the three easy steps, assuming all the computers involved are running Ubuntu (the computers can be running any version of Ubuntu, even differing versions):</p>
<ol>
<li>
<p>On the machine which will be running the APT proxy, install <a title="Click to install apt-cacher-ng" href="apt-cacher-ng"><code>apt-cacher-ng</code></a>. Just click the link in the last sentence, or type the following into a terminal window:</p>
<p>
<pre>sudo apt-get install apt-cacher-ng</pre>
</p>
</li>
<li>
<p>Now that your proxy is ready to go &#8212; yup, it was that simple &#8212; we need to instruct all the computers in your home or office to go to that proxy computer for APT updates, and not to the public update sites on the Internet. This is fairly straightforward to do as well.</p>
<p>As the super-user, you&#8217;ll need to edit (or create, if it doesn&#8217;t exist) the file at <code>/etc/apt/apt.conf.d/02proxy</code>, and add the following to the first line in that file:</p>
<p>
<pre>Acquire::http { Proxy "http://ProxyComputerIPAddress:3142"; };</pre>
</p>
<p>In this line you&#8217;ll need to replace &#8220;<code>ProxyComputerIPAddress</code>&#8221; with the proxy computer&#8217;s address on your network. It&#8217;s address may look similar to an IP address like <code>192.168.1.100</code>.</p>
<p><strong>You&#8217;ll need to perform this step on every computer, including the one running the APT proxy. On the computer running the proxy you can use the IP address <code>127.0.0.1</code>, which is just a way for the computer to refer to itself; every computer can refer itself with the this IP address.</strong></p>
</li>
<li>Now that every computer will be going through the proxy, things should magically just work! At this point you can launch the Update Manager, and check to see if there are pending updates.</li>
</ol>
<h2>Wrapping up&#8230;</h2>
<p>That&#8217;s it folks, it&#8217;s that easy to setup an APT proxy. The result is that all Ubuntu updates should be cloned to your proxy server once, and that will now be the source of updates for all the computers on your network.</p>
<p>Post to the comments and let us know how it works for you.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/281/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/281/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/281/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=281&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2011/08/20/helpful-hints-create-an-apt-proxy-in-3-easy-steps-using-apt-cacher-ng/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>
	</item>
		<item>
		<title>Helpful Hints: Downloading trailers from iTunes Movie Trailers</title>
		<link>http://mirzmaster.wordpress.com/2010/01/14/helpful-hints-downloading-trailers-from-itunes-movie-trailers/</link>
		<comments>http://mirzmaster.wordpress.com/2010/01/14/helpful-hints-downloading-trailers-from-itunes-movie-trailers/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 06:03:43 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Helpful Hints]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[trailers]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=264</guid>
		<description><![CDATA[This guide works with iTunes Movie Trailers as of Jan. 14th, 2010. What you&#8217;ll need to get things working is: The Greasemonkey Firefox addon. The HeaderControl Firefox addon. My iTunes Movie Trailers Download script. Installing Greasemonkey Thank goodness for Firefox documentation:  just use the easy-to-follow guide on installing extensions, but install Greasemonkey instead. Installing and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=264&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This guide works with iTunes Movie Trailers as of Jan. 14th, 2010.</p>
<p>What you&#8217;ll need to get things working is:</p>
<ol>
<li>The <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey Firefox addon</a>.</li>
<li>The <a href="https://addons.mozilla.org/en-US/firefox/addon/11327">HeaderControl Firefox addon</a>.</li>
<li>My <a href="http://userscripts.org/scripts/show/57184">iTunes Movie Trailers Download script</a>.</li>
</ol>
<div id="attachment_267" class="wp-caption aligncenter" style="width: 660px"><a href="http://mirzmaster.files.wordpress.com/2010/01/itunes_movie_trailers-karate_kid.jpg"><img class="size-full wp-image-267" title="Karate Kid on iTunes Movie Trailers" src="http://mirzmaster.files.wordpress.com/2010/01/itunes_movie_trailers-karate_kid.jpg?w=700" alt="Screen capture of iTunes Movie Trailers download page for the new Karate Kid"   /></a><p class="wp-caption-text">Yes, Karate Kid, I want to download you... even though Jackie Chan != Mr. Miyagi</p></div>
<h3>Installing Greasemonkey</h3>
<p>Thank goodness for Firefox documentation:  just use the easy-to-follow <a href="http://support.mozilla.com/en-US/kb/Using+extensions+with+Firefox">guide on installing extensions</a>, but install <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a> instead.</p>
<div id="attachment_268" class="wp-caption aligncenter" style="width: 660px"><a href="http://mirzmaster.files.wordpress.com/2010/01/installing_firefox_extensions.gif"><img class="size-full wp-image-268" title="Installing Firefox Extensions" src="http://mirzmaster.files.wordpress.com/2010/01/installing_firefox_extensions.gif?w=700" alt="Instructions for installing Firefox Extensions"   /></a><p class="wp-caption-text">What could be better than easy to follow instructions?</p></div>
<p style="text-align:center;">
<h3>Installing and Configuring HeaderControl</h3>
<p>HeaderControl is slightly more difficult to install and requires some additional configuring as well.  Not to worry though, I&#8217;ve already covered it before.  Please refer to the section titled &#8220;Setting up HeaderControl&#8221; in my <a href="http://mirzmaster.wordpress.com/2009/10/09/helpful-hints-apple-movie-trailers-download-using-firefox-greasemonkey-and-user-agent-hack/">last version</a> of this guide.  Just make sure you&#8217;ve got the User Agent string right (&#8220;<strong>Quicktime/7.6.2</strong>&#8220;).</p>
<h3>Installing the iTunes Trailer Download script</h3>
<p>Installing the script is as simple as visiting the <a href="http://userscripts.org/scripts/show/57184">script&#8217;s webpage</a> and clicking the big green Install button:</p>
<div id="attachment_269" class="wp-caption aligncenter" style="width: 660px"><a href="http://mirzmaster.files.wordpress.com/2010/01/trailer_download_script_install_button.jpg"><img class="size-full wp-image-269" title="Apple Trailer Download page" src="http://mirzmaster.files.wordpress.com/2010/01/trailer_download_script_install_button.jpg?w=700" alt="Webpage for The Apple Trailer Download Greasemonkey script"   /></a><p class="wp-caption-text">Go ahead, cilck that big, green button.</p></div>
<h3>Rock &#8216;n Roll</h3>
<p>Followed all the steps?  Great, now you&#8217;re ready to rock and roll.  Go ahead and <a href="http://www.apple.com/trailers/sony_pictures/karatekid/">try it out</a>.</p>
<div id="attachment_272" class="wp-caption aligncenter" style="width: 467px"><a href="http://mirzmaster.files.wordpress.com/2010/01/karate_kid_download.jpg"><img class="size-full wp-image-272" title="That's money" src="http://mirzmaster.files.wordpress.com/2010/01/karate_kid_download.jpg?w=700" alt="Download links for the Karate Kid trailer"   /></a><p class="wp-caption-text">That&#39;s money.</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/264/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=264&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2010/01/14/helpful-hints-downloading-trailers-from-itunes-movie-trailers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2010/01/itunes_movie_trailers-karate_kid.jpg" medium="image">
			<media:title type="html">Karate Kid on iTunes Movie Trailers</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2010/01/installing_firefox_extensions.gif" medium="image">
			<media:title type="html">Installing Firefox Extensions</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2010/01/trailer_download_script_install_button.jpg" medium="image">
			<media:title type="html">Apple Trailer Download page</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2010/01/karate_kid_download.jpg" medium="image">
			<media:title type="html">That&#039;s money</media:title>
		</media:content>
	</item>
		<item>
		<title>Helpful Hints &#8211; Apple Movie Trailers download using Firefox, Greasemonkey, and User Agent hack</title>
		<link>http://mirzmaster.wordpress.com/2009/10/09/helpful-hints-apple-movie-trailers-download-using-firefox-greasemonkey-and-user-agent-hack/</link>
		<comments>http://mirzmaster.wordpress.com/2009/10/09/helpful-hints-apple-movie-trailers-download-using-firefox-greasemonkey-and-user-agent-hack/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 04:08:42 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Helpful Hints]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[trailers]]></category>
		<category><![CDATA[user agent]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=255</guid>
		<description><![CDATA[Only a few days ago I was disappointed to find that Apple had once again broken movie trailer downloads for non-iTunes users.  Thanks to the input of a few commentators on this blog, I think I&#8217;ve found a new workaround for Firefox/Greasemonkey users. The workaround uses a combination of the most excellent Apple Trailer Download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=255&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_257" class="wp-caption alignright" style="width: 285px"><img class="size-full wp-image-257" title="apple_mob" src="http://mirzmaster.files.wordpress.com/2009/10/apple_mob.jpg?w=700" alt="You can't stop us Apple!"   /><p class="wp-caption-text">You can&#39;t stop us Apple!</p></div>
<p>Only a few days ago I was <a href="http://mirzmaster.wordpress.com/2009/10/06/apple-movie-trailer-downloads-are-broken-yet-again/">disappointed</a> to find that Apple had once again broken movie trailer downloads for non-iTunes users.  Thanks to the input of a few commentators on this blog, I think I&#8217;ve found a new workaround for Firefox/Greasemonkey users.</p>
<p>The workaround uses a combination of the most excellent <a href="http://userscripts.org/scripts/show/2484">Apple Trailer Download script</a> by zatic (<strong>not</strong> <a href="http://userscripts.org/scripts/show/57184">my modified version</a> &#8212; I&#8217;ll get to this in just a bit), and a modification to the User Agent string that Firefox uses to identify itself to websites.</p>
<h3>Setting up HeaderControl</h3>
<p>First of all, you&#8217;ll need to download this great experimental Firefox addon, <a href="https://addons.mozilla.org/en-US/firefox/addon/11327">HeaderControl</a> (<strong>Disclaimer</strong>: always use caution with beta/experimental software.  I&#8217;m not responsible for any harm you may cause your computer).  What we&#8217;ll be using HeaderControl for is to enable a modified User Agent string for only the Apple trailer download site.  Some of you may have the popular <a href="https://addons.mozilla.org/en-US/firefox/addon/59">User Agent Switcher</a> extension installed, which could work as well, but I chose HeaderControl for this workaround because it allows <em>per-domain</em> user-agent switching.  The &#8220;per-domain&#8221; bit means I don&#8217;t have to keep switching the Firefox user agent for the trailers site, and back again.</p>
<p>Now, once you&#8217;ve installed HeaderControl, reboot Firefox and bring up the preferences dialog for HeaderControl.</p>
<div id="attachment_258" class="wp-caption aligncenter" style="width: 489px"><img class="size-full wp-image-258" title="headercontrol_options" src="http://mirzmaster.files.wordpress.com/2009/10/headercontrol_options.png?w=700" alt="HeaderControl Options dialog."   /><p class="wp-caption-text">HeaderControl Options dialog.</p></div>
<p>Clicking the &#8220;Add&#8221; button, go ahead and create a new per-domain configuration for the domain, <strong>movies.apple.com</strong>, and specify the custom user agent string <strong>&#8220;Quicktime/7.6.2</strong>&#8220;.  Note that you&#8217;ll only need to choose the &#8220;Mangle HTTP &#8216;UserAgent&#8217;&#8221; option.  You can leave alone the Referer and Language tabs.</p>
<div id="attachment_259" class="wp-caption aligncenter" style="width: 544px"><img class="size-full wp-image-259" title="headercontrol_suffix_properties" src="http://mirzmaster.files.wordpress.com/2009/10/headercontrol_suffix_properties.png?w=700" alt="Make sure the suffix is &quot;movies.apple.com&quot; and that you have the user agent correct."   /><p class="wp-caption-text">Make sure the suffix is &quot;movies.apple.com&quot; and that you have the user agent correct.</p></div>
<p>Press &#8220;OK&#8221; to commit the new per-domain filter, and you&#8217;ll be good to go.</p>
<h3>Downloading Trailers</h3>
<p>For those of you who do not care to download the trailers but  just want to watch the trailers in your browser, <strong>you should be good to go</strong>.  Go ahead, hit up the trailers site and watch <a href="http://www.apple.com/trailers/fox_searchlight/fantasticmrfox/">something special</a>.</p>
<p>For those of you who want to download the trailers but don&#8217;t know how, you can refer to my <a href="http://mirzmaster.wordpress.com/2007/07/15/helpful-hints-downloading-hd-trailers-from-apple-trailers/">original instructions</a>, which should now work again.</p>
<p>Finally, if you&#8217;re amongst those who followed the steps in my <a href="http://mirzmaster.wordpress.com/2009/08/20/apple-movie-trailer-downloads-are-broken/">previous post</a> on the issue of Apple trailer download breakage by installing my <a href="http://userscripts.org/scripts/show/57184">modified</a> Apple trailer download Greasemonkey script, then you have one more step to complete:  <strong>disable my script and go back to using the <a href="http://userscripts.org/scripts/show/2484">original</a> Apple Trailer Download script by <a href="http://userscripts.org/users/3156">zatic</a>.</strong></p>
<div id="attachment_260" class="wp-caption aligncenter" style="width: 660px"><img class="size-full wp-image-260" title="greasemonkey-disable_my_script" src="http://mirzmaster.files.wordpress.com/2009/10/greasemonkey-disable_my_script.png?w=700" alt="Disable my &quot;fixed&quot; script.  It's no longer required."   /><p class="wp-caption-text">Disable my &quot;fixed&quot; script.  It&#39;s no longer required.</p></div>
<p>Once you&#8217;ve done this you should find yourself able to download movie trailers from Apple&#8217;s site once again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=255&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2009/10/09/helpful-hints-apple-movie-trailers-download-using-firefox-greasemonkey-and-user-agent-hack/feed/</wfw:commentRss>
		<slash:comments>27</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2009/10/apple_mob.jpg" medium="image">
			<media:title type="html">apple_mob</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2009/10/headercontrol_options.png" medium="image">
			<media:title type="html">headercontrol_options</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2009/10/headercontrol_suffix_properties.png" medium="image">
			<media:title type="html">headercontrol_suffix_properties</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2009/10/greasemonkey-disable_my_script.png" medium="image">
			<media:title type="html">greasemonkey-disable_my_script</media:title>
		</media:content>
	</item>
		<item>
		<title>Apple Movie Trailer downloads are broken&#8230; yet again</title>
		<link>http://mirzmaster.wordpress.com/2009/10/06/apple-movie-trailer-downloads-are-broken-yet-again/</link>
		<comments>http://mirzmaster.wordpress.com/2009/10/06/apple-movie-trailer-downloads-are-broken-yet-again/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 22:49:46 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[trailers]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=249</guid>
		<description><![CDATA[Wow, Apple seems very determined to break Apple Movie Trailer downloads for non-iTunes users. In their latest salvo at everyone who does not own a Mac and those who choose not to use iTunes, Apple has corrected both the www hack and user agent hack outlined in my last post on the topic.  This also [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=249&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_252" class="wp-caption aligncenter" style="width: 660px"><img class="size-full wp-image-252" title="apple_trailers_no_no_no" src="http://mirzmaster.files.wordpress.com/2009/10/apple_trailers_no_no_no.png?w=700" alt="Apple sez no trailers for you."   /><p class="wp-caption-text">Apple sez no trailers for you.</p></div>
<p>Wow, Apple seems very determined to break Apple Movie Trailer downloads for non-iTunes users.  In their latest salvo at everyone who does not own a Mac and those who choose not to use iTunes, Apple has corrected both the www hack and user agent hack outlined in my <a href="http://mirzmaster.wordpress.com/2009/08/20/apple-movie-trailer-downloads-are-broken/">last post</a> on the topic.  This also renders my <a href="http://userscripts.org/scripts/show/57184">Greaseonkey script</a> useless.</p>
<p>For the time being, I don&#8217;t have another workaround or fix to try, but as soon as I learn of one, I&#8217;ll be sure to share it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/249/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/249/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/249/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=249&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2009/10/06/apple-movie-trailer-downloads-are-broken-yet-again/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2009/10/apple_trailers_no_no_no.png" medium="image">
			<media:title type="html">apple_trailers_no_no_no</media:title>
		</media:content>
	</item>
		<item>
		<title>Eye candy IS a critical business requirement</title>
		<link>http://mirzmaster.wordpress.com/2009/08/25/eye-candy-is-a-critical-business-requirement/</link>
		<comments>http://mirzmaster.wordpress.com/2009/08/25/eye-candy-is-a-critical-business-requirement/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 02:06:57 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[requirements]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[ux]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=242</guid>
		<description><![CDATA[I recently came across the presentation, Eye Candy is a Critical Business Requirement. Stephen Anderson of Poetpainter delivered this presentation at a Usability Professionals&#8217; Association in July 2008. As a software professional with one foot in development and one foot in design, this presentation really reasonated with me.  Eye candy really IS a critical business [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=242&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I recently came across the presentation, <a href="http://www.slideshare.net/stephenpa/eye-candy-is-a-critical-business-requirement"><em>Eye Candy is a Critical Business Requirement</em></a>.  Stephen Anderson of <a title="Poetpainter - The Professional Site of Stephen P. Anderson" href="http://www.poetpainter.com/">Poetpainter</a> <a href="http://dfw-upa.org/2008/07/july-2008-eye-candy-is-a-business-requirement/">delivered</a> this presentation at a Usability Professionals&#8217; Association in July 2008.</p>
<p>As a software professional with one foot in development and one foot in design, this presentation really reasonated with me.  Eye candy really <strong>IS</strong> a critical business requirement.</p>
<iframe src='http://www.slideshare.net/slideshow/embed_code/161377' width='700' height='574'></iframe>
<p><em>(Found via: <a title="Popular Bookmarks on Delicious" href="http://delicious.com/popular/">Delicious Popular</a> list)</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/242/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/242/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/242/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=242&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2009/08/25/eye-candy-is-a-critical-business-requirement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>
	</item>
		<item>
		<title>Apple Movie Trailer downloads are broken</title>
		<link>http://mirzmaster.wordpress.com/2009/08/20/apple-movie-trailer-downloads-are-broken/</link>
		<comments>http://mirzmaster.wordpress.com/2009/08/20/apple-movie-trailer-downloads-are-broken/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 02:01:41 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Greasemonkey]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[hd]]></category>
		<category><![CDATA[trailers]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=228</guid>
		<description><![CDATA[In the past I had recommended a wonderful Greasemonkey script that would allow one to directly download the trailers from Apple Movie Trailers. Who wants to watch awesome trailers in a browser window anyhow? It now seems like Apple has intentionally broken this and other means of downloading their trailers directly, as covered by hd-trailers.net: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=228&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_238" class="wp-caption aligncenter" style="width: 660px"><img class="size-full wp-image-238" title="Apple Trailers is broken!" src="http://mirzmaster.files.wordpress.com/2009/08/apple_trailers_no.png?w=700" alt="Apple Trailers doesn't want us.  :("   /><p class="wp-caption-text">iTunes Movie Trailers doesn&#39;t want us.  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p></div>
<p>In the past I had <a title="Helpful Hints – Downloading HD Trailers from Apple Trailers" href="http://mirzmaster.wordpress.com/2007/07/15/helpful-hints-downloading-hd-trailers-from-apple-trailers/">recommended</a> a wonderful <a title="Greasemonkey at Firefox Addons" href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a> <a title="Apple Trailer Download" href="http://userscripts.org/scripts/show/2484">script</a> that would allow one to directly download the trailers from <a href="http://www.apple.com/trailers/">Apple Movie Trailers</a>.  Who wants to watch <a title="The Avatar teaser is upon us!" href="http://www.apple.com/trailers/fox/avatar/">awesome trailers</a> in a browser window anyhow?  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It now seems like Apple has intentionally broken this and other means of downloading their trailers directly, as covered by <a title="Direct Download Links from Apple Are Not Working" href="http://www.hd-trailers.net/blog/2009/08/20/direct-download-links-from-apple-are-not-working/">hd-trailers.net</a>:</p>
<blockquote><p>It looks like one of the adjustments they made was to only allow Quicktime to download the trailer. Any web browser will be automatically redirected to the Apple – Movie Trailers’ homepage.</p></blockquote>
<p>Those great guys have a workaround though.  If you&#8217;re a Linux/OS X user, you can simply use <code>wget</code> with the Quicktime User Agent string:</p>
<p style="padding-left:30px;"><code>wget -U QuickTime/7.6.2 http://movies.apple.com/movies/fox/avatar/avatar2009aug0820a-tsr_h1080p.mov</code></p>
<p>If you&#8217;re on Leopard, you may not have wget.  In this case you may be able to use <code>curl -O</code> which supposedly <a title="A wget replacement for OS X Leopard" href="http://www.pyrosoft.co.uk/blog/2008/09/16/a-wget-replacement-for-os-x-leopard/">does the same thing</a>, though I can&#8217;t verify that this works:</p>
<p style="padding-left:30px;"><code>curl -A QuickTime/7.6.2 </code><code>-O </code><code>http://movies.apple.com/movies/fox/avatar/avatar2009aug0820a-tsr_h1080p.mov</code></p>
<p>Another workaround, one that would also be simpler for Windows users, is to try using the <a title="User Agent Switcher at Firefox Addons" href="https://addons.mozilla.org/en-US/firefox/addon/59">User Agent Switcher</a> Firefox extension.  Just make sure to use the Quicktime User Agent string in the examples above.</p>
<p>Windows users intent on using <code>wget</code> can try their luck with the <a href="http://unxutils.sourceforge.net/">GNU Utilities for Win32</a>.</p>
<p><span style="color:#000080;"><strong><span style="text-decoration:underline;">Update</span>:</strong> Krunk from <a href="http://www.hd-trailers.net/">hd-trailers.net</a> has commented that direct download will work if you just tweak the URL a bit.  Where the trailer typically comes from <strong><code>movies.apple.com</code></strong>, just change that to <strong><code>www.apple.com</code></strong>.  Be sure to check out their <a href="http://www.hd-trailers.net/blog/how-to-download-hd-trailers-from-apple/">download guide</a>.</span></p>
<p><span style="color:#000080;">Hmm&#8230; now to see whether we can get the Greasemonkey script updated to do this for us&#8230;</span></p>
<p><span style="color:#000080;"><span style="text-decoration:underline;"><strong>Update 2:</strong></span> I&#8217;ve uploaded a <a title="Apple Trialer Download (Fixed)" href="http://userscripts.org/scripts/show/57184">fixed version</a> of zatic&#8217;s <a href="http://userscripts.org/scripts/show/2484">original</a> Apple Trailer Download script to userscripts.org.  I&#8217;ve simply applied the fix noted in the previous update, to the original script.<br />
</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/228/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=228&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2009/08/20/apple-movie-trailer-downloads-are-broken/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2009/08/apple_trailers_no.png" medium="image">
			<media:title type="html">Apple Trailers is broken!</media:title>
		</media:content>
	</item>
		<item>
		<title>Helpful Hints &#8211; Tabbing to form fields in Firefox</title>
		<link>http://mirzmaster.wordpress.com/2009/04/22/helpful-hints-tabbing-to-form-fields-in-firefox/</link>
		<comments>http://mirzmaster.wordpress.com/2009/04/22/helpful-hints-tabbing-to-form-fields-in-firefox/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 05:04:05 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Helpful Hints]]></category>
		<category><![CDATA[about:config]]></category>
		<category><![CDATA[accessibility]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[helpful hint]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=220</guid>
		<description><![CDATA[Ever wish you could press in Firefox and get focus on the first form field of the page, ignoring all the links? Or maybe you want to tab between all form elements with the exception of text fields? Or perhaps you want tabbing behaviour that is some combination of the above? The developers behind Firefox [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=220&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ever wish you could press  in Firefox and get focus on the first form field of the page, ignoring all the links?  Or maybe you want to tab between all form elements with the exception of text fields?  Or perhaps you want tabbing behaviour that is some combination of the above?</p>
<p>The developers behind Firefox realized that people would want tab behaviour conforming to their personal keyboard accessibility requirements, and to this end they&#8217;ve included a very handy means of getting the  behaviour you want.</p>
<p>Enter the <a href="http://kb.mozillazine.org/Accessibility.tabfocus">accessibility.tabfocus</a> configuration.  This property allows you to specify an integer corresponding to a particular tab focusing behaviour.</p>
<p>From the <a href="http://www.mozillazine.org/">Mozillazine</a> <a href="http://kb.mozillazine.org/Knowledge_Base">Knowledgebase</a>, the <a href="http://kb.mozillazine.org/Accessibility.tabfocus#Possible_values_and_their_effects">possible values</a> for this property are:</p>
<p style="padding-left:30px;"><strong>1</strong> &#8211; Give focus to text fields only. (The default in OS X.)<br />
<strong>2</strong> &#8211; Give focus to all form elements except text fields.<br />
<strong>4</strong> &#8211; Give focus to links (and linked images) only.</p>
<p>The value for accessibility.tabfocus can also be an integer like <strong>7</strong> (which is the default value).  7 (1+2+4) implies that Firefox will focus all field elements and links as well; its effect is the behaviour of 1, 2, and 4, combined.</p>
<p>You can <a href="http://kb.mozillazine.org/Accessibility.tabfocus#Possible_values_and_their_effects">read up</a> a bit more to understand the different values.</p>
<p>For those who have forgotten how to manipulate the advanced configuration preferences in Firefox, you can do so as follows:</p>
<p>Open a new tab and enter &#8220;about:config&#8221; into the address bar:</p>
<div id="attachment_221" class="wp-caption alignnone" style="width: 584px"><img class="size-full wp-image-221" title="Firefox about:config disclaimer page" src="http://mirzmaster.files.wordpress.com/2009/04/about_config_disclaimer.png?w=700" alt="Firefox's about:config disclaimer."   /><p class="wp-caption-text">Firefox&#39;s about:config disclaimer.</p></div>
<p>Accept the disclaimer that you may break Firefox if you don&#8217;t know what you&#8217;re doing.  <span style="color:#ff0000;"><em>I&#8217;d advise the reader to be careful about what they do beyond this point!</em></span></p>
<p>Enter &#8220;tabfocus&#8221; into the Filter field to find the accessibility.tabfocus property:</p>
<div id="attachment_222" class="wp-caption alignnone" style="width: 584px"><img class="size-full wp-image-222" title="Accessibility.tabfocus in about:config" src="http://mirzmaster.files.wordpress.com/2009/04/about_config-accessibility_tabfocus.png?w=700" alt="The 'accessibility.tabfocus' property on the about:config page."   /><p class="wp-caption-text">The &#39;accessibility.tabfocus&#39; property on the about:config page.</p></div>
<p>Now just double click the property to be prompted for a new value.</p>
<p>Personally, I would like to tab through all form fields while ignoring links on the page.  To achieve this outcome, I used a value of 3 (1 + 2), a combination of tabbing through text fields and tabbing through other form fields.</p>
<p>I hope this Helpful Hint is of use to those of you who are big on keyboard accessibility.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/220/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=220&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2009/04/22/helpful-hints-tabbing-to-form-fields-in-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2009/04/about_config_disclaimer.png" medium="image">
			<media:title type="html">Firefox about:config disclaimer page</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2009/04/about_config-accessibility_tabfocus.png" medium="image">
			<media:title type="html">Accessibility.tabfocus in about:config</media:title>
		</media:content>
	</item>
		<item>
		<title>Riding Tokyo</title>
		<link>http://mirzmaster.wordpress.com/2009/03/19/riding-tokyo/</link>
		<comments>http://mirzmaster.wordpress.com/2009/03/19/riding-tokyo/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 04:36:03 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Travel]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[metro]]></category>
		<category><![CDATA[subway]]></category>
		<category><![CDATA[tokyo]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=209</guid>
		<description><![CDATA[Planning to travel Tokyo&#8217;s vast Metro system? You&#8217;d better be packing this awesome colour map of the system! (Found via: http://oduinn.com/2009/03/18/directions-to-hombu-dojo-tokyo/)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=209&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.tokyometro.jp/global/en/service/using.html">Planning</a> to travel Tokyo&#8217;s vast Metro system?  You&#8217;d better be packing this awesome <a title="Tokyo subway route map" href="http://www.tokyometro.jp/global/en/service/routemap.html">colour map</a> of the system!</p>
<div id="attachment_210" class="wp-caption alignnone" style="width: 660px"><a href="http://www.tokyometro.jp/global/en/service/pdf/routemap_en.pdf"><img class="size-full wp-image-210" title="Tokyo Subway Route Map (PDF)" src="http://mirzmaster.files.wordpress.com/2009/03/tokyo_routemap_thumb.gif?w=700" alt="Cropped region of the Tokyo subway route map."   /></a><p class="wp-caption-text">Cropped region of the Tokyo subway route map.</p></div>
<p>(Found via: <a href="http://www.tokyometro.jp/global/en/service/pdf/routemap_en.pdf">http://oduinn.com/2009/03/18/directions-to-hombu-dojo-tokyo/</a>)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/209/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=209&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2009/03/19/riding-tokyo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2009/03/tokyo_routemap_thumb.gif" medium="image">
			<media:title type="html">Tokyo Subway Route Map (PDF)</media:title>
		</media:content>
	</item>
		<item>
		<title>MySQL:  &#8220;Access denied for user &#8216;debian-sys-maint&#8217;@&#039;localhost&#8217;&#8221;</title>
		<link>http://mirzmaster.wordpress.com/2009/01/16/mysql-access-denied-for-user-debian-sys-maintlocalhost/</link>
		<comments>http://mirzmaster.wordpress.com/2009/01/16/mysql-access-denied-for-user-debian-sys-maintlocalhost/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 22:51:36 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=193</guid>
		<description><![CDATA[For all you Ubuntu/MySQL developers out there, have you ever seen the following? neo@thematrix:~$ sudo /etc/init.d/mysql restart * Stopping MySQL database server mysqld [fail] * Starting MySQL database server mysqld [ OK ] /usr/bin/mysqladmin: connect to server at 'localhost' failed error: 'Access denied for user 'debian-sys-maint'@'localhost' (using password: YES)' So, what is this &#8220;debian-sys-maint&#8221; user?  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=193&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For all you Ubuntu/MySQL developers out there, have you ever seen the following?</p>
<ul><code>neo@thematrix:~$ sudo /etc/init.d/mysql restart<br />
* Stopping MySQL database server mysqld   <strong>[fail]</strong><br />
* Starting MySQL database server mysqld   [ OK ]<br />
/usr/bin/mysqladmin: connect to server at 'localhost' failed<br />
error: '<strong>Access denied for user 'debian-sys-maint'@'localhost'</strong> (using password: YES)'</code></ul>
<p>So, what is this &#8220;debian-sys-maint&#8221; user?  Well, this MySQL user is created for the Ubuntu to be able to start/stop the database and to carry out other maintenance operations.</p>
<p>Sounds well enough, but then why do I keep running into the &#8220;access denied&#8221; problem for this user?  Well, the issue is that with each update to MySQL, the user&#8217;s password in the database is overwritten.  Ubuntu seems to go to the file <code>/etc/mysql/debian.cnf</code> in order to find this user&#8217;s password, but obviously the password is out of sync after the update has been applied.</p>
<p>As a result of this behaviour, I&#8217;ll run into the &#8220;access denied&#8221; problem every so often.  Thankfully, the solution to this issue is fairly simple.</p>
<p>First, list the contents of the <code>/etc/mysql/debian.cnf</code> file:</p>
<ul><code>neo@thematrix:~$ sudo cat /etc/mysql/debian.cnf</code></ul>
<p>The contents of the file should look something like the following:</p>
<ul><code># Automatically generated for Debian scripts. DO NOT TOUCH!<br />
[client]<br />
host     = localhost<br />
user     = debian-sys-maint<br />
<strong>password = n4aSHUP04s1J32X5</strong><br />
socket   = /var/run/mysqld/mysqld.sock<br />
[mysql_upgrade]<br />
user     = debian-sys-maint<br />
<strong>password = n4aSHUP04s1J32X5</strong><br />
socket   = /var/run/mysqld/mysqld.sock<br />
basedir  = /usr</code></ul>
<p>See that password?  That&#8217;s what we&#8217;re looking for!</p>
<p>Next, we want to issue a command to MySQL that tells it to grant the <code>debian-sys-maint</code> user all necessary privileges using the new password.</p>
<p>Login to your mysql server using your root account and the root password you had originally set:</p>
<ul>
<code>neo@thematrix:~$ mysql -u root -p &lt;password&gt;</code></ul>
<p>Issue the GRANT command now to grant those permissions:</p>
<ul>
<code>mysql&gt; GRANT ALL PRIVILEGES ON *.* TO 'debian-sys-maint'@'localhost' IDENTIFIED BY 'n4aSHUP04s1J32X5';</code></ul>
<p>Voila!  If you restart MySQL, you&#8217;ll find that you should no longer be getting the &#8220;access denied&#8221; error message.</p>
<ul>
<code>neo@thematrix:~$ sudo /etc/init.d/mysql restart<br />
* Stopping MySQL database server mysqld   [ OK ]<br />
* Starting MySQL database server mysqld   [ OK ]<br />
* Checking for corrupt, not cleanly closed and upgrade needing tables.</code></ul>
<p>Bear in mind, because we just switched the password, and the change hasn&#8217;t been affected yet, you may need to kill the MySQL server processes in order to get MySQL to shut down at all.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=193&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2009/01/16/mysql-access-denied-for-user-debian-sys-maintlocalhost/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>
	</item>
		<item>
		<title>dpkg problems relating to &#8216;cups&#8217; in Ubuntu</title>
		<link>http://mirzmaster.wordpress.com/2008/12/18/dpkg-problems-relating-to-cups-in-ubuntu/</link>
		<comments>http://mirzmaster.wordpress.com/2008/12/18/dpkg-problems-relating-to-cups-in-ubuntu/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 05:10:53 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[cups]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[ufw]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=163</guid>
		<description><![CDATA[Firefox 3.0.5, Mozilla&#8217;s latest security fix for the venerable browser has recently been released.  Tonight it was pushed out to Ubuntu 8.10 users, and so I promptly updated my Ubuntu installation.  Noticing that there were other updates as well, I applied them all. Unfortunately, dpkg wasn&#8217;t able to complete the update of all selected packages.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=163&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a title="Firefox 3.0.5 release notes" href="http://www.mozilla.com/en-US/firefox/3.0.5/releasenotes/">Firefox 3.0.5</a>, Mozilla&#8217;s latest security fix for the venerable browser has recently been released.  Tonight it was pushed out to Ubuntu 8.10 users, and so I promptly updated my Ubuntu installation.  Noticing that there were other updates as well, I applied them all.</p>
<p>Unfortunately, <code>dpkg</code> wasn&#8217;t able to complete the update of all selected packages.  I wanted to review the problem, so from the command-line I brought up aptitude via:</p>
<p style="padding-left:30px;"><code>sudo aptitude</code></p>
<p>Aptitude was nice enough to let me know that I needed to run the following command to correct the problem:</p>
<p style="padding-left:30px;"><code>sudo dpkg --configure -a</code></p>
<p>&#8230; unfortunately it didn&#8217;t work:</p>
<p style="padding-left:30px;"><code>$ sudo dpkg --configure -a<br />
dpkg: ../../src/packages.c:221: process_queue: Assertion `dependtry &lt;= 4' failed.<br />
Aborted</code></p>
<p>I decided to go back into aptitude to see if any packages would be selected there for installation due to a failure to install previously.  Sure enough, when I pressed &#8216;g&#8217; to process all actions, it attempted to install <span style="color:#800000;"><code>cups</code></span>, <span style="color:#800000;"><code>cups-bsd</code></span>, and <span style="color:#800000;"><code>cups-client</code></span>, but failed:
</p>
<p style="padding-left:30px;"><code>dpkg: error processing cups (--configure):<br />
package cups is not ready for configuration<br />
cannot configure (current status `triggers-awaited')<br />
dpkg: error processing cups-client (--configure):<br />
package cups-client is not ready for configuration<br />
cannot configure (current status `triggers-awaited')<br />
dpkg: ../../src/packages.c:221: process_queue: Assertion `dependtry &lt;= 4' failed.<br />
E: Sub-process /usr/bin/dpkg exited unexpectedly<br />
A package failed to install.  Trying to recover:<br />
dpkg: ../../src/packages.c:221: process_queue: Assertion `dependtry &lt;= 4' failed.<br />
Aborted</code></p>
<p>These were the packages that had failed to install successfully earlier.</p>
<p>What could I do to get around this?  Aptitude wasn&#8217;t able to handle it for me, and nor could <code>dpkg</code> process the configuration of these packages.  After some futzing around, I even tried downgrading the packages in aptitude, but the same <code>dpkg</code> errors came up:
</p>
<p style="padding-left:30px;"><code>Preconfiguring packages ...<br />
Selecting previously deselected package cups.<br />
(Reading database ... 148514 files and directories currently installed.)<br />
Preparing to replace cups 1.3.9-2ubuntu4 (using .../cups_1.3.9-2_amd64.deb) ...<br />
* Stopping Common Unix Printing System: cupsd                                                                                                                                                                                        [ OK ]<br />
Unpacking replacement cups ...<br />
Selecting previously deselected package cups-bsd.<br />
Preparing to replace cups-bsd 1.3.9-2ubuntu4 (using .../cups-bsd_1.3.9-2_amd64.deb) ...<br />
Unpacking replacement cups-bsd ...<br />
Selecting previously deselected package cups-client.<br />
Preparing to replace cups-client 1.3.9-2ubuntu4 (using .../cups-client_1.3.9-2_amd64.deb) ...<br />
Unpacking replacement cups-client ...<br />
Processing triggers for doc-base ...<br />
Processing 1 changed doc-base file(s)...<br />
Registering documents with scrollkeeper...<br />
Processing triggers for man-db ...<br />
Processing triggers for ufw ...<br />
ERROR: Couldn't stat '/etc/default/ufw'<br />
dpkg: subprocess post-installation script returned error exit status 1<br />
E: Sub-process /usr/bin/dpkg returned an error code (2)<br />
A package failed to install.  Trying to recover:<br />
Setting up cups-client (1.3.9-2) ...</code>
</p>
<p style="padding-left:30px;"><code>Setting up ufw (0.23.2) ...</code></p>
<p style="padding-left:30px;"><code>Setting up cups (1.3.9-2) ...</code></p>
<p style="padding-left:30px;"><code>Installing new version of config file /etc/apparmor.d/usr.sbin.cupsd ...<br />
Reloading AppArmor profiles : done.<br />
* Starting Common Unix Printing System: cupsd                                                                                                                                                                                        [ OK ]</code></p>
<p style="padding-left:30px;"><code>dpkg: ../../src/packages.c:221: process_queue: Assertion `dependtry &lt;= 4' failed.<br />
Aborted<br />
Press return to continue.</code></p>
<p>But wait, what&#8217;s that error?
</p>
<p style="padding-left:30px;"><code>Processing triggers for ufw ...<br />
ERROR: Couldn't stat '/etc/default/ufw'<br />
dpkg: subprocess post-installation script returned error exit status 1<br />
E: Sub-process /usr/bin/dpkg returned an error code (2)</code></p>
<p>A-hah!  It looked like the <code>cups</code> installation needed to process some triggers for the package <span style="color:#800000;"><code>ufw</code></span>, and this failed.  <code>ufw</code> is Uncomplicated FireWall package for Ubuntu, but it&#8217;s a package I&#8217;m not using.</p>
<p>So, maybe if I were to uninstall <code>ufw</code>, the <code>cups</code> packages would successfully install?
</p>
<p style="padding-left:30px;"><code>sudo aptitude purge ufw</code></p>
<p>If you want to keep the <code>ufw</code> configuration files, you can try this instead:</p>
<p style="padding-left:30px;"><code>sudo aptitude remove ufw</code></p>
<p>Removing <code>ufw</code> may display some <code>cups</code> errors, but <code>ufw</code> should still successfully uninstall.</p>
<p>At this point, the resolution that aptitude first suggested worked as well:</p>
<p style="padding-left:30px;"><code>sudo dpkg --configure -a</code></p>
<p>And now to install the latest version of <code>cups</code> instead of the downgraded versions I attempted to install.</p>
<p style="padding-left:30px;"><code>Preconfiguring packages ...<br />
(Reading database ... 148481 files and directories currently installed.)<br />
Preparing to replace cups 1.3.9-2 (using .../cups_1.3.9-2ubuntu4_amd64.deb) ...<br />
* Stopping Common Unix Printing System: cupsd                                                                                                                                                                                        [ OK ]<br />
Unpacking replacement cups ...<br />
Preparing to replace cups-bsd 1.3.9-2 (using .../cups-bsd_1.3.9-2ubuntu4_amd64.deb) ...<br />
Unpacking replacement cups-bsd ...<br />
Preparing to replace cups-client 1.3.9-2 (using .../cups-client_1.3.9-2ubuntu4_amd64.deb) ...<br />
Unpacking replacement cups-client ...<br />
Processing triggers for doc-base ...<br />
Processing 1 changed doc-base file(s)...<br />
Registering documents with scrollkeeper...<br />
Processing triggers for man-db ...<br />
Setting up cups (1.3.9-2ubuntu4) ...<br />
Installing new version of config file /etc/apparmor.d/usr.sbin.cupsd ...<br />
Reloading AppArmor profiles : done.<br />
* Starting Common Unix Printing System: cupsd                                                                                                                                                                                        [ OK ]</code>
</p>
<p style="padding-left:30px;"><code>Setting up cups-client (1.3.9-2ubuntu4) ...</code></p>
<p style="padding-left:30px;"><code>Setting up cups-bsd (1.3.9-2ubuntu4) ...</code></p>
<p style="padding-left:30px;"><code>Press return to continue.</code></p>
<p>Presto!  It worked!</p>
<p>At this point I reinstalled <code>ufw</code> and all was as it should be.</p>
<p>Along the way I was also able to find a <a href="http://techxplorer.com/2006/05/21/resolving-an-odd-dpkg-error-in-ubuntu/">cool way of listing packages</a> on one&#8217;s system that are not completely installed.  From a command line terminal, you can enter the following:</p>
<p style="padding-left:30px;"><code>sudo dpkg -l | grep -v ^ii</code></p>
<p>The first portion of this command, <code>sudo dpkg -l</code>, will list all the packages on your system.  The second portion, <code>grep -v ^ii</code>, says, &#8216;search through that list of packages for any line that does not start with &#8220;<code>ii</code>&#8220;&#8216;.  The letters &#8220;<code>ii</code>&#8221; at the beginning of a line of the package listing indicates the package is successfully installed.</p>
<p>Quite an eventful application of system updates!  I love Ubuntu for its simplicity, and the fact that upgrades and installations are usually hassle-free.  But, even when there&#8217;s a problem, the power inherent in Linux allows you to quickly and effectively resolve the issue.</p>
<p><span style="color:#888888;"><em><strong>NB:</strong> Sorry about the poor formatting of this post, WordPress is simply not co-operating.</em></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/163/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/163/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/163/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=163&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/12/18/dpkg-problems-relating-to-cups-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>
	</item>
		<item>
		<title>Star Trek beams onto Apple Movie Trailers</title>
		<link>http://mirzmaster.wordpress.com/2008/11/26/star-trek-beams-onto-apple-movie-trailers/</link>
		<comments>http://mirzmaster.wordpress.com/2008/11/26/star-trek-beams-onto-apple-movie-trailers/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 09:01:35 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[star trek]]></category>
		<category><![CDATA[trailers]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=130</guid>
		<description><![CDATA[May 8th, 2009, a date which previously had no meaning to me, is now a date marked on my calendar. What&#8217;s up on that auspicious day?  Star Trek is up, that&#8217;s what: Mr. Abrams, I presume? This isn&#8217;t going to be just another run-of-the-mill Star Trek, but rather J.J. Abrams&#8216; interpretation of it.  I&#8217;d known [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=130&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>May 8th, 2009, a date which previously had no meaning to me, is now a date marked on my calendar.</p>
<p>What&#8217;s up on that auspicious day?  <a title="Official Star Trek movie website" href="http://www.startrekmovie.com/">Star Trek</a> is up, that&#8217;s what:</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-146" title="That logo is darned shiny!" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-title1.jpg?w=700" alt="Star Trek title image from film trailer"   /></p>
<h3><span id="more-130"></span>Mr. Abrams, I presume?</h3>
<p>This isn&#8217;t going to be just another run-of-the-mill Star Trek, but rather <a title="J.J. Abrams @ Wikipedia" href="http://en.wikipedia.org/wiki/J._J._Abrams">J.J. Abrams</a>&#8216; interpretation of it.  I&#8217;d known for some time that a new Star Trek was coming in 2009, and that J.J. was at the helm, but for some reason it had slipped to the back of my mind.  I suppose the &#8220;blah&#8221; aftertaste of the last few Trek film outings left me a little jaded.  Well, it&#8217;s right and proper back at the top of my to-watch list.</p>
<div id="attachment_147" class="wp-caption aligncenter" style="width: 501px"><img class="size-full wp-image-147" title="J.J. Abrams is *the* man" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-jj_abrams1.jpg?w=700" alt="Screen capture featuring Star Trek film director, J.J. Abrams"   /><p class="wp-caption-text">Yes, Mr. Abrams, you&#39;ve caught my attention.</p></div>
<p>Who is J.J. Abrams?  The mastermind behind <a title="Lost @ IMDB" href="http://www.imdb.com/title/tt0411008/">Lost</a> and <a title="Cloverfield @ IMDB" href="http://www.imdb.com/title/tt1060277/">Cloverfield</a>, that&#8217;s who.</p>
<p>Abrams seems to really hit and miss with viewers though.  Lost and Cloverfield are two of his productions that I believe are brilliant, but there are others who find them to be without appeal.  My hope is that the same does not happen with Star Trek, though it seems to be inevitable due to the departure from established <a title="Star Trek canon @ Wikipedia" href="http://en.wikipedia.org/wiki/Star_Trek_canon">Star Trek canon</a>.</p>
<h3>Showing you the money</h3>
<p>The <a title="Apple Movie Trailers" href="http://www.apple.com/trailers/">Apple Trailers</a> site is hosting the latest trailer for Star Trek, in HD resolutions of course.  By now, you should all know how to <a title="Downloading HD Trailers from Apple Trailers" href="http://mirzmaster.wordpress.com/2007/07/15/helpful-hints-downloading-hd-trailers-from-apple-trailers/">download the HD trailers</a>.</p>
<p>For those who can&#8217;t download the trailer, or can&#8217;t watch it right way, I&#8217;m happy to provide a smörgåsbord of screenshots, presented by James Tiberius Kirk himself:</p>
<div id="attachment_148" class="wp-caption aligncenter" style="width: 710px"><a href="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-kirk1.png"><img class="size-full wp-image-148" title="Chris Pine as James T. Kirk" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-kirk1.png?w=700&#038;h=297" alt="Chris Pine as James T. Kirk" width="700" height="297" /></a><p class="wp-caption-text">&quot;James Tiberius Kirk here, and more dashing than ever.  But, wait, what am I looking at?&quot;</p></div>
<div id="attachment_149" class="wp-caption aligncenter" style="width: 710px"><a href="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-enterprise_construction1.png"><img class="size-full wp-image-149" title="Kirk looks upon the Enterprise" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-enterprise_construction1.png?w=700&#038;h=297" alt="Kirk looks upon the Enterprise" width="700" height="297" /></a><p class="wp-caption-text">&quot;Ah yes, the the beauty of the Enterprise is a thing to behold!&quot;</p></div>
<div id="attachment_150" class="wp-caption aligncenter" style="width: 710px"><a href="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-spock_transporter1.png"><img class="size-full wp-image-150" title="Zachary Quinto as Spock" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-spock_transporter1.png?w=700&#038;h=297" alt="Zachary Quinto as Spock" width="700" height="297" /></a><p class="wp-caption-text">&quot;Spock, my good friend, there are you are!  Glad to see you&#39;re along for the ride as well!&quot;</p></div>
<div id="attachment_151" class="wp-caption aligncenter" style="width: 710px"><a href="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-spock_and_kirk1.png"><img class="size-full wp-image-151" title="Don't they always stand together?" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-spock_and_kirk1.png?w=700&#038;h=297" alt="Spock and Kirk stand together" width="700" height="297" /></a><p class="wp-caption-text">&quot;Why yes, we do look dashing.  What, me with this menacing look, and you with the same stoic expression...&quot;</p></div>
<div id="attachment_152" class="wp-caption aligncenter" style="width: 710px"><a href="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-enterprise_warp1.png"><img class="size-full wp-image-152" title="The Enterprise in warp" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-enterprise_warp1.png?w=700&#038;h=297" alt="The Enterprise in warp" width="700" height="297" /></a><p class="wp-caption-text">&quot;The only thing I like more than debating logic with Spock is speed.  Warp speed.&quot;</p></div>
<div id="attachment_153" class="wp-caption aligncenter" style="width: 710px"><a href="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-car_speeding.png"><img class="size-full wp-image-153" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-car_speeding.png?w=700&#038;h=297" alt="Kirk racing across the plains of Ohio" width="700" height="297" /></a><p class="wp-caption-text">&quot;When I&#39;m off-ship, sub-light speeds will have to do.&quot;</p></div>
<div id="attachment_154" class="wp-caption aligncenter" style="width: 710px"><a href="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-speedometer.png"><img class="size-full wp-image-154" title="SPEEEEEEEEEEED!" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-speedometer.png?w=700&#038;h=297" alt="Kirk drives over 70 mph" width="700" height="297" /></a><p class="wp-caption-text">SPEEEEEEEEEEED!</p></div>
<div id="attachment_155" class="wp-caption aligncenter" style="width: 710px"><a href="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-blowing_up_uss_kelvin.png"><img class="size-full wp-image-155" title="The U.S.S. Kelvin, being destroyed" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-blowing_up_uss_kelvin.png?w=700&#038;h=297" alt="The U.S.S. Kelvin, being destroyed" width="700" height="297" /></a><p class="wp-caption-text">&quot;It won&#39;t just be Spock and I speeding around space.  Expect plenty of explosions as well!&quot;</p></div>
<div id="attachment_156" class="wp-caption aligncenter" style="width: 490px"><img class="size-full wp-image-156" title="May 8th, 2009.  Be there." src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-may_81.jpg?w=700" alt="Star Trek hits the theatres on May 8th, 2009"   /><p class="wp-caption-text">&quot;So where are you going to be come May 8th?  That&#39;s right, watching me be dashing.  With your support, I can be dashing for many more sequels to come.&quot;</p></div>
<div id="attachment_158" class="wp-caption aligncenter" style="width: 710px"><a href="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-logo.png"><img class="size-full wp-image-158" src="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-logo.png?w=700&#038;h=297" alt="Logo for the Star Trek film of 2009" width="700" height="297" /></a><p class="wp-caption-text">&quot;Thanks for tuning in.  Kirk out.&quot;</p></div>
<p style="text-align:left;">
<h3 style="text-align:left;">Geek fanboys ruin everything</h3>
<div id="attachment_159" class="wp-caption alignright" style="width: 310px"><a href="http://mirzmaster.files.wordpress.com/2008/11/frink.gif"><img class="size-medium wp-image-159" title="Bwaahai!" src="http://mirzmaster.files.wordpress.com/2008/11/frink.gif?w=300&#038;h=238" alt="Image of Professor Frink, a character from the Simpsons TV series" width="300" height="238" /></a><p class="wp-caption-text">&quot;Bwaahai!  Everyone knows the Enterprise was built in space and not on Earth.  The energy required for a ship of that size to escape Earth&#39;s gravity is clearly more than could be produced by the rudimentary anti-matter reactors of the time!&quot;</p></div>
<p style="text-align:left;">Good grief, I hope the Star Trek fanboys don&#8217;t ruin this for me.  I&#8217;ve already had to listen to a co-worker dump on the trailer, pointing out every single deviation from Star Trek canon.</p>
<p style="text-align:left;">Following that, I had an extremely uncanny experience in the elevator the very next day.  There, I was subject to one geek telling the other that the movie will be a disappointment because of it&#8217;s canonical rejection.</p>
<p style="text-align:left;">I&#8217;ve always considered myself a huge Star Trek fan.  Though I cannot recall the design specs for <a title="LCARS @ Wikipedia" href="http://en.wikipedia.org/wiki/Lcars">LCARS</a> from memory, I did own the <a title="Star Trek Technical Manual @ Wikipedia" href="http://en.wikipedia.org/wiki/index.html?curid=2826222">Star Trek Techical Manual</a>.  Despite this (or perhaps <em>because</em> of it), I am willing to give a reboot of the series a chance, and moreover, I&#8217;m willing to give J.J. Abrams a chance.  He deserves at least that from the Trekkies.</p>
<p style="text-align:left;">
<h3 style="text-align:left;">See you on May 8th</h3>
<p style="text-align:left;">After the reveal of this trailer, I find myself really looking forward to this new take on Star Trek.  J.J. Abrams is the right man for the job of breathing new life into the long-running franchise.</p>
<p style="text-align:left;">Though the film looks to distinguish itself from estabished lore, I think <a title="Gene Roddenberry @ Wikipedia" href="http://en.wikipedia.org/wiki/Gene_Roddenberry">Gene Roddenberry</a> would&#8217;ve been proud.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=130&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/11/26/star-trek-beams-onto-apple-movie-trailers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-title1.jpg" medium="image">
			<media:title type="html">That logo is darned shiny!</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-jj_abrams1.jpg" medium="image">
			<media:title type="html">J.J. Abrams is *the* man</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-kirk1.png" medium="image">
			<media:title type="html">Chris Pine as James T. Kirk</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-enterprise_construction1.png" medium="image">
			<media:title type="html">Kirk looks upon the Enterprise</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-spock_transporter1.png" medium="image">
			<media:title type="html">Zachary Quinto as Spock</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-spock_and_kirk1.png" medium="image">
			<media:title type="html">Don&#039;t they always stand together?</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-enterprise_warp1.png" medium="image">
			<media:title type="html">The Enterprise in warp</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-car_speeding.png" medium="image">
			<media:title type="html">Kirk racing across the plains of Ohio</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-speedometer.png" medium="image">
			<media:title type="html">SPEEEEEEEEEEED!</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-blowing_up_uss_kelvin.png" medium="image">
			<media:title type="html">The U.S.S. Kelvin, being destroyed</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-may_81.jpg" medium="image">
			<media:title type="html">May 8th, 2009.  Be there.</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/star_trek_2009-logo.png" medium="image">
			<media:title type="html">Logo for the Star Trek film of 2009</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/frink.gif?w=300" medium="image">
			<media:title type="html">Bwaahai!</media:title>
		</media:content>
	</item>
		<item>
		<title>The Disappearing Male</title>
		<link>http://mirzmaster.wordpress.com/2008/11/25/the-disappearing-male/</link>
		<comments>http://mirzmaster.wordpress.com/2008/11/25/the-disappearing-male/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 07:40:45 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Health]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[cbc]]></category>
		<category><![CDATA[google video]]></category>
		<category><![CDATA[men]]></category>
		<category><![CDATA[sexuality]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=125</guid>
		<description><![CDATA[Earlier in November, the CBC broadcast an investigative news piece titled The Disappearing Male on Doc Zone.  I&#8217;ve now read or seen a number of pieces on the issue covered in the report, that of relatively a sharp drop in the number of males of most animal species. The documentary goes into the details of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=125&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Earlier in November, the <abbr title="Canadian Broadcasting Corporation">CBC</abbr> broadcast an investigative news piece titled <a title="&quot;The Disappearing Male&quot; @ CBC.ca" href="http://www.cbc.ca/documentaries/doczone/2008/disappearingmale/"><em>The Disappearing Male</em></a> on <a title="CBC Doc Zone" href="http://www.cbc.ca/documentaries/doczone/">Doc Zone</a>.  I&#8217;ve now read or seen a number of pieces on the issue covered in the report, that of relatively a sharp drop in the number of males of most animal species.</p>
<p>The documentary goes into the details of this phenomenon and discusses how human sexual function and sexual development are experiencing impairment due to the potpourri of man-made chemicals and materials that are present in our natural environment.  This impairment is somehow resulting in a reduction in the male to female birth ratio.</p>
<p>In a nutshell, we are experiencing the <a title="It's not only affecting America..." href="http://www.worldandi.com/public/2001/October/sax.html">feminization of the human race</a>.</p>
<p>The long term impact of this such an imbalance in males to females would result in large-scale social imbalances.  With a greater number of females, this means fewer females getting married.  This would likely negatively impact the already shrinking birth-rate in developed nations resulting in an even larger elderly care problem.  This is not even to speak of the social unrest associated with a large population of unmarried individuals, or of the genetic impact this may have on future generations.</p>
<p>I personally feel this issue is huge and warrants greater attention and more research.</p>
<p>Health Canada has recently taken some <a title="Government of Canada Protects Families With Bisphenol A Regulations @ Health Canada" href="http://www.hc-sc.gc.ca/ahc-asc/media/nr-cp/_2008/2008_167-eng.php">strong steps</a> towards restricting the presence of the chemical <a title="Bisphenol A @ Wikipedia" href="http://en.wikipedia.org/wiki/Bisphenol_a">Bisphenol A</a> on the Canadian market.  Bisphenol A is considered to be a potential hazard to young children, and as such it&#8217;s use in baby bottles is now prohibited.  Unfortunately we may only find out the long-term health consequences of these chemicals once it&#8217;s too late to reverse the trend, but certainly reducing the exposure of young children to such chemicals is a positive development.</p>
<p>If you haven&#8217;t seen <em>The Disappearing Male</em> yet, you can now watch it on <a title="The Disappearing Male @ Google Video" href="http://video.google.com/videoplay?docid=7530701744597358451">Google Video</a>:</p>
<p style="text-align:center;"><span style='text-align:center;display:block;'><object width='400' height='330' type='application/x-shockwave-flash' data='http://video.google.com/googleplayer.swf?docId=7530701744597358451'><param name='allowScriptAccess' value='never' /><param name='movie' value='http://video.google.com/googleplayer.swf?docId=7530701744597358451'/><param name='quality' value='best'/><param name='bgcolor' value='#ffffff' /><param name='scale' value='noScale' /><param name='wmode' value='opaque' /></object></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=125&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/11/25/the-disappearing-male/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>
	</item>
		<item>
		<title>Shiny, new failure</title>
		<link>http://mirzmaster.wordpress.com/2008/11/24/shiny-new-failure/</link>
		<comments>http://mirzmaster.wordpress.com/2008/11/24/shiny-new-failure/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 03:32:41 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[toshiba]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=112</guid>
		<description><![CDATA[As we come upon another new year, I thought I should dust off the cobwebs on this blog.  While I&#8217;m at it, why not a new blog design as well?  I&#8217;ve been in the mood for something a little more open, a little more minimalistic. Though I celebrate neither Christmas or the New Year, this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=112&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As we come upon another new year, I thought I should dust off the cobwebs on this blog.  While I&#8217;m at it, why not a new blog design as well?  I&#8217;ve been in the mood for something a little more open, a little more minimalistic.</p>
<p>Though I celebrate neither Christmas or the New Year, this season has always had an air of change about it.  Of course, part of it has to do with the carpet-bombing of Christmas shopping advertisement, but beyond that, there are a number of birthdays in the month of December of close family members.</p>
<p>Historically, I&#8217;ve been horrible about birthdays close family and friends.  I never remember the birthdays and when I do, I haven&#8217;t made much of an effort to get a really thoughtful gift.  This year though, I&#8217;ve got to change that.</p>
<p>A good friend of mine had his birthday in October, so for his birthday I organized a golf outing with a few mutual friends of ours.  We all really had a tremendous blast.</p>
<p>Now, my sister&#8217;s birthday is coming up in early December, so I&#8217;m thinking, I have to do something really special for her.  What speaks of brotherly love better than a brand new laptop?</p>
<p>I&#8217;ve always hated laptops for a number of reasons.  As someone who has always built his own machines from scratch and relies on the interchangeability of standardized parts, laptops really annoy me.  They&#8217;re expensive, costly to maintain, come with <a href="http://www.ubuntu.com/">Windows Vista</a>, and can&#8217;t run games at <a href="http://mirzmaster.files.wordpress.com/2008/11/34328_l4d_hospital01_apartment0091_.jpg">1920 x 1200</a>.  That said, I know my sister would really like one to browse the Internet in any room of the house and get her office work done remotely.</p>
<p>Yesterday I took a trip to <a title="Future Shop" href="http://www.futureshop.ca/">Future Shop</a> here in Canada and settled on a <a title="Toshiba 15.4&quot; Satellite Intel Core 2 Duo T5800 2.0GHz Laptop (L300-04P) @ Future Shop" href="http://www.futureshop.ca/catalog/proddetail.asp?sku_id=0665000FS10112445&amp;catid=25315">Toshiba L300</a> (PSLB8C-04P01X) featuring an Intel T5800 Core 2 Duo:</p>
<div id="attachment_117" class="wp-caption aligncenter" style="width: 510px"><a href="http://mirzmaster.files.wordpress.com/2008/11/l300.png"><img class="size-full wp-image-117" title="Toshiba L300 Thumbnail" src="http://mirzmaster.files.wordpress.com/2008/11/l300_thumb.gif?w=700" alt="The Toshiba L300 at Future Shop"   /></a><p class="wp-caption-text">The Toshiba L300 at Future Shop</p></div>
<p>The fact that I was able to find a Toshiba with decent specs and a decent price tag as well went a ways toward making me feel better.  I have an impression that Toshiba laptops are built more solidly than <a href="http://www.dell.com/">other brands</a>.</p>
<p>As well, I have to admit that my hate quickly fades with new technology, laptop or not.</p>
<p>Except when the experience of using it is awful.  As was the case with the Toshiba L300.</p>
<p>For starters, from the moment I turned on the laptop to the moment I could actually use Windows, <strong>1 hour and 45 minutes had elapsed</strong>.  The laptop rebooted approximately <strong>5 times</strong> during this process, 2 of which happened at points where Windows had become momentarily usable, making you <em>think</em> it was ready for use.  <strong>Uber Fail #1.</strong> What was the laptop doing in all that time?  Completing the Vista installation, and ensuring I&#8217;d be encumbered by software offers that I didn&#8217;t want.  <strong>Fail #2.</strong> What would it take to get a clean Vista installation on the laptop?  An act of God given that laptop manufacturers no longer include the O/S on disc.  <strong>Fail #3.</strong> Forget Vista, what about XP?  Not supported (no drivers).  <strong>Fail #4.</strong> Fine, the hell with XP.  What about Vista drivers so I can re-install in case I get a copy of Vista at a later date?  No dice.  The laptop is a model built exclusively for Future Shop, so there are no drivers available online at all, let alone any other support materials for the model on the Toshiba website.  <strong>Fail #5!</strong></p>
<div id="attachment_120" class="wp-caption aligncenter" style="width: 491px"><a href="http://mirzmaster.files.wordpress.com/2008/11/toshiba_l300_no_drivers.gif"><img class="size-full wp-image-120" title="Toshiba L300, no drivers" src="http://mirzmaster.files.wordpress.com/2008/11/toshiba_l300_no_drivers.gif?w=700" alt="&quot;Get lost!  We don't have any of your precious drivers here!&quot;"   /></a><p class="wp-caption-text">&quot;Get lost!  We don&#39;t have any of your precious drivers here!&quot;</p></div>
<p>By the end of Fail #1 I had already had enough, let alone the other 4 points of frustration.  Imagine I had given the laptop to my sister without having opened it.  She would&#8217;ve been furious at having to wait so long for the system to become usable.</p>
<p>The other point of extreme frustration that deserves mention is the fact that laptop manufacturers do not include a clean Vista disc with laptops anymore.  They&#8217;ve instead gotten into the habit of including a recovery partition on the hard drive.  This is to ensure that:  1)  You have to spend your own time and money to burn a recovery disc that has an O/S on it, and 2)  You&#8217;ll never, ever be rid of their annoying software offers since they&#8217;ve been backed up onto the recovery disc as well.</p>
<p>Needless to say, the whole experience was an epic failure, and the laptop was promptly returned today.  If there&#8217;s one thing to be said about Future Shop, it&#8217;s that they took back the laptop <strong>without any hassles</strong>.  I was slightly taken aback by that!</p>
<p>I have a decent amount of respect for Microsoft as a company, and Windows XP as an operating system.  Even XP took time to mature, but it was never as horrible as Vista.  None of the problems I&#8217;ve described here are Vista problems per se (not to say Vista itself didn&#8217;t annoy me), but they have to be judged as part of the Microsoft/Vista experience.  This experience is so horrific that one has no choice but to conclude that OS X, Ubuntu, and even Windows XP are an excellent respite.  I&#8217;m just sad to say I had to <a title="No!  Don't give up on Vista!" href="http://www.youtube.com/watch?v=WTpEoZYFLkw">give up on Vista</a>.</p>
<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://mirzmaster.wordpress.com/2008/11/24/shiny-new-failure/"><img src="http://img.youtube.com/vi/WTpEoZYFLkw/2.jpg" alt="" /></a></span></p>
<p>By comparison, the simplicity of OS X is a thing to marvel, and the malleability of Linux is empowering.  Neither can be said about Vista or the Microsoft experience.  Instead, I was held powerless and left to marvel at the absurdity of it all.</p>
<div id="attachment_119" class="wp-caption aligncenter" style="width: 510px"><a href="http://mirzmaster.files.wordpress.com/2008/11/mac_i_actually_work.jpg"><img class="size-full wp-image-119" title="I actually work" src="http://mirzmaster.files.wordpress.com/2008/11/mac_i_actually_work.jpg?w=700" alt="&quot;You know you want me.  I actually work.&quot;"   /></a><p class="wp-caption-text">&quot;You know you want me.  I actually work.&quot;</p></div>
<p>Based on this experience I&#8217;ve decied that if I&#8217;m to get my sister a new laptop, it will almost certainly be a sparkling <a title="Shiny!" href="http://www.apple.com/macbook/">MacBook</a>.  It comes at a premium, but the hassle-free experience is worth it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/112/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/112/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/112/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=112&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/11/24/shiny-new-failure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/l300_thumb.gif" medium="image">
			<media:title type="html">Toshiba L300 Thumbnail</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/toshiba_l300_no_drivers.gif" medium="image">
			<media:title type="html">Toshiba L300, no drivers</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/11/mac_i_actually_work.jpg" medium="image">
			<media:title type="html">I actually work</media:title>
		</media:content>
	</item>
		<item>
		<title>I can haz more jigabites?</title>
		<link>http://mirzmaster.wordpress.com/2008/08/05/i-can-haz-more-jigabites/</link>
		<comments>http://mirzmaster.wordpress.com/2008/08/05/i-can-haz-more-jigabites/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 13:38:00 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=108</guid>
		<description><![CDATA[I&#8217;m not sure whether the same is true for others, but my Gmail account just surpassed the 7GB mark in available mailbox space. Of course, Yahoo offers unlimited space, but 7GB is plenty for me!  I still maintain that Gmail has the best interface of any mail client (desktop clients included).<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=108&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not sure whether the same is true for others, but my Gmail account just surpassed the 7GB mark in available mailbox space.</p>
<div id="attachment_109" class="wp-caption aligncenter" style="width: 510px"><a href="http://mirzmaster.files.wordpress.com/2008/08/gmail_space_7gb.png"><img class="size-full wp-image-109" src="http://mirzmaster.files.wordpress.com/2008/08/gmail_space_7gb.png?w=700" alt="7000MB of Gmail space"   /></a><p class="wp-caption-text">7000MB and counting...</p></div>
<p>Of course, Yahoo offers unlimited space, but 7GB is plenty for me!  I still maintain that Gmail has the best interface of any mail client (desktop clients included).</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mirzmaster.wordpress.com/108/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mirzmaster.wordpress.com/108/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=108&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/08/05/i-can-haz-more-jigabites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/08/gmail_space_7gb.png" medium="image">
			<media:title type="html">7000MB of Gmail space</media:title>
		</media:content>
	</item>
		<item>
		<title>Is Faster Access to the Internet Needed?</title>
		<link>http://mirzmaster.wordpress.com/2008/04/10/is-faster-access-to-the-internet-needed/</link>
		<comments>http://mirzmaster.wordpress.com/2008/04/10/is-faster-access-to-the-internet-needed/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 00:56:09 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[hi-speed]]></category>
		<category><![CDATA[innovation]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/2008/04/10/is-faster-access-to-the-internet-needed/</guid>
		<description><![CDATA[Vishesh Kumar of the Wall Street Journal writes: When it comes to Internet access, is there such a thing as too fast? That&#8217;s a question U.S. Internet providers are grappling with as they place strategic bets on whether or not to upgrade their networks to offer high-priced, superhigh-speed Web connections. There have been plenty of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=104&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright alignnone size-full wp-image-106" style="float:right;margin:5px;" src="http://mirzmaster.files.wordpress.com/2008/04/fibre-optic-bundle.jpg?w=700" alt="Faster internet access = greater innovation" /><a href="http://online.wsj.com/article/SB120779422456503907.html?mod=rss_E-Commerce/Media">Vishesh Kumar of the Wall Street Journal writes</a>:</p>
<blockquote><p>When it comes to Internet access, is there such a thing as too fast? That&#8217;s a question U.S. Internet providers are grappling with as they place strategic bets on whether or not to upgrade their networks to offer high-priced, superhigh-speed Web connections.</p></blockquote>
<p>There have been plenty of comparisons between Internet access speeds and money.  Can one ever have enough money?  I&#8217;m sure none of us is at a loss when it comes to thinking of ways to spend money.</p>
<p>But more important than the money analogy is the importance of faster Internet access to media and technological innovation.</p>
<p>Since the advent of broadband connections we&#8217;ve seen the rise to ubiquity of <a href="http://www.youtube.com/">YouTube</a>, the advent of <a href="http://zoho.com/">Internet applications</a> that rival their desktop counterparts in functionality, and even the feasibility of <a href="http://www.amazon.com/AWS-home-page-Money/b/ref=gw_br_websvcs?ie=UTF8&amp;node=3435361&amp;pf_rd_p=369983801&amp;pf_rd_s=left-nav-3&amp;pf_rd_t=101&amp;pf_rd_i=507846&amp;pf_rd_m=ATVPDKIKX0DER&amp;pf_rd_r=0EN0YQV6XFG1ZT36DAKQ">cloud computing</a>.  More than this, we&#8217;ve seen unprecedented <a href="http://digg.com/">democratization of information</a> and the <a href="http://www.wikipedia.org/">absolute ease of its dissemination</a>.</p>
<p>This progress has all be thanks to the rise in Internet speeds.</p>
<p>Now imagine what we can do with 100Mbps or 400Mbps connections.  Just think of the possibilities.</p>
<p>Superhigh-speed broadband connections has the potential to make ubiquitous high-resolution videos, real-time video broadcast, and much, much more.  Most exciting is the prospect of engaging, entertaining, useful and indispensible applications of these superhigh-speed connections that we haven&#8217;t even thought of yet.</p>
<p>We don&#8217;t normally think of money as enabling us to contribute to society on the grand scale, and so comparisons of bandwidth-wealth to monetary-wealth fall short.  Bandwidth-wealth will usher in the next generation of rich media and communications access.</p>
<p>The important questions to ask no longer pertain to the need for faster internet access, but rather to the issues around time to deployment and ease of access.</p>
<p>I&#8217;d like my superhigh-speed access now, please, and I&#8217;ll take it in the 400Mbps variety, thank you very much!</p>
<p>(From <a href="http://digg.com/tech_news/Is_Faster_Access_to_the_Internet_Needed_">Digg</a>)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mirzmaster.wordpress.com/104/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mirzmaster.wordpress.com/104/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=104&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/04/10/is-faster-access-to-the-internet-needed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/04/fibre-optic-bundle.jpg" medium="image">
			<media:title type="html">Faster internet access = greater innovation</media:title>
		</media:content>
	</item>
		<item>
		<title>The Canadian People vs. Bell &amp; Rogers:  An open letter to Jim Prentice</title>
		<link>http://mirzmaster.wordpress.com/2008/04/04/the-canadian-people-vs-bell-rogers-an-open-letter-to-jim-prentice/</link>
		<comments>http://mirzmaster.wordpress.com/2008/04/04/the-canadian-people-vs-bell-rogers-an-open-letter-to-jim-prentice/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 02:23:22 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bell]]></category>
		<category><![CDATA[bittorrent]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[net neutrality]]></category>
		<category><![CDATA[rogers]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=103</guid>
		<description><![CDATA[It looks like the net neutrality debate is finally picking up in Canada.  As far as I&#8217;m concerned, we&#8217;ve been way overdue for such a debate.  Rogers Canada&#8217;s traffic shaping practice, and now Bell&#8217;s, has gone on long enough.  South of the border, Comcast has buckled to consumer outrage and Congressional pressure.  Canadians need to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=103&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://democraticmedia.ca/throttler"><img class="alignright" style="float:right;margin:5px;" src="http://democraticmedia.ca/sites/democraticmedia.ca/files/bigthrottle2.jpg" alt="Stop the Throttler" /></a>It looks like the <a href="http://arstechnica.com/news.ars/post/20080403-canadians-debating-net-neutrality-in-wake-of-bell-throttling.html">net neutrality debate</a> is <a href="http://democraticmedia.ca/">finally picking up in Canada</a>.  As far as I&#8217;m concerned, we&#8217;ve been way overdue for such a debate.  Rogers Canada&#8217;s <a href="http://torrentfreak.com/canadian-isp-is-throttling-bittorrent-traffic/">traffic shaping</a> practice, and now <a href="http://www.dslreports.com/shownews/Bell-Canada-Throttles-Wholesalers-Doesnt-Bother-To-Tell-Them-92915">Bell&#8217;s</a>, has gone on long enough.  South of the border, Comcast has buckled to consumer outrage and Congressional pressure.  Canadians need to let Rogers and Bell know how disappointed we are as well.</p>
<p>In the fight against big media, I believe we need the government to support the Canadian people against the unfair advantage these telecoms have.  They own all the infrastructure and obviously have an interest in ensuring the Internet cannot threaten their significant investments into competing distribution channels (digital cable or satellite service).</p>
<p>To this end, I&#8217;ve written to Jim Prentice, the Minister of Industry.</p>
<p>Read on&#8230;</p>
<blockquote><p><em>Dear Mr. Prentice:</em></p>
<p><em>As a very concerned Canadian citizen, I am writing to express my dissatisfaction with your ministry&#8217;s policy of remaining uninvolved in the case of The Canadian People vs. Bell &amp; Rogers in the issue of net neutrality.</em></p>
<p><em>In response to Charlie Angus&#8217; question about your ministry&#8217;s involvement in this fight, the Globe and Mail <a href="http://www.theglobeandmail.com/servlet/story/RTGAM.20080402.internet03/BNStory/Technology/home">quotes you</a> as saying:</em></p>
<blockquote><p><em>&#8220;At this point in time we will continue to leave the matter between consumers on the one hand and Internet service providers on the other&#8221;</em></p></blockquote>
<p><em>I was extremely disappointed to read that you are leaving the Canadian people to fight an unfair battle, one in which the opponent holds the upper hand and all the bargaining power.</em></p>
<p><em>What power do I as a consumer have?  If today Rogers and Bell are suppressing technologies like BitTorrent, which help to enable media distribution over the Internet, what alternatives do I have?  BitTorrent and other Internet distribution technologies are the future of content distribution.  These technologies are also a direct threat to Rogers&#8217; digital cable and Bell&#8217;s satellite service offerings.  Is it any surprise that we now find Bell is also traffic shaping and reducing the quality of the service offered by the wholesale service providers (an act that is also plainly anti-competitive)?</em></p>
<p><em>I would love for you to tell me what options I have, and what I can do to encourage Rogers or Bell to change their policy and keep the Internet open and fair.  Tell me which provider I can switch to, or how I can vote with my dollar.  Either that or tell me why I should trust such a critical public resource as the Internet to the likes of Bell or Rogers.</em></p>
<p><em>While you&#8217;re at it, also tell me how you&#8217;re securing the future of net neutrality and net innovation in Canada, and ensuring that we don&#8217;t end up becoming the laughing stock of the developed world.</em></p>
<p><em>Bell &amp; Rogers have no will to concede to the Canadian people, and we have nowhere else to take our dollars without going back to stone-age Internet access.</em></p>
<p><em>Do you call this a fair fight, sir?</em></p>
<p><em>I urge you and our other representatives to take some action to ensure fair, responsible access to the Internet, such that innovation and choice &#8212; the lifeblood of the Internet &#8212; will be preserved.</em></p>
<p><em>Thank you for your time.</em></p>
<p><em>Sohail Mirza</em></p></blockquote>
<p>If you&#8217;d like to contribute to the discussion, then be sure to share your opinion with Jim Prentice at prentice.j AT parl.gc.ca (please be civil), or get in touch with your <a href="http://www2.parl.gc.ca/Parlinfo/Compilations/HouseOfCommons/MemberByPostalCode.aspx?Menu=HOC">local MP</a>.  Oh, and do get involved with the <a href="http://democraticmedia.ca/act">Campaign for Democratic Media</a>.  It&#8217;s about time a consumer-rights organization got involved in the fight.</p>
<p style="text-align:center;"><a href="http://democraticmedia.ca"><img class="aligncenter" src="http://democraticmedia.ca/sites/democraticmedia.ca/files/CDM banner.jpg" alt="Campaign for Democratic Media" /></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mirzmaster.wordpress.com/103/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mirzmaster.wordpress.com/103/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=103&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/04/04/the-canadian-people-vs-bell-rogers-an-open-letter-to-jim-prentice/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://democraticmedia.ca/sites/democraticmedia.ca/files/bigthrottle2.jpg" medium="image">
			<media:title type="html">Stop the Throttler</media:title>
		</media:content>

		<media:content url="http://democraticmedia.ca/sites/democraticmedia.ca/files/CDMbanner.jpg" medium="image">
			<media:title type="html">Campaign for Democratic Media</media:title>
		</media:content>
	</item>
		<item>
		<title>New sterling designs</title>
		<link>http://mirzmaster.wordpress.com/2008/04/03/new-sterling-designs/</link>
		<comments>http://mirzmaster.wordpress.com/2008/04/03/new-sterling-designs/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 14:17:38 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[currency]]></category>
		<category><![CDATA[royal mint]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=101</guid>
		<description><![CDATA[The Royal Mint has unveiled new designs for the 1 pence through £1 coins. The new designs incorporate the Royal Arms and are absolutely brilliant in my opinion. They were conceived by Matthew Dent, a 26-year old graphic designer. Brilliant! (Via kottke)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=101&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://mirzmaster.files.wordpress.com/2008/04/newdesignsformation.jpg?w=700" alt="New British pence/pound coins" align="right" />The <a href="http://www.royalmint.com/home/home.aspx" title="The Royal Mint">Royal Mint</a> has <a href="http://www.royalmint.com/newdesigns/designsRevealed.aspx" title="The New Designs Revealed">unveiled new designs</a> for the 1 pence through £1 coins.  The new designs incorporate the <a href="http://www.royalmint.com/newdesigns/theInspiration.aspx">Royal Arms</a> and are absolutely brilliant in my opinion.  They were conceived by Matthew Dent, a 26-year old graphic designer.</p>
<p>Brilliant!</p>
<p>(Via <a href="http://www.kottke.org/remainder/08/04/15366.html">kottke</a>)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mirzmaster.wordpress.com/101/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mirzmaster.wordpress.com/101/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=101&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/04/03/new-sterling-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/04/newdesignsformation.jpg" medium="image">
			<media:title type="html">New British pence/pound coins</media:title>
		</media:content>
	</item>
		<item>
		<title>Canadian Telecoms need to see our anger</title>
		<link>http://mirzmaster.wordpress.com/2008/03/26/canadian-telecoms-need-to-see-our-anger/</link>
		<comments>http://mirzmaster.wordpress.com/2008/03/26/canadian-telecoms-need-to-see-our-anger/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 23:09:30 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Canada]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bell canada]]></category>
		<category><![CDATA[comcast]]></category>
		<category><![CDATA[net neutrality]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[rogers]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/2008/03/26/canadian-telecoms-need-to-see-our-anger/</guid>
		<description><![CDATA[Yesterday, Arstechnica reported that Bell Canada had started throttling P2P traffic not only across its own network, but even on the services being resold or redistributed by other DSL ISPs. Throttling and other anti-P2P practises appear to gaining prevelance amongst the Canadian ISPs for some reason. Meanwhile, south of the border, the American public is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=97&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://mirzmaster.files.wordpress.com/2008/03/all_bits_are_created_equal.jpg?w=700" alt="All Bits Are Created Equal" align="right" hspace="5" vspace="5" />Yesterday, <a href="http://arstechnica.com/news.ars/post/20080325-canadian-isps-furious-about-bell-canadas-traffic-throttling.html" title="Canadian ISPs furious about Bell Canada's traffic throttling">Arstechnica reported</a> that <a href="http://en.wikipedia.org/wiki/Bell_Canada">Bell Canada</a> had started throttling <abbr title="Peer-to-Peer">P2P</abbr> traffic not only across its own network, but even on the services being resold or redistributed by other <abbr title="Digital Subscriber Line">DSL</abbr> <abbr title="Internet Service Provider">ISP</abbr>s.</p>
<p>Throttling and other anti-P2P practises appear to gaining prevelance amongst the Canadian ISPs for some reason.  Meanwhile, south of the border, the American public is in an <a href="http://www.cable360.net/features360/ct/28343.html" title="Comcast Faces Capitol Class Action">uproar</a> over the anti-P2P practices of <a href="http://en.wikipedia.org/wiki/Rogers_Cable">Rogers</a>&#8216; counterpart, <a href="http://en.wikipedia.org/wiki/Comcast">Comcast</a>.  All the while, Rogers has been engaging in anti-P2P practices &#8212; in fact, anti-<a href="http://en.wikipedia.org/wiki/Network_neutrality">net neutrality</a> practices &#8212; far worse than what Comcast has been charged with; while Comcast may be resetting P2P connections at certain times of the day or in certain areas, Rogers throttles <b>ALL</b> encrypted traffic wholesale.</p>
<p>My question is, why aren&#8217;t Canadians as concerned about Net censorship and the impaired quality of broadband offerings here?  American ISPs can hardly get away with anything without Congressional hearings being arranged, and up here Rogers is making a complete mockery of the concept of net neutrality.</p>
<p>Canadians, it&#8217;s time to wake up and hold the telecom giants&#8217; feet to the fire.</p>
<p>Someone please tell me where I can sign up to express my anger, and hopefully in a manner that might drive legislative change barring what Rogers, and now Bell, are up to.  I&#8217;m angry, dangnabbit!</p>
<p>(Via <a href="http://digg.com/tech_news/Canadian_ISPs_furious_about_Bell_Canada_s_traffic_throttling" title="Canadian ISPs furious about Bell Canada's traffic throttling">digg</a>)</p>
<p><a href="http://mirzmaster.wordpress.com/2008/03/26/canadian-telecoms-need-to-see-our-anger/userfriendly-on-network-neutrality/" rel="attachment wp-att-99" title="UserFriendly, Sep 05, 2006"></a></p>
<div style="text-align:center;"><a href="http://mirzmaster.wordpress.com/2008/03/26/canadian-telecoms-need-to-see-our-anger/userfriendly-on-network-neutrality/" rel="attachment wp-att-99" title="UserFriendly, Sep 05, 2006"><img src="http://mirzmaster.files.wordpress.com/2008/03/uf009505_smaller.gif?w=700" alt="UserFriendly on Network Neutrality" /></a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mirzmaster.wordpress.com/97/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mirzmaster.wordpress.com/97/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=97&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/03/26/canadian-telecoms-need-to-see-our-anger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/03/all_bits_are_created_equal.jpg" medium="image">
			<media:title type="html">All Bits Are Created Equal</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/03/uf009505_smaller.gif" medium="image">
			<media:title type="html">UserFriendly on Network Neutrality</media:title>
		</media:content>
	</item>
		<item>
		<title>Who loves them some robot?</title>
		<link>http://mirzmaster.wordpress.com/2008/03/25/man-marries-robot-made-with-doll-and-hacked-teledildonics/</link>
		<comments>http://mirzmaster.wordpress.com/2008/03/25/man-marries-robot-made-with-doll-and-hacked-teledildonics/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 00:00:25 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[Society]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[ai]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[marriage]]></category>
		<category><![CDATA[robots]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/2008/03/25/man-marries-robot-made-with-doll-and-hacked-teledildonics/</guid>
		<description><![CDATA[Oh my Lord. Yep, the age of robotic companionship is upon us.  Given advances in artificial intelligence, robotics, and not to mention expanded definitions of marriage, it seems inevitable. Robot spouses are hardly going to become the norm &#8212; indeed they remain an anomaly at the moment (unless you know something I don&#8217;t!) &#8212; but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=95&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://mirzmaster.files.wordpress.com/2008/03/optimus_wifey.jpg?w=700" alt="Who wants to be mah wifey?!" align="right" hspace="5" vspace="5" /><a href="http://gizmodo.com/367698/technosexual-one-mans-tale-of-robot-love" title="One Man's Tale of Robot Love">Oh my Lord.</a></p>
<p>Yep, the age of robotic companionship is upon us.  Given advances in artificial intelligence, robotics, and not to mention expanded definitions of marriage, it seems inevitable.</p>
<p>Robot spouses are hardly going to become the norm &#8212; indeed they remain an anomaly at the moment (unless you know something I don&#8217;t!) &#8212; but I can certainly see the allure for a certain category of people.  Perhaps those who may find it difficult to relate to other people, or find the prospect of real human relationships too risky.</p>
<p>Frankly, I&#8217;m somewhat disturbed by Zoltan&#8217;s story.  It speaks to me of someone who finds real emotional contact with a human being too difficult.  As well, this is damning indictment of society at large in that we&#8217;ve been unable to help those who are emotionally repressed or fragile.</p>
<p>I&#8217;m sure there are those that would readily disagree with my opinion here.  After all, why shouldn&#8217;t everyone be able to do what they want and what they&#8217;re comfortable with?</p>
<p>I have to think that human beings gain the most satisfaction from accomplishment, and especially emotional accomplishment.  There is nothing more emotionally satisfying than a fantastic relationship, and especially with one&#8217;s spouse.</p>
<p>I&#8217;m sure this is going to become a more contentious and fascinating issue as technology advances, so feel free to sound off in the comments with your own opinion.</p>
<p><a href="http://gizmodo.com/367698/technosexual-one-mans-tale-of-robot-love"></a>(Via <a href="/odd_stuff/Man_Marries_Robot_Made_With_Doll_and_Hacked_Teledildonics">digg</a>)</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mirzmaster.wordpress.com/95/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mirzmaster.wordpress.com/95/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=95&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/03/25/man-marries-robot-made-with-doll-and-hacked-teledildonics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/03/optimus_wifey.jpg" medium="image">
			<media:title type="html">Who wants to be mah wifey?!</media:title>
		</media:content>
	</item>
		<item>
		<title>Jericho cancelled, yet again</title>
		<link>http://mirzmaster.wordpress.com/2008/03/23/jericho-cancelled-yet-again/</link>
		<comments>http://mirzmaster.wordpress.com/2008/03/23/jericho-cancelled-yet-again/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 02:14:38 +0000</pubDate>
		<dc:creator>Sohail Mirza</dc:creator>
				<category><![CDATA[TV]]></category>
		<category><![CDATA[deadpool]]></category>
		<category><![CDATA[jericho]]></category>

		<guid isPermaLink="false">http://mirzmaster.wordpress.com/?p=93</guid>
		<description><![CDATA[Over at ReadWriteWeb, Josh Catone comments that internet fandom is not ready for primetime.  This commentary follows the news that the CBS TV series Jericho was cancelled again. Josh asks: What do you think? Are there any other reasons why strong online numbers haven&#8217;t translated well to the TV? Do you think Internet fandom will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=93&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://mirzmaster.files.wordpress.com/2008/03/jericho_poster.jpg?w=700" alt="Jericho" align="right" hspace="10" vspace="10" />Over at <a href="http://www.readwriteweb.com/">ReadWriteWeb</a>, Josh Catone comments that <a href="http://www.readwriteweb.com/archives/internet_fandom_still_not_ready_for_primetime.php" title="Still Not Ready for Primetime">internet fandom is not ready for primetime</a>.  This commentary follows the news that the CBS TV series Jericho was <a href="http://www.hollywoodreporter.com/hr/content_display/television/news/e3i16295f10f81874297d9c13c91f04a4a1" title="CBS cancels 'Jericho'">cancelled again</a>.</p>
<p>Josh asks:</p>
<blockquote><p>What do you think? Are there any other reasons why strong online numbers haven&#8217;t translated well to the TV? Do you think Internet fandom will ever be ready for primetime?</p></blockquote>
<p>In the comments, <a href="http://www.rpvr.se/">David Dworsky</a> replies with an <a href="http://www.readwriteweb.com/archives/internet_fandom_still_not_ready_for_primetime.php#comment-49982">excellent statement</a>.  He essentially asks when the differentiation made between TV and the Internet will cease.</p>
<p>I actually wholeheartedly agree with David.  As an example, I barely watch TV shows on my television anymore.  In fact, for the last few years, I&#8217;ve not even had a television, preferring to either watch shows with the TV tuner on my computer, or better yet, preferring to download the TV shows so that I could watch them at my leisure.</p>
<p>This is hardly a new concept to this Internet generation, but people are more and more expecting to be able to consume media on the devices of their choosing, at the time of their choosing, and via the medium of their choosing.</p>
<p>I believe this fact has really impressed upon on the TV industry.</p>
<p>Unfortunately, the industry still relies on old-world metrics that appear to have dealt Jericho a fatal blow.  It&#8217;s really too bad since the show is genuinely entertaining, and obviously has a large following.</p>
<p>My hope is that Jericho is only the first of such shows, and that eventually shows with large online followings are realized to be as worthy of investment as major network shows like <a href="http://abc.go.com/primetime/lost/">Lost</a> or <a href="http://www.fox.com/house/">House</a>.   In fact I&#8217;d like to see us more rapidly advance to a point of being medium-agnostic when it comes to content distribution and consumption.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mirzmaster.wordpress.com/93/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mirzmaster.wordpress.com/93/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mirzmaster.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mirzmaster.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mirzmaster.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mirzmaster.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mirzmaster.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mirzmaster.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mirzmaster.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mirzmaster.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mirzmaster.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mirzmaster.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mirzmaster.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mirzmaster.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mirzmaster.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mirzmaster.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mirzmaster.wordpress.com&amp;blog=607476&amp;post=93&amp;subd=mirzmaster&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mirzmaster.wordpress.com/2008/03/23/jericho-cancelled-yet-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b600a487add51ffd20093be84e64c7c2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mirzmaster</media:title>
		</media:content>

		<media:content url="http://mirzmaster.files.wordpress.com/2008/03/jericho_poster.jpg" medium="image">
			<media:title type="html">Jericho</media:title>
		</media:content>
	</item>
	</channel>
</rss>
