<?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>FarmSoft Studios Scratchpad</title>
	<atom:link href="http://scratchpad.farmsoftstudios.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://scratchpad.farmsoftstudios.com</link>
	<description>What We're Thinking About Right Now...</description>
	<lastBuildDate>Tue, 03 May 2011 21:47:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>CSS Property &#8216;-webkit-user-select: none;&#8217; Prevents Forms From Working Properly</title>
		<link>http://scratchpad.farmsoftstudios.com/2011/05/apple-computer/css-property-webkit-user-select-none-prevents-forms-from-working-properly/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2011/05/apple-computer/css-property-webkit-user-select-none-prevents-forms-from-working-properly/#comments</comments>
		<pubDate>Tue, 03 May 2011 21:47:22 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Apple Computer]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=226</guid>
		<description><![CDATA[I have been working on a mobile application for the iPhone/iPod that needs to be installed on the user&#8217;s device in &#8220;fullscreen mode.&#8221; Naturally, I wanted to prevent the user from being bothered by the little magnifying/selecting controls, as well as any long-touch menus. So, I thought that I would make a global CSS declaration: [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working on a mobile application for the iPhone/iPod that needs to be installed on the user&#8217;s device in &#8220;fullscreen mode.&#8221;  Naturally, I wanted to prevent the user from being bothered by the little magnifying/selecting controls, as well as any long-touch menus.  So, I thought that I would make a global CSS declaration:<br />
<code>* {-webkit-user-select: none; -webkit-touch-callout: none;}</code><br />
Worked a treat until I about went bald trying to figure out why my form elements would not accept user-input.  If I touched on a textarea, for example, the keyboard would pop up, and keyup/keydown events would fire, but nothing would get inserted into the element, and no cursor appeared.  I put <code>-webkit-user-select: text;</code> in the form element&#8217;s css declaration, and everything started working great again.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2011/05/apple-computer/css-property-webkit-user-select-none-prevents-forms-from-working-properly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plesk Error: Unable to update hosting preferences: hosting update is failed: object ID is invalid</title>
		<link>http://scratchpad.farmsoftstudios.com/2011/04/web-design/plesk-error-unable-to-update-hosting-preferences-hosting-update-is-failed-object-id-is-invalid/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2011/04/web-design/plesk-error-unable-to-update-hosting-preferences-hosting-update-is-failed-object-id-is-invalid/#comments</comments>
		<pubDate>Tue, 12 Apr 2011 16:29:35 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=217</guid>
		<description><![CDATA[If you get this error in plesk when you are trying to create a new domain, chances are you moved your /var/www/vhosts to a new partition or disk with more space, and you forgot to copy the .skel directory to the new partition.]]></description>
			<content:encoded><![CDATA[<p>If you get this error in plesk when you are trying to create a new domain, chances are you moved your /var/www/vhosts to a new partition or disk with more space, and you forgot to copy the .skel directory to the new partition.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2011/04/web-design/plesk-error-unable-to-update-hosting-preferences-hosting-update-is-failed-object-id-is-invalid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Snippet for the Day</title>
		<link>http://scratchpad.farmsoftstudios.com/2010/12/web-design/php-snippet-for-the-day/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/12/web-design/php-snippet-for-the-day/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 17:41:11 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=215</guid>
		<description><![CDATA[Did you know? As of PHP 5, you can easily modify array&#8217;s elements by preceding $value with &#38;. This will assign reference instead of copying the value. &#60;?php $arr = array(1, 2, 3, 4); foreach ($arr as &#38;$value) { $value = $value * 2; } // $arr is now array( 2, 4, 6, 8 ) [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know?</p>
<blockquote><p>As of PHP 5, you can easily modify array&#8217;s elements by preceding $value with &amp;. This will assign reference instead of copying the value.</p></blockquote>
<pre>&lt;?php $arr = array(1, 2, 3, 4);
foreach ($arr as &amp;$value) {
$value = $value * 2;
}
// $arr is now array( 2, 4, 6, 8 )
unset($value); // break the reference with the last element
?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/12/web-design/php-snippet-for-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Modern Aero Art</title>
		<link>http://scratchpad.farmsoftstudios.com/2010/11/windows/modern-aero-art/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/11/windows/modern-aero-art/#comments</comments>
		<pubDate>Wed, 10 Nov 2010 17:58:05 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=211</guid>
		<description><![CDATA[Just had to notice the amazing new graphics that are available in Windows 7.]]></description>
			<content:encoded><![CDATA[<p>Just had to notice the amazing new graphics that are available in Windows 7.</p>
<div id="attachment_212" class="wp-caption aligncenter" style="width: 310px"><a href="http://scratchpad.farmsoftstudios.com/wp-content/uploads/2010/11/Screen-shot-2010-11-10-at-12.51.27-PM-2.png"><img class="size-medium wp-image-212" title="Modern Graphics" src="http://scratchpad.farmsoftstudios.com/wp-content/uploads/2010/11/Screen-shot-2010-11-10-at-12.51.27-PM-2-300x130.png" alt="" width="300" height="130" /></a><p class="wp-caption-text">Windows 7 Graphic Capabilities</p></div>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/11/windows/modern-aero-art/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AT&amp;T 3G MicroCell</title>
		<link>http://scratchpad.farmsoftstudios.com/2010/10/apple-computer/iphone/att-3g-microcell/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/10/apple-computer/iphone/att-3g-microcell/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 03:47:05 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=208</guid>
		<description><![CDATA[So not only does AT&#38;T not have good service, and make you PAY for an option to have cell service in your home, they also don&#8217;t make it very easy on you to actually use the thing.  So I plug this unit in that I picked up off of Craigslist, and I get the following [...]]]></description>
			<content:encoded><![CDATA[<p>So not only does AT&amp;T not have good service, and make you PAY for an option to have cell service in your home, they also don&#8217;t make it very easy on you to actually use the thing.  So I plug this unit in that I picked up off of Craigslist, and I get the following error, even though the guy I bought it from said that he deactivated it.</p>
<p><strong>FTC007: Device serial number is currently associated to another subscriber. Please check the number and try again. If device was recently acquired from another subscriber, please contact that subscriber and ask them to disconnect the device by visiting att.com/3GMicroCell, selecting &#8220;Manage your AT&amp;T 3G MicroCell&#8221;, logging into their account, and following the online steps for &#8220;Disconnect Your 3G MicroCell Device&#8221;. If the problem persists, please call 1-800-331-0500.</strong></p>
<p>So, I called AT&amp;T; who really doesn&#8217;t know anything more about this than I do, and they tell me that they will have some sort of resolution in about a week.  Nice.</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/10/apple-computer/iphone/att-3g-microcell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steve Jobs&#8217; Thoughts on Flash</title>
		<link>http://scratchpad.farmsoftstudios.com/2010/05/apple-computer/steve-jobs-thoughts-on-flash/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/05/apple-computer/steve-jobs-thoughts-on-flash/#comments</comments>
		<pubDate>Tue, 04 May 2010 16:08:41 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Apple Computer]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[H.264]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Steve Jobs]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=203</guid>
		<description><![CDATA[In an excellently written article, Steve states clearly why Apple is embracing the future, and not relying on flash. http://www.apple.com/hotnews/thoughts-on-flash/]]></description>
			<content:encoded><![CDATA[<p>In an excellently written article, Steve states clearly why Apple is embracing the future, and not relying on flash.</p>
<p><a href="http://www.apple.com/hotnews/thoughts-on-flash/">http://www.apple.com/hotnews/thoughts-on-flash/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/05/apple-computer/steve-jobs-thoughts-on-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;s Navigation Change</title>
		<link>http://scratchpad.farmsoftstudios.com/2010/03/apple-computer/apples-navigation-change/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/03/apple-computer/apples-navigation-change/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 22:09:38 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Apple Computer]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=199</guid>
		<description><![CDATA[You can sure tell where Apple&#8217;s money is coming from, with all the real estate that they are giving the iPod, iPad, iPhone, and iTunes links in the header of their redesigned site.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-medium wp-image-200  aligncenter" title="Apple's Site Navigation Bar" src="http://scratchpad.farmsoftstudios.com/wp-content/uploads/2010/03/Screen-shot-2010-03-12-at-5.06.00-PM-300x19.png" alt="Apple's Site Navigation Bar" width="300" height="19" /></p>
<p>You can sure tell where Apple&#8217;s money is coming from, with all the real estate that they are giving the iPod, iPad, iPhone, and iTunes links in the header of their redesigned site.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/03/apple-computer/apples-navigation-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://scratchpad.farmsoftstudios.com/2010/03/apple-computer/195/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/03/apple-computer/195/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:03:49 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Apple Computer]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[flash]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=195</guid>
		<description><![CDATA[Remind me again why I need a Quad-Core Intel Xeon Mac Pro with 6 Gigs of RAM?  Oh, that&#8217;s right, It&#8217;s to run my Flash Applications online.  Thanks for the reminder.]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-194" title="Chrome Activity Monitor" src="http://scratchpad.farmsoftstudios.com/wp-content/uploads/2010/03/Screen-shot-2010-03-12-at-9.52.14-AM.png" alt="Chrome Activity Monitor" width="617" height="305" />Remind me again why I need a Quad-Core Intel Xeon Mac Pro with 6 Gigs of RAM?  Oh, that&#8217;s right, It&#8217;s to run my Flash Applications online.  Thanks for the reminder.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/03/apple-computer/195/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use class with semantics in mind</title>
		<link>http://scratchpad.farmsoftstudios.com/2010/01/uncategorized/use-class-with-semantics-in-mind/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/01/uncategorized/use-class-with-semantics-in-mind/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:50:32 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=192</guid>
		<description><![CDATA[&#8220;Use class with semantics in mind.&#8221; via Use class with semantics in mind &#8211; Quality Web Tips.]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;Use class with semantics in mind.&#8221;</p></blockquote>
<p>via <a href="http://www.w3.org/QA/Tips/goodclassnames">Use class with semantics in mind &#8211; Quality Web Tips</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/01/uncategorized/use-class-with-semantics-in-mind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP on OS X 10.6 Snow Leopard throwing errors</title>
		<link>http://scratchpad.farmsoftstudios.com/2010/01/uncategorized/php-on-os-x-10-6-snow-leopard-throwing-errors/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/01/uncategorized/php-on-os-x-10-6-snow-leopard-throwing-errors/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 23:04:06 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=187</guid>
		<description><![CDATA[Snow Leopard now uses PHP 5.3, so there are new rules in the playing field. You can fix them by adding date.timezone = "America/Anchorage"; in your php.ini file, or if you don&#8217;t have access to that, you can add this to your own project: date_default_timezone_set('America/Chicago'); Use whatever timezone is appropriate for you, of course. The [...]]]></description>
			<content:encoded><![CDATA[<p>Snow Leopard now uses PHP 5.3, so there are new rules in the playing field.  You can fix them by adding</p>
<p><code>date.timezone = "America/Anchorage";</code></p>
<p>in your php.ini file, or if you don&#8217;t have access to that, you can add this to your own project:</p>
<p><code>date_default_timezone_set('America/Chicago'); </code></p>
<p>Use whatever timezone is appropriate for you, of course. The list is here: <a href="http://us3.php.net/manual/en/timezones.php">http://us3.php.net/manual/en/timezones.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/01/uncategorized/php-on-os-x-10-6-snow-leopard-throwing-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

