<?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>Life of a Programmer &#187; Mac</title>
	<atom:link href="http://jeremysimkins.com/category/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeremysimkins.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 19 Feb 2010 22:45:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MAMP DB File Location</title>
		<link>http://jeremysimkins.com/mac/mamp-db-file-location/</link>
		<comments>http://jeremysimkins.com/mac/mamp-db-file-location/#comments</comments>
		<pubDate>Wed, 20 May 2009 18:48:08 +0000</pubDate>
		<dc:creator>SoN9ne</dc:creator>
				<category><![CDATA[MAMP]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://jeremysimkins.com/?p=98</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>I work on many sites and some of my databases are too large to upload with phpMyAdmin. One of the biggest issues I have had was trying to import a large database into MAMP or take a large database out of MAMP and put it live. Another problem is when I am changing computers or restoring my Mac it is much easier to use Time Machine and grab these files instead of having to create a backup and re-import them. After failing on many searches on Google I finally found out where MAMP stores the DB files.</p>
<p>The path you can find these files is:<br />
<em>/Library/Application Support/living-e/MAMP PRO/db/mysql</em><br />
For the latest version of MAMP Pro (currently 1.8.1):<br />
<em>/Library/Application Support/appsolute/living-e/MAMP PRO/db/mysql</em></p>
<p>I assume that if you are running MAMP Pro, you would only need to amend the path to MAMP if not.</p>
]]></content:encoded>
			<wfw:commentRss>http://jeremysimkins.com/mac/mamp-db-file-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing .svn directories from a folder in Terminal</title>
		<link>http://jeremysimkins.com/mac/removing-svn-directories-from-a-folder-in-terminal/</link>
		<comments>http://jeremysimkins.com/mac/removing-svn-directories-from-a-folder-in-terminal/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 00:25:17 +0000</pubDate>
		<dc:creator>SoN9ne</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://jeremysimkins.com/wordpress/?p=77</guid>
		<description><![CDATA[Well i was trying to find a way to remove all the .svn files from a directory on OSx.
I found this code worked the best for fully removing all .svn files recursively.
find . -name .svn -print0 &#124; xargs -0 rm -rf
Remember to cd to the directory you are wanting to remove the .svn files from.
cd [...]]]></description>
			<content:encoded><![CDATA[<p>Well i was trying to find a way to remove all the .svn files from a directory on OSx.<br />
I found this code worked the best for fully removing all .svn files recursively.</p>
<p><em><strong><code>find . -name .svn -print0 | xargs -0 rm -rf</code></strong></em></p>
<p>Remember to cd to the directory you are wanting to remove the .svn files from.</p>
<p><em><strong><code>cd Sites/project</code></strong></em></p>
]]></content:encoded>
			<wfw:commentRss>http://jeremysimkins.com/mac/removing-svn-directories-from-a-folder-in-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
