<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Chad Ritchie</title>
	
	<link>http://www.chadritchie.net</link>
	<description>Graphic Design, Web Development, Tutorials</description>
	<lastBuildDate>Wed, 16 May 2012 10:41:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ChadRitchieBlog" /><feedburner:info uri="chadritchieblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><image><link>http://chadritchie.net/</link><url>http://chadritchie.net/post_files/logo.jpg</url><title>ChadRitchie.net</title></image><item>
		<title>How to disable WordPress plugin updates</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/1FV3NAqXzJc/</link>
		<comments>http://www.chadritchie.net/how-to-disable-wordpress-plugin-updates/#comments</comments>
		<pubDate>Fri, 04 May 2012 16:00:24 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=871</guid>
		<description><![CDATA[This snippet of code prevents WordPress from checking for plugin updates. For security reasons, it is important to keep third-party WordPress plugins up-to-date. However, there are times when you might create a site for a client and don’t want them to update their plugins. Perhaps you have changed a plugins code or concerned a plugin ...]]></description>
			<content:encoded><![CDATA[<p>This snippet of code prevents WordPress from checking for plugin updates. For security reasons, it is important to keep third-party WordPress plugins up-to-date. However, there are times when you might create a site for a client and don’t want them to update their plugins. Perhaps you have changed a plugins code or concerned a plugin update could cause problems or break the site.</p>
<p>Simply paste the following code into your sites functions.php file. The functions.php file is located in your sites theme folder.</p>
<code class="code">&lt;?php
remove_action( 'load-update-core.php', 'wp_update_plugins' );
add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) );
?&gt;</code>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/1FV3NAqXzJc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/how-to-disable-wordpress-plugin-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/how-to-disable-wordpress-plugin-updates/</feedburner:origLink></item>
		<item>
		<title>View source code on iPad/iPhone</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/cQDjbYi5XIk/</link>
		<comments>http://www.chadritchie.net/view-source-code-on-ipadiphone/#comments</comments>
		<pubDate>Fri, 06 Apr 2012 14:01:59 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=841</guid>
		<description><![CDATA[As a web developer, I spent lots of time looking at source code. So a few days ago, a friend asked me to take a look at his company&#8217;s web site to see how they could improve their SEO ranking. My first actions were to grab my iPad, take a quick look at the user ...]]></description>
			<content:encoded><![CDATA[<p>As a web developer, I spent lots of time looking at source code. So a few days ago, a friend asked me to take a look at his company&#8217;s web site to see how they could improve their SEO ranking. My first actions were to grab my iPad, take a quick look at the user interface and then at the source code. It was then that I realized, I had no way to view the source code of any site on my iPad—I had always used my computer for that task. And so the search was on—for an app—a &#8220;view the source code&#8221; app. After spending several minutes surfing through the App Store and finding nothing worth the .99 gamble. I discovered a couple JavaScript bookmarklets on the web.<br />
Awesome! This will work better than an app, since I will already be in the Safari mobile browser.</p>
<p>I made a mashup of the various code I found and it&#8217;s posted below.<br />
There are other scripts available that enable syntax highlighting, but I prefer to simply view the source code.<br />
If you already know how to install and edit a bookmarklet on your iPad or iPhone, copy the code below and enjoy!</p>
<code class="code">javascript:(function(){
	var a=window.open('about:blank').document;
		a.write('&lt;!DOCTYPE html&gt;&lt;html&gt;&lt;head&gt;&lt;title&gt;Source of '+location.href+'&lt;/title&gt;&lt;meta name="viewport" content="width=device-width" /&gt;&lt;style&gt;body{background-color:#000;color:#FFF;}&lt;/style&gt;&lt;/head&gt;&lt;body&gt;&lt;/body&gt;&lt;/html&gt;');
		a.close();
	var b=a.body.appendChild(a.createElement('pre'));
		b.style.overflow='auto';
		b.style.whiteSpace='pre-wrap';
		b.appendChild(a.createTextNode(document.documentElement.innerHTML))
})();</code>
<p>For step-by-step instruction on how to install this piece of awesomeness onto your iOS device, here goes:</p>
<p>Copy the code above (keyboard shortcut Cmd/Ctrl + C).</p>
<ul class="list5 list_color_blue">
<li>Step 1: Create a new bookmark via the Add New Bookmark function at the bottom of your iPad/iPhone screen.</li>
<li>Step 2:  Name the new bookmark something that makes sense, like &#8220;View Source&#8221;, &#8220;Source Code&#8221; or whatever you like.</li>
<li>Step 3: Note where you are saving the Bookmark, e.g., Bookmarks, Bookmarks Bar, etc., then click Save.</li>
<li>Step 4: Open your Bookmarks (the icon that looks like a book)</li>
<li>Step 5: Click &#8220;Edit&#8221; in the lower left corner of the screen.</li>
<li>Step 6: Click on the newly added Bookmark that you named.</li>
<li>Step 7: Select the url and delete it, by pressing the &#8220;X&#8221; to the right. (The &#8220;X&#8221; will appear after you click on the url).</li>
<li>Step 8: Paste (keyboard shortcut Cmd/Ctrl + V) the JavaScript into the address field and click save.</li>
<li>Step 9: Enjoy!</li>
</ul>
<p><span class="highlight dark">If you know CSS and prefer to change the background or text color, have at it. Note the style tag in the head section of the script.</span> </p>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/cQDjbYi5XIk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/view-source-code-on-ipadiphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/view-source-code-on-ipadiphone/</feedburner:origLink></item>
		<item>
		<title>Quickly Toggle Blend Modes in Photoshop</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/KVIbVmKttcc/</link>
		<comments>http://www.chadritchie.net/quickly-toggle-blend-modes-in-photoshop/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 17:04:50 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=821</guid>
		<description><![CDATA[This tutorial shows how to quickly toggle through blend modes when making a selection in Photoshop.]]></description>
			<content:encoded><![CDATA[<p>This tutorial shows how to quickly toggle through blend modes when making a selection in Photoshop.</p>
<p><iframe width="960" height="720" src="http://www.youtube.com/embed/7m0tjduOBW0?rel=0" frameborder="0" allowfullscreen></iframe></p>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/KVIbVmKttcc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/quickly-toggle-blend-modes-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/quickly-toggle-blend-modes-in-photoshop/</feedburner:origLink></item>
		<item>
		<title>Mac 10.7 Lion Spotlight Tip – Finding the Path</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/XsTZTt7QLKQ/</link>
		<comments>http://www.chadritchie.net/mac-10-7-lion-spotlight-tip-finding-the-path/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 17:04:42 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Lion]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Spotlight]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=803</guid>
		<description><![CDATA[This is a tip for Mac users using Mac 10.7 Lion. In previous versions of Mac OS X, when you hover over the file, folder, etc. in Spotlight, the path would be displayed. However, in 10.7 Lion that is no longer the case. I have found a shortcut that will display the path of the ...]]></description>
			<content:encoded><![CDATA[<p>This is a tip for Mac users using Mac 10.7 Lion. In previous versions of Mac OS X, when you hover over the file, folder, etc. in Spotlight, the path would be displayed. However, in 10.7 Lion that is no longer the case. I have found a shortcut that will display the path of the item you are searching for.</p>
<ul class="list5 list_color_blue">
<li><strong>Step 1</strong> In spotlight, type the file or folder you are looking for.</li>
<li><strong>Step 2</strong> Hover your mouse over the file, folder, app, etc.</li>
<li><strong>Step 3</strong> A Quick Look dialog box will appear to the left.</li>
<li><strong>Step 4</strong> While this Quick Look box is visible, hold down the command key and notice at the bottom of that Quick Look box the name of the file will appear. If you continue to hold the command key, the path of that file will appear.</li>
<li><strong>Step 5</strong> To toggle between these options you can also include the alt/option key.</li>
</ul>
<div class='video_frame'><iframe class='vimeo' style='height:540px;width:960px' src='http://player.vimeo.com/video/35009340?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=0&amp;loop=0' width='960' height='540' frameborder='0'></iframe></div>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/XsTZTt7QLKQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/mac-10-7-lion-spotlight-tip-finding-the-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/mac-10-7-lion-spotlight-tip-finding-the-path/</feedburner:origLink></item>
		<item>
		<title>Text Zoom In with Lens Flare using After Effects</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/B7xh8HoJ80Q/</link>
		<comments>http://www.chadritchie.net/text-zoom-in-with-lens-flare-using-after-effects/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 21:00:12 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[after effects]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=773</guid>
		<description><![CDATA[In this tutorial, learn to create a title intro that features a text blur zoom in effect, followed by a cool lens flare—all using Adobe After Effects.]]></description>
			<content:encoded><![CDATA[<p>In this tutorial, learn to create a title intro that features a text blur zoom in effect, followed by a cool lens flare—all using Adobe After Effects. </p>
<div class='video_frame'><iframe class='vimeo' style='height:540px;width:960px' src='http://player.vimeo.com/video/30206047?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=0&amp;loop=0' width='960' height='540' frameborder='0'></iframe></div>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/B7xh8HoJ80Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/text-zoom-in-with-lens-flare-using-after-effects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/text-zoom-in-with-lens-flare-using-after-effects/</feedburner:origLink></item>
		<item>
		<title>Create Lower Third Motion Graphics Using Photoshop</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/f0EWu79RPGQ/</link>
		<comments>http://www.chadritchie.net/create-lower-third-motion-graphics-using-photoshop/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 23:00:37 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[motion graphics]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=762</guid>
		<description><![CDATA[Photoshop is the preferred editor of choice for many graphic designers, but did you know that you can animate Photoshop layers to create motion graphics? Using the Animation panel in Photoshop, you can create animations up to 10 seconds in length. Take a look at this video demonstrating this simple technique for creating basic motion ...]]></description>
			<content:encoded><![CDATA[<p>Photoshop is the preferred editor of choice for many graphic designers, but did you know that you can animate Photoshop layers to create motion graphics? Using the Animation panel in Photoshop, you can create animations up to 10 seconds in length. Take a look at this video demonstrating this simple technique for creating basic motion graphics using Photoshop.
<div class='video_frame'><iframe class='vimeo' style='height:540px;width:960px' src='http://player.vimeo.com/video/28214168?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=0&amp;loop=0' width='960' height='540' frameborder='0'></iframe></div>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/f0EWu79RPGQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/create-lower-third-motion-graphics-using-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/create-lower-third-motion-graphics-using-photoshop/</feedburner:origLink></item>
		<item>
		<title>Create a contact sheet using Adobe Bridge</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/T0XKmJ3Dz-A/</link>
		<comments>http://www.chadritchie.net/create-a-contact-sheet-using-adobe-bridge/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 05:00:40 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Adobe Bridge]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=756</guid>
		<description><![CDATA[Here is another option for creating a contact sheet for photography, video, web site screenshots or design layouts that does include the file name, watermark, header and footer options using Adobe Bridge.]]></description>
			<content:encoded><![CDATA[<p>Here is another option for creating a contact sheet for photography, video, web site screenshots or design layouts that does include the file name, watermark, header and footer options using Adobe Bridge.</p>
<div class='video_frame'><iframe class='vimeo' style='height:540px;width:960px' src='http://player.vimeo.com/video/26768666?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=0&amp;loop=0' width='960' height='540' frameborder='0'></iframe></div>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/T0XKmJ3Dz-A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/create-a-contact-sheet-using-adobe-bridge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/create-a-contact-sheet-using-adobe-bridge/</feedburner:origLink></item>
		<item>
		<title>Quick Contact Sheet using InDesign</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/Tol84bhN7_0/</link>
		<comments>http://www.chadritchie.net/quick-contact-sheet-using-indesign/#comments</comments>
		<pubDate>Fri, 20 May 2011 22:00:32 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[contact sheet]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=740</guid>
		<description><![CDATA[Let’s say you want to create a quick contact sheet of some photos to send to a client or print as proofs. We will place twelve images into an evenly spaced grid on a standard 8.5 x 11 sheet. To do so, choose File > Place>select your twelve images>Click Open to load the images into ...]]></description>
			<content:encoded><![CDATA[<p>Let’s say you want to create a quick contact sheet of some photos to send to a client or print as proofs. We will place twelve images into an evenly spaced grid on a standard 8.5 x 11 sheet. To do so, choose File > Place>select your twelve images>Click Open to load the images into the cursor>Draw out a frame filling the area inside the margins. With your finger still holding down your left mouse button, tap the up arrow twice to split the frame into three rows. Now tap the right arrow three times to split the rows into four columns. Now release your mouse button. That&#8217;s it! You now have twelve identical frames.
<div class='video_frame'><iframe class='vimeo' style='height:540px;width:960px' src='http://player.vimeo.com/video/24027319?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=0&amp;loop=0' width='960' height='540' frameborder='0'></iframe></div>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/Tol84bhN7_0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/quick-contact-sheet-using-indesign/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/quick-contact-sheet-using-indesign/</feedburner:origLink></item>
		<item>
		<title>Create a road using Illustrator</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/3jGsxxIA8KQ/</link>
		<comments>http://www.chadritchie.net/create-a-road-using-illustrator/#comments</comments>
		<pubDate>Fri, 13 May 2011 19:00:14 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[road]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=732</guid>
		<description><![CDATA[Technique demonstrating how to create a road using a single path, then saving as a graphic style in Adobe Illustrator.]]></description>
			<content:encoded><![CDATA[<p>Technique demonstrating how to create a road using a single path, then saving as a graphic style in Adobe Illustrator.</p>
<div class='video_frame'><iframe class='vimeo' style='height:540px;width:960px' src='http://player.vimeo.com/video/23692484?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=0&amp;loop=0' width='960' height='540' frameborder='0'></iframe></div>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/3jGsxxIA8KQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/create-a-road-using-illustrator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/create-a-road-using-illustrator/</feedburner:origLink></item>
		<item>
		<title>Align objects evenly around path using Illustrator</title>
		<link>http://feedproxy.google.com/~r/ChadRitchieBlog/~3/wRav2BCal9M/</link>
		<comments>http://www.chadritchie.net/align-objects-evenly-around-path-using-illustrator/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 17:00:21 +0000</pubDate>
		<dc:creator>Chad</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[illustrator]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.chadritchie.net/?p=723</guid>
		<description><![CDATA[Simple technique demonstrating how to align objects evenly around path using Illustrator.]]></description>
			<content:encoded><![CDATA[<div class='video_frame'><iframe class='vimeo' style='height:540px;width:960px' src='http://player.vimeo.com/video/22700131?title=0&amp;byline=0&amp;portrait=0&amp;autoplay=0&amp;loop=0' width='960' height='540' frameborder='0'></iframe></div>
<p>Simple technique demonstrating how to align objects evenly around path using Illustrator.</p>
<img src="http://feeds.feedburner.com/~r/ChadRitchieBlog/~4/wRav2BCal9M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.chadritchie.net/align-objects-evenly-around-path-using-illustrator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.chadritchie.net/align-objects-evenly-around-path-using-illustrator/</feedburner:origLink></item>
	</channel>
</rss><!-- Served from: www.chadritchie.net @ 2012-05-16 07:07:14 by W3 Total Cache -->

