<?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>CFchimp &#187; Apple</title>
	<atom:link href="http://www.cfchimp.com/wordpress/category/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cfchimp.com/wordpress</link>
	<description>monkey love coldfusion</description>
	<lastBuildDate>Tue, 08 Jun 2010 13:40:56 +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>Ports in use on the Mac</title>
		<link>http://www.cfchimp.com/wordpress/2008/06/ports-in-use-on-the-mac/</link>
		<comments>http://www.cfchimp.com/wordpress/2008/06/ports-in-use-on-the-mac/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 01:32:08 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=60</guid>
		<description><![CDATA[Q. How do I know which ports are currently in use? A. Run the following from the terminal window: sudo lsof -i -P &#124; grep -i "listen"]]></description>
			<content:encoded><![CDATA[<p>Q. How do I know which ports are currently in use?</p>
<p>A. Run the following from the terminal window:</p>
<p><code>sudo lsof -i -P | grep -i "listen"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2008/06/ports-in-use-on-the-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtual hosts with MAMP on Leopard</title>
		<link>http://www.cfchimp.com/wordpress/2008/05/virtual-hosts-with-mamp-on-leopard/</link>
		<comments>http://www.cfchimp.com/wordpress/2008/05/virtual-hosts-with-mamp-on-leopard/#comments</comments>
		<pubDate>Wed, 14 May 2008 13:04:34 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[MAMP]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=52</guid>
		<description><![CDATA[Assumptions (Kind of major assumptions): You are running Leopard (and therefore cannot use &#8220;Netinfo Manager&#8221; to edit your hosts). You already have MAMP up and running and MAMP is using the Apache config file located here: /Applications/MAMP/conf/appache/httpd.conf Set up a directory for your dev website. I created: /Applications/MAMP/htdocs/csimmons Create a &#8220;host&#8221; for your site. In [...]]]></description>
			<content:encoded><![CDATA[<p>Assumptions (Kind of major assumptions):</p>
<ul>
<li>You are running Leopard (and therefore cannot use &#8220;Netinfo Manager&#8221; to edit your hosts).</li>
<li>You already have MAMP up and running and MAMP is using the Apache config file located here: <code>/Applications/MAMP/conf/appache/httpd.conf</code></li>
</ul>
<ol>
<li> Set up a directory for your dev website.  I created: <code>/Applications/MAMP/htdocs/csimmons</code></li>
<li>Create a &#8220;host&#8221; for your site.  In Leopard this will require you to edit the hosts file manually.  Be sure to use sudo or you will not be able to save the file.  Type the following and enter the root password when prompted:<br />
<code>$ sudo pico /etc/hosts</code><br />
Add the following at the bottom<br />
<code><br />
# VIRTUAL HOST START<br />
127.0.0.1 csimmons.dev<br />
# VIRTUAL HOST STOP<br />
</code><br />
CTRL+O to write the file (then hit ENTER)<br />
CTRL+X to exit pico</li>
<li>Flush the DNS cache<br />
<code>$ dscacheutil -flushcache</code></li>
<li>Edit the Apache config file:<br />
<code>$ pico /Applications/MAMP/conf/apache/httpd.conf</code>Change the following:<br />
OLD:<br />
<code>ServerName localhost:8888</code><br />
NEW:<br />
<code>ServerName 127.0.0.1:8888</code></p>
<p>Continue to the very bottom of the file (use CTRL+V to page down faster) and you will find &#8220;Section 3: Virtual Hosts&#8221;.  Add the following at the very end:<br />
<code><br />
NameVirtualHost 127.0.0.1<br />
&lt;virtualhost 127.0.0.1&gt;<br />
DocumentRoot /Applications/MAMP/htdocs<br />
ServerName localhost<br />
&lt;/virtualhost&gt;<br />
# DEVELOPMENT HOSTS START<br />
&lt;virtualhost 127.0.0.1&gt;<br />
DocumentRoot /Users/username/Sites/csimmons<br />
ServerName csimmons.dev<br />
&lt;/virtualhost&gt;<br />
# DEVELOPMENT HOSTS STOP<br />
</code><br />
CTRL+O to write the file (then hit ENTER)<br />
CTRL+X to exit pico</li>
<li>Restart the MAMP servers.  I just click &#8220;Stop Servers&#8221; and then &#8220;Start Servers&#8221; on the MAMP widget.</li>
<li>Try it out.  Point your browser to the following (no www in the address and don&#8217;t forget the port[8888]): http://csimmons.dev:8888</li>
<li>Rinse.  Repeat for each of your dev sites.  Multiple sites would look like this:
<p>hosts file:<br />
<code><br />
# VIRTUAL HOST START<br />
127.0.0.1 csimmons.dev<br />
127.0.0.1 site2.dev<br />
# VIRTUAL HOST STOP<br />
</code><br />
Apache config file:<br />
<code><br />
# DEVELOPMENT HOSTS START<br />
&lt;virtualhost 127.0.0.1&gt;<br />
DocumentRoot /Users/username/Sites/site2<br />
ServerName csimmons.dev<br />
&lt;/virtualhost&gt;<br />
&lt;virtualhost 127.0.0.1&gt;<br />
DocumentRoot /Users/username/Sites/site2<br />
ServerName site2.dev<br />
&lt;/virtualhost&gt;<br />
# DEVELOPMENT HOSTS STOP<br />
</code></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2008/05/virtual-hosts-with-mamp-on-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion on Ubuntu (Feisty) with a Mac Client</title>
		<link>http://www.cfchimp.com/wordpress/2008/03/subversion-on-ubuntu-feisty-with-a-mac-client/</link>
		<comments>http://www.cfchimp.com/wordpress/2008/03/subversion-on-ubuntu-feisty-with-a-mac-client/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 01:45:10 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web Dev]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=36</guid>
		<description><![CDATA[As part of a continuous effort to improve my organization (a.k.a. not lose stuff) I have finally set up Subversion at home. If you are not familiar with Subversion it is an open source version control system used (mostly) by developers to keep up with changes to their codebase. I&#8217;ve spent most of my career [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.cfchimp.com/wordpress/wp-content/uploads/2008/03/ducks.jpg" alt="Subversion gets my ducks in a row" /></p>
<p>As part of a continuous effort to improve my organization (a.k.a. not lose stuff) I have finally set up <a href="http://subversion.tigris.org/" target="_blank">Subversion</a> at home.  If you are not familiar with Subversion it is an open source version control system used (mostly) by developers to keep up with changes to their codebase.</p>
<p>I&#8217;ve spent most of my career as kind of a &#8220;one man team&#8221; where I have been responsible for all phases of development and maintenance of code.  However, I was exposed to Subversion when I contracted briefly last year in a multi-developer environment. I made a mental note at that time to revisit Subversion at a later date.</p>
<p>At last that date has come&#8230;</p>
<p>Subversion is now running at home on an old Gateway pc that I recently &#8220;upgraded&#8221; from XP to Ubuntu.  I&#8217;m a total newbie with Linux, but I&#8217;ll be posting some on it in the future.  Thanks to <a href="http://davidwinter.me.uk/articles/2006/02/16/subversion-over-apache-2-on-ubuntu/" target="_blank">this tutorial</a> the process was ridiculously easy (less than 5 minutes).</p>
<p>The next step was to get an SVN client.  My previous exposure to Subversion was in the Windows world so we used <a href="http://tortoisesvn.tigris.org/" target="_blank">TortoiseSVN</a>.  I have a PowerBook and an iMac at home though so I hunted down <a href="http://scplugin.tigris.org/" target="_blank">scplugin</a> which integrates with Mac Finder the way TortoiseSVN integrates with Windows Explorer.</p>
<p>Now I just have to get all my code checked in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2008/03/subversion-on-ubuntu-feisty-with-a-mac-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boot Camp + XP SP1 Disc = :-(</title>
		<link>http://www.cfchimp.com/wordpress/2007/12/boot-camp-xp-sp1-disc/</link>
		<comments>http://www.cfchimp.com/wordpress/2007/12/boot-camp-xp-sp1-disc/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 13:00:09 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=24</guid>
		<description><![CDATA[I do some .NET work on a project where the developers all use Visual Studio. A few weeks ago I foolishly tried to install it onto Virtual PC on my Powerbook G4. Total no-go. The installation took hours and the program locked up indefinitely the first time I tried to run it. So, I took [...]]]></description>
			<content:encoded><![CDATA[<p>I do some .NET work on a project where the developers all use Visual Studio.  A few weeks ago I foolishly tried to install it onto Virtual PC on my Powerbook G4.  Total no-go.  The installation took hours and the program locked up indefinitely the first time I tried to run it.</p>
<p>So, I took the plunge last week and decided to load XP onto the new family iMac using Boot Camp.  A slight (deal breaker) problem arose though as I was preparing for installation.  I was disappointed to discover that the XP cd that came with our PC was SP1 and therefore not compatible with Boot Camp.</p>
<p>A few minutes of googling, however, revealed a process known as &#8220;slipstreaming&#8221; whereby you can download SP2, merge it with your SP1 files and burn the result to a new cd that will work with Boot Camp.  At first glance the process seemed pretty involved, but ultimately it proved fairly simple to follow.  <a href="http://www.winsupersite.com/showcase/windowsxp_sp2_slipstream.asp" title="Slipstream XP" target="_blank">Here is where I found it</a>.</p>
<p>I did it one snag though&#8230;</p>
<p>The ultimate goal of the process is a bootable XP cd.  The result of my slipstreaming, however, produced 722 MB of files, which is just barely too large to burn to cd (Note: the size of your slipstream depends on how much extra crap came on your SP1 cd).  So, what could be trimmed from my project?  I deleted the SBSI folder, which in it&#8217;s own  words is:</p>
<p><em>&#8220;Microsoft (r) Windows XP Professional Step by Step Interactive is a multimedia, self-paced training product that uses a combination of simulations and informative topics to create an easy and flexible learning environment.&#8221;</em></p>
<p>Problem solved.  Sliptream cd installed XP like a charm to the iMac.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cfchimp.com/wordpress/2007/12/boot-camp-xp-sp1-disc/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Freak Out</title>
		<link>http://www.cfchimp.com/wordpress/2007/12/freak-out/</link>
		<comments>http://www.cfchimp.com/wordpress/2007/12/freak-out/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 02:45:07 +0000</pubDate>
		<dc:creator>Chris Simmons</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Shameless Plugs]]></category>

		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=23</guid>
		<description><![CDATA[<br />
<b>Warning</b>:  fopen(wp-content/uploads/2007/12/048-freaks.xml) [<a href='function.fopen'>function.fopen</a>]: failed to open stream: No such file or directory in <b>D:\Hosting\2741137\html\wordpress\wp-content\plugins\itunes-playlist.php</b> on line <b>216</b><br />
could not open XML input