<?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>Clayton McIlrath &#187; desktop</title>
	<atom:link href="http://thinkclay.com/tag/desktop/feed" rel="self" type="application/rss+xml" />
	<link>http://thinkclay.com</link>
	<description>Creative Media Design, Powered by Wordpress</description>
	<lastBuildDate>Thu, 29 Jul 2010 18:35:08 +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>Installing Zend Framework on MAMP</title>
		<link>http://thinkclay.com/technology/installing-zend-framework-on-mamp</link>
		<comments>http://thinkclay.com/technology/installing-zend-framework-on-mamp#comments</comments>
		<pubDate>Wed, 09 Dec 2009 03:23:28 +0000</pubDate>
		<dc:creator>Clay McIlrath</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[developer tools]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[zend]]></category>
		<guid isPermaLink="false">http://thinkclay.com/?p=1209</guid>
		<description><![CDATA[As usual, I'm sharing a solution a problem that I personally encountered and couldn't find a great solution for. So I've been using my laptop more and more as my local development environment in order to keep things private and secure while in the dev stage. Among learning how to fully utilize SVN locally, I've been trying to setup my laptop to be a fully functional server while also being extremely easy to maintain and change my environment on the fly. To do this, I'm running MAMP (Mac Apache MySQL PHP) available for free at <a href="http://mamp.info">mamp.info</a> as well as the Zend Framework bundled with Zend Tool. ]]></description>
			<content:encoded><![CDATA[<p>As usual, I&#8217;m sharing a solution a problem that I personally encountered and couldn&#8217;t find a great solution for. So I&#8217;ve been using my laptop more and more as my local development environment in order to keep things private and secure while in the dev stage. Among learning how to fully utilize SVN locally, I&#8217;ve been trying to setup my laptop to be a fully functional server while also being extremely easy to maintain and change my environment on the fly. To do this, I&#8217;m running MAMP (Mac Apache MySQL PHP) available for free at <a href="http://mamp.info">mamp.info</a> as well as the <strong>Zend Framework</strong> bundled with <strong>Zend Tool</strong>. </p>
<ol>
<li>Get MAMP up and running, no special setup is needed here.</li>
<li>Download <a href="http://framework.zend.com/download/latest">Zend Framework</a> and place it wherever you&#8217;d like. I actually retrieved my copy via SVN so that I can easily upgrade it later. To do this open up terminal and follow these commands:
<pre>
cd /Applications/MAMP/
mkdir svn
cd svn
mkdir zendframework
cd zendframework
svn checkout http://framework.zend.com/svn/framework/standard/trunk
</pre>
</li>
<li>Now open your php.ini file located under <em>/Applications/MAMP/conf/php5/php.ini</em></li>
<li>Search for <strong>include_path</strong> (around line 411 on mine) and add the location of your zend framework:
<pre>include_path = ".:/usr/lib/php:/usr/local/lib/php:/Applications/MAMP/svn/zendframework/trunk/library"</pre>
<p>Make sure to include the <em>library</em> directory otherwise you&#8217;ll <strong>get a blank page in Zend Framework</strong>
</li>
<li>Zend Framework also comes with a shell script that will help you with RAD (Rapid Application Deployment), you can create a shortcut to Zend Tools in terminal by adding an alias to your profile under /etc/profile (thanks DS for pointing this out) and make sure to restart terminal after you&#8217;ve done so:
<pre>alias zf=/Applications/MAMP/svn/zendframework/trunk/bin/zf.sh</pre>
</li>
<li>Test if the Zend Tool is installed correctly by showing the version:
<pre>zf show version</pre>
</li>
<li>Finally navigate to the directory you&#8217;d like to create your first project in:
<pre>cd /Applications/MAMP/htdocs/</pre>
<p>and with Zend Tool creating a project is simple:</p>
<pre>zf create project test</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://thinkclay.com/technology/installing-zend-framework-on-mamp/feed</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>AppleScript: YUI Compression</title>
		<link>http://thinkclay.com/technology/applescript-yui-compression</link>
		<comments>http://thinkclay.com/technology/applescript-yui-compression#comments</comments>
		<pubDate>Tue, 09 Jun 2009 23:42:26 +0000</pubDate>
		<dc:creator>Clay McIlrath</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[automate]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[developer tools]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[resources]]></category>
		<guid isPermaLink="false">http://thinkclay.com/?p=995</guid>
		<description><![CDATA[<a href="http://thinkclay.com/technology/applescript-yui-compression"><img class="alignleft" src="http://thinkclay.com/wp-content/uploads/2009/06/apple-script.jpg" alt="applescript" title="apple script" width="300" height="200" /></a>I love learning new programming languages, especially if it solves a need that I have and automates my process a bit more. I spent a couple hours learning AppleScript which is a programming language for Mac that let's you access the API and make basic function calls to cocoa based programs and applications. One such need that I had is compressing my JavaScript and CSS files before uploading to the web server. There are many applications and ways to this online, but they all are three or more steps to get the compressed file. A while back I downloaded the YUI java applet to do the compression on my desktop via Terminal, which sped up my process a bit, but since I only used it once in a great while, I'd always have to look up the parameters that I needed to pass to it. So today when I went to look it up, I decided I was going to be adventurous and try something new. That adventure led me to a solution that I'm happy with, and you may enjoy as well. ]]></description>
			<content:encoded><![CDATA[<p>I love learning new programming languages, especially if it solves a need that I have and <strong>automates</strong> my process a bit more. I spent a couple hours learning AppleScript which is a programming language for Mac that let&#8217;s you access the API and make basic function calls to cocoa based programs and applications. One such need that I had is compressing my <strong>JavaScript</strong> and <strong>CSS</strong> files before uploading to the web server. There are many applications and ways to this online, but they all are three or more steps to get the compressed file. A while back I downloaded the <a href="http://developer.yahoo.com/yui/compressor/">YUI java applet</a> to do the compression on my <strong>Mac</strong> via Terminal, which sped up my process a bit. However, since I only used it once in a great while, I&#8217;d always have to look up the parameters that I needed to pass to the compressor. So today when I went to look up the syntax, I decided I was going to be adventurous and try something new. That adventure led me to an <strong>applescript</strong> solution that I&#8217;m happy with, and you may enjoy as well. </p>
<h2>Download the YUI Compression AppleScript</h2>
<p><a href='http://thinkclay.com/wp-content/uploads/2009/06/yui-compressor-script.zip'><img src="http://thinkclay.com/wp-content/uploads/2009/06/download-yui-compressor-applescript.png" alt="download the YUI compressor applescript" title="download the YUI compressor applescript" width="490" height="96" /></a></p>
<h2>The AppleScript Source:</h2>
<div class="wp_syntax"><div class="code"><pre class="applescript" style="font-family:monospace;"><span style="color: #ff0033; font-weight: bold;">on</span> <span style="color: #0066ff;">run</span>
	<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Finder&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">set</span> this_item <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #0066ff;">choose file</span> <span style="color: #ff0033; font-weight: bold;">with</span> prompt <span style="color: #009900;">&quot;Choose CSS or JS file:&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">set</span> dir <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #ff0033;">the</span> <span style="color: #0066ff;">selection</span> <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">alias</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> mypath <span style="color: #ff0033; font-weight: bold;">to</span> posix_path<span style="color: #000000;">&#40;</span>this_item<span style="color: #000000;">&#41;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> dirpath <span style="color: #ff0033; font-weight: bold;">to</span> posix_path<span style="color: #000000;">&#40;</span>dir<span style="color: #000000;">&#41;</span>
&nbsp;
	runCompression<span style="color: #000000;">&#40;</span>mypath, dirpath<span style="color: #000000;">&#41;</span>
<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #0066ff;">run</span>
&nbsp;
<span style="color: #ff0033; font-weight: bold;">on</span> posix_path<span style="color: #000000;">&#40;</span>mac_path<span style="color: #000000;">&#41;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> mac_path <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#40;</span>mac_path <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span><span style="color: #000000;">&#41;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> root <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#40;</span><span style="color: #0066ff;">offset of</span> <span style="color: #009900;">&quot;:&quot;</span> <span style="color: #ff0033; font-weight: bold;">in</span> mac_path<span style="color: #000000;">&#41;</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> rootdisk <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #000000;">&#40;</span>characters <span style="color: #000000;">1</span> <span style="color: #ff0033;">thru</span> <span style="color: #000000;">&#40;</span>root <span style="color: #000000;">-</span> <span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033; font-weight: bold;">of</span> mac_path<span style="color: #000000;">&#41;</span>
	<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Finder&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0066ff;">disk</span> <span style="color: #000000;">&#40;</span>rootdisk <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">string</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">the</span> startup <span style="color: #0066ff;">disk</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> unixpath <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;/&quot;</span> <span style="color: #000000;">&amp;</span> <span style="color: #000000;">&#40;</span>characters <span style="color: #000000;">&#40;</span>root <span style="color: #000000;">+</span> <span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span> <span style="color: #ff0033;">thru</span> <span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">of</span> mac_path<span style="color: #000000;">&#41;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> unixpath <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;/Volumes:&quot;</span> <span style="color: #000000;">&amp;</span> mac_path
		<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">if</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
	<span style="color: #ff0033; font-weight: bold;">set</span> chars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #ff0033;">every</span> character <span style="color: #ff0033; font-weight: bold;">of</span> unixpath
	<span style="color: #ff0033; font-weight: bold;">repeat</span> <span style="color: #ff0033; font-weight: bold;">with</span> i <span style="color: #ff0033; font-weight: bold;">from</span> <span style="color: #000000;">2</span> <span style="color: #ff0033; font-weight: bold;">to</span> length <span style="color: #ff0033; font-weight: bold;">of</span> chars
		<span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">equal</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;/&quot;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;:&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span> <span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">equal</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;:&quot;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;/&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span> <span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">equal</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;'&quot;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;<span style="color: #000000; font-weight: bold;">\\</span>'&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span> <span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">equal</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;<span style="color: #000000; font-weight: bold;">\&quot;</span>&quot;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;<span style="color: #000000; font-weight: bold;">\\</span>&quot;</span> <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot;<span style="color: #000000; font-weight: bold;">\&quot;</span>&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span> <span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">equal</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;*&quot;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;<span style="color: #000000; font-weight: bold;">\\</span>*&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span> <span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">equal</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;?&quot;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;<span style="color: #000000; font-weight: bold;">\\</span>?&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span> <span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">equal</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot; &quot;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;<span style="color: #000000; font-weight: bold;">\\</span> &quot;</span>
		<span style="color: #ff0033; font-weight: bold;">else</span> <span style="color: #ff0033; font-weight: bold;">if</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">text</span> <span style="color: #ff0033; font-weight: bold;">is</span> <span style="color: #ff0033;">equal</span> <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;<span style="color: #000000; font-weight: bold;">\\</span>&quot;</span> <span style="color: #ff0033; font-weight: bold;">then</span>
			<span style="color: #ff0033; font-weight: bold;">set</span> <span style="color: #0066ff;">item</span> i <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033; font-weight: bold;">to</span> <span style="color: #009900;">&quot;<span style="color: #000000; font-weight: bold;">\\</span><span style="color: #000000; font-weight: bold;">\\</span>&quot;</span>
		<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">if</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">repeat</span>
	<span style="color: #ff0033; font-weight: bold;">return</span> <span style="color: #ff0033;">every</span> <span style="color: #0066ff;">item</span> <span style="color: #ff0033; font-weight: bold;">of</span> chars <span style="color: #ff0033;">as</span> <span style="color: #0066ff;">string</span>
<span style="color: #ff0033; font-weight: bold;">end</span> posix_path
&nbsp;
<span style="color: #ff0033; font-weight: bold;">on</span> runCompression<span style="color: #000000;">&#40;</span>mypath, dirpath<span style="color: #000000;">&#41;</span>
	<span style="color: #ff0033; font-weight: bold;">tell</span> <span style="color: #0066ff;">application</span> <span style="color: #009900;">&quot;Terminal&quot;</span>
		<span style="color: #0066ff;">do shell script</span> <span style="color: #009900;">&quot;java -jar &quot;</span> <span style="color: #000000;">&amp;</span> dirpath <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot;yuicompressor-2.4.2.jar &quot;</span> <span style="color: #000000;">&amp;</span> mypath <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot; -o &quot;</span> <span style="color: #000000;">&amp;</span> mypath <span style="color: #000000;">&amp;</span> <span style="color: #009900;">&quot;.min.js&quot;</span>
	<span style="color: #ff0033; font-weight: bold;">end</span> <span style="color: #ff0033; font-weight: bold;">tell</span>
<span style="color: #ff0033; font-weight: bold;">end</span> runCompression</pre></div></div>
<p>If you like this <strong>YUI Compression AppleScript</strong> please do share that with me, as praise is my sole motivation for producing scripts for others. I&#8217;ve only skimmed the surface of applescript, but with so few scripts out there that meet the needs that I have, I&#8217;m sure I could quickly make some other web developer tools for Mac as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkclay.com/technology/applescript-yui-compression/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photoshop Shortcuts (PC)</title>
		<link>http://thinkclay.com/technology/photoshop-shortcuts-pc</link>
		<comments>http://thinkclay.com/technology/photoshop-shortcuts-pc#comments</comments>
		<pubDate>Tue, 24 Mar 2009 18:52:17 +0000</pubDate>
		<dc:creator>Clay McIlrath</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[developer tools]]></category>
		<category><![CDATA[digital art]]></category>
		<category><![CDATA[goals]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[MAC]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[photoshop]]></category>
		<guid isPermaLink="false">http://thinkclay.com/?p=799</guid>
		<description><![CDATA[<a href="http://thinkclay.com/creativity/photoshop-shortcuts-pc"><img class="alignleft" src="http://thinkclay.com/wp-content/uploads/2009/03/photoshop-shortcuts.jpg" alt="image preview of photoshop shortcuts" title="photoshop shortcuts" width="300" height="200" class="size-full wp-image-809" /></a>Learning keyboard shortcuts helps you improve efficiency and performance in any almost any program. I find this especially true for Photoshop since much of the design process is done with a mouse, it helps to train the other hand to use shortcuts and type in small amounts. In posting this, I hope to reference it myself to memorize and learn these shortcuts, and hopefully others will bookmark and reference this page as well.]]></description>
			<content:encoded><![CDATA[<p><a href="http://thinkclay.com/creativity/photoshop-shortcuts-pc"><img class="alignleft" src="http://thinkclay.com/wp-content/uploads/2009/03/photoshop-shortcuts.jpg" alt="image preview of photoshop shortcuts" title="photoshop shortcuts" width="300" height="200" class="size-full wp-image-809" /></a>Learning keyboard shortcuts helps you improve efficiency and performance in any almost any program. I find this especially true for Photoshop since much of the design process is done with a mouse, it helps to train the other hand to use shortcuts and type in small amounts. In posting this, I hope to reference it myself to memorize and learn these shortcuts, and hopefully others will bookmark and reference this page as well.</p>
<table class="data" width="100%" cellspacing="0" cellpadding="0" border="1">
<tbody>
<tr>
<th>Shortcut / Key Combo</th>
<th>Result</th>
<th>Explained</th>
</tr>
<tr>
<td>Alt + Ctrl + A</td>
<td>Select All</td>
<td>Slect All Layers in the Document</td>
</tr>
<tr>
<td>Ctrl + Shift + C</td>
<td>Copy Merged</td>
<td>Useful for copying a selected area what you see on screen.</td>
</tr>
<tr>
<td>Ctrl + H</td>
<td>Hide/Show Guidelines</td>
<td>Useful to Hide Guidelines while working with lot of layer with many guidelines for alignment.</td>
</tr>
<tr>
<td>Ctrl + A + Any arrow key</td>
<td>Selects present Layer</td>
<td>makes selection of present selected layer  (except text layer)</td>
</tr>
<tr>
<td>Ctrl + Mouse click on Layer (layer palette)</td>
<td>Makes Layer Selection</td>
<td>-</td>
</tr>
<tr>
<td>Ctrl + Scroll Mouse (up/down)</td>
<td>Moves document left or right</td>
<td>The shorcut Navigate the document left or right</td>
</tr>
<tr>
<td>Ctrl + Shift + > or <</td>
<td>Increase Decrease the font size</td>
<td>Select  text, press Ctrl + Shift + > or < to increase / decrease font size.</td>
</tr>
<tr>
<td>Ctrl + Alt + Scroll Mouse</td>
<td>Zoom In/Out</td>
<td>Zoom In/Out</td>
</tr>
<tr>
<td>Double click  Zoom tool</td>
<td>Zoom to 100%</td>
<td>Double click on the Zoom tool will zoom document  to 100%.</td>
</tr>
<tr>
<td>Tab</td>
<td>Toggle Tools Panel</td>
<td>Press Tab to toggle tools panel</td>
</tr>
<tr>
<td>Shift + Tab</td>
<td>Show / Hide Palette Windows</td>
<td>Show / Hide your active Palette Windows</td>
</tr>
<tr>
<td>Caps lock</td>
<td>Precise cursor</td>
<td>Caps lock displays tool cursor in precise  mode</td>
</tr>
<tr>
<td>Ctrl + Tab</td>
<td>Switch between document windows</td>
<td>Switch between document windows</td>
</tr>
<tr>
<td>Select Text – Ctrl + Enter + Enter + Move arrow  keys</td>
<td>Change font style</td>
<td>Easy to select your desired font style from hundreds of fonts available with just arrow keys</td>
</tr>
<tr>
<td>F5</td>
<td>Show/Hide Brushes palette</td>
<td>Press F5 to Show/Hide Brushes palette and Press B to activate the palette</td>
</tr>
<tr>
<td>F6</td>
<td>Show/Hide Color palette</td>
<td>Show/Hide Color palette</td>
</tr>
<tr>
<td>F7</td>
<td>Show/Hide Layers palette</td>
<td>Show/Hide Layers palette</td>
</tr>
<tr>
<td>F8</td>
<td>Show/Hide Actions palette</td>
<td>Show/Hide Actions palette</td>
</tr>
<tr>
<td>F12</td>
<td>Revert</td>
<td>Revert to Last Saved</td>
</tr>
<tr>
<td>Shift + F5</td>
<td>Fill</td>
<td>Opens the Fill Box</td>
</tr>
<tr>
<td>Shift + F6</td>
<td>Feather Selection</td>
<td>Feather Selection</td>
</tr>
<tr>
<td>Shift + F7</td>
<td>Inverse Selection</td>
<td>Inverse Selection</td>
</tr>
<tr>
<td>B</td>
<td>Brush / Pencil / Color Replacement Tool</td>
<td>To Pick Brush / Pencil / Color Replacement Tool</td>
</tr>
<tr>
<td>C</td>
<td>Crop Tool</td>
<td>To Pick Crop Tool</td>
</tr>
<tr>
<td>D</td>
<td>Default Color</td>
<td>Set Default Foreground/Background (Black/White) Color</td>
</tr>
<tr>
<td>E</td>
<td>Eraser Tool</td>
<td>To Pick Eraser Tool</td>
</tr>
<tr>
<td>F</td>
<td>Cycle Screen Modes</td>
<td>Cycle Screen Modes upto full screen</td>
</tr>
<tr>
<td>G</td>
<td>Gradient / Paint Bucket Tool</td>
<td>To pick Gradient / Paint Bucket Tool</td>
</tr>
<tr>
<td>I</td>
<td>Eyedropper Tool</td>
<td>To pick Eyedropper Tool</td>
</tr>
<tr>
<td>L</td>
<td>Lasso Tool</td>
<td>To Pick Lasso Tool</td>
</tr>
<tr>
<td>M</td>
<td>Marquee Tool</td>
<td>To Pick Marquee Tool</td>
</tr>
<tr>
<td>O</td>
<td>Dodge / Burn / Sponge Tool</td>
<td>To pick Dodge / Burn / Sponge Tool (Use Shift + O to toggle between)</td>
</tr>
<tr>
<td>P</td>
<td>Pen / Freeform Pen Tool</td>
<td>To pick Pen / Freeform Pen Tool (Use Shift + P to toggle between)</td>
</tr>
<tr>
<td>Q</td>
<td>Standard / Quick Mask Mode</td>
<td>To Activate Standard / Quick Mask Mode</td>
</tr>
<tr>
<td>S</td>
<td>Clone / Pattern Stamp Tool</td>
<td>To pick Clone / Pattern Stamp Tool (Use Shift + S to toggle between)</td>
</tr>
<tr>
<td>T</td>
<td>Type/Text Tool</td>
<td>To Pick Type/Text Tool</td>
</tr>
<tr>
<td>U</td>
<td>Shapes Tool</td>
<td>To pick Shapes Tool</td>
</tr>
<tr>
<td>V</td>
<td>Move Tool</td>
<td>To pick Move Tool</td>
</tr>
<tr>
<td>W</td>
<td>Magic Wand Tool</td>
<td>To Pick Magic Wand Tool</td>
</tr>
<tr>
<td>X</td>
<td>Switch Colors</td>
<td>Switch beween Foreground/Background Color</td>
</tr>
<tr>
<td>Ctrl + D</td>
<td>Deselect</td>
<td>Deselect your selection on the document</td>
</tr>
<tr>
<td>]</td>
<td>Increase Brush Size</td>
<td>Increase Brush Size</td>
</tr>
<tr>
<td>[</td>
<td>Decrease Brush Size</td>
<td>Decrease Brush Size</td>
</tr>
<tr>
<td>1 - 0</td>
<td>Tool Opacity</td>
<td>Use numbers from 1 - 0 to set opacity</td>
</tr>
<tr>
<td>Hold Space</td>
<td>Hand Tool</td>
<td>Hold Space and use mouse with left click to move around the document</td>
</tr>
<tr>
<td>Ctrl + Shift + I</td>
<td>Inverse Selection</td>
<td>Selects opposite of your present seleciton</td>
</tr>
<tr>
<td>Alt + Ctrl + D</td>
<td>Feather Selection</td>
<td>Feather Selection</td>
</tr>
<tr>
<td>Ctrl + Space + Click</td>
<td>Zoom In</td>
<td>Zoom In Document</td>
</tr>
<tr>
<td>Alt + Space + Click</td>
<td>Zoom Out</td>
<td>Zoom Out Document</td>
</tr>
<tr>
<td>Shift + A-Z keys</td>
<td>Toggle Between</td>
<td>Toogle Between the hidden tools</td>
</tr>
<tr>
<td>Alt + Ctrl + Shift + S</td>
<td>Save for Web</td>
<td>Save Document for Web in your desired selected options (JPG, GIF, PNG, etc.)</td>
</tr>
<tr>
<td>Ctrl + T</td>
<td>Free Transform Tool</td>
<td>Free Transform Tool</td>
</tr>
<tr>
<td>Alt + Ctrl + T</td>
<td>Duplicate Free Transform</td>
<td>Duplicate Free Transform</td>
</tr>
<tr>
<td>Ctrl + Alt + Shift + T</td>
<td>Duplicate Transform Again</td>
<td>Duplicate Transform Again</td>
</tr>
<tr>
<td>Alt + Backspace</td>
<td>Fill Foreground Color</td>
<td>Fill Foreground Color</td>
</tr>
<tr>
<td>Ctrl + Backspace</td>
<td>Fill Background Color</td>
<td>Fill Background Color</td>
</tr>
<tr>
<td>Ctrl + ]</td>
<td>Bring Forward</td>
<td>Bring Forward (Selected Layer)</td>
</tr>
<tr>
<td>Ctrl + [</td>
<td>Send Backward</td>
<td>Send Backward (Selected Layer)</td>
</tr>
<tr>
<td>Ctrl + Shift + ]</td>
<td>Bring To Front</td>
<td>Bring To Front (Selected Layer)</td>
</tr>
<tr>
<td>Ctrl + Shift + [</td>
<td>Send to Back</td>
<td>Send to Back (Selected Layer)</td>
</tr>
<tr>
<td>Ctrl + J</td>
<td>Layer via Copy</td>
<td>Layer via Copy</td>
</tr>
<tr>
<td>Ctrl + Shift + J</td>
<td>Layer via Cut</td>
<td>Layer via Cut</td>
</tr>
<tr>
<td>Ctrl + Shift + N</td>
<td>New Layer</td>
<td>Create New Layer</td>
</tr>
<tr>
<td>Ctrl + E</td>
<td>Merge Layers</td>
<td>Merge Layers</td>
</tr>
<tr>
<td>Ctrl + Shift + E</td>
<td>Merge visible</td>
<td>Merge visible Layers</td>
</tr>
<tr>
<td>Alt + ]</td>
<td>Next Layer</td>
<td>Move to Next Layer</td>
</tr>
<tr>
<td>Alt + [</td>
<td>Previous Layer</td>
<td>Move to Previous Layer</td>
</tr>
<tr>
<td>Ctrl + W</td>
<td>Close</td>
<td>Close Document</td>
</tr>
<tr>
<td>Ctrl + 0</td>
<td>Fit on Screen</td>
<td>Fit on Screen</td>
</tr>
<tr>
<td>Alt + Ctrl + 0</td>
<td>Actual Size</td>
<td>Actual Size of Document</td>
</tr>
</tbody>
</table>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://thinkclay.com/technology/photoshop-shortcuts-pc/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mac Style &#8211; Abstract Wallpapers</title>
		<link>http://thinkclay.com/creativity/mac-style-abstract-wallpapers</link>
		<comments>http://thinkclay.com/creativity/mac-style-abstract-wallpapers#comments</comments>
		<pubDate>Thu, 18 Sep 2008 06:03:04 +0000</pubDate>
		<dc:creator>Clay McIlrath</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[digital art]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[wallpaper]]></category>
		<guid isPermaLink="false">http://www.new-age-design.com/?p=93</guid>
		<description><![CDATA[I&#8217;m working on the re-design of this site right now because i want a little of my own special touch to it. Don&#8217;t get me wrong, i love the layout and the color scheme, but i want to go for something a little more.. me. I&#8217;ve been playing around with some ideas for backgrounds but [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on the re-design of this site right now because i want a little of my own special touch to it. Don&#8217;t get me wrong, i love the layout and the color scheme, but i want to go for something a little more.. me. I&#8217;ve been playing around with some ideas for backgrounds but haven&#8217;t made any that i really like, so i figured i may as well share them as wallpapers for my readers. So go ahead and download these cool new, abstract, mac styled wallpapers. If you want the source files shoot me an <a href="http://www.mail.com/">email</a> through the contact form (at the bottom) and i&#8217;ll send them to you.</p>
<p>If you&#8217;re interested in making something like this, i would start with PSD Tuts. Specifically for the Vista Style Wallpapers you can go here: http://psdtuts.com/tutorials-effects/design-a-vista-styled-wallpaper/</p>
<p><strong>UPDATE: I&#8217;ve created a <a href="http://thinkclay.com/desktop-wallpapers" title="Free Desktop Wallpapers">wallpapers section</a> that you can check out now, far better wallpapers in there, and soon to be more!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://thinkclay.com/creativity/mac-style-abstract-wallpapers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Washed Out &#8211; Chosen Wallpaper</title>
		<link>http://thinkclay.com/creativity/washed-out-chosen-wallpaper</link>
		<comments>http://thinkclay.com/creativity/washed-out-chosen-wallpaper#comments</comments>
		<pubDate>Sun, 24 Aug 2008 20:27:32 +0000</pubDate>
		<dc:creator>Clay McIlrath</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[digital art]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[wallpaper]]></category>
		<guid isPermaLink="false">http://www.new-age-design.com/?p=53</guid>
		<description><![CDATA[Another wallpaper I made for Chosen. It was really simple to create this washed out look in photoshop, I&#8217;ll briefly outline the process. Create a Document at the dimensions you want (1024 x 768 is usually minimum standard. If you&#8217;re on a laptop 1280 x 800 is a common resolution) Create a subtle gradient background [...]]]></description>
			<content:encoded><![CDATA[<p>Another wallpaper I made for <a title="Chosen Creative Advertising Agency" href="http://chosencreative.com">Chosen</a>. It was really simple to create this washed out look in photoshop, I&#8217;ll briefly outline the process.</p>
<ul>
<li>Create a Document at the dimensions you want (1024 x 768 is usually minimum standard. If you&#8217;re on a laptop 1280 x 800 is a common resolution)</li>
<li>Create a subtle gradient background</li>
<li>Add noise to the gradient</li>
<li>Apply a motion blur</li>
<li>Feather the edges and you&#8217;re done with that layer</li>
<li>On a new layer drop in the logo or image</li>
<li>Apply some subtle strokes and drop shadow layer styles</li>
</ul>
<p><strong>UPDATE: I now have a <a href="http://new-age-design.com/desktop-wallpapers" title="Free Desktop Wallpapers">full page dedicated to wallpapers!</a> Check it out!</strong><br />
<div id="attachment_54" class="wp-caption alignnone" style="width: 480px"><a href="http://www.new-age-design.com/wp-content/uploads/2008/08/washed_out.jpg"><img class="size-medium wp-image-54" title="washed_out" src="http://www.new-age-design.com/wp-content/uploads/2008/08/washed_out-470x293.jpg" alt="Washed Out" width="470" height="293" /></a><p class="wp-caption-text">Washed Out</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://thinkclay.com/creativity/washed-out-chosen-wallpaper/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enough wallpapers to cover your room</title>
		<link>http://thinkclay.com/creativity/enough-to-wallpaper-your-room</link>
		<comments>http://thinkclay.com/creativity/enough-to-wallpaper-your-room#comments</comments>
		<pubDate>Wed, 20 Aug 2008 17:44:50 +0000</pubDate>
		<dc:creator>Clay McIlrath</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[digital art]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[wallpaper]]></category>
		<guid isPermaLink="false">http://www.new-age-design.com/?p=47</guid>
		<description><![CDATA[I decided to do some organization and cleaning of my computer and found some old wallpapers I made. Some are pretty cool, most are pretty basic. One man&#8217;s trash is another man&#8217;s treasure, they say. Take &#8216;em or leave &#8216;em.]]></description>
			<content:encoded><![CDATA[<p>I decided to do some organization and cleaning of my computer and found some old wallpapers I made. Some are pretty cool, most are pretty basic. One man&#8217;s trash is another man&#8217;s treasure, they say. Take &#8216;em or leave &#8216;em.</p>
<div id="attachment_44" class="wp-caption alignnone" style="width: 479px"><a href="http://www.new-age-design.com/wp-content/uploads/2008/08/sk8.jpg"><img class="size-medium wp-image-44" title="sk8" src="http://www.new-age-design.com/wp-content/uploads/2008/08/sk8-469x293.jpg" alt="Skateboarding Wallpaper" width="469" height="293" /></a><p class="wp-caption-text">Skateboarding Wallpaper</p></div>
<div id="attachment_43" class="wp-caption alignnone" style="width: 480px"><a href="http://www.new-age-design.com/wp-content/uploads/2008/08/green_apple.jpg"><img class="size-medium wp-image-43" title="green_apple" src="http://www.new-age-design.com/wp-content/uploads/2008/08/green_apple-470x293.jpg" alt="A remix of the apple logo" width="470" height="293" /></a><p class="wp-caption-text">A remix of the apple logo</p></div>
<div id="attachment_42" class="wp-caption alignnone" style="width: 480px"><a href="http://www.new-age-design.com/wp-content/uploads/2008/08/clover.png"><img class="size-medium wp-image-42" title="clover" src="http://www.new-age-design.com/wp-content/uploads/2008/08/clover-470x303.png" alt="Luck is what you make it" width="470" height="303" /></a><p class="wp-caption-text">Luck is what you make it</p></div>
<div id="attachment_41" class="wp-caption alignnone" style="width: 480px"><a href="http://www.new-age-design.com/wp-content/uploads/2008/08/chosen_planet.png"><img class="size-medium wp-image-41" title="chosen_planet" src="http://www.new-age-design.com/wp-content/uploads/2008/08/chosen_planet-470x293.png" alt="Chosen Planet Wallpaper" width="470" height="293" /></a><p class="wp-caption-text">Chosen Planet Wallpaper</p></div>
]]></content:encoded>
			<wfw:commentRss>http://thinkclay.com/creativity/enough-to-wallpaper-your-room/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Wallpaper &#8211; &#8220;mmmbuntu&#8221;</title>
		<link>http://thinkclay.com/creativity/ubuntu-wallpaper-mmmbuntu</link>
		<comments>http://thinkclay.com/creativity/ubuntu-wallpaper-mmmbuntu#comments</comments>
		<pubDate>Tue, 19 Aug 2008 20:53:42 +0000</pubDate>
		<dc:creator>Clay McIlrath</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[digital art]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wallpaper]]></category>
		<guid isPermaLink="false">http://www.new-age-design.com/?p=33</guid>
		<description><![CDATA[I made a wallpaper for all you ubuntu fanatics out there. It&#8217;s very delicious. Update: I have created a page dedicated to more wallpapers.. Check out more desktop wallpapers]]></description>
			<content:encoded><![CDATA[<p>I made a wallpaper for all you <strong>ubuntu</strong> fanatics out there. It&#8217;s very delicious.</p>
<p><a href="http://thinkclay.com/wp-content/uploads/2008/08/mmmbuntu.jpg"><img class="size-medium wp-image-34" title="mmmbuntu" src="http://www.new-age-design.com/wp-content/uploads/2008/08/mmmbuntu-470x293.jpg" alt="Mmmbuntu Wallpaper" width="470" height="293" /></a></p>
<blockquote><p>Update: I have created a page dedicated to more wallpapers.. Check out more <a href="http://thinkclay.com/desktop-wallpapers" title="Creative Media Design">desktop wallpapers</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://thinkclay.com/creativity/ubuntu-wallpaper-mmmbuntu/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Green VS Orange</title>
		<link>http://thinkclay.com/creativity/green-vs-orange</link>
		<comments>http://thinkclay.com/creativity/green-vs-orange#comments</comments>
		<pubDate>Thu, 14 Aug 2008 17:41:47 +0000</pubDate>
		<dc:creator>Clay McIlrath</dc:creator>
				<category><![CDATA[Creativity]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[digital art]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[wallpaper]]></category>
		<guid isPermaLink="false">http://www.new-age-design.com/?p=21</guid>
		<description><![CDATA[My logical brain has taken over in the last few months as I&#8217;ve been getting heavier into programming. I&#8217;m going to try and balance this back out by playing around and doing some more graphic design. I&#8217;ve always really enjoyed abstract design, especially complimentary and contrasting colors and fractal art. This was an attempt to [...]]]></description>
			<content:encoded><![CDATA[<p>My logical brain has taken over in the last few months as I&#8217;ve been getting heavier into programming. I&#8217;m going to try and balance this back out by playing around and doing some more graphic design.</p>
<p>I&#8217;ve always really enjoyed abstract design, especially complimentary and contrasting colors and fractal art. This was an attempt to combine color clashing and hard, strong forms with a smoother more soothing flow. It kind of reminds me of Star Wars.</p>
<blockquote><p>Update: I have created a page dedicated to more wallpapers.. Check out more <a href="http://thinkclay.com/desktop-wallpapers" title="Creative Media Design">desktop wallpapers</a></p></blockquote>
<p><a href="http://thinkclay.com/creativity/green-vs-orange/attachment/green_vs_orange" rel="attachment wp-att-732"><img src="http://thinkclay.com/wp-content/uploads/2008/08/green_vs_orange-580x435.jpg" alt="Green vs Orange Desktop Wallpaper" title="green vs orange abstract wallpaper" width="490" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://thinkclay.com/creativity/green-vs-orange/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
