<?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>It's Just a Bunch of Stuff That Happens &#187; Opinion</title>
	<atom:link href="http://stuffthathappens.com/blog/category/opinion/feed/" rel="self" type="application/rss+xml" />
	<link>http://stuffthathappens.com/blog</link>
	<description>Technology and Geek Stuff by Eric Burke</description>
	<lastBuildDate>Fri, 04 Jun 2010 14:44:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTC EVO Review</title>
		<link>http://stuffthathappens.com/blog/2010/06/03/htc-evo-review/</link>
		<comments>http://stuffthathappens.com/blog/2010/06/03/htc-evo-review/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 13:07:15 +0000</pubDate>
		<dc:creator>Eric Burke</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://stuffthathappens.com/blog/?p=1642</guid>
		<description><![CDATA[The EVO is a great phone with poor software choices.
Like

The kickstand on the back
HDMI port
Front facing secondary camera
The huge display
Fast processor

Do Not Like

Pre-loaded apps on the system partition cannot be removed

Footprints, Friend Stream, HTC Mobile Guide, NASCAR Sprint Cup, Peep, Qik, Quickoffice, Sprint Football, Sprint Zone, Sprint Navigation, Sprint TV, and many others
Many of these [...]]]></description>
			<content:encoded><![CDATA[<p>The EVO is a great phone with poor software choices.</p>
<h3>Like</h3>
<ul>
<li>The kickstand on the back</li>
<li>HDMI port</li>
<li>Front facing secondary camera</li>
<li>The huge display</li>
<li>Fast processor</li>
</ul>
<h3>Do Not Like</h3>
<ul>
<li>Pre-loaded apps on the system partition cannot be removed
<ul>
<li>Footprints, Friend Stream, HTC Mobile Guide, NASCAR Sprint Cup, Peep, Qik, Quickoffice, Sprint Football, Sprint Zone, Sprint Navigation, Sprint TV, and many others</li>
<li>Many of these apps are configured to automatically start, so less savvy users will experience reduced battery life and slower performance.</li>
<li>Even disabling and removing apps from the home screen leaves the &#8220;all applications&#8221; list cluttered.</li>
</ul>
</li>
<li>The hardware buttons (home,menu,back,search) are easy to mistakenly hit. If you get a chance to try this phone, try tapping the bottom edge of the phone completely outside of the home button&#8217;s bounds. Your tap will still register!</li>
<li>The dialer is not Android standard. The HTC replacement is cluttered and harder to navigate.</li>
<li>The large size is nice, but the corners should be more rounded, like the Nexus One. The boxy shape of the EVO makes it feel even larger than it is.</li>
<li>The soft keyboard is not Android standard, and it is cluttered.</li>
<li>*** UPDATE: <a href="http://developer.android.com/reference/android/inputmethodservice/InputMethodService.html">InputMethod full screen mode</a> fails to show a &#8220;Next&#8221; button, even when <code>android:imeOptions="actionNext"</code> is specified as an EditText attribute. This means when users are entering text in landscape mode, they don&#8217;t see the Next button, resulting in a very confusing UI.</li>
<li>This phone has no trackball. When editing, you see a bunch of extra soft key arrows on the keyboard for navigation. These arrows add complexity:</li>
</ul>
<p><img src="http://stuffthathappens.com/blog/wp-content/uploads/2010/06/evo-keyboard.png" alt="HTC EVO Keyboard" title="HTC EVO Keyboard" width="800" height="480" class="alignnone size-full wp-image-1643" /></p>
<p>Android makes vendor customizations possible and this phone demonstrates just how poorly that can be done.</p>
]]></content:encoded>
			<wfw:commentRss>http://stuffthathappens.com/blog/2010/06/03/htc-evo-review/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Interfaces and Implementations</title>
		<link>http://stuffthathappens.com/blog/2010/02/16/interfaces-and-implementations/</link>
		<comments>http://stuffthathappens.com/blog/2010/02/16/interfaces-and-implementations/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 19:59:33 +0000</pubDate>
		<dc:creator>Eric Burke</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://stuffthathappens.com/blog/?p=1630</guid>
		<description><![CDATA[Consider a Java interface and class: Dog and DefaultDog. Which of these two conventions is best?
Option 1 : Dog
Name the interface Dog and call the implementation something like DefaultDog or DogImpl.
Option 2 : IDog
Name the interface IDog and call the implementation Dog, DefaultDog, or whatever else you can come up with.
The Answer
I prefer option 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Consider a Java interface and class: <code>Dog</code> and <code>DefaultDog</code>. Which of these two conventions is best?</p>
<h3>Option 1 : Dog</h3>
<p>Name the interface <code>Dog</code> and call the implementation something like <code>DefaultDog</code> or <code>DogImpl</code>.</p>
<h3>Option 2 : IDog</h3>
<p>Name the interface <code>IDog</code> and call the implementation <code>Dog</code>, <code>DefaultDog</code>, or whatever else you can come up with.</p>
<h3>The Answer</h3>
<p>I prefer option 1 for these reasons:</p>
<ul>
<li>A vast majority of your code will utilize the interface, rather than the implementation. Thus, it&#8217;s best to keep the interface name clean, and reserve the weird names for the implementation classes, which you hardly ever see.</li>
<li>Prefixing names with &#8220;I&#8221; feels like Hungarian notation. The name redundantly specifies what the <code>interface</code> keyword already specifies. Should we also adopt notations for things that are static, final, abstract, etc? I think not.</li>
<li>Many interfaces will have multiple implementations. Thus, each implementation will need a different name. I see no need to <strong>also</strong> put some name discriminator on the interface.</li>
</ul>
<p>Regarding names like &#8220;Impl&#8221; and &#8220;Default&#8221;, I prefer to avoid those when possible. For example, <code>ArrayList</code> and <code>LinkedList</code> are far better names than <code>DefaultList</code> or <code>ListImpl</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://stuffthathappens.com/blog/2010/02/16/interfaces-and-implementations/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Aidan Prefers Chrome</title>
		<link>http://stuffthathappens.com/blog/2009/12/27/aidan-prefers-chrome/</link>
		<comments>http://stuffthathappens.com/blog/2009/12/27/aidan-prefers-chrome/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 00:16:08 +0000</pubDate>
		<dc:creator>Eric Burke</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://stuffthathappens.com/blog/?p=1599</guid>
		<description><![CDATA[Teaching my boys right from wrong&#8230;

Aidan Prefers Chrome from Eric Burke on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p>Teaching my boys right from wrong&#8230;</p>
<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8398257&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=8398257&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object>
<p><a href="http://vimeo.com/8398257">Aidan Prefers Chrome</a> from <a href="http://vimeo.com/user1431804">Eric Burke</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://stuffthathappens.com/blog/2009/12/27/aidan-prefers-chrome/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Android Storage</title>
		<link>http://stuffthathappens.com/blog/2009/11/09/android-storage/</link>
		<comments>http://stuffthathappens.com/blog/2009/11/09/android-storage/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 01:12:50 +0000</pubDate>
		<dc:creator>Eric Burke</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://stuffthathappens.com/blog/?p=1575</guid>
		<description><![CDATA[The new DROID phone only offers 256 MB for app storage, as Taylor Wimberly points out:
The Motorola Droid will be the most powerful Android phone to date when it launches on November 6, 2009. However, the device still features the same shortcomings of all other Android phones. The Droid ships with a 512 MB ROM [...]]]></description>
			<content:encoded><![CDATA[<p>The new DROID phone only offers 256 MB for app storage, as <a href="http://androidandme.com/2009/10/news/google-fails-to-address-app-storage-issue-with-droid-and-android-2-0/">Taylor Wimberly points out</a>:</p>
<blockquote><p>The Motorola Droid will be the most powerful Android phone to date when it launches on November 6, 2009. However, the device still features the same shortcomings of all other Android phones. The Droid ships with a 512 MB ROM which contains only 256 MB available for app storage.</p></blockquote>
<p>Fair enough. From this starting point, the article quickly devolves into speculation and FUD:</p>
<blockquote><p>Google does not support installing apps to the SD card (and likely never will), so developers are limited in what they can create.</p></blockquote>
<p>I question the &#8220;and likely never will&#8221; claim. Google knows about <a href="http://code.google.com/p/android/issues/detail?id=1151">the issue</a> and I believe they will eventually resolve it. It&#8217;s been <a href="http://groups.google.com/group/android-discuss/msg/641d9a7fa0d1b367">discussed</a> in public Google forums, and I think people on the outside are assuming the worst. I think it is far more plausible that the Android team has limited resources and this is a very hard problem to solve correctly.</p>
<h3>Limited In What We Can Create?</h3>
<p>I also question the &#8220;&#8230;so developers are limited in what they can create.&#8221; portion of the above claim. He goes on:</p>
<blockquote><p>Have you seen all the awesome iPhone and iPod Touch games? Hardly any of them would fit on an Android phone. It is not uncommon for popular titles to easily exceed 100 MB. For example, the game Myst takes up a whopping 727MB.</p></blockquote>
<p>The solution is easy. Make your app small and download textures and graphics separately to the SD card.</p>
<h3>In Summary&#8230;</h3>
<ol>
<li>We all want the ability to download apps to the SD card</li>
<li>Google knows about the issue and understands its importance</li>
<li>Google has not officially committed to fixing the issue, or declared a timeline</li>
<li>Without an official Google statement, many members of the Android community assume the worst</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://stuffthathappens.com/blog/2009/11/09/android-storage/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>U.S. Music Royalty Fee</title>
		<link>http://stuffthathappens.com/blog/2009/10/16/u-s-music-royalty-fee/</link>
		<comments>http://stuffthathappens.com/blog/2009/10/16/u-s-music-royalty-fee/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 03:07:05 +0000</pubDate>
		<dc:creator>Eric Burke</dc:creator>
				<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://stuffthathappens.com/blog/?p=1522</guid>
		<description><![CDATA[I haven&#8217;t studied my XM Satellite Radio bill for a few months. Starting a few months ago, they added a &#8220;U.S. Music Royalty Fee&#8221; to my bill, adding $1.98 per month.
They explain it here:
Music royalty rights were established by Congress and are the product of the Copyright Act. Unlike terrestrial radio, both SIRIUS and XM [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t studied my XM Satellite Radio bill for a few months. Starting a few months ago, they added a &#8220;U.S. Music Royalty Fee&#8221; to my bill, adding $1.98 per month.</p>
<p>They <a href="http://www.xmradio.com/about/musicroyalty.xmc">explain it here</a>:</p>
<blockquote><p>Music royalty rights were established by Congress and are the product of the Copyright Act. <strong>Unlike terrestrial radio</strong>, both SIRIUS and XM are required to pay copyright music royalties to recording artists, musicians and recording companies who hold copyrights in sound recordings (the actual recording of a work). These royalties have risen dramatically as a result of a decision of the Copyright Royalty Board.</p></blockquote>
<p>So terrestrial radio gets to skip the fee. I&#8217;m guessing they have more lobbyists and political influence. This reminds me of additional state taxes levied on satellite TV providers.</p>
]]></content:encoded>
			<wfw:commentRss>http://stuffthathappens.com/blog/2009/10/16/u-s-music-royalty-fee/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>News Lets us Down Again</title>
		<link>http://stuffthathappens.com/blog/2009/10/16/news-lets-us-down-again/</link>
		<comments>http://stuffthathappens.com/blog/2009/10/16/news-lets-us-down-again/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 14:07:53 +0000</pubDate>
		<dc:creator>Eric Burke</dc:creator>
				<category><![CDATA[FAIL]]></category>
		<category><![CDATA[Opinion]]></category>

		<guid isPermaLink="false">http://stuffthathappens.com/blog/?p=1509</guid>
		<description><![CDATA[Arianna Huffington sums it up:
After a commercial break, Ed asked me about the story. I told him that, for me, once the boy had been found, there was no story &#8212; just tele-voyeurism. Why continue the wall-to-wall coverage of a story that had turned into a non-story &#8212; on a political show &#8212; during a [...]]]></description>
			<content:encoded><![CDATA[<p>Arianna Huffington <a href="http://www.huffingtonpost.com/arianna-huffington/a-funny-thing-happened-on_b_323120.html">sums it up</a>:</p>
<blockquote><p>After a commercial break, Ed asked me about the story. I told him that, for me, once the boy had been found, there was no story &#8212; just tele-voyeurism. Why continue the wall-to-wall coverage of a story that had turned into a non-story &#8212; on a political show &#8212; during a week when health care, financial reform, and Afghanistan are all at the tipping point?</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://stuffthathappens.com/blog/2009/10/16/news-lets-us-down-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No More Word</title>
		<link>http://stuffthathappens.com/blog/2009/08/12/no-more-word/</link>
		<comments>http://stuffthathappens.com/blog/2009/08/12/no-more-word/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 13:16:49 +0000</pubDate>
		<dc:creator>Eric Burke</dc:creator>
				<category><![CDATA[Opinion]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://stuffthathappens.com/blog/?p=1289</guid>
		<description><![CDATA[A Texas Judge just decided Microsoft cannot sell Word in the US because it saves data as XML. They are expected to pay $200 million dollars. 
That just happened.

Every successful software company will eventually be sued for infringing some patent.
Thus, every successful product &#8220;violates a patent&#8221;, i.e. builds on ideas from some earlier work.
Since every [...]]]></description>
			<content:encoded><![CDATA[<p>A Texas Judge just decided Microsoft <a href="http://news.cnet.com/8301-10805_3-10308013-75.html?tag=TOCmoreStories.0">cannot sell Word in the US</a> because it saves data as XML. They are expected to pay <a href="http://news.cnet.com/8301-13860_3-10245764-56.html?tag=mncol;txt">$200 million dollars</a>. </p>
<p><strong>That just happened</strong>.</p>
<ol>
<li>Every successful software company will eventually be sued for infringing some patent.</li>
<li>Thus, every successful product &#8220;violates a patent&#8221;, i.e. builds on ideas from some earlier work.</li>
<li>Since every software product builds on ideas from previous generations (or as lawyers say, violates a patent), no software is patentable.</li>
</ol>
<p>I believe we should eliminate all software patents. Judges, lawyers, and juries lack the technical expertise to understand why patents like this are so silly.</p>
<h3>Update</h3>
<p>In addition to being fined $200 million dollars for allegedly violating someone else&#8217;s word processing XML patent, Microsoft was <a href="http://news.zdnet.com/2100-9595_22-329645.html">recently granted</a> <a href="http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&#038;Sect2=HITOFF&#038;d=PALL&#038;p=1&#038;u=%2Fnetahtml%2FPTO%2Fsrchnum.htm&#038;r=1&#038;f=G&#038;l=50&#038;s1=7,571,169.PN.&#038;OS=PN/7,571,169&#038;RS=PN/7,571,169">patent 7571169</a> for&#8230;saving Word docs as XML.</p>
]]></content:encoded>
			<wfw:commentRss>http://stuffthathappens.com/blog/2009/08/12/no-more-word/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.306 seconds -->

