<?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>Story Time With Keith</title>
	<atom:link href="http://bellybuttonporn.com/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://bellybuttonporn.com/wp</link>
	<description>It&#039;s like a blog, but...yeah.</description>
	<lastBuildDate>Mon, 22 Oct 2012 06:37:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
		<item>
		<title>Wedding Video!</title>
		<link>http://bellybuttonporn.com/wp/2012/10/22/wedding-video/</link>
		<comments>http://bellybuttonporn.com/wp/2012/10/22/wedding-video/#comments</comments>
		<pubDate>Mon, 22 Oct 2012 06:37:18 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/?p=271</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p></p>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2012/10/22/wedding-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount a new cdrom image with virsh and libvirt on kvm/qemu</title>
		<link>http://bellybuttonporn.com/wp/2012/05/02/how-to-mount-a-new-cdrom-image-with-virsh-and-libvirt-on-kvmqemu/</link>
		<comments>http://bellybuttonporn.com/wp/2012/05/02/how-to-mount-a-new-cdrom-image-with-virsh-and-libvirt-on-kvmqemu/#comments</comments>
		<pubDate>Wed, 02 May 2012 03:27:08 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Tips & Help]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/?p=255</guid>
		<description><![CDATA[You can&#8217;t. This drove me crazy googling for an answer. Most results suggested using virsh&#8217;s attach-disk command. Trouble is,  attach-disk adds a whole new cdrom drive to the guest OS. After several uses our guest OS would have several cdrom drives, each with a once-needed iso mounted. Not exactly what we want. Want to shut [...]]]></description>
			<content:encoded><![CDATA[<h2>You can&#8217;t.</h2>
<p>This drove me crazy googling for an answer.</p>
<p>Most results suggested using virsh&#8217;s attach-disk command. Trouble is,  attach-disk adds a whole new cdrom drive to the guest OS. After several uses our guest OS would have several cdrom drives, each with a once-needed iso mounted. Not exactly what we want.</p>
<p>Want to shut down your guest os, edit its xml file, then restart it every time you need to change disks? Neither do I.</p>
<h2>No wait, you totally can!</h2>
<p>libvirt is an abstraction on top of your virtual machine hypervisor. So libvirt doesn&#8217;t actually touch your guests. It just shuffles commands down to the real hypervisor. In my case it&#8217;s linux kvm/qemu. I wondered if kvm/qemu had a way to change cdrom disks.</p>
<p>Google says that changing the cd image in qemu requires issuing the <a href="http://en.wikibooks.org/wiki/QEMU/Monitor#eject" target="_blank">eject </a>and <a href="http://en.wikibooks.org/wiki/QEMU/Monitor#change" target="_blank">change</a> commands. Awesome.</p>
<p>Now we need to pass a command down through libvirt into the nougaty kvm/qemu center. More reading provided me with virsh&#8217;s qemu-monitor-command which does just that. Use it like this:</p>
<p><code>virsh # qemu-monitor-command &lt;domain&gt; "&lt;command&gt;"</code></p>
<p>By the way—and this will jump up and bite you the first time you try it—but you will need to enclose the command in quotes so virsh passes it to qemu without complaint.</p>
<p>One final thing. We need a device name qemu understands. It&#8217;s not the same as you&#8217;d find in your libvirt xml files or /dev directory. You could probably figure it out, but it&#8217;s much easier to just ask qemu for a list of block devices (e.g. disk drives) like so:</p>
<p><code>virsh # qemu-monitor-command mirage "info block"<br />
drive-virtio-disk0: type=hd removable=0 file=/home/daoist/mirage/mirage.qcow2 ro=0 drv=raw encrypted=0<br />
<strong>drive-ide0-0-0</strong>: <strong><span style="color: #ff0000;">type=cdrom</span></strong> removable=1 locked=0 file=/home/daoist/iso/en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso ro=1 drv=raw encrypted=0<br />
<strong>drive-ide0-1-0: <span style="color: #ff0000;">type=cdrom</span></strong> removable=1 locked=0 file=/home/daoist/iso/virtio-win-0.1-22.iso ro=1 drv=raw encrypted=0</code></p>
<p>See how there&#8217;s two cdrom drives in there? It&#8217;s because I tried the attach-disk technique. From this we can see that the device name we care about is <strong>drive-ide0-0-0</strong>. Tell qemu to eject the disk and then change to the new media:<br />
<code>virsh # qemu-monitor-command mirage "eject drive-ide0-0-0"<br />
virsh # qemu-monitor-command mirage "change drive-ide0-0-0 /home/daoist/iso/en_office_professional_plus_2010_x86_x64_dvd_515529.iso"<br />
virsh #</code><br />
Your guest OS now has a new disk in its cdrom drive.</p>
<div id="attachment_258" class="wp-caption aligncenter" style="width: 310px"><a href="http://bellybuttonporn.com/wp/wp-content/uploads/2012/05/itworked.png"><img class="size-medium wp-image-258" title="It Worked" src="http://bellybuttonporn.com/wp/wp-content/uploads/2012/05/itworked-300x206.png" alt="" width="300" height="206" /></a><p class="wp-caption-text">Windows autoplay popup annoyingly confirms that I changed the disk in its virtual cd rom drive.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2012/05/02/how-to-mount-a-new-cdrom-image-with-virsh-and-libvirt-on-kvmqemu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revenge</title>
		<link>http://bellybuttonporn.com/wp/2012/02/17/revenge/</link>
		<comments>http://bellybuttonporn.com/wp/2012/02/17/revenge/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 02:27:50 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Dwarf Fortress]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/2012/02/17/revenge/</guid>
		<description><![CDATA[The dwarfs&#8217; wagonload of supplies, all the livestock, and 3 unlucky souls (including 2 miners) fell through and into the briney deep when the ice shelf they camped upon melted in the spring. That left the surviving dwarfs with only one logical course of action: They would kill the sea. In other news, bay12games finally [...]]]></description>
			<content:encoded><![CDATA[<p>The dwarfs&#8217; wagonload of supplies, all the livestock, and 3 unlucky souls (including 2 miners) fell through and into the briney deep when the ice shelf they camped upon melted in the spring.</p>
<p>That left the surviving dwarfs with only one logical course of action:</p>
<p>They would kill the sea.</p>
<p>In other news,<br />
<a href="http://www.bay12games.com">bay12games finally released the newest version of Dwarf Fortress.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2012/02/17/revenge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android Basics: What is root?</title>
		<link>http://bellybuttonporn.com/wp/2011/10/28/android-basics-what-is-root/</link>
		<comments>http://bellybuttonporn.com/wp/2011/10/28/android-basics-what-is-root/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 14:34:47 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Tips & Help]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/?p=210</guid>
		<description><![CDATA[Here&#8217;s an answer to a question I get asked often. For the super geeks in the crowd, try to remember that this is a high-level description. There&#8217;s lots of niggling details. For the geeks-in-training in the crowd, have fun with those niggling details. Hey Keith, what is root? What does that mean to root my phone? [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an answer to a question I get asked often. For the super geeks in the crowd, try to remember that this is a high-level description. There&#8217;s lots of niggling details. For the geeks-in-training in the crowd, have fun with those niggling details.</p>
<blockquote><p>Hey Keith, what is root? What does that mean to root my phone?</p></blockquote>
<p>Android is based on Linux.</p>
<p>In Linux, like newer versions of Windows, accounts have different levels of access to the computer. The idea is that since most users don&#8217;t need to install software and change the hardware settings, they shouldn&#8217;t have access to do so accidentally.</p>
<p>In Windows, the account with the most access is called Administrator. In Linux, that account is called root. The root account can make vast and profound changes to the computer, to the point of crippling it. That&#8217;s why on Android you don&#8217;t get access to the root account.</p>
<p>By the way, your phone is just a tiny computer.</p>
<p>So, if you want to make big changes to your phone you need to get root access. The process of doing this is called rooting your phone. Generally this is done by exploiting a bug or problem in the Android operating system. This ranges from ridiculously easy to currently impossible depending on the phone you have. Newer phones and versions of Android fix these problems making it harder and harder to get root access to most phones.</p>
<blockquote><p>Neat! But why would I want root? What can I do with it?</p></blockquote>
<p>Most people who root their phones do so in order to install 3rd-party ROMs. A ROM, also called firmware, is essentially an operating system install file for your phone. Since Android is open-source software that means anyone can go get the original software, change it a bit, and then release it on their own. Lots of volunteers make improved versions of Android. Finding the right one for your phone is going to take some searching. But at least one popular bet is <a title="Cyanogenmod" href="http://www.cyanogenmod.com/" target="_blank">Cyanogenmod</a>. Chances are there&#8217;s a Cyanogenmod ROM for your phone.</p>
<p>Some apps require root. <a title="Titanium Backup on Android Market" href="https://market.android.com/details?id=com.keramidas.TitaniumBackup" target="_blank">Titanium Backup</a> allows you to backup and restore your apps and data. This is very handy in case your phone dies or you install a new ROM (which will erase your phone). You can sometimes tweak the performance of your phone by increasing the CPU speed or changing memory settings. There are apps which allow free tethering, remote access to your phone, and more.</p>
<blockquote><p>How do I get started?</p></blockquote>
<p>Google it! But really, here&#8217;s a few links:</p>
<ul>
<li><a title="XDA Developers forums" href="http://forum.xda-developers.com/" target="_blank">http://forum.xda-developers.com/</a> — XDA Developers is a community centered around phone modification. They probably have a forum for your phone.</li>
<li><a title="Rootzwiki" href="http://wiki.rootzwiki.com/index.php/Main_Page" target="_blank">http://wiki.rootzwiki.com/index.php/Main_Page</a> — Rootzwiki has instructions for rooting lots of devices. There is also a forum there.</li>
<li><a title="Cyanogenmod ROM" href="http://www.cyanogenmod.com/" target="_blank">http://www.cyanogenmod.com/</a> — If you don&#8217;t already have a ROM in mind, Cyanogenmod is a great one to try. It has lots of nice features.</li>
</ul>
<p>&nbsp;</p>
<p>There, that oughta shut the lit—err, hi. You&#8217;re still here? Why? Go play!</p>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2011/10/28/android-basics-what-is-root/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entourage Pocket Edge Google Apps &amp; Market</title>
		<link>http://bellybuttonporn.com/wp/2011/10/05/entourage-pocket-edge-google-apps-market/</link>
		<comments>http://bellybuttonporn.com/wp/2011/10/05/entourage-pocket-edge-google-apps-market/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 01:28:35 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Tips & Help]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/?p=200</guid>
		<description><![CDATA[Ermine + Market = Allmine What this is: Installs Google Apps Fixes a problem with the Edgejr which prevents it from talking to google talk Allows all google apps to function properly Installs Superuser.apk &#38; su (Version 3.0) Installs busybox Yes, you will have a working Market. What this is not: A full ROM. An [...]]]></description>
			<content:encoded><![CDATA[<h1>Ermine + Market = Allmine</h1>
<p>What this is:</p>
<ul>
<li>Installs Google Apps</li>
<li>Fixes a problem with the Edgejr which prevents it from talking to google talk</li>
<li>Allows all google apps to function properly</li>
<li>Installs Superuser.apk &amp; su (Version 3.0)</li>
<li>Installs busybox</li>
<li>Yes, you will have a working Market.</li>
</ul>
<p>What this is not:</p>
<ul>
<li>A full ROM.</li>
<li>An adb/titanium backup/root hack which involves copying apps from your phone.</li>
</ul>
<h2>Prerequisites:</h2>
<ol>
<li>You must have a gapps zip file from <a title="here" href="http://wiki.cyanogenmod.com/wiki/Latest_Version" target="_blank">http://wiki.cyanogenmod.com/wiki/Latest_Version</a></li>
<li>You must have a microSD card.</li>
<li>You must have a USB flashdrive.</li>
<li>I have no idea if this will work if you have already tried installing google apps via other methods.</li>
<li>I have no idea if this will work on the full sized Edge. If you want to send me an Edge to play with, that would be swell.</li>
</ol>
<h2>Instructions:</h2>
<p>I have only tested this package from a stock Dingo (Android 1.6) ROM. If you want to try without downgrading all the way back to Dingo, let me know how it works. If you brick your edgejr, I&#8217;m sorry <img src='http://bellybuttonporn.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you want to wipe your PE and start from scratch, start with <strong>Downgrade to Dingo.</strong></p>
<p>If you have the Stock firmware your PE shipped with and haven&#8217;t monkeyed with it at all, you can start with <strong>Upgrade to Ermine</strong>.</p>
<p>If you have upgraded to Ermine already and haven&#8217;t monkeyed with installing google apps via other methods, you can try to start with <strong>Install Allmine</strong>. If you have any problems, though, you will probably have to start over from the top.</p>
<h3>Downgrade to Dingo</h3>
<ol>
<li>I have made a version of the Dingo &#8220;Golden&#8221; update which skips some of the checks which stop the update from working. Get it here:http://bellybuttonporn.com/android/edgejr/Dingo-update.zip-hellbent.zip<strong>This update will factory reset your PE!</strong> Do not proceed unless you have backed up all your data.</li>
<li>Rename the zip file to &#8220;update.zip&#8221; and put it on the root of your USB flashdrive.</li>
<li>Turn off your PE. Insert the flash drive.</li>
<li>While holding Menu and Rotate on the LCD side, turn the PE on. Continue holding Menu and Rotate.</li>
<li>The PE might reboot a few times before it actually updates. Once you see the Updating screen, you may let go of the Menu and Rotate buttons.The PE will reboot when the update is complete. When it boots up you will have the Dingo ROM. This is Android 1.6, and what it shipped with.</li>
</ol>
<h3>Upgrade to Ermine</h3>
<ol>
<li>Download the Ermine ROM. Get it here:<a href="http://bellybuttonporn.com/android/edgejr/Ermine-update.zip" target="_blank">http://bellybuttonporn.com/android/edgejr/Ermine-update.zip</a></li>
<li>Rename it to &#8220;update.zip&#8221; and put it in the root of your microSD card.</li>
<li>Turn off your PE. Unplug your USB flashdrive and insert the microSD card.</li>
<li>While holding Menu and Rotate on the LCD side, turn the PE on. Continue holding Menu and Rotate.</li>
<li>The PE might reboot a few times before it actually updates. Once you see the Updating screen, you may let go of the Menu and Rotate buttons.The PE will reboot when the update is complete. When it boots up you will have the Ermine ROM. This is Android 2.2, released shortly before Entourage went belly-up.</li>
</ol>
<h3>Install Allmine</h3>
<ol>
<li>Download Allmine. This update fixes a bug with the PE which prevents googletalk (and thus Market) from working. Get it here:<a href="http://bellybuttonporn.com/android/edgejr/Allmine-latest-update.zip" target="_blank">http://bellybuttonporn.com/android/edgejr/Allmine-latest-update.zip</a></li>
<li>Rename it to &#8220;update.zip&#8221; and put it in the root of your USB flashdrive.</li>
<li>Download a Google Apps package from the Cyanogenmod wiki. Go here:<a href="http://wiki.cyanogenmod.com/wiki/Latest_Version" target="_blank">http://wiki.cyanogenmod.com/wiki/Latest_Version</a>Scroll to the bottom. You want the Cyanogenmod 6 HDPI zipfile.</li>
<li>Rename it to &#8220;gapps.zip&#8221; and put it in the root of your USB flashdrive.<strong>Both Allmine (update.zip) and Google Apps (gapps.zip) need to be on your flash drive</strong></li>
<li>Turn off your PE. Unplug your microSD and insert the USB flashdrive.</li>
<li>While holding Menu and Rotate on the LCD side, turn the PE on. Continue holding Menu and Rotate.</li>
<li>The PE might reboot a few times before it actually updates. Once you see the Updating screen, you may let go of the Menu and Rotate buttons.The PE will reboot when the update is complete. When it boots up you will still have the Ermine ROM. Sorry! <img src='http://bellybuttonporn.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  But wait, there&#8217;s more. You&#8217;ll have Google apps, and they&#8217;ll work.When your PE restarts it will want you to complete the registration process. You will find that your on-screen keyboard is too wide so you probably can&#8217;t sign in to your google account. Whoops!</li>
</ol>
<h3>Setup Gingerbread Keyboard (optional)</h3>
<ol>
<li>During the setup wizard, choose to sign in later.</li>
<li>From your home screen, hit menu, then Language &amp; Keyboard. Put a check next to &#8220;Gingerbread Keyboard&#8221;</li>
<li>Hit back, go into &#8220;Accounts &amp; Sync&#8221;. Tap Add account.</li>
<li>Long-press on the input box for your email address. Choose Input method. Choose the gingerbread keyboard.</li>
</ol>
<h3>Setup</h3>
<ol>
<li><strong>Sign in to your google account.</strong></li>
<li>Go into your apps and into Market. Accept the User agreement.Watch about a zillion notifications popup that it&#8217;s updating your google apps to the latest versions.</li>
</ol>
<h2>Caveats &amp; Things to Keep in Mind:</h2>
<ul>
<li>The build.prop in your Pocket Edge is setup to fool Market into thinking it&#8217;s a Nexus One. The setup wizard also thinks it&#8217;s a Nexus One. As a result, you will only see market apps that will work on a Nexus One. Also, if you visit the market website your PE will be listed as Nexus One.</li>
<li>You can try doing the various updates all from a USB flashdrive or from a microSD. I never had much luck. Dingo likes to upgrade via USB, ermine via microSD, and allmine via USB again. No idea why!</li>
<li>A few people have tested this out. It seems to work fine. Proceed at your own risk. Let us know in this thread how it works.</li>
<li>Keep holding the Menu &amp; Rotate buttons until you see the update screen. Really.</li>
<li>If your Allmine update fails for some reason, look in your USB flashdrive for an update.log file. Post that here.</li>
<li>If you have tried some custom wackiness with your PE (perhaps you were hacking on it trying to get google apps to work?) and the upgrade(s) fail, your best bet is to start over with step 1 and wipe the PE.</li>
<li>If your PE doesn&#8217;t respond during an upgrade for 30 minutes, you can turn it off by poking the reset button next to the USB port.</li>
</ul>
<h3>Library fix</h3>
<div>If you&#8217;ve previously applied the Allmine update and your library is broken, applying the newest Allmine update should fix it. If that doesn&#8217;t work, you can try this manually. First, find your serial number. Go into Settings, Edge Settings, Default Device Preferences, and then scroll down to Device Preferences. Write that down.</div>
<pre dir="ltr">su
sqlite3 /intstorage/.edge/.esi-data/.databases/library.db "update esimeta set device='SERIAL_NUMBER_GOES_HERE'"</pre>
<p>Have you moved your Library to your SDcard? (Thanks to bobthesane of mobileread.com forums for this fix)</p>
<pre dir="ltr">su
sqlite3 /sdcard/.edge/.esi-data/.databases/library.db "update esimeta set device='SERIAL_NUMBER_GOES_HERE'"</pre>
<p>Version History</p>
<ul>
<li>0.1.0 &#8211; Initial Release</li>
<li>0.1.1 &#8211; Fixed Library &#8220;could not insert&#8221; bug.</li>
<li>0.2.0 &#8211; Fixed trackpad, camera, and keyboard bug, big thanks to tarvoke and vldmr from mobileread.com forums for the build.prop edit. Added superuser.apk &amp; su v3.0</li>
</ul>
<p>Download links:</p>
<p><a href="http://bellybuttonporn.com/android/edgejr/Dingo-update.zip-hellbent.zip" target="_blank">http://bellybuttonporn.com/android/edgejr/Dingo-update.zip-hellbent.zip</a><br />
<a href="http://bellybuttonporn.com/android/edgejr/Ermine-update.zip" target="_blank">http://bellybuttonporn.com/android/edgejr/Ermine-update.zip</a><br />
<a href="http://bellybuttonporn.com/android/edgejr/Allmine-latest-update.zip" target="_blank">http://bellybuttonporn.com/android/edgejr/Allmine-latest-update.zip</a><br />
<a href="http://wiki.cyanogenmod.com/wiki/Latest_Version" target="_blank">http://wiki.cyanogenmod.com/wiki/Latest_Version</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2011/10/05/entourage-pocket-edge-google-apps-market/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>ASUS Transformer TF101 update 8.6.5.13 US for CWM + Root</title>
		<link>http://bellybuttonporn.com/wp/2011/09/29/asus-transformer-tf101-update-8-6-5-13-us-for-cwm-root/</link>
		<comments>http://bellybuttonporn.com/wp/2011/09/29/asus-transformer-tf101-update-8-6-5-13-us-for-cwm-root/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 03:07:19 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Software Ideas]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/?p=197</guid>
		<description><![CDATA[That title makes sense if you follow the xda-developers forums Anyhow, I have a Transformer Android tablet and there was an update today. It&#8217;s pretty cool; includes a kickass note taking app. I use clockworkmod recovery and my tablet is rooted. This means in addition to the awesome things I get from root access (the [...]]]></description>
			<content:encoded><![CDATA[<p>That title makes sense if you follow the xda-developers forums <img src='http://bellybuttonporn.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Anyhow, I have a Transformer Android tablet and there was an update today. It&#8217;s pretty cool; includes a kickass note taking app.</p>
<p>I use clockworkmod recovery and my tablet is rooted. This means in addition to the awesome things I get from root access (the tablet dispenses candy bars, I swear) I cannot apply the official upgrades. Why not? They&#8217;ll remove my root access.</p>
<p>So when a release is updated some brave soul must step up and modify that update to work on our rooted tablets. This time, I am that brave dummy.</p>
<p>So, if you have an ASUS Transformer TF101 US on stock firmware version 8.6.5.9, use Clockworkmod, and are rooted, then I have an update for you here:</p>
<p><a title="http://bellybuttonporn.com/transformer/kwt-cwm-8.6.5.13-proper.zip" href="http://bellybuttonporn.com/transformer/kwt-cwm-8.6.5.13-proper.zip">http://bellybuttonporn.com/transformer/kwt-cwm-8.6.5.13-proper.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2011/09/29/asus-transformer-tf101-update-8-6-5-13-us-for-cwm-root/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing with the Entourage Pocket Edge</title>
		<link>http://bellybuttonporn.com/wp/2011/09/20/playing-with-the-entourage-pocket-edge/</link>
		<comments>http://bellybuttonporn.com/wp/2011/09/20/playing-with-the-entourage-pocket-edge/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 15:59:22 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Tips & Help]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/?p=194</guid>
		<description><![CDATA[I got in on the $80 woot deal for an Entourage Pocket Edge. I was interested in its big brother (the Edge) when it was released but balked at the price. So did everyone else. Now that the company&#8217;s defunct I got this for a song. There is a little bit of a community for [...]]]></description>
			<content:encoded><![CDATA[<p>I got in on the $80 woot deal for an Entourage Pocket Edge. I was interested in its big brother (the Edge) when it was released but balked at the price. So did everyone else. Now that the company&#8217;s defunct I got this for a song.</p>
<p>There is a little bit of a community for the device. Check here:</p>
<ul>
<li>Mirror of the maker&#8217;s help forum <a href="http://somestupidwebsite.com/download/edgeforums/edge-forums/www.entourageedge.com/forums/">http://somestupidwebsite.com/download/edgeforums/edge-forums/www.entourageedge.com/forums/</a></li>
<li>Extant hacking community: <a href="http://www.mobileread.com/forums/forumdisplay.php?f=218">http://www.mobileread.com/forums/forumdisplay.php?f=218</a></li>
<li>XDA-Devs: <a href="http://forum.xda-developers.com/showthread.php?t=1057206">http://forum.xda-developers.com/showthread.php?t=1057206</a> (do more searching)</li>
<li>OEM ROM downloads: <a href="http://dustyfeet.com/edge/">http://dustyfeet.com/edge/</a></li>
</ul>
<div>It ships with Android 1.6 (entourage&#8217;s code name: Dingo) but there is a beta of Android 2.2 (code name: Ermine). You can find links to download it above or here at my mirror: <a href="http://bellybuttonporn.com/edge/dustyfeet.com/edge/">http://bellybuttonporn.com/edge/dustyfeet.com/edge/</a> There&#8217;s a zillion threads above asking for the update but hardly any tell you how to do it.</div>
<div>
<ol>
<li>Download the pocket edge ermine zip file from one of the above links.</li>
<li>Rename it to update.zip</li>
<li>Copy it to a microSD card or USB flash drive. Insert it into the pocket edge.</li>
<li>With the PE off, hold down the <strong>MENU </strong>and <strong>ROTATE </strong>buttons on the LCD side.</li>
<li>With your other hand, hit the power slider.</li>
<li><strong>HOLD</strong> the menu and rotate buttons for quite a while. Really.</li>
<li>When the &#8220;Updating Software&#8230;&#8221; screen comes up, you can release the buttons.</li>
</ol>
</div>
<div>I bricked my device (rendered it inoperable) by playing around with android and trying to enable the google apps (market, gmail, etc). To fix it I had to reflash the dingo ROM. It was a pain in the ass. If you have to do it, you will have to keep retrying several times.</div>
<div>I have an idea on how to enable the market. I&#8217;m going to try it (again) on my PE after I&#8217;ve got it reupgraded to ermine. When I figure it out I&#8217;ll post.</div>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2011/09/20/playing-with-the-entourage-pocket-edge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add your Youtube Subscriptions to Google Reader</title>
		<link>http://bellybuttonporn.com/wp/2011/08/02/add-your-youtube-subscriptions-to-google-reader/</link>
		<comments>http://bellybuttonporn.com/wp/2011/08/02/add-your-youtube-subscriptions-to-google-reader/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 21:20:53 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Tips & Help]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/?p=186</guid>
		<description><![CDATA[You may have looked up this very question elsewhere and were provided with the following URL to paste in to Google Reader: http://gdata.youtube.com/feeds/base/users/my_youtube_username/newsubscriptionvideos Trouble is, that doesn&#8217;t work. Google reader can&#8217;t seem to understand the feed. Google News users report the same issue. I bet my solution will work for them too. There are a [...]]]></description>
			<content:encoded><![CDATA[<p>You may have looked up this very question elsewhere and were provided with the following URL to paste in to Google Reader:</p>
<pre style="padding-left: 30px;">http://gdata.youtube.com/feeds/base/users/my_youtube_username/newsubscriptionvideos</pre>
<p>Trouble is, that doesn&#8217;t work. Google reader can&#8217;t seem to understand the feed. Google News users report the same issue. I bet my solution will work for them too.</p>
<p>There are a zillion blog posts and forum threads out there about this, so here&#8217;s the answer.</p>
<p>Open up a text editor like notepad and paste this in:</p>
<blockquote>
<pre>&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;opml version="1.0"&gt;
    &lt;head&gt;
        &lt;title&gt;My subscriptions in Google Reader&lt;/title&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;outline text="New Subscription Videos for Me"
            title="New Subscription Videos for Me" type="rss"
            xmlUrl="http://gdata.youtube.com/feeds/base/users/my_youtube_username/newsubscriptionvideos" htmlUrl="http://www.youtube.com/"/&gt;
    &lt;/body&gt;
&lt;/opml&gt;</pre>
</blockquote>
<p>Okay, now go back in and find &#8220;my_youtube_username&#8221; and replace that with your actual username. Save the file as whatever you want.</p>
<p>Open up google reader and go into the settings (currently available via the gray gear in the upper-right corner). Go into Import/Export, then choose the file you just saved. Once back on your Google Reader main page, you&#8217;ll see your subscription feed available with the rest.</p>
<div id="attachment_187" class="wp-caption aligncenter" style="width: 310px"><a href="http://bellybuttonporn.com/wp/wp-content/uploads/2011/08/google_reader_opml_import.png"><img class="size-medium wp-image-187" title="google_reader_opml_import" src="http://bellybuttonporn.com/wp/wp-content/uploads/2011/08/google_reader_opml_import-300x248.png" alt="Click Gear, Import/Export, Choose File, pick your file, Upload" width="300" height="248" /></a><p class="wp-caption-text">39 easy steps!</p></div>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2011/08/02/add-your-youtube-subscriptions-to-google-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I Want a New Phone</title>
		<link>http://bellybuttonporn.com/wp/2011/07/07/i-want-a-new-phone/</link>
		<comments>http://bellybuttonporn.com/wp/2011/07/07/i-want-a-new-phone/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 16:46:38 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/?p=183</guid>
		<description><![CDATA[I want a new phone. It should have the following characteristics: Dual-core processor Big screen At least qHD display Lots of RAM physical slide-out keyboard 4G LTE Preferably on Sprint, but Verizon will work if my unlimited data is grandfathered in. NFC Up until those last three points the Droid 3 would be perfect. Damn them [...]]]></description>
			<content:encoded><![CDATA[<p>I want a new phone.</p>
<p>It should have the following characteristics:</p>
<ul>
<li>Dual-core processor</li>
<li>Big screen</li>
<li>At least qHD display</li>
<li>Lots of RAM</li>
<li>physical slide-out keyboard</li>
<li>4G LTE</li>
<li>Preferably on Sprint, but Verizon will work if my unlimited data is grandfathered in.</li>
<li>NFC</li>
</ul>
<div>Up until those last three points the Droid 3 would be perfect. Damn them for cutting corners on what would otherwise be a perfect phone.</div>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2011/07/07/i-want-a-new-phone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Titanium Backup and CyanogenMod7: Got a problem?</title>
		<link>http://bellybuttonporn.com/wp/2011/05/19/titanium-backup-and-cyanogenmod7-got-a-problem/</link>
		<comments>http://bellybuttonporn.com/wp/2011/05/19/titanium-backup-and-cyanogenmod7-got-a-problem/#comments</comments>
		<pubDate>Thu, 19 May 2011 01:30:56 +0000</pubDate>
		<dc:creator>keith</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Software Ideas]]></category>
		<category><![CDATA[Tips & Help]]></category>

		<guid isPermaLink="false">http://bellybuttonporn.com/wp/?p=175</guid>
		<description><![CDATA[I&#8217;ve run into this and from my searching it seems a few others have too. Here&#8217;s the scenario: You&#8217;re running CyanogenMod 7 on your phone and you decide to try out a different ROM. You use Titanium Backup to save all your apps and data only to find that once you&#8217;re on the new ROM [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve run into this and from my searching it seems a few others have too.</p>
<p>Here&#8217;s the scenario: You&#8217;re running <a title="CyanogenMod" href="http://www.cyanogenmod.com/" target="_blank">CyanogenMod 7</a> on your phone and you decide to try out a different ROM. You use <a title="Android Market link for Titanium Backup" href="https://market.android.com/details?id=com.keramidas.TitaniumBackup" target="_blank">Titanium Backup</a> to save all your apps and data only to find that once you&#8217;re on the new ROM a lot of data doesn&#8217;t seem to stick around. Titanium reports that it&#8217;s successfully restored the data — and some of it really has been restored — but lots of data is missing. It&#8217;s restored to the default value from when you first installed the app.</p>
<p>Now here&#8217;s what&#8217;s really going on.</p>
<p>Titanium is indeed restoring your data. It just makes sure the app isn&#8217;t running and copies all of the database and prefs setting files into its data directory. No magic. That&#8217;s all it does and that&#8217;s all it needs to do. When your app starts up (if it&#8217;s coded well) it will check the integrity of its database files. If they are corrupt it will probably delete them and start over from scratch. Not exactly optimal, but at least the app can still run, right? Well that&#8217;s what&#8217;s happening here. Your app thinks its database file is corrupt.</p>
<p>CyanogenMod 7 uses a newer version of sqlite than other ROMs. (sqlite is the database engine underpinning android&#8217;s apps). This version introduces a new journaling method, the write-ahead-log, abbreviated wal for short. There&#8217;s a variety of technical benefits to using wal but that discussion doesn&#8217;t really impact our issue. Our issue is that the older version of sqlite on other ROMs doesn&#8217;t understand wal, so thinks your databases are corrupt. Bam, bye-bye data!</p>
<p>You can attempt this fix in one of two places. You can either fix the database files <em>before </em>you back them up, or <em>after </em>you restore them. In terms of having the right version of sqlite3 available, it&#8217;s probably best to try this <em>before </em>you back up your apps.</p>
<p>This fix assumes a few things. First, you have root. If you&#8217;re messing with CM7 and Titanium Backup you already have root. Not a problem. Second, you have busybox installed. Again, not a problem since Titanium requires busybox (and even installs it for you). Third, you have to have a sqlite3 binary somewhere on your phone. If your ROM doesn&#8217;t (some don&#8217;t for some reason) include it, you&#8217;re not screwed. I *think* Titanium will detect this and copy a binary to your phone when you click the &#8220;Problems?&#8221; button. If that&#8217;s not the case, there may be other copies of sqlite3 on your phone you can use. Open up a terminal, buddy, you&#8217;re goin in.</p>
<p>Find an sqlite3 binary:</p>
<pre style="padding-left: 30px;">find / -name sqlite3</pre>
<p>This will locate sqlite3 for you, if it&#8217;s on your phone. Once you find it, (mine was in /system/xbin/, i.e. preinstalled in the ROM), make sure it&#8217;s new enough to understand wal.</p>
<pre style="padding-left: 30px;">/path/to/sqlite3 --version</pre>
<p>If you get something 3.7.0 or higher, you&#8217;re in luck. If not, hopefully you found other sqlite3&#8242;s you can try. This is why it&#8217;s a good idea to do this BEFORE backing your apps up and flashing a new ROM. If your ROM has wal, its copy of sqlite3 does too.</p>
<p>I hesitate to call this a script, so here&#8217;s the command to run:</p>
<pre style="padding-left: 30px;">find /data/data/ -regex '.*databases/[^-]*' -exec /path/to/sqlite3 {} 'PRAGMA journal_mode=delete;' \;</pre>
<p>Again, run this in a terminal. And yes, you do need to be root. What this is doing is going through <strong>all</strong> of the database files stored by your apps and setting them to the old journal_mode. You will get errors that certain files ending in -wal or -shm don&#8217;t exist. Don&#8217;t worry about those. When sqlite3 changes the journal_mode back to delete it will get rid of the -wal and -shm files automatically; that confuses find  but doesn&#8217;t hurt anything. If an app is running during the process we won&#8217;t be able to open and update its database files. So make sure to kill them all from the Applications menu (or your task killer if you still have one of those around).</p>
<p>IMHO the best time to do this is on your old ROM (e.g. CM7) before doing the Titanium Backup. If you&#8217;ve already flashed to the new ROM and you&#8217;re stuck, then you can try running the command <em>immediately </em>after restoring everything in Titanium Backup. If you mess something up try not to panic; Titanium still has your data safely backed up. You can try again.</p>
<p>Leave a comment to tell everyone if this worked for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://bellybuttonporn.com/wp/2011/05/19/titanium-backup-and-cyanogenmod7-got-a-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
