<?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; Troubleshooting</title>
	<atom:link href="http://www.hyperborea.org/journal/category/tech/troubleshooting/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, 26 May 2012 08:17:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/><cloud domain='www.hyperborea.org' port='80' path='/journal/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>Setting up a Wireless Network on Linux: Ralink 3062 and Network Manager</title>
		<link>http://www.hyperborea.org/journal/2010/08/wifi-ralink-3062/</link>
		<comments>http://www.hyperborea.org/journal/2010/08/wifi-ralink-3062/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 06:41:29 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Long]]></category>
		<category><![CDATA[Tops]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=9514</guid>
		<description><![CDATA[Ah, memories! These days, setting up hardware on Linux is often easier than it is in Windows. Lots of drivers are built-in and auto-detected, and many are provided through a distribution channel that makes it almost as easy. Wireless networking, &#8230; <a href="http://www.hyperborea.org/journal/2010/08/wifi-ralink-3062/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ah, memories! These days, setting up hardware on Linux is often easier than it is in Windows.  Lots of drivers are built-in and auto-detected, and many are provided through a distribution channel that makes it <em>almost</em> as easy.</p>
<p>Wireless networking, however, is a bit of a throwback to the old days.  Half the hardware doesn&#8217;t have Linux drivers, and half of the devices that do require you to hunt for the driver &#8212; based on the chipset, of course, not on the name or model number on the box &#8212; and compile it yourself. (At least these days, you can sometimes run a tool to adapt the Windows drivers if there&#8217;s no native Linux option.)</p>
<p>The steps I actually <em>needed</em> to take to set up wifi on my Fedora 13 desktop probably only amounted to about 10 minutes.  Unfortunately <strong>it took a lot of false starts</strong> to get there.  I had installed a <a href="http://www.amazon.com/gp/product/B001EHUYZ4?ie=UTF8&#038;tag=hyperborea-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B001EHUYZ4">Zonet ZEW1642</a> PCI card, which my initial research suggested would be supported by the built-in rt2860 drivers. As it turned out, it wasn&#8217;t that simple.  <span id="more-9514"></span></p>
<p><strong>First, what didn&#8217;t work:<br />
</strong></p>
<ul>
<li>Built-in drivers.</li>
<li>The rt2860 drivers (or any others) from RPMFusion.</li>
<li>Manually configuring the card with system-config-network (even after I got the right driver installed).</li>
</ul>
<p><strong>What did work:</strong></p>
<ul>
<li>Download the driver and firmware from <a href="http://www.ralinktech.com/en/04_support/support.php?sn=501">Ralink&#8217;s Linux website</a>.</li>
<li>Build and install the driver.</li>
<li>Start using NetworkManager.</li>
</ul>
<h3>Key Info</h3>
<ol>
<li><code>lspci</code> reports the card as:<code>Network controller: RaLink Device 3062</code></li>
<li>It doesn&#8217;t use the rt2860 driver.</li>
<li>When the driver works, the card will show up as <strong><code>ra0</code></strong> when you run <code>ifconfig</code> or <code>iwconfig</code>. If you run either of those and don&#8217;t see ra0, or if you try to configure ra0 and get a message like &#8220;unknown device,&#8221; you don&#8217;t have the right driver loaded.</li>
<li>When the driver works, NetworkManager will automatically recognize it. You don&#8217;t need to configure the interface first. (This tripped me up several times.)</li>
<li>The NetworkManager and network services conflict with each other.  You have to pick one and disable the other.</li>
</ol>
<p>Most of the information I found on this card&#8230;wasn&#8217;t actually about this card, but about related ones.  What little I did find implied that it uses the same driver as the rt2860.  It doesn&#8217;t. Well, not exactly.  They use the same firmware, and the config file for the rt3062 is called RT2860STA.dat, which confuses the issue.</p>
<h3>Howto</h3>
<ol>
<li>Go to <a href="http://www.ralinktech.com/en/04_support/support.php?sn=501">Ralink&#8217;s Linux page</a> and download the appropriate driver and firmware based on the model number.</li>
<li>Unzip the firmware</li>
<li>As root, copy <code>rt280.bin</code> to <code>/lib/firmware/rt2860.bin</code></li>
<li>Unzip the driver source file (ex: <code>tar xvf  /download/linux/drivers/2010_07_16_RT3062_Linux_STA_v2.4.0.0.tar</code>)</li>
<li>Step into the folder and read the instructions in <code>README_STA</code>
<ol>
<li>You probably won&#8217;t need to change the Makefile or set compiler flags, but you <strong>will</strong> need to set it to work with either NetworkManager or wpa_supplicant. So edit <strong><code>os/linux/config.mk</code></strong> and set <code>HAS_WPA_SUPPLICANT=y</code> and <code>HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y</code> (for NetworkManager). <strong>If you don&#8217;t</strong> change this, <strong>it will not work</strong>.  (Don&#8217;t worry about the next coulple of lines about wpa_supplicant. They don&#8217;t seem to be necessary from what I can tell.)</li>
<li>Build it by typing <code>make</code> in the main folder of the source archive.</li>
<li>As root, copy <code>RT2860STA.dat</code> to <code>/etc/Wireless/RT2860STA/RT2860STA.dat</code></li>
</ol>
</li>
<li>At this point, you can diverge from the directions a bit.</li>
<li>To install, switch to root and run <code>make install</code> in the main folder of the archive. This should copy <code>rt3562sta.o</code> to the appropriate location for your system.</li>
<li>If you haven&#8217;t been using NetworkManager, again as root, run <code>service network stop</code> to disable the standard network service (since it conflicts with NetworkManager).</li>
<li>Enable the driver: again as root, run <code>modprobe rt3562sta</code></li>
<li>If you have NetworkManager running, it should immediately recognize the card and detect nearby networks.</li>
<li>Once you&#8217;ve got everything working, as root, run <code>chkconfig --del network</code> to <em>permanently</em> disable the other daemon. (But make a note of this in case you ever switch back.)</li>
</ol>
<p>One more thing: <strong>keep this folder around!</strong>  Because of the way Linux drivers work, you&#8217;ll need to re-install the drivers the next time your system updates to a new kernel. <strong>This is a pain</strong>, and is the reason I was hoping the built-in drivers or RPMFusion packages would work.  More on that in the next section.</p>
<h3>Follow-Through</h3>
<p><b>Rebooting</b>: Because I had previously removed NetworkManager from my system, I had to make sure the Gnome desktop would load the NM applet.  That was fixed by going to System&rarr;Preferences&rarr;Startup&nbsp;Applications and enabling Network Manager.</p>
<p><b>Kernel Updates</b>: I haven&#8217;t had to do this yet, but based on experience with other Red Hat-based systems where I&#8217;ve had to use third-party drivers, here&#8217;s how to reinstall the driver the next time Fedora sends you a kernel update.</p>
<p>After the new kernel is installed, <del>but before you reboot,</del> go back to the driver folder and run the following:</p>
<ol>
<li><code>make clean</code></li>
<li><code>make</code></li>
<li><code>sudo make install</code> (or just switch to root and run <code>make install</code>)</li>
<li><code>sudo modprobe rt3562sta</code> (or stay as root and just run modprobe)</li>
</ol>
<p>That should take care of it. <del> If you forgot to do this first (and are reading this article on another computer), just run <code>modprobe rt3562sta</code> (as root) after you&#8217;re done.</del></p>
<p><b>Update:</b> I originally suggested rebuilding the module before rebooting, but the Makefile automatically detects the <em>running</em> kernel. You can manually force it to use the source from the newer kernel, but for the sake of these directions, this way is simpler.</p>
<p>This <a href="http://fedoraforum.org/forum/showthread.php?t=197413">18-page thread</a> at Fedora Forum was very informative, though it did point me in a few wrong directions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/08/wifi-ralink-3062/feed/</wfw:commentRss>
		<slash:comments>18</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>Quick Fix: WordPress Social Homes and LinkedIn Icon</title>
		<link>http://www.hyperborea.org/journal/2010/07/social-homes-linkedin-icon/</link>
		<comments>http://www.hyperborea.org/journal/2010/07/social-homes-linkedin-icon/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 01:58:32 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Social Homes]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=8718</guid>
		<description><![CDATA[The Social Homes plugin for WordPress displays a list of icons linking to your various social networking profiles* as a sidebar widget. When you update your list of sites, it calls out and automatically detects the location of each icon. &#8230; <a href="http://www.hyperborea.org/journal/2010/07/social-homes-linkedin-icon/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.silentlycrashing.net/blog/repository/social-homes/">Social Homes</a> plugin for <a href="http://wordpress.org/">WordPress</a> displays a list of icons linking to your various social networking profiles* as a sidebar widget. When you update your list of sites, it calls out and automatically detects the location of each icon.</p>
<p>Unfortunately, the detection doesn&#8217;t work on <a href="http://www.linkedin.com/">LinkedIn</a>, leaving your blog with a broken image, empty square or text label, depending on the visitor&#8217;s web browser.  The plugin developer is aware of the issue, but several months have gone by with no fix.</p>
<p><strong>So I&#8217;ve fixed it.</strong> Here&#8217;s how you can fix it on your blog.</p>
<h3>Technical Details</h3>
<p>First, some background. The problem is that Social Homes is expecting to see this pattern:</p>
<p class="shl_sample"><code>&lt;link rel="shortcut icon" href="/path-to-icon"&gt;</code></p>
<p>But LinkedIn is using this equally valid pattern:</p>
<p class="shl_sample"><code>&lt;link href="/path-to-icon" rel="shortcut icon"&gt;</code></p>
<p>This would be okay if it simply failed to find the icon, because it would fall back to /favicon.ico &#8230; which happens to be correct for LinkedIn.  Instead it&#8217;s skipping past the end of the tag and picking up the next reference, which is currently a stylesheet.</p>
<h3>The Fix</h3>
<p>The simplest fix** is to just make sure it stops at the end of the tag, and let it fall back to favicon.ico.</p>
<p><strong>Here&#8217;s what to do.</strong>  Open up social-homes.php and look for the section titled, &#8220;Social Homes service parser.&#8221;  The function you want is called <code>widget_socialhomes_parse_service</code></p>
<p>Look for the section labeled, &#8220;grab the favicon&#8221; and find these two lines:</p>
<p class="shl_sample"><code>$tmpIcon1 = split('"shortcut icon"', $contents);<br />
$tmpIcon2 = split('href="', $tmpIcon1[0]);</code></p>
<p>Add the middle line below, and change <code>tmpIcon1[1]</code> to <code>tmpIcon1a[1]</code> in what&#8217;s now the third line:</p>
<p class="shl_sample"><code>$tmpIcon1 = split('"shortcut icon"', $contents);<br />
<ins><strong>$tmpIcon1a = split('&gt;', $tmpIcon1[1]);</strong></ins><br />
$tmpIcon2 = split('href="', $tmpIcon1<strong><ins>a</ins></strong>[0]);</code></p>
<p><strong>That&#8217;s it!</strong>  All you have to do now is go back into your Widgets config, open up the Social Homes widget, and re-save it!</p>
<p><small>*Technically, you can link to any website, whether it&#8217;s a social networking profile or not, but that&#8217;s the original intent.</small></p>
<p><small>**A more proper fix would be to change the way Social Homes looks for the icon so that it doesn&#8217;t depend on the link attributes being in the same order, but this is a simpler change.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/07/social-homes-linkedin-icon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Finder Deleting Files on a Linux Share (Solved)</title>
		<link>http://www.hyperborea.org/journal/2010/06/finder-permissions/</link>
		<comments>http://www.hyperborea.org/journal/2010/06/finder-permissions/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 17:23:12 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[filesystems]]></category>
		<category><![CDATA[MacOSX]]></category>
		<category><![CDATA[network]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=8424</guid>
		<description><![CDATA[Last week I connected to my Linux desktop from my Mac laptop, and Finder wouldn&#8217;t let me copy files over to the Linux box. Even stranger, it would delete the original file on the share after stating that it didn&#8217;t &#8230; <a href="http://www.hyperborea.org/journal/2010/06/finder-permissions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Last week I connected to my Linux desktop from my Mac laptop, and Finder wouldn&#8217;t let me copy files over to the Linux box. Even stranger, it would <strong>delete the original</strong> file on the share after stating that it didn&#8217;t have permission to access it!</p>
<p>The error message it kept popping up was: </p>
<blockquote><p>The operation can’t be completed because you don’t have permission to access some of the items.</p></blockquote>
<p>So it didn&#8217;t have permission to access or save the items, but it had permission to delete them?  Clearly the error message wasn&#8217;t telling the whole story!</p>
<p>Even stranger: if I opened a file with an application like TextWrangler or NeoOffice, they had no problem saving it!  It was <strong>only Finder</strong> that had the problem!</p>
<p>Now, I&#8217;ve successfully transferred files back and forth between these computers <em>many</em> times before, but I had changed two things recently:</p>
<ul>
<li>Upgraded the Linux box to Fedora 13.</li>
<li>Installed the Mac OS X 10.6.4 update to Snow Leopard.</li>
</ul>
<p>I didn&#8217;t have much luck searching online, maybe because I was looking for the wrong terms. The closest I came up with were discussions like <a href="http://forum.synology.com/enu/viewtopic.php?f=64&#038;t=16917">this one</a>, but they all involved a server using netatalk or other AFP file sharing implementations.  I&#8217;ve been using samba (Windows-Style SMB shares) on the Linux box ever since I had some problems with Netatalk and decided that since the Mac would connect via Samba, I wouldn&#8217;t worry about it.</p>
<p>I idly posted the problem on Twitter. My brother replied that he&#8217;d run into the same problem (on Ubuntu, IIRC), and suggested turning off Unix extensions in Samba.  That meant opening up <strong><code>/etc/samba/smb.conf</code></strong> on the Linux box and adding the following line to the &#8220;Filesystem Options&#8221; section:</p>
<p><strong><code>unix extensions = no</code></strong></p>
<p>I restarted Samba on the Linux box, and that was it.  The Mac was able to copy files over without any errors!</p>
<p>I hope this post helps someone else solve the same problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/06/finder-permissions/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>How to Get Rid of Windows Live Messenger</title>
		<link>http://www.hyperborea.org/journal/2010/04/removing-windows-live-messenger/</link>
		<comments>http://www.hyperborea.org/journal/2010/04/removing-windows-live-messenger/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 22:37:50 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Annoyances]]></category>
		<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Long]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Live Messenger]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=8010</guid>
		<description><![CDATA[You know how it goes. You install something that you think might be useful or interesting, and it installs something else that just. won&#8217;t. go. away. I ran into the problem while setting up a new Windows&#160;7 system at work. &#8230; <a href="http://www.hyperborea.org/journal/2010/04/removing-windows-live-messenger/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You know how it goes. You install something that you think might be useful or interesting, and it installs something else that <strong>just. won&#8217;t. go. away.</strong> I ran into the problem while setting up a new Windows&nbsp;7 system at work. I installed Windows Live Essentials mainly so that I&#8217;d have them available if I ever had to talk someone through tech support, and it included <strong>Windows Live Messenger</strong>.</p>
<p>I don&#8217;t use Windows Live Messenger. I don&#8217;t even have an account on Windows Live Messenger.  But <strong>every time I logged in</strong> to my system, WLM would pop up a window and ask me to log in.  Every single time.</p>
<p>There was no obvious way to disable it, and most of the suggestions I found online only applied to earlier versions of Windows.</p>
<p>It doesn&#8217;t provide an option to stop it from launching on startup. Or rather, it does, but <a href="http://www.instructables.com/id/How-to-stop-Windows-Live-Messenger-from-popping-up/">only if you&#8217;ve logged into WLM</a>.  Since I didn&#8217;t have an account, I couldn&#8217;t do that, and I wasn&#8217;t about to create one just to turn it off!</p>
<p>It wasn&#8217;t in the Start-Up folder.</p>
<p>I didn&#8217;t see it in Services, so I couldn&#8217;t <a href="http://www.iaskd.com/how-to-disable-windows-live-messenger.html">disable it there</a>.</p>
<p>I tried running System Configuration and disabling it in the Startup tab, but that didn&#8217;t work.</p>
<p>I couldn&#8217;t even find it in the list of programs to uninstall.</p>
<p>But you know what?</p>
<p><strong>I finally got rid of it!</strong>  And it was easier than I expected.</p>
<p>It turns out that if you <strong>uninstall Windows Live Essentials</strong>, you don&#8217;t have to remove the whole thing.  <strong>You can choose <em>which pieces</em> to remove</strong>!  Just tell it to uninstall, and it&#8217;ll bring up a checklist of the pieces that are on the system. Check off Windows Live Messenger, leave the pieces you want to keep, and hit Continue.</p>
<p>Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/04/removing-windows-live-messenger/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Nepomuk</title>
		<link>http://www.hyperborea.org/journal/2010/03/nepomuk/</link>
		<comments>http://www.hyperborea.org/journal/2010/03/nepomuk/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 02:45:34 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Akonadi]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[KMail]]></category>
		<category><![CDATA[Nepomuk]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/?p=7807</guid>
		<description><![CDATA[I think I finally fixed it. This stupid &#8220;OMG Nepomuk is not running!&#8221; error has been dogging me every time I launch KMail, ever since Fedora upgraded KDE. I followed all the directions on fixing Akonadi, and nothing worked. Finally, &#8230; <a href="http://www.hyperborea.org/journal/2010/03/nepomuk/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I think I finally fixed it.</p>
<p>This stupid &#8220;OMG Nepomuk is not running!&#8221; error has been dogging me every time I launch KMail, ever since Fedora upgraded KDE. I followed all the directions on <a href="http://userbase.kde.org/Akonadi">fixing Akonadi</a>, and nothing worked.  Finally, it turned out that there was a config file telling it to load the old-style &#8220;redland&#8221; database &#8212; which doesn&#8217;t exist in current versions of Nepomuk &#8212; instead of the new &#8220;virtuoso&#8221; database.</p>
<p>The file was in <code>~.kde/share/config/nepomukserverrc</code> and the item in question is &#8220;Used Soprano Backend.&#8221; I changed it from &#8220;redland&#8221; to &#8220;virtuosobackend&#8221; as described <a href="http://lists.semanticdesktop.org/pipermail/nepomuk-kde/2009-March/000278.html" class="broken_link" rel="nofollow">here</a> and now it actually starts Nepomuk, and KMail doesn&#8217;t complain when I start it!</p>
<p>Someone at KDE decided to <em>massively</em> overcomplicate things!</p>
<p>*grumble*</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2010/03/nepomuk/feed/</wfw:commentRss>
		<slash:comments>0</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/" class="broken_link" rel="nofollow">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>Case of Mondays: Usability, 2012, and Chkdsk</title>
		<link>http://www.hyperborea.org/journal/2009/12/case-of-mondays/</link>
		<comments>http://www.hyperborea.org/journal/2009/12/case-of-mondays/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 07:30:00 +0000</pubDate>
		<dc:creator>Kelson</dc:creator>
				<category><![CDATA[Computers/Internet]]></category>
		<category><![CDATA[Strange World]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[Tweets]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.hyperborea.org/journal/archives/2009/12/21/line-items-for-2009-12-21/</guid>
		<description><![CDATA[Usability question: Is it better for a form to auto-detect the credit card type from its number, or have the user select it as an error check? # (Consensus on Twitter &#038; Facebook was to have the user select it.) &#8230; <a href="http://www.hyperborea.org/journal/2009/12/case-of-mondays/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Usability question: Is it better for a form to auto-detect the credit card type from its number, or have the user select it as an error check? <a href="http://twitter.com/KelsonV/statuses/6900141756" class="aktt_tweet_time">#</a> (Consensus on Twitter &#038; Facebook was to have the user select it.)</li>
<li>In case you were worried, the <a href="http://www.2012hoax.org/">world will NOT end</a> on this date (or any other) in <strong>2012</strong>.  <a href="http://twitter.com/KelsonV/statuses/6903059220" class="aktt_tweet_time">#</a></li>
<li>Yay, the PC isn&#8217;t totally crashed! Grabbed a current backup &amp; now running chkdsk. Work last week, home this week. Pattern? <a href="http://twitter.com/KelsonV/statuses/6918949620" class="aktt_tweet_time">#</a></li>
<li>Chkdsk is FINALLY running. If you get a &#8220;<strong>cannot open volume for direct access</strong>&#8221; error trying to run it on Windows XP, try running <code>msconfig</code> and selecting a Diagnostic startup. <a href="http://twitter.com/KelsonV/status/6922317247" class="aktt_tweet_time">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.hyperborea.org/journal/2009/12/case-of-mondays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

