<?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>Blog of Adam K Parker &#187; Tutorials</title>
	<atom:link href="http://www.adamkparker.com/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adamkparker.com</link>
	<description>Home</description>
	<lastBuildDate>Mon, 16 Aug 2010 22:18:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Jailbreak iPad (WiFi or WiFi + 3G) 3.2.1 Problems</title>
		<link>http://www.adamkparker.com/2010-08-16/jailbreak-ipad-wifi-or-wifi-3g-3-2-1-problems/</link>
		<comments>http://www.adamkparker.com/2010-08-16/jailbreak-ipad-wifi-or-wifi-3g-3-2-1-problems/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 22:18:05 +0000</pubDate>
		<dc:creator>Adam Parker</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.adamkparker.com/?p=286</guid>
		<description><![CDATA[<p>A quick tip I&#8217;ve noticed for all those trying to Jailbreak their iPad (WiFi or WiFi + 3G) running 3.2.1. If you&#8217;re using Jailbreakme.com on your iPad a lot of people are getting the error &#8220;file received was invalid&#8221;.</p>
<p>There just so happens to be a very quick and easy fix for this. First go to Settings and press &#8220;Safari&#8221;, swipe down to the bottom and press the &#8220;Clear Cache&#8221; button.</p>
<p>Now relaunch Safari and try Jailbreakme.com, everything should be working perfectly! This only works on 3.2.1 and not 3.2.2 as of right now, but who knows what the future&#8230; <a href="http://www.adamkparker.com/2010-08-16/jailbreak-ipad-wifi-or-wifi-3g-3-2-1-problems/" class="read_more">read more</a></p>]]></description>
		<wfw:commentRss>http://www.adamkparker.com/2010-08-16/jailbreak-ipad-wifi-or-wifi-3g-3-2-1-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Load a Nexus One with the HTC Desire ROM</title>
		<link>http://www.adamkparker.com/2010-02-23/load-nexus-one-with-htc-desire-rom/</link>
		<comments>http://www.adamkparker.com/2010-02-23/load-nexus-one-with-htc-desire-rom/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 05:03:00 +0000</pubDate>
		<dc:creator>Adam Parker</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.adamkparker.com/?p=235</guid>
		<description><![CDATA[<p><strong><span style="font-weight: normal;"><a href="http://www.adamkparker.com/wp-content/uploads/2010/02/desire.jpg"><img class="alignleft size-thumbnail wp-image-249" style="margin: 6px;" title="desire" src="http://www.adamkparker.com/wp-content/uploads/2010/02/desire-150x150.jpg" alt="" width="150" height="150" /></a>I put this blog entry together because I could not find a complete guide on how to install the HTC Desire ROM on a Nexus One, instead I actually had to piece it together from different blogs. I hope this saves you guys a lot of time and a lot of searching.</span></strong></p>
<p><strong> </strong></p>
<p><strong>Prerequisites</strong></p>
<p>First of all, you&#8217;ll need a few things to get started. You&#8217;ll need the Android SDK (<a href="http://developer.android.com/sdk/download.html?v=android-sdk_r04-windows.zip">link</a>), Nexus One USB Drivers (<a href="/downloads/android/nexusone-drivers.rar">link</a>), and to put your phone in debug mode (Settings &#62; Applications &#62; Development &#62; USB debugging).</p>
<p>After your device is in USB debugging&#8230; <a href="http://www.adamkparker.com/2010-02-23/load-nexus-one-with-htc-desire-rom/" class="read_more">read more</a></p>]]></description>
		<wfw:commentRss>http://www.adamkparker.com/2010-02-23/load-nexus-one-with-htc-desire-rom/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Cross Browser Minimum Height (CSS)</title>
		<link>http://www.adamkparker.com/2009-04-23/cross-browser-minimum-height-css/</link>
		<comments>http://www.adamkparker.com/2009-04-23/cross-browser-minimum-height-css/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 20:51:52 +0000</pubDate>
		<dc:creator>Adam Parker</dc:creator>
				<category><![CDATA[Client Side Programming]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[XHTML / CSS]]></category>

		<guid isPermaLink="false">http://www.adamkparker.com/?p=201</guid>
		<description><![CDATA[<p>A issue in my coding life is dealing with IE6 and making things work in it and Firefox (among other browsers). One thing I&#8217;ve learned to deal with successfully is putting minimum heights on DIVs. Some people may put a &#8220;spacer&#8221; image or DIV inside the parent DIV to stretch it out. The problem with that, is sometimes it can be buggy. </p>
<p>Here&#8217;s my solution:</p>
<pre name="code" class="php">
#div_name {
    min-height:500px;
    height:auto !important;
    height:500px;
}
</pre>
<p>Firefox will go off of the min-height property, however, IE will ignore that and will render the element according to the height property.&#8230; <a href="http://www.adamkparker.com/2009-04-23/cross-browser-minimum-height-css/" class="read_more">read more</a></p>]]></description>
		<wfw:commentRss>http://www.adamkparker.com/2009-04-23/cross-browser-minimum-height-css/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
