<?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>Nick Porcaro</title>
	<atom:link href="http://www.porcaro.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.porcaro.org</link>
	<description>Software Engineer / Musician</description>
	<lastBuildDate>Mon, 07 May 2012 21:29:50 +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>Making an encrypted .dmg file</title>
		<link>http://www.porcaro.org/2012/05/07/making-an-encrypted-dmg-file/</link>
		<comments>http://www.porcaro.org/2012/05/07/making-an-encrypted-dmg-file/#comments</comments>
		<pubDate>Mon, 07 May 2012 21:29:50 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1632</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe width="584" height="438" src="http://www.youtube.com/embed/M5c_dF7RzUE?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2012/05/07/making-an-encrypted-dmg-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery slideshows</title>
		<link>http://www.porcaro.org/2012/01/23/jquery-slideshows/</link>
		<comments>http://www.porcaro.org/2012/01/23/jquery-slideshows/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 07:17:44 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1582</guid>
		<description><![CDATA[http://speckyboy.com/2009/06/03/15-amazing-jquery-image-galleryslideshow-plugins-and-tutorials/]]></description>
			<content:encoded><![CDATA[<p>http://speckyboy.com/2009/06/03/15-amazing-jquery-image-galleryslideshow-plugins-and-tutorials/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2012/01/23/jquery-slideshows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a lite and full version of an iPhone app</title>
		<link>http://www.porcaro.org/2011/09/25/creating-a-lite-and-full-version-of-an-iphone-app/</link>
		<comments>http://www.porcaro.org/2011/09/25/creating-a-lite-and-full-version-of-an-iphone-app/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 22:27:17 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[iPhone Development]]></category>
		<category><![CDATA[full version of app]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[lite version of app]]></category>
		<category><![CDATA[Xcode build targets]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1544</guid>
		<description><![CDATA[Xcode supports this well. I used Chris Fletcher&#8217;s instructions: Start a new XCode Project Duplicate the current Target Rename the Duplicated Target Rename the Duplicated Info.plist File Change the Icons in the Duplicated Info.plist file to use the Lite Version &#8230; <a href="http://www.porcaro.org/2011/09/25/creating-a-lite-and-full-version-of-an-iphone-app/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>
Xcode supports this well.  I used <a href="http://chris-fletcher.com/2010/10/14/how-to-create-a-lite-version-of-your-iphone-app/" target="_blank">Chris Fletcher&#8217;s</a> instructions:
</p>
<blockquote>
<ul>
<li>Start a new XCode Project</li>
<li>Duplicate the current Target</li>
<li>Rename the Duplicated Target</li>
<li>Rename the Duplicated Info.plist File</li>
<li>Change the Icons in the Duplicated Info.plist file to use the Lite Version Icons</li>
<li>Change the Bundle Identifier to match with the bundle identifier from Apple for the Lite Version</li>
<li>Edit Build Properties of the Duplicated Target<br />
- Add C / C++ Compiler Flags<br />
- Change the Product Name<br />
- Change the name of the Info.plist file to the name of the Duplicated Info.plist File</li>
<li>
Add Logic to code to separate features of Lite and Full version.</li>
</blockquote>
<p>
Chris&#8217; explanation is good, but here are a few gotchas:</p>
<ul>
<li>Say you are going to have two versions of a Resources, eg.  MyResourcesFolder-Full and MyResourcesFolder-Lite, you want first remove references to both of these folders before duplicating the target.  Then you add MyResourcesFolder-Full  to only the full target and  MyResourcesFolder-Lite to only the lite target.</li>
<li>You only have to change the BundleIdentifier field in the copied Info.plist to be <strong>anything</strong> you want.  For instance, <em>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</em> can be renamed to anything: eg: <em>com.joesfishhouseonbleecker.${PRODUCT_NAME:rfc1034identifier}</em>.  When he talks about &#8220;Apple assigning the identifier&#8221; this happens in Xcode, you don&#8217;t have to go to the provisioning portal etc.</li>
<li>You have to <em>add a row</em> when you are editing the copied Info.plist before you can specify an icon file name for the lite version.  I also explicitly named the icon in my full version to avoid any confusion</li>
<li>Before building each target I needed to delete the build folder manually, or else some of the wrong resources got put in each version</li>
<li>You might need to delete the iPhone simulator folder in ~/Library/Application Support/iPhone Simulator before building
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2011/09/25/creating-a-lite-and-full-version-of-an-iphone-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress link checker</title>
		<link>http://www.porcaro.org/2011/09/20/wordpress-link-checker/</link>
		<comments>http://www.porcaro.org/2011/09/20/wordpress-link-checker/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 20:06:01 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1536</guid>
		<description><![CDATA[WordPress Link Checker Click on the link above to snag a program I wrote to check to see if links in WordPress blogs are active. I run it every night in my crontab. A shout out to Jose Solorzano who &#8230; <a href="http://www.porcaro.org/2011/09/20/wordpress-link-checker/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>
<strong><a href="/WordpressLinkChecker.zip" target="_blank">WordPress Link Checker</a></strong>
</p>
<p>
Click on the link above to snag a program I wrote to check to see if links in WordPress blogs are active.  I run it every night in my crontab.
</p>
<p>
A shout out to <a href="http://sourceforge.net/projects/simplehtmldom/">Jose Solorzano</a> who wrote the simple HTML <a href="http://en.wikipedia.org/wiki/Document_Object_Model" target="_blank">DOM</a> parser.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2011/09/20/wordpress-link-checker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Camera: Canon EOS Relbel T2i EOS 550D</title>
		<link>http://www.porcaro.org/2011/09/20/new-camera-canon-eos-relbel-t2i-eos-550d/</link>
		<comments>http://www.porcaro.org/2011/09/20/new-camera-canon-eos-relbel-t2i-eos-550d/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 20:03:23 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1466</guid>
		<description><![CDATA[First impressions. For low light go to P mode and pick the highest ISO possible.  Go to Shooting Settings Display and then hit the ISO button, pick 6400.  Night shots start looking good. Also try the continuous drive mode (page &#8230; <a href="http://www.porcaro.org/2011/09/20/new-camera-canon-eos-relbel-t2i-eos-550d/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>First impressions.</p>
<ul>
<li>For low light go to P mode and pick the highest ISO possible.  Go to Shooting Settings Display and then hit the ISO button, pick 6400.  Night shots start looking good.</li>
<li>Also try the continuous drive mode (page 70 of the manual)</li>
<li>http://www.t2iforum.com/</li>
<li>http://michaelthementor.com/store/index.php?main_page=product_info&amp;cPath=1&amp;products_id=19</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2011/09/20/new-camera-canon-eos-relbel-t2i-eos-550d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross browser css</title>
		<link>http://www.porcaro.org/2011/09/12/cross-browser-css/</link>
		<comments>http://www.porcaro.org/2011/09/12/cross-browser-css/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 09:36:32 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1533</guid>
		<description><![CDATA[http://www.catswhocode.com/blog/15-techniques-and-tools-for-cross-browser-css-coding]]></description>
			<content:encoded><![CDATA[<p>http://www.catswhocode.com/blog/15-techniques-and-tools-for-cross-browser-css-coding</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2011/09/12/cross-browser-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS button styling</title>
		<link>http://www.porcaro.org/2011/09/11/css-button-styling/</link>
		<comments>http://www.porcaro.org/2011/09/11/css-button-styling/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 09:01:10 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1531</guid>
		<description><![CDATA[http://cssbutton.com/forms/]]></description>
			<content:encoded><![CDATA[<p>http://cssbutton.com/forms/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2011/09/11/css-button-styling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Example of how to send email from PHP and use jquery and javascript to return a result to a div</title>
		<link>http://www.porcaro.org/2011/09/10/php-output-to-div-email-example/</link>
		<comments>http://www.porcaro.org/2011/09/10/php-output-to-div-email-example/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 23:18:59 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1523</guid>
		<description><![CDATA[Here&#8217;s what you need to do: Download this file: http://www.porcaro.org/emailExample.zip Unpack it and put it somewhere on a webserver Edit email settings in emailExample/emailComment.php Go to emailExample/emailExample.php in your browser and try it out. If the output comes to a &#8230; <a href="http://www.porcaro.org/2011/09/10/php-output-to-div-email-example/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>
Here&#8217;s what you need to do:
</p>
<ul>
<li>Download this file: http://www.porcaro.org/emailExample.zip</li>
<p>Unpack it and put it somewhere on a webserver</p>
<li>Edit email settings in emailExample/emailComment.php</li>
</ul>
<p>
Go to emailExample/emailExample.php in your browser and try it out.<br />
If the output comes to a blank window it means something is wrong with your javscript setup.
</p>
<p>
I included the relevant javascript files in emailExample.zip.<br />
If you want to download the latest javascript files, do the following
</p>
<ul>
<li>Download jquery-1.6.3.min.js and copy to emailExample.zip folder</li>
<p> Go to http://docs.jquery.com/Downloading_jQuery and pick grab the minified  version.  As of this writing it was here: http://code.jquery.com/jquery-1.6.3.min.js
</p>
<li>Download jquery.form.js and copy to emailExample folder</li>
<p>Get it from http://jquery.malsup.com/form/#download</p>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2011/09/10/php-output-to-div-email-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make the content of a div grow with size</title>
		<link>http://www.porcaro.org/2011/03/19/how-to-make-the-content-of-a-div-grow-with-size/</link>
		<comments>http://www.porcaro.org/2011/03/19/how-to-make-the-content-of-a-div-grow-with-size/#comments</comments>
		<pubDate>Sat, 19 Mar 2011 10:25:48 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1504</guid>
		<description><![CDATA[From the 3rd post down: http://www.codingforums.com/showthread.php?t=148595 #divHeightGrowsToContentHeight { overflow: auto; width:310px; }]]></description>
			<content:encoded><![CDATA[<p>From the 3rd post down: http://www.codingforums.com/showthread.php?t=148595</p>
<pre>
#divHeightGrowsToContentHeight {
    overflow: auto;
    width:310px;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2011/03/19/how-to-make-the-content-of-a-div-grow-with-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get WordPress User data By Username Or Login</title>
		<link>http://www.porcaro.org/2011/01/25/get-wordpress-user-data-by-username-or-login/</link>
		<comments>http://www.porcaro.org/2011/01/25/get-wordpress-user-data-by-username-or-login/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 04:59:41 +0000</pubDate>
		<dc:creator>nick</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.porcaro.org/?p=1486</guid>
		<description><![CDATA[$userinfo-&#62;user_email via Get WordPress User data By Username Or Login.]]></description>
			<content:encoded><![CDATA[<p>$userinfo-&gt;user_email</p>
<p>via <a href="http://www.clickonf5.org/wordpress/get-wordpress-user-data-by-login-username/6913">Get WordPress User data By Username Or Login</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcaro.org/2011/01/25/get-wordpress-user-data-by-username-or-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

