<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>parabola.ca &#187; Tech</title>
	<atom:link href="http://www.parabola.ca/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.parabola.ca</link>
	<description>Online Home of Steve Almond</description>
	<lastBuildDate>Sat, 03 Sep 2011 00:54:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>First Post from WordPress for BlackBerry</title>
		<link>http://www.parabola.ca/2009/09/first-post-from-wordpress-for-blackberry/</link>
		<comments>http://www.parabola.ca/2009/09/first-post-from-wordpress-for-blackberry/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 04:44:31 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://www.parabola.ca/?p=248</guid>
		<description><![CDATA[<p>I&#8217;m doing a massive rehaul around here, foremost being a switch to the WordPress blogging platform from a very outdated version of b2evolution.  I&#8217;ve been using WP for Steve&#8217;s Buffyverse Timeline and have been extremely satisfied. I also love the WordPress for BlackBerry app for doing posts while on the go, which I can [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m doing a massive rehaul around here, foremost being a switch to the WordPress blogging platform from a very outdated version of b2evolution.  I&#8217;ve been using WP for <a href="http://www.buffytimeline.com"  alt="Steve's Buffyverse Timeline">Steve&#8217;s Buffyverse Timeline</a> and have been extremely satisfied. I also love the <a href="http://blackberry.wordpress.org"  alt="WordPress for BlackBerry">WordPress for BlackBerry</a> app for doing posts while on the go, which I can make use of during the film fest.</p>
<p>So this is just a quick test of things &#8230; I still have lots to do!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2009/09/first-post-from-wordpress-for-blackberry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unhappy Blogger</title>
		<link>http://www.parabola.ca/2006/01/unhappy-blogger/</link>
		<comments>http://www.parabola.ca/2006/01/unhappy-blogger/#comments</comments>
		<pubDate>Mon, 23 Jan 2006 00:32:35 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=49</guid>
		<description><![CDATA[<p>Spammers, you can fuck off and die.  Of course, you&#8217;re not likely to be reading this since it&#8217;s your automated scripts that are doing the dirty work, but the point stands.</p>
<p>I got sick and tired of the comment spam over the past few weeks.  I guess once you&#8217;ve been identified as using open [...]]]></description>
			<content:encoded><![CDATA[<p>Spammers, you can fuck off and die.  Of course, you&#8217;re not likely to be reading this since it&#8217;s your automated scripts that are doing the dirty work, but the point stands.</p>
<p>I got sick and tired of the comment spam over the past few weeks.  I guess once you&#8217;ve been identified as using open commenting on a common blog system (in my case, b2evolution) it doesn&#8217;t take long before you&#8217;re completely inundated.  I did a pretty good job of deleting them daily, so you may not have even seen any of the offending posts.</p>
<p>The anti-spam feature of b2evolution turned out to be pretty useless; the central blacklist that we can check against and submit to is a nice idea, but there&#8217;s just countless new domains popping up.  The next logical measure was to turn off commenting except for registered users (not that anyone is posting legitimate comments nowadays, though).  Unbelievably, after much searching in the admin tool and the rest of the Interweb, nothing like this seemed to exist!  Even just a simple thing like disabling comments for everyone is only done on a post-by-post basis.</p>
<p>I decided to check out the code myself and luckily enough the changes I wanted were fairly easy to make.  So for any other frustrated souls out there, hopefully the following is useful.</p>
<p>The first step was to foil the comment-posting bots.  You may have already tried renaming your <code>htsrv</code> directory and some other steps to prevent them from posting directly to the post-handling programs, but even that only works for so long.  But either way, make this change to your <code>comment_post.php</code></p>
<pre>if( is_logged_in() )
{ // User is logged in, we'll use his ID
$author_ID = $current_User-&gt;ID;
$author = NULL;
$email = NULL;
$url = NULL;
}
else
{	// User is not logged in, we need some id info from him:
// <strong>NEW</strong> - add error message if not logged in
errors_add( T_('Only registered users may post comments') );
// <strong>NEW</strong> - comment out everything else if not logged in
/*	$author_ID = NULL;
if ($require_name_email)
{ // Blog wants Name and EMail with comments
if( empty($author) )
errors_add( T_('Please fill in the name field') );
if( empty($email) )
errors_add( T_('Please fill in the email field') );
}
if( (!empty($email)) &amp;&amp; (!is_email($email)) )
{
errors_add( T_('Supplied email address is invalid') );
}
<em> add 'http:</em>' if no protocol defined for URL
$url = ((!stristr($url, '://'))
&amp;&amp; ($url != '')) ? 'http://' . $url : $url;
if( strlen($url) &lt; 7 ){
$url = '';
}
if( $error =
validate_url( $url, $comments_allowed_uri_scheme ) )
{
errors_add( T_('Supplied URL is invalid: ') . $error );
}
*/
}</pre>
<p>Really simple!  If the user is not logged in, add the error message and comment out the rest (or delete, but it&#8217;s nice leaving in the original code for later reference if need be).  By flagging the error, this will prevent code later in the file from adding the comment to the database.</p>
<p>It&#8217;s been the better part of a week since I made this change, and the spam-free existence has been wonderful!</p>
<p>Now, if you want to be real user-friendly about things, recall that on the default comment page if the person is not logged in they can leave a comment as a &#8216;Visitor&#8217;.  If they go to the trouble of typing up a nice long message for you and hit submit, the above change will present them with the new error message.  It might be nice to warn them beforehand and not waste their time.</p>
<p>So in this next bit, I&#8217;ll describe (the code is too long to copy, paste, &amp; format properly, so just read carefully) a few changes to make to your <code>skins/_feedback.php</code> file.  Find the section that begins with</p>
<pre>&lt;!-- form to add a comment --&gt;</pre>
<p>Move the following</p>
<pre>&lt;form action=...
&lt;input type= ....
&lt;input type= ....</pre>
<p>a few lines below, to <strong>within</strong> and above the existing contents of the block that starts with</p>
<pre>if( is_logged_in() )
{ // User is logged in:</pre>
<p>Then, after this IF-ELSE block is the rest of the HTML for the comment form.  Cut everything form <code>form_textarea( ...</code> all the way down to where you find the <code>&lt;/form&gt;</code> tag and paste it within the <code>if( is_logged_in() )</code> block, below what was already there.  Finally, within the ELSE portion of the block, comment out or delete what was already there and do something like</p>
<pre>else
{ // User is not loggued in:
?&gt;
&lt;div class="bComment"&gt;&lt;p&gt;Only registered users may submit comments.
&lt;/p&gt;&lt;/div&gt;
&lt;?php
}</pre>
<p>If you still want to allow anonymous comments in some fashion, this is what I did:  I created another, dummy, user account and put the login and password info in my message above.  It&#8217;s a bit more work for the user, but if they&#8217;re really against registering then this still gives them the option to post.  And if this setup gets abused, it&#8217;s easy enough to just delete the dummy account.</p>
<p>Hopefully I&#8217;ve described everything clear enough, but if you have any questions then feel free to contact me.  I&#8217;d be happy to help in your fight against spam.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2006/01/unhappy-blogger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Computer Fun in Mississauga</title>
		<link>http://www.parabola.ca/2005/12/computer-fun-in-mississauga/</link>
		<comments>http://www.parabola.ca/2005/12/computer-fun-in-mississauga/#comments</comments>
		<pubDate>Sun, 11 Dec 2005 00:06:02 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=58</guid>
		<description><![CDATA[<p>Time for a quick review of some Mississauga-area computer stores.  The story: last week my desktop became insanely sluggish.  The processor was constantly maxing out, even on the most basic of tasks.  There were no unfamiliar processes running, virus and spyware checks came up empty, plenty of available memory &#8230; I was [...]]]></description>
			<content:encoded><![CDATA[<p>Time for a quick review of some Mississauga-area computer stores.  The story: last week my desktop became <i>insanely</i> sluggish.  The processor was constantly maxing out, even on the most basic of tasks.  There were no unfamiliar processes running, virus and spyware checks came up empty, plenty of available memory &#8230; I was stumped.  I defragged and ran some diagnostics on my hard drives and everything appeared fine.  Ditto for the CPU.</p>
<p>Eventually I came across a neat little program called Quick Bench (linked to from <a href="http://www.benchmarkhq.ru/english.html?/be_hdd.html">this site</a>).  Testing the read/write speeds of my hard drives, I identified the culprit as the disk I was using for XP and installed applications.  This pissed me off, since it&#8217;s barely two years old and was a warranty replacement for the computer&#8217;s original Maxtor HD which suffered a catastrophic failure.  Now on one hand Maxtors were recommended to me by Ed, the guy I bought my system and my parents&#8217; from and who supplies RIM&#8217;s desktops &#8212; he knows his shit.  But two failed drives will leave me leery of their products in the future.</p>
<p>Before I narrowed it down to a hard drive problem, I was leaning towards a failing CPU.  At four and a half years old my computer is relatively ancient, and the Athlon 900 that powers it wasn&#8217;t cutting edge at the time of purchase (but it was tops for performance/$).  I wanted to track down something comparable to replace it &#8212; anything much more advanced would require a new motherboard, which would have required new RAM &#8230; a slippery slope I wanted to avoid.  If I could fix the problem, I could easily get a few more years out of my machine.  Tracking down a used, old Athlon would require some searching.</p>
<p>So I emailed a bunch of computer stores in Mississauga to see if they had anything lying around; if not, could they recommend a used components place I could check out.</p>
<ul>
<li><a href="http://www.arobyte.com/index.shtml">AroByte Computers</a>: Replied within minutes, close to midnight on a Monday night.  Said they&#8217;d check at work the next day.  Nice responsiveness!  Never heard back.  [sad shake of the head]</li>
<li><a href="http://www.pccanada.com">Premier Computer Canada</a>: technically in Etobicoke &#8230; which I guess is technically Toronto now &#8230; but close enough physically to include in my search.  Been visiting their site for years to benchmark prices at KW &amp; London computer stores.  Quick response the next morning &#8212; didn&#8217;t have what I was looking for, but suggested another company to try.  They&#8217;ll get future business from me.</li>
<li>The &#8216;didn&#8217;t have what I was looking for and couldn&#8217;t suggest a used computer store but at least they replied&#8217; winners: <a href="http://www.arcocomputers.com/">ARCO Computers</a>, <a href="http://www.ecjcomputers.com/">ECJ Computers</a>, <a href="http://www.rulink.com">Ru-Link Computer Corporation</a>.</li>
<li><a href="http://www.infonec.com/site/main.php">Infonec Computers</a>:  apparently have 11-year olds answering e-mail.  Seriously, the dude REPLIED IN ALL CAPS.  And suggested I check a user computer store.  Thanks jackass.  Maybe that&#8217;s why I asked for a suggestion of one.</li>
<li>Couldn&#8217;t be bothered to reply and don&#8217;t deserve so much as a hyperlink : 1 Click 2 Computers, DuraPC, OZTech Computers, Factory Direct, Wintronic Computers Plus, Computer Depot, Liata Computer Co., Computer Central.  Thanks for nothin&#8217;.</li>
</ul>
<p>Wrap up: I picked up a new hard drive, copied data over, and that has solved the problem.  Got a decent enough price from <a href="http://www.csdweb.net">ComputSolutions Direct</a> on a Western Digital 160 GB model &#8230; a few bucks more than Premier, but with the added convenience of being right near work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2005/12/computer-fun-in-mississauga/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Today&#039;s Special Paste</title>
		<link>http://www.parabola.ca/2005/03/todays-special-paste/</link>
		<comments>http://www.parabola.ca/2005/03/todays-special-paste/#comments</comments>
		<pubDate>Fri, 18 Mar 2005 04:12:01 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=140</guid>
		<description><![CDATA[<p>For all its usefulness, Microsoft Word can be really irritating.  Like how the default Print icon sends jobs directly to the printer.  Or its &#8216;helpful&#8217; autoformatting.  Don&#8217;t even get me started on Clippy and his pals (I thought these guys were being retired)!  These are just some of the things I [...]]]></description>
			<content:encoded><![CDATA[<p>For all its usefulness, Microsoft Word can be really irritating.  Like how the default Print icon sends jobs directly to the printer.  Or its &#8216;helpful&#8217; autoformatting.  Don&#8217;t even get me started on Clippy and his pals (I thought these guys were being retired)!  These are just some of the things I change immediately upon installation.</p>
<p>Now, it&#8217;s nifty and all how the program can take just about any copied formatted text and reproduce it.  I&#8217;ll admit, for <em>ease</em> of maintaining formatting between applications (especially the Office family), it may not be perfect but the effort is impresseive nontheless.</p>
<p>Most of the time I don&#8217;t want this, I&#8217;m more interested in the <em>content</em>.  So <strong>Edit/Paste Special</strong> is my friend.  But he&#8217;s a cumbersome friend.  Something that Word doesn&#8217;t get a lot of credit for is how customizable it is.  Yeah, you have to resort to use VB code sometimes, but at least it can be done fairly easily if you know what you&#8217;re doing or where to look.  I finally took the time to learn how to make a macro for <strong>Edit/Paste Special</strong>.  Check out this <a href="http://pubs.logicalexpressions.com/Pub0009/LPMArticle.asp?ID=128">invaluable little article</a> &#8230; I used it to assign Ctrl-Shift-V as my unformatted paste shortcut.  The sweet life of efficiency.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2005/03/todays-special-paste/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Live Long and Prosper</title>
		<link>http://www.parabola.ca/2004/12/live-long-and-prosper/</link>
		<comments>http://www.parabola.ca/2004/12/live-long-and-prosper/#comments</comments>
		<pubDate>Mon, 06 Dec 2004 01:57:38 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=177</guid>
		<description><![CDATA[<p>Taking thirty seconds to mention that the Prosper class rocks.  Any more updating would make me feel guilty as I&#8217;m way behind on getting this presentation and report done.  By late tomorrow afternoon I can look forward to a relaxing exam period of studying.</p>
]]></description>
			<content:encoded><![CDATA[<p>Taking thirty seconds to mention that the Prosper class rocks.  Any more updating would make me feel guilty as I&#8217;m way behind on getting this presentation and report done.  By late tomorrow afternoon I can look forward to a relaxing exam period of studying.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2004/12/live-long-and-prosper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Not Just A Pretty Typesetting</title>
		<link>http://www.parabola.ca/2004/10/not-just-a-pretty-typesetting/</link>
		<comments>http://www.parabola.ca/2004/10/not-just-a-pretty-typesetting/#comments</comments>
		<pubDate>Sun, 24 Oct 2004 17:59:44 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[School]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=190</guid>
		<description><![CDATA[<p>Now that I tend to do all my assignments in LaTeX (despite the fact that it&#8217;s by no means a time saver, but only serves to make it pretty), a couple of new benefits have been noted.  I&#8217;m studying for my STAT 831 midterm and going over the most recent assignment, which was only [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I tend to do all my assignments in LaTeX (despite the fact that it&#8217;s by no means a time saver, but only serves to make it pretty), a couple of new benefits have been noted.  I&#8217;m studying for my STAT 831 midterm and going over the most recent assignment, which was only handed in this past week; hence, we don&#8217;t have it back yet.  Previously in such cases, I&#8217;d photocopy my assignment before handing it in so I could have it to review.  Now I can just bring it up on my computer.  Second of all, I can easily correct typos that I come across after the fact.  There&#8217;s probably not much point to this, since I don&#8217;t intend to print off a new copy, but it would bother me knowing that I had the ability to fix it and just left it as is.</p>
<p>Well, that was a few minutes of procrastination from studying.  Better get back to it, although I don&#8217;t have a whole lot left.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2004/10/not-just-a-pretty-typesetting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Critical Swastikas</title>
		<link>http://www.parabola.ca/2004/07/critical-swastikas/</link>
		<comments>http://www.parabola.ca/2004/07/critical-swastikas/#comments</comments>
		<pubDate>Sat, 24 Jul 2004 14:52:11 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=221</guid>
		<description><![CDATA[<p>I boot up my computer this morning, and I&#8217;m greeted with a notice about a critical update for Windows.  The culprit?</p>
<p>This item updates the Bookshelf Symbol 7 font included in some Microsoft products.  The font has been found to contain unacceptable symbols.  After you install this item, you may have to restart [...]]]></description>
			<content:encoded><![CDATA[<p>I boot up my computer this morning, and I&#8217;m greeted with a notice about a critical update for Windows.  The culprit?</p>
<blockquote><p>This item updates the Bookshelf Symbol 7 font included in some Microsoft products.  The font has been found to contain unacceptable symbols.  After you install this item, you may have to restart your computer.</p></blockquote>
<p>I did some digging on the net (read: Google), and it turns out the &#8220;unacceptable&#8221; symbols were a couple of swastikas and a six-pointed-star (i.e. Star of David).  Talk about overkill.  This was a *critical* update?  Oh, please.  I guess some people would take offense, but from a purely academic perspective, what if I *want* to insert those symbols into my document?  Thanks for protecting me, Microsoft.  I&#8217;m glad you and Disney are around to keep me safe.</p>
<p>Anyway, this issue is actually pretty old.  The offending font is included with Office 2003, which I only recently updated to.  Office XP has been running smoothly for a while now, and really, besides Outlook, is there anything all that much important to have been updated in the suite since Office 97?  Not so much that really comes to mind.  But I&#8217;m actually sold on the new Outlook layout &#8230; and I like the snazzy new icons for the applications, too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2004/07/critical-swastikas/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DVD DL Drool</title>
		<link>http://www.parabola.ca/2004/07/dvd-dl-drool/</link>
		<comments>http://www.parabola.ca/2004/07/dvd-dl-drool/#comments</comments>
		<pubDate>Fri, 09 Jul 2004 13:37:47 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=228</guid>
		<description><![CDATA[<p>It&#8217;s getting closer &#8230;  we have the technology &#8230; now we just need better availability, cheaper media &#8230; and a jump or two in recording speed.</p>
<p>Link.</p>
]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s getting closer &#8230;  we have the technology &#8230; now we just need better availability, cheaper media &#8230; and a jump or two in recording speed.</p>
<p><a href="http://www.tomshardware.com/storage/20040707/index.html">Link</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2004/07/dvd-dl-drool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thinking of Cell Phones</title>
		<link>http://www.parabola.ca/2004/07/thinking-of-cell-phones/</link>
		<comments>http://www.parabola.ca/2004/07/thinking-of-cell-phones/#comments</comments>
		<pubDate>Sat, 03 Jul 2004 00:40:14 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://localhost/parabola.ca/?p=233</guid>
		<description><![CDATA[<p>My cell phone contract is up very soon and I&#8217;ve been looking around to see if I can get a better deal.  Now, it&#8217;s relatively expensive to have a cell phone when I could be splitting a land line with my roommates, but the purchase certainly made sense at the time.  It was [...]]]></description>
			<content:encoded><![CDATA[<p>My cell phone contract is up very soon and I&#8217;ve been looking around to see if I can get a better deal.  Now, it&#8217;s relatively expensive to have a cell phone when I could be splitting a land line with my roommates, but the purchase certainly made sense at the time.  It was actually cheaper to have a cell than my Bell line when I was living by myself, and the added convenience of a cell phone was a big plus.</p>
<p>I was lucky to sign my contract when I did.  Well, not so much luck &#8230; I did a lot of research and knew the plans would be changing shortly.  I got in before Rogers did away with airtime credits, so I use mine to basically get 100 minutes of free long distance per month.  That was also back in the day when nights started at 6 pm instead of the ridiculous 7 or 8 pm which is now common.  I also get the 20% &#8216;friends &amp; family&#8217; discount because of someone Rob knows.  So really, I don&#8217;t have much I can improve on because cell phone plans are so shitty nowadays so it&#8217;s not advantagious to switch from what I have.</p>
<p>But I learned a thing or two about the telecom industry on my work terms, and I do have a bit of leverage: the dreaded churn!  It probably took Rogers about 18 months before they started making money off of me &#8230; that&#8217;s why they want you on long-term contracts and have those crazy cancellation fees.  I can probably get a decent deal on a newer phone or some other services by signing a new contract just by threatening to cancel.  Not that I&#8217;ve really had any issues with my service, but it&#8217;s fun to hate Rogers along with everyone else.</p>
<p>Anyway, all this came to mind because I had jotted down a link to <a href="http://www.cnn.com/2004/TECH/ptech/06/08/mobile.phone.rage.ap/index.html">this article</a> on CNN last month.  Here&#8217;s a quote I particularly liked:</p>
<blockquote><p>Sprint PCS ads even acknowledge consumer&#8217;s frustration. A four-page ad in USA Today asked, &#8220;What if the rest of the world were like the wireless industry?&#8221;</p>
<p>It showed a group of children outside a fenced playground, reading the rules, which included, &#8220;You have to guess how many minutes you&#8217;re going to use your ball &#8212; for the next two years. Don&#8217;t guess too high or too low, or you&#8217;ll be sorry.&#8221;</p>
<p>The final rule: &#8220;If you don&#8217;t like the rules, try another playground. It&#8217;ll be exactly the same.&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.parabola.ca/2004/07/thinking-of-cell-phones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

