<?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>Notes From Andy</title>
	<atom:link href="http://www.notesfromandy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.notesfromandy.com</link>
	<description>Andy Lee's weblog</description>
	<lastBuildDate>Sat, 07 Aug 2010 01:19:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Hotkeys update</title>
		<link>http://www.notesfromandy.com/2010/08/06/hotkeys-update/</link>
		<comments>http://www.notesfromandy.com/2010/08/06/hotkeys-update/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 01:19:08 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=343</guid>
		<description><![CDATA[I was trying to run my WhatKeys app at work, because I actually had a use for it, and discovered it doesn&#039;t compile on Leopard. I&#039;ll fix that when I get a chance. On a related note, the developer of the ShiftIt app I mentioned has a blog called &#034;Cocoa Tips and Tricks.&#034; One of [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to run my WhatKeys app at work, because I actually had a use for it, and discovered it doesn&#039;t compile on Leopard.  I&#039;ll fix that when I get a chance.</p>

<p>On a related note, the developer of the ShiftIt app I mentioned has a blog called &#034;<a target="_blank" href="http://cocoatutorial.grapewave.com/">Cocoa Tips and Tricks</a>.&#034;  One of his posts is about implementing hotkeys, and one of the comments to that post mentions that Snow Leopard has an <a target="_blank" href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/ApplicationKit/Classes/NSEvent_Class/Reference/Reference.html#//apple_ref/occ/clm/NSEvent/addGlobalMonitorForEventsMatchingMask:handler:">NSEvent method</a> that makes it real easy.  I see from the doc that:</p>

<blockquote>
  <p>Key-related events may only be monitored if accessibility is enabled or if your application is trusted for accessibility access (see AXIsProcessTrusted).</p>
</blockquote>

<p>and:</p>

<blockquote>
  <p>Note that your handler will not be called for events that are sent to your own application.</p>
</blockquote>

<p>I&#039;ll have to check whether the DDHotKey library I used has these limitations.  Regardless, this is nice to know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/08/06/hotkeys-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A name I would not have chosen</title>
		<link>http://www.notesfromandy.com/2010/08/06/a-name-i-would-not-have-chosen/</link>
		<comments>http://www.notesfromandy.com/2010/08/06/a-name-i-would-not-have-chosen/#comments</comments>
		<pubDate>Sat, 07 Aug 2010 01:01:45 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=339</guid>
		<description><![CDATA[With sincerest apologies to the developer, I feel compelled to mention that when I see the name &#034;ShiftIt&#034; my brain switches the &#034;f&#034; and the &#034;t&#034;. I even started to type it that way just now. I must have some combination of dyslexia and Tourette&#039;s.]]></description>
			<content:encoded><![CDATA[<p>With sincerest apologies to the developer, I feel compelled to mention that when I see the name &#034;<a target="_blank" href="http://code.google.com/p/shiftit/">ShiftIt</a>&#034; my brain switches the &#034;f&#034; and the &#034;t&#034;.</p>

<p>I even started to type it that way just now.  I must have some combination of dyslexia and Tourette&#039;s.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/08/06/a-name-i-would-not-have-chosen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My hotkeys code</title>
		<link>http://www.notesfromandy.com/2010/08/01/my-hotkeys-code/</link>
		<comments>http://www.notesfromandy.com/2010/08/01/my-hotkeys-code/#comments</comments>
		<pubDate>Sun, 01 Aug 2010 18:37:19 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=329</guid>
		<description><![CDATA[I finally cleaned up and posted the notes and code from my presentation at the last CocoaHeads. See here. Hotkeys for running AppleScript was a requested topic. Since I didn&#039;t know anything about global hotkeys, the existence of DDHotKey and ShortcutRecorder was convenient to say the least. Since some of the target audience was new [...]]]></description>
			<content:encoded><![CDATA[<p>I finally cleaned up and posted the notes and code from my presentation at the last CocoaHeads.  See <a target="_blank" href="http://www.notesfromandy.com/intro-to-global-hot-keys/">here</a>.</p>

<p>Hotkeys for running AppleScript was a requested topic.  Since I didn&#039;t know anything about global hotkeys, the existence of <a href="http://github.com/davedelong/DDHotKey" target="_blank">DDHotKey</a> and <a href="http://wafflesoftware.net/shortcut/" target="_blank">ShortcutRecorder</a> was convenient to say the least.</p>

<p>Since some of the target audience was new to Cocoa programming, I sprinkled helpful comments and links throughout the code, but not nearly as many as I could have &#8212; it would have been like trying to write a whole book in comments.</p>

<p>I was surprised how many conceptual topics even a simple Cocoa app can get into that I take for granted.  It just goes to show, even the best example code is not enough to get a new Cocoa programmer started, not in a serious way.  You really have to commit a bunch of time and work through Apple&#039;s conceptual documentation or something like Hillegass&#039;s book.  Or go to a good training camp like Hillegass&#039;s Big Nerd Ranch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/08/01/my-hotkeys-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Analysis of iPad owners and haters</title>
		<link>http://www.notesfromandy.com/2010/07/29/analysis-of-ipad-owners-and-haters/</link>
		<comments>http://www.notesfromandy.com/2010/07/29/analysis-of-ipad-owners-and-haters/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 12:39:22 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=307</guid>
		<description><![CDATA[TUAW reports on a study by a firm called MyType, with a sample size of 20,000. The upshot? iPad owners are &#034;rich and smart, but also spoiled and cruel.&#034; In other words, we are winners. I knew it! As for the iPad haters: &#034;bashing the iPad is, in a way, an identity statement for independent [...]]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.tuaw.com/2010/07/29/study-ipad-owners-are-selfish-elitists-non-owners-are-independ/">TUAW reports</a> on a study by a firm called MyType, with a sample size of 20,000.  The upshot?  iPad owners are &#034;rich and smart, but also spoiled and cruel.&#034;</p>

<p>In other words, we are winners.  I knew it!</p>

<p>As for the iPad haters:</p>

<blockquote>
  <p>&#034;bashing the iPad is, in a way, an identity statement for independent geeks.&#034;</p>
</blockquote>

<p>In other words, they are losers who do exactly what they claim Apple fans do: rabidly focus on a piece of technology because it makes them feel cool.</p>

<p>(In case it wasn&#039;t clear: my comments are purely tongue-in-cheek.  Mostly.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/07/29/analysis-of-ipad-owners-and-haters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Second tap hitting the keyboard</title>
		<link>http://www.notesfromandy.com/2010/07/24/second-tap-hitting-the-keyboard/</link>
		<comments>http://www.notesfromandy.com/2010/07/24/second-tap-hitting-the-keyboard/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 15:58:15 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=299</guid>
		<description><![CDATA[Here&#039;s another usability glitch when double-tapping to select a word on the iPhone. Suppose you&#039;re in a notes app and you&#039;re looking at a note with the keyboard deactivated. Double-tap a word near the bottom of the screen. The word is selected, as it should be. In some apps, the keyboard slides up to allow [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#039;s another usability glitch when double-tapping to select a word on the iPhone.</p>

<p>Suppose you&#039;re in a notes app and you&#039;re looking at a note with the keyboard deactivated.  Double-tap a word near the bottom of the screen.  The word is selected, as it should be.  In some apps, the keyboard slides up to allow you to start editing.</p>

<p>The problem is that the second of your two taps lands on a point that lies within the keyboard area, so you unintentionally type whatever character corresponds to the key at that point.</p>

<p>This happens in Notespark and Simplenote, because they bring up the keyboard, but not in Apple&#039;s Notes app.  In Notes, single-tapping brings up the keyboard but double-tapping does not, perhaps because of this very problem.</p>

<p>I&#039;m not sure whether this should be considered an app problem or an OS problem.  I lean toward OS, because from the user&#039;s perspective touch events should be captured by the view I actually touched.  I suspect the issue is related to the way Core Animation works.  The first tap immediately adds the keyboard into the view hierarchy, so technically the second tap really is in the keyboard, but you don&#039;t <em>see</em> the keyboard until it animates into place.</p>

<p>On the other hand, I would think the app should be able to deal with this fact, though I haven&#039;t thought the logic through.  Maybe Apple&#039;s approach in their own app should be a hint that there&#039;s no good solution.</p>

<p>I wanted to include screen shots, but again, I don&#039;t have time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/07/24/second-tap-hitting-the-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Double-tap sluggishness on iPhone</title>
		<link>http://www.notesfromandy.com/2010/07/24/double-tap-sluggishness-on-iphone/</link>
		<comments>http://www.notesfromandy.com/2010/07/24/double-tap-sluggishness-on-iphone/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 15:29:29 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=291</guid>
		<description><![CDATA[I just filed the following as rdar://8231424 (&#034;double-tap to select a word is sluggish in long documents&#034;). I&#039;d have mirrored the bug on Open Radar, but I don&#039;t have time. Maybe later. Summary: Double-tap selects a word instantaneously if keyboard is off, but with a long delay if keyboard is on. Steps to Reproduce: In [...]]]></description>
			<content:encoded><![CDATA[<p>I just filed the following as rdar://8231424 (&#034;double-tap to select a word is sluggish in long documents&#034;).  I&#039;d have mirrored the bug on Open Radar, but I don&#039;t have time.  Maybe later.</p>

<blockquote>
  <p>Summary: Double-tap selects a word instantaneously if keyboard is off, but with a long delay if keyboard is on.</p>
  
  <p>Steps to Reproduce: In the iOS Notes app, edit a long document (mine was 8K, about 600 short lines).  Make sure the keyboard is active.  Double-tap a word to select it.  It takes a second or two to select the word.  Since there is no visual feedback during that time it is not clear whether the double-tap was detected, and whether it was done in the intended spot.  Now tap &#034;Done&#034; to deactivate the keyboard and double-tap a word.  Now the word is selected immediately.</p>
  
  <p>Expected Results: Immediate selection of the double-tapped word.</p>
  
  <p>Actual Results: A delay of a second or so.</p>
  
  <p>Regression:</p>
  
  <p>Notes: I saw this on an iPhone 4.</p>
</blockquote>

<p>I originally saw this when editing a todo list in the Notespark iPhone app.  (I have a todo list that was intended to be a quick &#034;do it now&#034; list but grew to 8K and 600 lines, so you can see how good I am at getting things done.)  At first I blamed Notespark, which hasn&#039;t been updated in a long time so I guessed maybe Apple had changed the text APIs and Notespark simply needed to modernize.  But I saw the same problem in Simplenote and Apple&#039;s own Notes app.  This is with iOS 4.01.</p>

<p>I see the problem does not happen on my iPad &#8212; double-tap always selects the word instantaneously.  I don&#039;t know if this is because the iPad has faster hardware, or because it&#039;s only running iPhone OS 3.2.1.</p>

<p>Speaking of modernizing, I really, really want a version of Notespark for the iPad.  I&#039;d pay a couple of bucks for it.  Notespark says they&#039;re looking into it, but I don&#039;t understand why there would be hesitance or delay.  Maybe they don&#039;t see sales numbers justifying the development cost?  Maybe I&#039;m underestimating the effort to design a good UI around the larger screen space (I&#039;m thinking of the conflict resolution UI)?  All I know is, I would switch to a different notes app in a minute if there was one that supported three-way merge and had an iPad version.  I haven&#039;t researched this lately, so maybe there&#039;s a competitor I don&#039;t know about.</p>

<p>That&#039;s something else I don&#039;t understand &#8212; why nobody else but Notespark seems to think merging is important.  Maybe I use notes apps differently from most people.</p>

<p>Maybe I should finally get my iOS developer chops up to speed and offer to do the work for free.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/07/24/double-tap-sluggishness-on-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My ugly, linty iPhone protection</title>
		<link>http://www.notesfromandy.com/2010/07/22/my-ugly-linty-iphone-protection/</link>
		<comments>http://www.notesfromandy.com/2010/07/22/my-ugly-linty-iphone-protection/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 13:35:42 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=277</guid>
		<description><![CDATA[I should mention that I&#039;ve seen a few cases for the iPhone 4 and I think Apple&#039;s &#034;bumper&#034; is the best. It&#039;s unobtrusive, it&#039;s consistent with the style of the phone, and it feels like I&#039;m holding a phone and not a phone wrapped in something. I didn&#039;t get the bumper originally but did after [...]]]></description>
			<content:encoded><![CDATA[<p>I should mention that I&#039;ve seen a few cases for the iPhone 4 and I think Apple&#039;s &#034;bumper&#034; is the best.  It&#039;s unobtrusive, it&#039;s consistent with the style of the phone, and it feels like I&#039;m holding a phone and not a phone wrapped in something.</p>

<p>I didn&#039;t get the bumper originally but did after a couple of weeks &#8212; not at all because of any antenna issues, but to keep the phone from sliding off my desk with the slightest accidental nudge.</p>

<p>Benefits of the bumper:</p>

<ul>
<li>The rubber edges provided a nice amount of grip so that the phone stayed in place.</li>
<li>The phone was lifted slightly off the table, so if there was a bit of grit on the table the glass on the phone wouldn&#039;t get scratched.</li>
<li>I could lay the phone down on its face without fear of scratching the front; this gave me slightly more privacy in the event that I got a sensitive text message.</li>
</ul>

<p>Drawbacks:</p>

<ul>
<li>The bumper doesn&#039;t fit in the dock.</li>
<li>The slot at the bottom is too small for the connector on my third-party docking cables.</li>
<li>The rubber is a little <em>too</em> grippy; it snags against my pocket when I&#039;m pulling the phone out.</li>
</ul>

<p>I don&#039;t mind the first drawback, because I don&#039;t use a dock.  I don&#039;t mind the second, because I have plenty of Apple cables.  The pocket-snagging, though &#8212; that was a minor annoyance but one that was repeated many times a day.</p>

<p>My solution was to remove the bumper and instead apply four translucent rubber dots to the back of the phone.  As you can see from the packaging, these flat dots are also called &#034;bumpers.&#034;  They are originally to keep lamps and vases from sliding and scratching furniture.</p>

<p>Benefits of the dots:</p>

<ul>
<li>I&#039;m back to the original sleek feel of the phone, which I like.</li>
<li>I get the gripping benefits I got with Apple&#039;s bumper.</li>
<li>The pocket-snagging is no longer an issue.</li>
<li>There is airflow under the phone, sort of like what Bluelounge&#039;s <a target="_blank" href="http://bluelounge.com/coolfeet.php">Cool Feet</a> do for laptops (the effect is probably negligible, but the phone does get pretty warm sometimes).</li>
<li>The dots cost practically nothing.</li>
</ul>

<p>I could probably run a scam on eBay advertising brand-new iPhone &#034;bumpers&#034; for five dollars apiece.</p>

<p>Drawbacks:</p>

<ul>
<li>The back of the phone is now ugly &#8212; but when I&#039;m using it I only look at the front anyway.</li>
<li>I&#039;m no longer comfortable laying the phone face-down &#8212; but that&#039;s a tradeoff I can live with.</li>
<li>Pocket lint will gather around the edges of the dots &#8212; but I can live with that too.</li>
</ul>

<p>I forget exactly when I did this, but after a few days the dots have stayed stuck on pretty well.  No signs of peeling.  I got mine from Bed Bath and Beyond, in a package that included more dots and more <em>kinds</em> of dots than I needed.  They might also be available at hardware stores or office supply stores.</p>

<p><img src="http://www.notesfromandy.com/wp-content/uploads/2010/07/iphone4back.jpg" alt="iPhone with four bumpers" border="0" width="400" height="711" /></p>

<p><img src="http://www.notesfromandy.com/wp-content/uploads/2010/07/dotpackaging.jpg" alt="dots" border="0" width="342" height="455" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/07/22/my-ugly-linty-iphone-protection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MacPaint source page freaks out Safari</title>
		<link>http://www.notesfromandy.com/2010/07/21/macpaint-source-page-freaks-out-safari/</link>
		<comments>http://www.notesfromandy.com/2010/07/21/macpaint-source-page-freaks-out-safari/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 13:32:01 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=265</guid>
		<description><![CDATA[[Please see update below -- this has nothing to do with the MacPaint page.] This has been news for at least a day or two: For those who want to see how it worked &#034;under the hood&#034;, we are pleased, with the permission of Apple Inc., to make available the original program source code of [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>[Please see update below -- this has nothing to do with the MacPaint page.]</em></strong></p>

<p>This has been news for at least a day or two:</p>

<blockquote>
  <p>For those who want to see how it worked &#034;under the hood&#034;, we are pleased, with the permission of Apple Inc., to make available the original program source code of MacPaint and the underlying QuickDraw graphics library.</p>
</blockquote>

<p>What&#039;s odd is how the web page at the Computer History Museum made Safari 5 freak out when I tried to post <a target="_blank" href="http://www.computerhistory.org/highlights/macpaint/">the link</a> on Facebook.  I tried pasting into the Link field, expecting Facebook to display a text excerpt and select a preview image like it always does.  Instead I got an empty window with this in Safari&#039;s address field:</p>

<blockquote>
  <p><pre>http://www.facebook.com/ajax/composer/attachment.php?
data[url]=http%3A%2F%2Fwww.computerhistory.org
%2Fhighlights%2Fmacpaint%2F
&amp;app_id=2309869772&amp;stream_id=724065703
&amp;composer_id=c4c46efc1298210b2a81b4</pre></p>
</blockquote>

<p>I thought I could get around this by pasting the link into the &#034;What&#039;s on your mind?&#034; field.  Now Facebook did display an excerpt and an image, but the &#034;Share&#034; button had no effect.</p>

<p>Ironically, Safari&#039;s &#034;View Source&#034; menu item is disabled when I go to the page in question.</p>

<p>What could be so freaky about a simple web page?  From a quick glance at the page source (viewed in Chrome, which had none of the above problems), it seems to be basic HTML and JavaScript.</p>

<p>Seems like I should report a bug to either Apple or Facebook &#8212; probably both &#8212; but I&#039;m kind of busy now.</p>

<p><strong>UPDATE:</strong> As I learned from Marquis&#039;s comment, this happens in Safari with any link &#8212; even plain old http://www.google.com.  So it has nothing to do with the Computer History Museum site.  I tried the latest versions of other browsers:</p>

<ul>
<li>Opera 10.60: Behaves like Safari (blank window with AJAX URL).</li>
<li>Firefox 3.6.7: I paste the link and hit &#034;Attach&#034;, and nothing happens.</li>
<li>Camino 2.03: No problem.</li>
<li>Chrome 5.0.375.99: No problem, as I mentioned earlier.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/07/21/macpaint-source-page-freaks-out-safari/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>RIM Statement on Antenna Attenuation</title>
		<link>http://www.notesfromandy.com/2010/07/17/rim-statement-on-antenna-attenuation/</link>
		<comments>http://www.notesfromandy.com/2010/07/17/rim-statement-on-antenna-attenuation/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 12:18:40 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=262</guid>
		<description><![CDATA[The smack-talking is not over. The co-CEOs of RIM had this to say: Apple&#039;s attempt to draw RIM into Apple&#039;s self-made debacle is unacceptable. [...] CrackBerry is hosting a poll which they say refutes Jobs&#039;s claims: Update: Well, after a few thousand quick votes it seems some 86% of us BlackBerry Bold 9700 users think [...]]]></description>
			<content:encoded><![CDATA[<p>The smack-talking is not over.  The co-CEOs of RIM had <a target="_blank" href="http://crackberry.com/rim-official-statment-response-apples-iphone-4-antenna-propaganda">this</a> to say:</p>

<blockquote>
  <p>Apple&#039;s attempt to draw RIM into Apple&#039;s self-made debacle is unacceptable. [...]</p>
</blockquote>

<p>CrackBerry is hosting a <a target="_blank" href="http://crackberry.com/poll-can-you-replicated-apples-reported-bold-9700-antenna-issues-your-device-i-cant">poll</a> which they say refutes Jobs&#039;s claims:</p>

<blockquote>
  <p>Update: Well, after a few thousand quick votes it seems some 86% of us BlackBerry Bold 9700 users think El Jobso&#039;s evidence is a big pile of BS. As for the 14% who think it may hold water, well, I&#039;m sure some of those must be legit&#8230; but the numbers speak for themselves. Sorry Steve &#8211; it seems you became part of the media you like to beat up on with this one&#8230; making a story where one doesn&#039;t actually exist.</p>
</blockquote>

<p>Let me see if I understand this paragraph correctly.</p>

<ol>
<li><p>If a vast majority of users don&#039;t have a problem with your phone, there is no real problem and it&#039;s irresponsible to drag that phone into a media circus.  More importantly, this logic doesn&#039;t apply to the iPhone, only to BlackBerry phones.</p></li>
<li><p>If a minority doesn&#039;t agree with your predicted poll result, they&#039;re probably lying, but the majority voters in your self-selected audience are, it goes without saying, beyond suspicion.</p></li>
</ol>

<p>Got it.</p>

<p>(Via <a target="_blank" href="http://daringfireball.net/linked/2010/07/17/rim-antennagate">Gruber</a>.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/07/17/rim-statement-on-antenna-attenuation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixed RSS link</title>
		<link>http://www.notesfromandy.com/2010/07/09/fixed-rss-link/</link>
		<comments>http://www.notesfromandy.com/2010/07/09/fixed-rss-link/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 13:52:02 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.notesfromandy.com/?p=258</guid>
		<description><![CDATA[I just realized the RSS link on this page was for my other blog. Oops! On another note, I&#039;ll be uploading files from last night&#039;s CocoaHeads in the next day or two &#8212; I want to clean up some things.]]></description>
			<content:encoded><![CDATA[<p>I just realized the RSS link on this page was for my other blog.  Oops!</p>

<p>On another note, I&#039;ll be uploading files from last night&#039;s CocoaHeads in the next day or two &#8212; I want to clean up some things.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.notesfromandy.com/2010/07/09/fixed-rss-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.829 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-09-08 13:29:00 -->
