<?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>K-Squared Ramblings &#187; G1</title>
	<atom:link href="http://www.hyperborea.org/journal/tag/g1/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hyperborea.org/journal</link>
	<description>Sci-fi, comics, humor, photos...it&#039;s all fair game.</description>
	<lastBuildDate>Sat, 04 Feb 2012 06:27:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Mobile Web Layouts vs. the Viewport</title>
		<link>http://www.hyperborea.org/journal/2010/10/viewport/</link>
		<comments>http://www.hyperborea.org/journal/2010/10/viewport/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 01:46:28 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Annoyances]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[G2]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=9878</guid>
		<description><![CDATA[A few years ago, I tried to give some of my most-used websites a nice, clean look on mobile browsers by adding a stylesheeet with the &#8220;handheld&#8221; type. Then the iPhone came out and ignored them, and everyone copied that &#8230; <a href="http://www.hyperborea.org/journal/2010/10/viewport/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A few years ago, I tried to give some of my most-used websites a nice, clean look on mobile browsers by adding a stylesheeet with the &#8220;handheld&#8221; type. Then the iPhone came out and ignored them, and everyone copied that behavior, making it useless.</p>
<p>Somewhere along the line, I revisited the same CSS techniques, but used the &#8220;max-width&#8221; media query to change the layout on smaller screens. This seemed even better in the long run, since screen size matters more than whether a device is a desktop computer or a handheld computer.  (The iPad was nothing but a long-standing rumor in those days, but demonstrates this clearly.)</p>
<p align="center"><a href="http://www.hyperborea.org/journal/wp-content/uploads/2010/10/Donut1.jpg"><img src="http://www.hyperborea.org/journal/wp-content/uploads/2010/10/Donut1-202x300.jpg" alt="" title="Barry Allen Profile #1 on Android 1.6 Donut" width="202" height="300" class="alignnone size-medium wp-image-9888" /></a> <a href="http://www.hyperborea.org/journal/wp-content/uploads/2010/10/Donut2.jpg"><img src="http://www.hyperborea.org/journal/wp-content/uploads/2010/10/Donut2-202x300.jpg" alt="" title="Barry Allen Profile #2 on Android 1.6 Donut" width="202" height="300" class="alignnone size-medium wp-image-9889" /></a></p>
<p><small>The raw screenshots (click to view) are slightly larger, but since mobile devices often have denser screens, if you&#8217;re reading this on a desktop, it&#8217;s probably about the same physical size.</small></p>
<p>That worked great on the iPhone, and on the G1, which I updated through Android 1.6. I stopped testing it after a while, and no one commented on it, so I figured it was still working. (Reminder to self: that&#8217;s always a mistake.)</p>
<p>Last week I got a G2, which came with Android 2.2. Last night I visited one of my websites, and was presented with this shrunken, unreadable mess&#8230;because Android doesn&#8217;t actually use the real screen size anymore.  It <a href="http://www.quirksmode.org/mobile/viewports.html">pretends it has a bigger screen</a> so that it can present a desktop-like view and then let the user zoom around.  Mobile Firefox does the same thing.</p>
<p align="center"><a href="http://www.hyperborea.org/journal/wp-content/uploads/2010/10/Froyo1.jpg"><img src="http://www.hyperborea.org/journal/wp-content/uploads/2010/10/Froyo1-200x300.jpg" alt="" title="Barry Allen Profile #1 on Android 2.2 Froyo" width="200" height="300" class="alignnone size-medium wp-image-9890" /></a> <a href="http://www.hyperborea.org/journal/wp-content/uploads/2010/10/Froyo2.jpg"><img src="http://www.hyperborea.org/journal/wp-content/uploads/2010/10/Froyo2-199x300.jpg" alt="" title="Barry Allen Profile #2 on Android 2.2 Froyo" width="199" height="300" class="alignnone size-medium wp-image-9891" /></a></p>
<p>&lt;rant&gt;Why is it that every time I find a clean technique to use the same markup on both desktop and mobile devices, some browser manufacturer decides to bypass it in favor of giving the user a clunky imitation desktop view instead of one <em>optimized for their experience</em>?&lt;/rant&gt;</p>
<p>*ahem*</p>
<p>Anyway, it turns out it&#8217;s possible to <a href="http://www.quirksmode.org/blog/archives/2010/09/combining_meta.html">fix this problem</a> with the &lt;meta viewport tag&gt; as shown here:</p>
<p><code>&lt;meta name="viewport" content="width=device-width"&gt;</code></p>
<p>So I can provide nice, clean small-screen layouts again&#8230;after I add extra markup to <strong>every single page</strong> that uses these stylesheets.</p>
<p>Problem solved!</p>
<p>Well, almost.  It fixes the layout&#8230;but it also prevents the user from zooming out for quick scrolling, which can be awfully useful on a long page.</p>
<p><small>Screenshots of the <a href="http://www.hyperborea.org/flash/barry.html">Barry Allen Flash</a> profile, taken using the Android SDK emulator with stock Donut and Froyo images.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/10/viewport/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Stops Syncing When Low on Space</title>
		<link>http://www.hyperborea.org/journal/2010/08/android-sync-space/</link>
		<comments>http://www.hyperborea.org/journal/2010/08/android-sync-space/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 18:37:44 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=9302</guid>
		<description><![CDATA[A few months ago, my phone stopped syncing contacts and messages (including missed-call and voice mail notices!) after I installed a new app. Email and text messages flooded in the moment I uninstalled it. At the time, I figured it &#8230; <a href="http://www.hyperborea.org/journal/2010/08/android-sync-space/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A few months ago, my phone <a href="http://www.hyperborea.org/journal/2010/05/g1-sync/">stopped syncing contacts and messages</a> (including missed-call and voice mail notices!) after I installed a new app.  Email and text messages flooded in the moment I uninstalled it. At the time, I figured it could be the app, or it could simply be that the phone doesn&#8217;t sync if it&#8217;s low on space.</p>
<p>Now I know: <strong>It&#8217;s the lack of space</strong>.</p>
<p>Last night I updated Gesture Search, which pushed the phone into low-space territory. I figured I&#8217;d deal with it later. This morning, I noticed that it wasn&#8217;t reporting new messages on Gmail. Reluctant to uninstall any more apps, I followed Katie&#8217;s suggestion of clearing out old text messages&#8230;and freed up 1.5&nbsp;MB. (I figure it&#8217;s the pictures. They&#8217;d better be worth 1,000 words, because they take up a lot more disk space.) A few seconds later, the @ popped into the notification bar.</p>
<p>You&#8217;d think that 7+ MB would be plenty of room to download email and text messages, or tell the notification system to pop up a new icon. As near as I can tell, though, if the &#8220;Low on Space&#8221; icon is visible, Android won&#8217;t sync anything.</p>
<p>Next time, I&#8217;ll make a point of cleaning things up quickly.</p>
<p>With luck, this won&#8217;t be a problem with my next phone. (Yeah, I&#8217;m still on the G1.) Whether I go for a Samsung Vibrant, a G2, or something else, it should have more storage on the phone <em>and</em> the ability to install apps to the SD card.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/08/android-sync-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>G1 Sync &amp; Texts Blocked? Check Your Apps!</title>
		<link>http://www.hyperborea.org/journal/2010/05/g1-sync/</link>
		<comments>http://www.hyperborea.org/journal/2010/05/g1-sync/#comments</comments>
		<pubDate>Wed, 19 May 2010 18:49:52 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=8151</guid>
		<description><![CDATA[Sometime last week I noticed that I hadn&#8217;t received some alerts sent by text message to my phone. I figured it was probably a transient problem with the email-to-SMS gateway and didn&#8217;t think much more of it. Then on Sunday &#8230; <a href="http://www.hyperborea.org/journal/2010/05/g1-sync/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sometime last week I noticed that I hadn&#8217;t received some alerts sent by text message to my phone. I figured it was probably a transient problem with the email-to-SMS gateway and didn&#8217;t think much more of it.  Then on Sunday I added a contact to my address book in Gmail, and it still hadn&#8217;t synced to my phone a half-hour later. Again, I figured it was just a hiccup.</p>
<p>Yesterday, some more email-to-SMS texts vanished into the ether. I figured something must be up with the gateway, so I changed the alerts so that they would also send to my Gmail account, figuring that if the text messages failed, I&#8217;d still get a notice.</p>
<p>They didn&#8217;t show up either.</p>
<p>That&#8217;s when I realized that nothing on the phone was actually syncing: Not Gmail, not the contacts, not the calendar&#8230;and it just wasn&#8217;t receiving text messages at all.</p>
<p>I tried turning sync off and back on, manually syncing, restarting the phone (both a hard reset cycling the power and a soft reset, sort of the Ctrl-Alt-Delete equivalent using the green, red and menu buttons together), even clearing all the local data for Gmail, Gmail storage, and Calendar storage.</p>
<p>Well, none of that worked. It marked all the apps for syncing, but wouldn&#8217;t actually start.</p>
<p>So it was time to backtrack: <strong>What had I changed recently?</strong></p>
<p>Well, I&#8217;d updated several apps. Off the top of my head I could think of Twidroid Pro and the Weather Channel, but I couldn&#8217;t remember what else.</p>
<p>I&#8217;d also installed a new app, <a href="http://www.layar.com">Layar</a>, an augmented reality app which I&#8217;d seen in an ad for some other phone last week, but hadn&#8217;t actually gotten around to trying out. Adding it triggered a low space warning, but the phone still had 6.8&nbsp;MB free, which ought to have been plenty.</p>
<p>Curiously enough, the last successful sync was right around the time that I installed Layar. Hmm&#8230;</p>
<p>Okay, what the heck.  I uninstalled it. Within seconds, the phone bleeped and picked up the test messages I&#8217;d sent to Gmail. Within a minute, several text messages arrived, including my test from this morning and two alerts from last night.</p>
<p>Well, that was certainly suspicious.</p>
<p>So I installed it again, and this time actually opened the app to try it out (making it display the location of pizza places as seen from my desk), and sent myself a test message at Gmail.  I can&#8217;t say I was surprised when the test message showed up on my desktop, but not on my phone, even when I manually refreshed my inbox in Gmail.  Within a minute of uninstalling the app again, the message showed up.</p>
<p>So, no Layar for me. I don&#8217;t know if it doesn&#8217;t work with the G1, with Android 1.6, or with something else I have on the phone&#8230;or if it&#8217;s not Layar at all, and the phone just needs more space to sync.</p>
<p>The message is clear, though: If your phone stops syncing, or stops receiving text messages, <strong>look at what&#8217;s changed</strong>.  There&#8217;s a good chance that the problem is related.</p>
<p><b>Update:</b> It&#8217;s been about half an hour, and the voice mail notice just popped up&#8230;for a couple of messages I received on Sunday!  It looks like the problem was blocking <em>everything</em> that used the standard sync/notify system on the phone.  Twidroid was working, so I guess it must use its own system.</p>
<p><b>Update 2:</b> I&#8217;ve confirmed that it&#8217;s <a href="http://www.hyperborea.org/journal/2010/08/android-sync-space/">just the low space</a>, not the particular app, that causes the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/05/g1-sync/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>G1 Will Get Android 2.1 After All</title>
		<link>http://www.hyperborea.org/journal/2010/02/g1-android21/</link>
		<comments>http://www.hyperborea.org/journal/2010/02/g1-android21/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 07:59:41 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phones]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=7727</guid>
		<description><![CDATA[Android and Me is reporting that all Android phones in the U.S. will get Android 2.1 updates &#8212; even the G1 &#8212; but that they may be missing some features and some models will need to be wiped as part &#8230; <a href="http://www.hyperborea.org/journal/2010/02/g1-android21/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Android and Me is reporting that all Android phones in the U.S. <a href="http://androidandme.com/2010/02/news/all-u-s-android-phones-to-receive-android-2-1-but-some-will-require-a-wipe/"><em>will</em> get Android 2.1</a> updates &#8212; even the G1 &#8212; but that they may be missing some features and some models <strong>will need to be wiped</strong> as part of the installation.</p>
<p>That makes sense, because it would allow developers to reassign some of the space set aside for over-the-air updates and use it for a larger system instead &#8212; and maybe more space for apps.</p>
<p>The possibility that the G1 was headed for obsolescence before my 2-year contract was up <a href="http://www.hyperborea.org/journal/2009/10/g1-no-android-2-for-you/">didn&#8217;t bother me much at first</a>, but I&#8217;ve watched as even Google has released high-profile <a href="http://www.hyperborea.org/journal/2010/02/buzz-g1/">apps that required Android&nbsp;2</a>.  Sure, I doubt the hardware can handle Google Earth, and Buzz turned out to be a dud, but they&#8217;re signs that Android 1.6 isn&#8217;t going to cut it for much longer.</p>
<p>If it does require a wipe and re-install, I can deal with that.  A lot of the key data is either synced with the cloud or stored on the SD card.  With luck, T-Mobile and HTC will build a decent backup and restore into the process and I won&#8217;t have to reinstall all my apps, bookmarks, etc.</p>
<p><b>Update August 2010:</b> This is looking less and less likely as time goes on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/02/g1-android21/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Why Google Buzz Won&#8217;t Run on Your Android Phone (Yet)</title>
		<link>http://www.hyperborea.org/journal/2010/02/buzz-g1/</link>
		<comments>http://www.hyperborea.org/journal/2010/02/buzz-g1/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 02:20:34 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Buzz]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phones]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=7640</guid>
		<description><![CDATA[I&#8217;ve been hoping to try out Google Buzz, but it hasn&#8217;t hit my Gmail account yet and it won&#8217;t run on my phone*&#8230;even though it&#8217;s a web app. Comments at Android and Me and at Mashable show that I&#8217;m not &#8230; <a href="http://www.hyperborea.org/journal/2010/02/buzz-g1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been hoping to try out <a href="http://www.google.com/buzz">Google Buzz</a>, but it hasn&#8217;t <a href="http://gmailblog.blogspot.com/2010/02/google-buzz-in-gmail.html">hit my Gmail account</a> yet and it won&#8217;t run on my phone*&#8230;even though <a href="http://googlemobile.blogspot.com/2010/02/introducing-google-buzz-for-mobile-see.html">it&#8217;s a web app</a>.  Comments <a href="http://androidandme.com/2010/02/news/google-gets-even-more-social-with-google-buzz/">at Android and Me</a> and <a href="http://mashable.com/2010/02/09/buzz-mobile/">at Mashable</a> show that I&#8217;m not alone.</p>
<p>It turns out that <strong>Buzz <a href="http://www.google.com/support/forum/p/Google+Mobile/thread?tid=3dcfc0961244b5ac&#038;hl=en">uses HTML5 features</a></strong> (specifically appcache, database and location) to store local data and to detect your physical location&#8230;and those capabilities were <a href="http://blogs.nitobi.com/joe/2009/10/29/android-2-0-and-webkit/">added in Android 2.0</a>.</p>
<p>The support thread mentions that they are &#8220;<strong>working on another version</strong> that will make Buzz for mobile accessible on older Android OS versions (and some other smartphones as well).&#8221;  The browser in Android&nbsp;1.6 and below supports similar capabilities through Gears, so they may be planning a Gears-based workaround.</p>
<p>This would be a lot less of an issue if it weren&#8217;t for the fact that most of the Android phones out there still run 1.6 or even Android&nbsp;1.5. IIRC <strong>only the Droid and Nexus One</strong> have officially been updated to 2.0 so far**, so unless you have one of those two models, you&#8217;re more likely to get Buzz to run on an iPhone than Android.</p>
<p>Funny, that.</p>
<p><small>*I&#8217;ve got a G1. It can only access Buzz through the updated Maps app, which brought up a bunch of people in nearby office parks posting things like &#8220;Testing Buzz&#8221; and &#8220;WTF is Google Buzz?&#8221;</small></p>
<p><small>**A few other phones have had updates announced, but I don&#8217;t think any have actually shipped yet. I could be wrong.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/02/buzz-g1/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Android Browser Using Extra Space? Check Gears!</title>
		<link>http://www.hyperborea.org/journal/2010/02/android-gears/</link>
		<comments>http://www.hyperborea.org/journal/2010/02/android-gears/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 16:05:55 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=7628</guid>
		<description><![CDATA[I finally found out what&#8217;s been taking up so much space on the Android web browser on my G1: Gears! Whenever the low-on-space warning* icon shows up on the phone, I open up the list of applications. Then I sort &#8230; <a href="http://www.hyperborea.org/journal/2010/02/android-gears/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I finally found out what&#8217;s been taking up so much space on the Android web browser on my G1: Gears!</p>
<p>Whenever the low-on-space warning* icon shows up on the phone, I open up the list of applications. Then I sort it by size, look for the largest apps that I don&#8217;t use anymore, and start uninstalling.</p>
<p>&#8220;Browser&#8221; is always high on the list, but it&#8217;s all <em>data</em>.  While I could free up the space by telling it to clear everything, I want to hang onto things like bookmarks. Each time the icon popped up, I&#8217;d go back to the app, open up More and then Settings, and clear the cache, or the history, or cookies**, one category at a time.</p>
<p>Then I&#8217;d go back to the App list and it would still be using up several megabytes of space.</p>
<p>Yesterday, it occurred to me to check the Gears settings.  Months ago, I&#8217;d set up two WordPress blogs with Turbo mode, which uses Gears as a permanent cache for the admin area. It&#8217;s great on a desktop or laptop with lots of local space and a slow or flaky Internet connection.  But it wasn&#8217;t helping me much, because&#8230;</p>
<ul>
<li>WordPress Turbo Mode is only really useful if you use the rich-text editor, which I don&#8217;t.</li>
<li>On the phone, I rarely manage either blog through the browser anyway. I usually use <a href="http://android.wordpress.org/">WordPress for Android</a> (formerly wpToGo).</li>
<li>The files it stores take up a whole megabyte &#8212; per blog! (possibly more, depending on how the file system stores them.)</li>
</ul>
<p>So I removed both sites from Gears, along with a couple of other sites that I&#8217;d added, but didn&#8217;t need anymore, and freed up about 3&nbsp;MB.</p>
<p>It should be a while before I see that low-space icon again, and I shouldn&#8217;t have to ration my installed apps quite so closely!</p>
<p><small>*This wouldn&#8217;t be a problem if they&#8217;d given the G1 enough memory for apps in the first place, or if they&#8217;d let us install apps to the SD card (where I still have gigabytes of free space), or if I were willing to root my phone, or if I&#8217;d just bite the bullet and buy a Nexus One.</small></p>
<p><small>**I&#8217;d really like to be able to selectively delete cookies &#8212; or rather, to selectively keep a few cookies and delete the rest &#8212; but that&#8217;s another issue.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/02/android-gears/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CDN Breakdown=Bad. Best Buy Mobile Site=Good</title>
		<link>http://www.hyperborea.org/journal/2009/11/cdn-bestbuy/</link>
		<comments>http://www.hyperborea.org/journal/2009/11/cdn-bestbuy/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 07:59:22 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Best Buy]]></category>
		<category><![CDATA[cdn]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=6086</guid>
		<description><![CDATA[One minor rant, and one success story, sort of connected. The rant: My internet connection is acting kind of flaky tonight. Actually, the connection is fine, but it isn&#8217;t talking to some content delivery network(s). All the small-time websites load &#8230; <a href="http://www.hyperborea.org/journal/2009/11/cdn-bestbuy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One minor rant, and one success story, sort of connected.</p>
<p><strong>The rant:</strong> My internet connection is acting kind of flaky tonight. Actually, the <em>connection</em> is fine, but it isn&#8217;t talking to some content delivery network(s).  All the small-time websites load perfectly, but a lot of the larger ones either aren&#8217;t loading at all or are taking ridiculously long.  I can load the Facebook timeline, for instance, since that&#8217;s dynamically generated&#8230;but it took 20 minutes for it to load a handful of static 16&#215;16 pixel buttons for things like sharing links. *grumble*</p>
<p><strong>On the other end of things,</strong> I had a great experience with Best Buy&#8217;s mobile website earlier today.  I&#8217;m not sure I&#8217;ve ordered anything from BestBuy.com in <em>years</em>. The last thing I can think of was my first decent digital camera&#8230;in <em>2003</em>. Usually if I&#8217;m going to buy from them I just walk into the store.</p>
<p>Meanwhile, despite owning my G1 for almost a year, I&#8217;ve never actually used it to <em>buy</em> anything that I can recall.  Lots of <em>research</em> (ShopSavvy, plus various stores&#8217; websites), but no actual <em>purchases</em>.  I decided I wanted to see if I could place an order using just my phone, and it was extremely easy to:</p>
<ul>
<li>Find the item</li>
<li>Add it to the cart</li>
<li>Select a store for local pickup</li>
<li>Update my billing address</li>
<li>Place the order</li>
</ul>
<p>The only real sticking points were:</p>
<ul>
<li>Store locations only listed cities. Fortunately, I could just hit a &#8220;map&#8221; button and they loaded in the phone&#8217;s Google Maps app.</li>
<li>I had to reset my password, since it had been so long. Since I have POP access to that account, that meant waiting a few minutes for the whole mailbox to download before I could open the message with the new temporary password. Then I had to write it down because K-9 doesn&#8217;t seem to support copying text from incoming mail.</li>
</ul>
<p>Other than that, everything was not only <em>possible</em> using the Android browser, it was <strong>streamlined</strong>. If I hadn&#8217;t needed to update my address and reset my password, I could have been done in two minutes flat.  Maybe three once you factor in typing in the credit card info.</p>
<p>I had a harder time <em>posting a link</em> on Facebook tonight &#8212; <em>on my desktop</em> &#8212; than ordering something on my phone!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2009/11/cdn-bestbuy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>G1: No Android 2 for You!</title>
		<link>http://www.hyperborea.org/journal/2009/10/g1-no-android-2-for-you/</link>
		<comments>http://www.hyperborea.org/journal/2009/10/g1-no-android-2-for-you/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 02:00:35 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Annoyances]]></category>
		<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=5904</guid>
		<description><![CDATA[Okay, I get it. By buying the first device of its kind (i.e. an Android-powered smartphone), I&#8217;m an early adopter. In a sense I was helping out in a massive public beta as Google, mobile phone carriers, and handset manufacturers &#8230; <a href="http://www.hyperborea.org/journal/2009/10/g1-no-android-2-for-you/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Okay, I get it.  By buying the first device of its kind (i.e. an Android-powered smartphone), <strong>I&#8217;m an early adopter</strong>.  In a sense I was helping out in a massive public beta as Google, mobile phone carriers, and handset manufacturers worked out the kinks in the design and realized things like, &#8220;Oh, we really do need more memory than that, don&#8217;t we?&#8221;</p>
<p>But it&#8217;s still annoying to read the <a href="http://androidandme.com/2009/10/news/g1-owners-could-miss-out-on-android-2-0/">early reports</a> <strong>that Android 2.0 &#8220;Eclair&#8221; won&#8217;t fit on the G1</strong>.</p>
<p>We <em>have</em> <a href="http://www.hyperborea.org/journal/2009/08/g1-nearing-upgrade-limits/">done this dance before</a>, when rumors surfaced that the G1 wouldn&#8217;t be able to handle Android 1.6 &#8220;Donut.&#8221;  Fortunately, engineers managed to squeeze it into the space available, and T-Mobile sent out Donut as an OTA (over the air) update to MyTouch and G1 devices alike. But I&#8217;ve had time to think about the issue, and my thoughts basically come down to this:</p>
<ul>
<li>New software eventually reaches a point when it can no longer support old hardware. You can&#8217;t run Snow Leopard on a G4 or Windows 7 on a Pentium II.</li>
<li>When the hardware is usually tied to a fixed-term service contract (in this case, 2 years), the provider really ought to fully support it for the length of that contract.  The G1 launched 1 year ago with (in most cases) a 2-year contract.</li>
<li>Even if this is the last major update, my phone is still better now than it was when I bought it.</li>
</ul>
<p>It will be very nice if history repeats itself, and Google and/or T-Mobile finds a way to cram Eclair onto the G1. Even if it means dropping the convenience of OTA updates and instead requiring you to download it to a PC and update over a USB cable. More likely, though, they&#8217;ll freeze the G1 on Android 1.6 except for bugfix and security updates, and it&#8217;ll be up to unofficial distributions like <a href="http://www.cyanogenmod.com/">cyanogen</a> to bring a newer OS to the older phone.</p>
<p>Because I don&#8217;t really want to mess with rooting my phone and installing a third-party distribution, if this <em>is</em> the end of the line for the G1, well&#8230;Android 2 has some <a href="http://developer.android.com/sdk/android-2.0-highlights.html">really nice features</a> that I&#8217;d really like to be able to use, but nothing that screams &#8220;must have!&#8221; The only real worry I have at this point is that app developers might start <strong>requiring</strong> newer versions of Android.</p>
<p>The other option: buy a newer phone.  I&#8217;ll probably want to do that anyway in a year or so, but I&#8217;m not there yet. It still feels like I just got this one.</p>
<p><b>Update (February 26):</b> It turns out <a href="http://www.hyperborea.org/journal/2010/02/g1-android21/">the G1 <em>will</em> get Android 2.1</a> after all, but will probably require wiping the phone. That makes sense, because it would allow developers to reassign some of the space set aside for over-the-air updates and use it for a larger system instead &#8212; and maybe more space for apps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2009/10/g1-no-android-2-for-you/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Android FTW!</title>
		<link>http://www.hyperborea.org/journal/2009/10/android-ftw/</link>
		<comments>http://www.hyperborea.org/journal/2009/10/android-ftw/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 06:30:00 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2009/10/05/line-items-for-2009-10-05/</guid>
		<description><![CDATA[Wasn&#8217;t aware there was a Sidekick outage. My T-Mobile G1 has been working just fine. Score one for Android! # Wasn&#8217;t planning to have a donut today, but T-Mobile just sent Android 1.6 to my phone. # I&#8217;ve had this &#8230; <a href="http://www.hyperborea.org/journal/2009/10/android-ftw/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Wasn&#8217;t aware there was a Sidekick outage. My T-Mobile G1 has been working just fine. Score one for Android! <a href="http://twitter.com/KelsonV/statuses/4637623881" class="aktt_tweet_time">#</a></li>
<li>Wasn&#8217;t planning to have a donut today, but T-Mobile just sent Android 1.6 to my phone. <a href="http://twitter.com/KelsonV/statuses/4640106220" class="aktt_tweet_time">#</a></li>
</ul>
<p>I&#8217;ve had this phone almost a year now, and it&#8217;s actually a <strong>better phone now</strong> than it was when I bought it!  How cool is that?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2009/10/android-ftw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smartphone Radiation</title>
		<link>http://www.hyperborea.org/journal/2009/09/smartphone-radiation/</link>
		<comments>http://www.hyperborea.org/journal/2009/09/smartphone-radiation/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 06:30:00 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[radiation]]></category>
		<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2009/09/14/line-items-for-2009-09-14/</guid>
		<description><![CDATA[Wow! Glad I didn&#8217;t move to a MyTouch! The G1 isn&#8217;t in the Top 10 Radiation-Emitting smartphones list, but it&#8217;s not exactly low either. # The MyTouch, on the other hand, is #1.]]></description>
			<content:encoded><![CDATA[<p>Wow! Glad I didn&#8217;t move to a MyTouch! The G1 isn&#8217;t in the <a href="http://www.zdnet.com/blog/btl/the-10-smartphones-that-emit-the-most-radiation/24217">Top 10 Radiation-Emitting smartphones</a> list, but it&#8217;s not exactly low either. <a href="http://twitter.com/KelsonV/statuses/3983969942" class="aktt_tweet_time">#</a>  The MyTouch, on the other hand, is #1.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2009/09/smartphone-radiation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

