<?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 &#187; Web Design</title>
	<atom:link href="http://scratchpad.farmsoftstudios.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://scratchpad.farmsoftstudios.com</link>
	<description>What We're Thinking About Right Now...</description>
	<lastBuildDate>Tue, 04 May 2010 16:10:20 +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>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[Web Design]]></category>
		<category><![CDATA[iPhone]]></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>Safari Web Inspector Scrolling Bugs</title>
		<link>http://scratchpad.farmsoftstudios.com/2010/01/apple-computer/safari-web-inspector-scrolling-bugs/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2010/01/apple-computer/safari-web-inspector-scrolling-bugs/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 14:11:39 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Apple Computer]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=184</guid>
		<description><![CDATA[If the inspector is open in docked mode, interaction within the webkit content window – typing text into an input, using a menu, selecting text – causes it to frantically scroll downwards. via BogoJoker » Improving the Web Inspector. &#8230;Glad I&#8217;m not the only one that noticed that behavior!]]></description>
			<content:encoded><![CDATA[<p>If the inspector is open in docked mode, interaction within the webkit content window – typing text into an input, using a menu, selecting text – causes it to frantically scroll downwards.</p>
<p>via <a href="http://blog.bogojoker.com/2009/10/improving-the-web-inspector/">BogoJoker » Improving the Web Inspector</a>.</p>
<p>&#8230;Glad I&#8217;m not the only one that noticed that behavior!</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2010/01/apple-computer/safari-web-inspector-scrolling-bugs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorting Multiple Columns With MySQL</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/06/web-design/sorting-multiple-columns-with-mysql/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/06/web-design/sorting-multiple-columns-with-mysql/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 15:57:13 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[database]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=155</guid>
		<description><![CDATA[Ever wanted to sort your MySQL results by several columns? SELECT * FROM orderspecs ORDER BY height, depth, width; Now what if you want the columns to have different sort orders in the sub-sorted columns? No problem. Just specify the order for each column. SELECT * FROM orderspecs ORDER BY height DESC, depth ASC, width [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to sort your MySQL results by several columns?</p>
<pre>SELECT * FROM orderspecs ORDER BY height, depth, width;</pre>
<p>Now what if you want the columns to have different sort orders in the sub-sorted columns?  No problem.  Just specify the order for each column.</p>
<pre>SELECT * FROM orderspecs ORDER BY height DESC, depth ASC, width DESC;</pre>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/06/web-design/sorting-multiple-columns-with-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Gravity</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/06/web-design/google-gravity/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/06/web-design/google-gravity/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 21:10:32 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=152</guid>
		<description><![CDATA[Gotta love it&#8230;  A Chrome experiment called &#8220;Google Gravity&#8221;  I totally love it.  Works in Safari 4 and somewhat in FireFox as well.]]></description>
			<content:encoded><![CDATA[<p>Gotta love it&#8230;  A <a href="http://www.google.com/chrome/">Chrome</a> <a href="http://www.chromeexperiments.com/">experiment</a> called &#8220;<a href="http://mrdoob.com/projects/chromeexperiments/google_gravity/">Google Gravity</a>&#8221;  I totally love it.  Works in <a href="http://apple.com/safari/">Safari 4</a> and somewhat in <a href="http://www.mozilla.com/firefox/">FireFox</a> as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/06/web-design/google-gravity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting an HTML element&#8217;s class with Javascript</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/04/graphic-design/setting-an-html-elements-class-with-javascript/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/04/graphic-design/setting-an-html-elements-class-with-javascript/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 18:32:07 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=139</guid>
		<description><![CDATA[I was pulling my hair out trying to figure out why I was getting a parse-error with this code&#8230; DUH! document.getElementById('test').class = "test" &#8220;class&#8221; is a reserved name, of course&#8230; So you access it with: document.getElementById('test').className = "test"]]></description>
			<content:encoded><![CDATA[<p>I was pulling my hair out trying to figure out why I was getting a parse-error with this code&#8230; DUH!
<pre>document.getElementById('test').class = "test"</pre>
<p>&#8220;class&#8221; is a reserved name, of course&#8230;  So you access it with:
<pre>document.getElementById('test').className = "test"</pre>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/04/graphic-design/setting-an-html-elements-class-with-javascript/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Plesk Backup Error: &#8216;ERROR Unable to open /opt/psa/var/apspkgarc/archive-index.xml&#8217;</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/04/web-design/plesk-backup-error-error-unable-to-open-optpsavarapspkgarcarchive-indexxml/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/04/web-design/plesk-backup-error-error-unable-to-open-optpsavarapspkgarcarchive-indexxml/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 15:03:31 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[plesk]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=126</guid>
		<description><![CDATA[I was getting the following error when trying to use Plesk&#8217;s backup function: ERROR Unable to open /opt/psa/var/apspkgarc/archive-index.xml The solution is to visit the &#8220;Application Vault&#8221; under the &#8220;Server&#8221; tab of your Plesk interface.  The file gets auto-generated at that point. For more information on how to use Plesk&#8217;s backup feature, read this post]]></description>
			<content:encoded><![CDATA[<p>I was getting the following error when trying to use Plesk&#8217;s backup function:</p>
<pre>ERROR Unable to open /opt/psa/var/apspkgarc/archive-index.xml</pre>
<p>The solution is to visit the &#8220;Application Vault&#8221; under the &#8220;Server&#8221; tab of your Plesk interface.  The file gets auto-generated at that point.</p>
<p>For more information on how to use Plesk&#8217;s backup feature, <a href="http://scratchpad.farmsoftstudios.com/2009/04/linux/using-plesks-backup-feature/">read this post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/04/web-design/plesk-backup-error-error-unable-to-open-optpsavarapspkgarcarchive-indexxml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A List Apart: In Defense of Eye Candy</title>
		<link>http://scratchpad.farmsoftstudios.com/2009/04/graphic-design/a-list-apart-in-defense-of-eye-candy/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2009/04/graphic-design/a-list-apart-in-defense-of-eye-candy/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 13:12:35 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=124</guid>
		<description><![CDATA[A List Apart: Articles: In Defense of Eye Candy. Wonderful article on design&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alistapart.com/articles/indefenseofeyecandy">A List Apart: Articles: In Defense of Eye Candy</a>.</p>
<p>Wonderful article on design&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2009/04/graphic-design/a-list-apart-in-defense-of-eye-candy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 3.0</title>
		<link>http://scratchpad.farmsoftstudios.com/2008/12/graphic-design/web-30/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2008/12/graphic-design/web-30/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 20:34:04 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Applications]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=80</guid>
		<description><![CDATA[Wow. That is all I can say. This is the most impressive web application that I have ever laid eyes on. Check it out here: http://280slides.com]]></description>
			<content:encoded><![CDATA[<p>Wow.  That is all I can say.  This is the most impressive web application that I have ever laid eyes on.</p>
<p>Check it out here: <a href="http://280slides.com">http://280slides.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2008/12/graphic-design/web-30/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The All-New WebKit Inspector</title>
		<link>http://scratchpad.farmsoftstudios.com/2008/12/apple-computer/the-all-new-webkit-inspector/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2008/12/apple-computer/the-all-new-webkit-inspector/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 19:22:29 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Apple Computer]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=77</guid>
		<description><![CDATA[http://webkit.org/blog/197/web-inspector-redesign/ Check out the latest builds of the WebKit project for a cool new way of debugging your HTML/CSS/JavaScript woes.]]></description>
			<content:encoded><![CDATA[<p><a href="http://webkit.org/blog/197/web-inspector-redesign/">http://webkit.org/blog/197/web-inspector-redesign/</a></p>
<p>Check out the latest builds of the WebKit project for a cool new way of debugging your HTML/CSS/JavaScript woes.</p>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2008/12/apple-computer/the-all-new-webkit-inspector/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding A User In MySQL</title>
		<link>http://scratchpad.farmsoftstudios.com/2008/11/web-design/adding-a-user-in-mysql/</link>
		<comments>http://scratchpad.farmsoftstudios.com/2008/11/web-design/adding-a-user-in-mysql/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 15:01:36 +0000</pubDate>
		<dc:creator>FarmSoft Studios</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://scratchpad.farmsoftstudios.com/?p=60</guid>
		<description><![CDATA[Do you need to quickly add a specific user with access to only a certain table? Issue this command as a root or admin user: GRANT ALL ON testdb.* TO 'testuser'@'localhost' IDENTIFIED BY 'pass1'; You can also limit user&#8217;s privileges to specific ip addresses or domains in case you need to access your databases from [...]]]></description>
			<content:encoded><![CDATA[<p>Do you need to quickly add a specific user with access to only a certain table?  Issue this command as a root or admin user:</p>
<pre>GRANT ALL ON testdb.* TO 'testuser'@'localhost' IDENTIFIED BY 'pass1';</pre>
<p>You can also limit user&#8217;s privileges to specific ip addresses or domains in case you need to access your databases from a different host.</p>
<pre>GRANT ALL ON *.* TO 'testuser'@'remote.farmsoftstudios.com' IDENTIFIED BY 'pass1';</pre>
]]></content:encoded>
			<wfw:commentRss>http://scratchpad.farmsoftstudios.com/2008/11/web-design/adding-a-user-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
