<?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>AMY HAYWOOD</title>
	<atom:link href="http://www.amyhaywood.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.amyhaywood.com</link>
	<description>Dreamer. Doer. Designer. Programmer.</description>
	<lastBuildDate>Mon, 16 Jan 2012 16:59:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Sunset Outside My Apartment</title>
		<link>http://www.amyhaywood.com/2012/01/10/sunset-outside-my-apartment/</link>
		<comments>http://www.amyhaywood.com/2012/01/10/sunset-outside-my-apartment/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 15:50:58 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Picture]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=1828</guid>
		<description><![CDATA[Related posts:Daily Photo :: Sunset from my Office Rainbow at my Apartment Daily Photo: Fan in my Apartment]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.amyhaywood.com/wp/wp-content/uploads/2012/01/sunset.jpg"><img src="http://www.amyhaywood.com/wp/wp-content/uploads/2012/01/sunset.jpg" alt="" title="Sunset outside my apartment" width="470" height="351" class="alignnone size-full wp-image-1829" /></a></p>


<h2>Related posts:</h2><ol><li><a href='http://www.amyhaywood.com/2010/07/15/daily-photo-sunset-from-my-office/' rel='bookmark' title='Daily Photo :: Sunset from my Office'>Daily Photo :: Sunset from my Office</a></li>
<li><a href='http://www.amyhaywood.com/2011/05/13/rainbow-at-my-apartment/' rel='bookmark' title='Rainbow at my Apartment'>Rainbow at my Apartment</a></li>
<li><a href='http://www.amyhaywood.com/2010/06/14/daily-photo-fan-in-my-apartment/' rel='bookmark' title='Daily Photo: Fan in my Apartment'>Daily Photo: Fan in my Apartment</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2012/01/10/sunset-outside-my-apartment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a Basic Blog in Code Igniter (Part 4)</title>
		<link>http://www.amyhaywood.com/2011/08/18/building-a-basic-blog-in-code-igniter-part-4/</link>
		<comments>http://www.amyhaywood.com/2011/08/18/building-a-basic-blog-in-code-igniter-part-4/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 08:01:34 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[Content Category]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[Post Type]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[code igniter]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=668</guid>
		<description><![CDATA[I keep promising I’ll do better on finishing this series, but 3 more months have gone by (so sorry!) — Well, let’s actually make it happen. So, we’re building a blog in CodeIgniter. So far, we’ve covered: Part A :: Understanding MVC Part B :: Getting Started with Code Igniter Part 1 :: Building a [...]]]></description>
			<content:encoded><![CDATA[<p>I keep promising I’ll do better on finishing this series, but 3 more months have gone by (so sorry!) — Well, let’s actually make it happen.</p>
<p>So, we’re building a blog in <a href="http://www.codeigniter.com">CodeIgniter.</a></p>
<p>So far, we’ve covered:</p>
<ul>
<li><a href="http://www.amyhaywood.com/index.php?/blog/post/codeigniter-and-understanding-mvc">Part A :: Understanding MVC</a></li>
<li><a href="http://www.amyhaywood.com/index.php?/blog/post/codeigniter-getting-started">Part B :: Getting Started with Code Igniter</a></li>
<li><a href="http://www.amyhaywood.com/index.php?/blog/post/building-a-basic-blog-in-codeigniter-part-1">Part 1 :: Building a Basic Blog in Code Igniter // Planning out our project</a></li>
<li><a href="http://www.amyhaywood.com/index.php?/blog/post/building-a-basic-blog-in-code-igniter-part-2">Part 2 :: Building a Basic Blog in Code Igniter // Getting the Basic Pieces Set Up</a></li>
<li><a href="http://www.amyhaywood.com/index.php?/blog/post/building-a-basic-blog-in-code-igniter-part-3">Part 3 :: Building a Basic Blog in Code Igniter // Setting up the Database</a></li>
</ul>
<p>Today, we’ll look at getting our config file set up to talk to that database we built.</p>
<hr />
<p>Go to your site files. Go to system &gt; application &gt; config &gt;</p>
<p><img src="/wp/wp-content/uploads/ee_import/1100818_ci_finder.jpg" alt="" /></p>
<p>There are two files that we’ll be concentrating on: <strong>config.php</strong> and <strong>database.php</strong></p>
<p>Let’s open up <strong>config.php</strong> first.</p>
<p>The first order of business is fixing the base url on line 14. In my case, I’ll change it to <a href="http://localhost/awesome_ci/">http://localhost/awesome_ci/</a> If you’re using MAMP (<a href="http://www.amyhaywood.com/index.php?/blog/post/turning-your-mac-into-a-server">I wrote a post about getting MAMP up running</a>), then your address will probably look something closer to <a href="http://localhost:8888/awesome_ci/">http://localhost:8888/awesome_ci/</a> (In either case, make sure you leave that / on the end!)</p>
<p><a class="colorbox" href="/wp/wp-content/uploads/ee_import/110818_ci_baseurl_l.jpg"><img src="/wp/wp-content/uploads/ee_import/110818_ci_baseurl_m.jpg" alt="" /></a></p>
<p>Next, scroll down to line 220 and look at the Encryption Key. Depending on the type of project you’re working on, you might not need this, but let’s go ahead and set it for fun.</p>
<p><a class="colorbox" href="/wp/wp-content/uploads/ee_import/110818_ci_encryption_l.jpg"><img src="/wp/wp-content/uploads/ee_import/110818_ci_encryption_m.jpg" alt="" /></a></p>
<p>One of the (many) things I love about CodeIgniter, is that they’re code is well documented. Straight from their documentation:</p>
<blockquote><p>To take maximum advantage of the encryption algorithm, your key should be 32 characters in length (128 bits). The key should be as random a string as you can concoct, with numbers and uppercase and lowercase letters. Your key should not be a simple text string. In order to be cryptographically secure it needs to be as random as possible.</p></blockquote>
<p>To keep my keys as random as possible, I’ll typically use a generator. A quick google search returned <a href="http://randomkeygen.com/">randomkeygen.com</a>. There’s even a section there for CodeIgniter Encryption Keys. Perfect!</p>
<p><img src="/wp/wp-content/uploads/ee_import/110818_ci_keys.jpg" alt="" /></p>
<p>Pick one of the 3 options there and copy and paste it into your config file.</p>
<p><a class="colorbox" href="/wp/wp-content/uploads/ee_import/110818_ci_encryption2_l.jpg"><img src="/wp/wp-content/uploads/ee_import/110818_ci_encryption2_m.jpg" alt="" /><br clear="both" /></a></p>
<p>That was easy.</p>
<hr />
<p>Now, let’s look at the <strong>database.php file.</strong> This is pretty straight forward too. Scroll down to line 40.</p>
<p><img src="/wp/wp-content/uploads/ee_import/110818_ci_databaseconfig.jpg" alt="" /></p>
<p>The first thing you have to do is set your database host. If you’re developing locally, it will stay “localhost.” However, if you’re building the site online, this might look different. You’ll have to check <a href="http://www.godaddy.com">GoDaddy</a> or <a href="http://www.mediatemple.comp">MediaTemple</a> or <a href="http://www.hostgator.com">HostGator</a> or whoever’s documentation.</p>
<p>On line 41 and 42, you need to set your username and password. If you’re running MAMP, it will actually tell you all this information on the start screen.</p>
<p><img src="/wp/wp-content/uploads/ee_import/110818_ci_mamp.jpg" alt="" /></p>
<p>On line 43, you’ll set the name of the database. If you’re following along, in <a href="{base_url}index.php?/blog/post/building-a-basic-blog-in-code-igniter-part-3">Part 3</a>, we named our databae awesome_ci.</p>
<p>When you’re done, your file should look like this:</p>
<p><img src="/wp/wp-content/uploads/ee_import/110818_ci_databaseconfig2.jpg" alt="" /></p>
<p>I told you it wasn’t anything crazy! Our config file is now up and running.</p>
<hr />
<p>So you’ll believe me when I say I’ll actually finish this series. Here’s what’s coming up:</p>
<ul>
<li>Building the blog listing page</li>
<li>Building the back end (Part 1)</li>
<li>Building the back end (Part 2)</li>
<li>Building an individual blog post page with comments</li>
<li>Finishing Touches</li>
<li>Other Tips and Tricks: Creating a United States library</li>
<li>Other Tips and Tricks: Auto Complete</li>
<li>Other Tips and Tricks: AJAX</li>
</ul>
<p>So, get excited!</p>
<p>&nbsp;</p>


<h2>Related posts:</h2><ol><li><a href='http://www.amyhaywood.com/2011/05/25/building-a-basic-blog-in-code-igniter-part-3/' rel='bookmark' title='Building a Basic Blog in Code Igniter (Part 3)'>Building a Basic Blog in Code Igniter (Part 3)</a></li>
<li><a href='http://www.amyhaywood.com/2011/01/26/building-a-basic-blog-in-code-igniter-part-2/' rel='bookmark' title='Building a Basic Blog in Code Igniter (Part 2)'>Building a Basic Blog in Code Igniter (Part 2)</a></li>
<li><a href='http://www.amyhaywood.com/2010/10/07/building-a-basic-blog-in-codeigniter-part-1/' rel='bookmark' title='Building a Basic Blog in CodeIgniter (Part 1)'>Building a Basic Blog in CodeIgniter (Part 1)</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2011/08/18/building-a-basic-blog-in-code-igniter-part-4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Websites that Make my Job Easier</title>
		<link>http://www.amyhaywood.com/2011/08/17/websites-that-make-my-job-easier/</link>
		<comments>http://www.amyhaywood.com/2011/08/17/websites-that-make-my-job-easier/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 06:15:26 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[101]]></category>
		<category><![CDATA[Content Category]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[Post Type]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=669</guid>
		<description><![CDATA[Recently, I’ve experimented with some new web sites that have made my job so much easier. Tungle.me http://www.tungle.me I had a group of people where we all needed to schedule a conference call. Trying to synchronize all 4 of our schedules proved far more difficult than I expected. This service, however, allows everyone to look [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I’ve experimented with some new web sites that have made my job so much easier.</p>
<hr />
<p><a href="http://www.tungle.me"><img src="/wp/wp-content/uploads/ee_import/110816_tunglme.jpg" alt="Tungle Me" width="470" height="197" /></a></p>
<h3>Tungle.me</h3>
<p><a href="http://www.tungle.me">http://www.tungle.me</a></p>
<p>I had a group of people where we all needed to schedule a conference call. Trying to synchronize all 4 of our schedules proved far more difficult than I expected. This service, however, allows everyone to look at their calendar and mark their availability. At the end, you can see where all your schedules overlap and what time(s) work for everyone.</p>
<hr />
<p><a href="http://www.freeconference.com"><img src="/wp/wp-content/uploads/ee_import/110816_freeconference.jpg" alt="FreeConference.com" width="470" height="179" /></a></p>
<h3>FreeConference.com</h3>
<p><a href="http://www.freeconference.com">http://www.freeconference.com</a></p>
<p>Once we had the conference call scheduled, we had to find a service that would allow us to actually make the conference call. Lame, maybe, but I just googled free conference call and this was the first result that appeared. It proved to be quite helpful. With my free account, not only does it allow me to schedule a conference call and send out invitations, but it also gives me a number where I can create a conference call on demand. At the end, as the administrator, I’m emailed a report of the call.</p>
<hr />
<p><a href="http://www.gotomeeting.com"><img src="/wp/wp-content/uploads/ee_import/110816_gotomeeting.jpg" alt="Go To Meeting" width="470" height="181" /></a></p>
<h3>Go To Meeting</h3>
<p><a href="http://www.gotomeeting.com">http://www.gotomeeting.com</a></p>
<p>&nbsp;</p>
<p>I’ve heard Leo Laporte advertise this service for a few years on his podcast. I had never had any experience witht he service until a couple weeks ago. I was on a call with a freelance client on the other side of the country. He sent me a Go to Meeting invite. It was super easy to set up. Before long, I was looking at his computer screen where he could easily explain the project and what he needed.</p>


<h2>Related posts:</h2><ol><li><a href='http://www.amyhaywood.com/2009/01/02/mr-tweet/' rel='bookmark' title='Mr. Tweet'>Mr. Tweet</a></li>
<li><a href='http://www.amyhaywood.com/2009/04/15/the-survey-for-people-who-make-websites/' rel='bookmark' title='The Survey For People Who Make Websites'>The Survey For People Who Make Websites</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2011/08/17/websites-that-make-my-job-easier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sara and Brent’s Head shots</title>
		<link>http://www.amyhaywood.com/2011/08/17/sara-and-brents-head-shots/</link>
		<comments>http://www.amyhaywood.com/2011/08/17/sara-and-brents-head-shots/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 05:59:15 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[Content Category]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Picture]]></category>
		<category><![CDATA[Post Type]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=670</guid>
		<description><![CDATA[Last week, I took head shots for my sister and brother-in-law (still weird to say). It’s crazy how photogenic they both are. This is the one they ended up going with. Runner up I threw this one in there just for fun. Definitely candid, but I think it captured the moment well. Related posts:Head Shots [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, I took head shots for my sister and brother-in-law (still weird to say). It’s crazy how photogenic they both are.</p>
<p><a href="http://www.flickr.com/photos/amyhaywood/6052790224/in/photostream"><img src="/wp/wp-content/uploads/ee_import/DSC_0431_med.jpg" alt="Sara and Brent Headshots" width="470" height="709" /></a></p>
<div class="caption">This is the one they ended up going with.</div>
<p><a href="http://www.flickr.com/photos/amyhaywood/6052240681/in/photostream"><img src="/wp/wp-content/uploads/ee_import/DSC_0453_med.jpg" alt="Sara and Brent - Head Shots" width="470" height="312" /></a></p>
<div class="caption">Runner up</div>
<p><a href="http://www.flickr.com/photos/amyhaywood/6052241615/in/photostream"><img src="/wp/wp-content/uploads/ee_import/DSC_0491_med.jpg" alt="Sara and Brent - Head shots" width="470" height="312" /></a></p>
<div class="caption">I threw this one in there just for fun. Definitely candid, but I think it captured the moment well.</div>


<h2>Related posts:</h2><ol><li><a href='http://www.amyhaywood.com/2010/12/14/head-shots-at-union-station/' rel='bookmark' title='Head Shots at Union Station'>Head Shots at Union Station</a></li>
<li><a href='http://www.amyhaywood.com/2010/07/01/daily-photo-nana-and-sara-at-the-beach/' rel='bookmark' title='Daily Photo :: Nana and Sara at the Beach'>Daily Photo :: Nana and Sara at the Beach</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2011/08/17/sara-and-brents-head-shots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pulling websites out my sleeves</title>
		<link>http://www.amyhaywood.com/2011/08/16/pulling-websites-out-my-sleeves/</link>
		<comments>http://www.amyhaywood.com/2011/08/16/pulling-websites-out-my-sleeves/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 05:29:09 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[Content Category]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Picture]]></category>
		<category><![CDATA[Post Type]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=671</guid>
		<description><![CDATA[Lately, I’ve been pulling websites out of my sleeves. That’s right. I feel like my blog is proportionate to how busy I am. If I’ve got work to do, I don’t blog (and vice versa). I’m trying to find more balance. I promise. I think blogging is a lot harder, though, than people make it [...]]]></description>
			<content:encoded><![CDATA[<p>Lately, I’ve been pulling websites out of my sleeves. That’s right.</p>
<p>I feel like my blog is proportionate to how busy I am. If I’ve got work to do, I don’t blog (and vice versa). I’m trying to find more balance. I promise. I think blogging is a lot harder, though, than people make it out to be. Besides, you have a few people out there that do it really well (*COUGH* <a href="http://www.sethgodin.com/sg/">Seth Godin,</a> <a href="http://garyvaynerchuk.com/">Gary Vaynerchuck,</a> <a href="http://www.problogger.net/">Darren Rowse,</a> and <a href="http://www.chrisbrogan.com/">Chris Brogan</a>) and make it look effortless to the rest of us.—All that’s neither here nor there. I did want to poke my head up, though, and share some (well one) of the things that I’ve been working on.</p>
<p>I designed this landing page for <a href="http://www.kairosoncampus.com">Kairos on Campus</a>. It’s the college branch of <a href="http://www.kairosnashville.com">Kairos</a>. They had talked to me a few weeks ago about creating a site. I didn’t have enough time to launch a full site by the time school started back, but I could create a landing page that would at least tell students about upcoming events.</p>
<p><a class="colorbox" href="/wp/wp-content/uploads/ee_import/OC_large.jpg"><img class="border" src="/wp/wp-content/uploads/ee_import/OC.jpg" alt="Kairos on Campus" width="470" height="819" /></a></p>
<p>&nbsp;</p>
<p>I was really pleased with the way the site turned out. I think we’ve set ourselves up well for the art direction of the full fledge site.</p>


<h2>Related posts:</h2><ol><li><a href='http://www.amyhaywood.com/2010/04/06/developing-a-strategy/' rel='bookmark' title='Developing a strategy.'>Developing a strategy.</a></li>
<li><a href='http://www.amyhaywood.com/2010/08/10/designing-the-centrikid-camper-devotional-book/' rel='bookmark' title='Designing the CentriKid Camper Devotional Book'>Designing the CentriKid Camper Devotional Book</a></li>
<li><a href='http://www.amyhaywood.com/2010/04/07/develop-a-content-strategy-that-builds-up-your-brand/' rel='bookmark' title='Develop a Content Strategy That Builds up Your Brand'>Develop a Content Strategy That Builds up Your Brand</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2011/08/16/pulling-websites-out-my-sleeves/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I finally upgraded to Snow Leopard</title>
		<link>http://www.amyhaywood.com/2011/08/16/i-finally-upgraded-to-snow-leopard/</link>
		<comments>http://www.amyhaywood.com/2011/08/16/i-finally-upgraded-to-snow-leopard/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 05:18:41 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[101]]></category>
		<category><![CDATA[Content Category]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[Post Type]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=672</guid>
		<description><![CDATA[So, I’m a little behind the times… I finally installed Snow Leopard last week. Two reasons: (1) I knew that if I wanted to upgrade to Lion I would need to upgrade to Snow Leopard first. (2) It was getting to the point that I couldn’t use software / versions were no longer be supported [...]]]></description>
			<content:encoded><![CDATA[<p>So, I’m a little behind the times… I finally installed <a href="http://store.apple.com/us/product/MC573Z/A">Snow Leopard</a> last week.</p>
<p>Two reasons: (1) I knew that if I wanted to upgrade to <a href="http://www.apple.com/macosx/">Lion</a> I would need to upgrade to Snow Leopard first. (2) It was getting to the point that I couldn’t use software / versions were no longer be supported because I was still running <a href="http://en.wikipedia.org/wiki/Mac_OS_X_Leopard">Leopard.</a></p>
<h2>Pros</h2>
<p>I’ll start off by saying nice things:</p>
<ul>
<li>My computer runs so much faster!</li>
<li>I got 30 GBs of my hard drive back</li>
<li>I got some new apps in the App Store (Yeah, I couldn’t run the App Store before)</li>
</ul>
<h2>Cons</h2>
<p>I ran into a few issues. It took me about a day to get all the kinks worked out. I’ve spent more time the past week in the <a href="http://guides.macrumors.com/Terminal">Terminal</a> than I have in a long time. Fortunately, I’ve waited long enough to upgrade that I was able to Google all my issues and find documentation on everything. So, while I might be repeating information that’s already available on the Internet, I thught I’d document my experience as well.</p>
<hr />
<h3>Snow Leopard broke my local development</h3>
<p>All the websites I work on I first build locally. It’s so much faster than having to upload files each time I make a change, however large or small. A while back, I wrote about <a href="http://www.amyhaywood.com/index.php?/blog/post/turning-your-mac-into-a-server">running MAMP on your computer.</a> (MAMP actually survived the upgrade.) MAMP is the easiest solution to getting PHP and MySQL running, but I actually have PHP and MySQL installed.</p>
<p>It’s one of those things that you get up and running once and then you can forget about it. It became painfully obvioius that that’s exactly what I had done: forget about it. I hadn’t looked at it since 2008, when I bought this machine. In 3 years, I’ve definitely slept some.</p>
<p>First off, I know just enough about the Terminal to be dangerous. — And the Terminal is dangerous. You accidentally type the wrong thing and POOF, a directory is gone. So, my fear of the Terminal is probably a healthy one.</p>
<p>So, my issue: I got ready to load one of the sites I had been working on. PHP was fine, MySQL was not. I went to <a href="http://www.phpmyadmin.net/home_page/index.php">phpMyAdmin</a> to check my databases. Everytime I tried to log in, I got the following message Error #2002 &#8211; The server is not responding (or the local MySQL server’s socket is not correctly configured). Great!</p>
<p>Everything that I read on the forums and blogs said that my database files were still there, the link was just broken. I tried running a few things to fix the link. I tried updating the MySQL socket, nothing seemed to work. I was able to cut my loses. Then, I found <a href="http://lists.mysql.com/mysql/218638">a post on MySQL’s site.</a> Their story sounded very similar to mine. Their solution (which worked): download and install a program called <a href="http://www.macports.org/">MacPorts</a>. It keeps MySQL up to date as well as fixed the broken mySQL links — <a href="http://lists.mysql.com/mysql/218638">Follow the link</a> because you have to run a few Terminal commands after MacPorts is installed.</p>
<p>The hardest part about installing MacPorts was that it had to have an updated version of XCode running first.</p>
<hr />
<h3>Snow Leopard doesn’t recognize my printer</h3>
<p>I have an Epson Deskjet 5100. I got this printer for free when I bought my first Mac, a G4 PowerBook in 2004. They were running a special deal. Buy a printer for $99 with a mail-in rebate for $99. Sign me up!</p>
<p>As trusty as that printer has been, Snow Leopard didn’t agree with me. I found an alternate driver (<a href="http://gimp-print.sourceforge.net/">GutenPrint /  GimpPrint</a>) that I installed. Since, then it will print like a champ, but it still doesn’t like color. This does the trick for now, but I might be buying a new wireless printer before too long.</p>
<hr />
<h3>iTunes stopped recognizing my iPhone and iPad.</h3>
<p>I got ready to sync my iPad and it wouldn’t show up in iTunes. Really? I tried plugging in my iPhone. Still nothing. I finally found this post: <a href="http://support.apple.com/kb/TS3540?viewlocale=en_US">Mac OS X v10.6 or later: iOS devies not reognized by iTunes after restart.</a> It did the trick. If you’re worried, I didn’t loose any of my media. I just had to delete some preference files. Since then, it hasn’t been a problem.</p>
<hr />
<h3>Suitcase wouldn’t run Fusion Core</h3>
<p>Honestly, I don’t know if this is related to upgrading or not. As a designer, I use <a href="http://www.extensis.com/en/products/suitcasefusion3/overview.jsp">Extensis Suitcase</a> to manage all my fonts. For the non designer, it allows me to have thousands of fonts on my computer without bogging it down. I only activate the fonts I need as I need them.</p>
<p>With the version I have, Suitecase Fusion 2, it has to run Fusion Core (whatever that is). If you look under the System Preferences, you can start and stop the Fusion Core. Well, I couldn’t get it to start. When this has happened in the past, I’ve been able to log out and log back in, or restart my computer and it’s fixed it. But, that didn’t work this time.</p>
<p>I found <a href="http://www.extensis.com/en/support/kb_article.jsp?articleNumber=8501204">a post on Extensis’s site</a> talking about a corrupted prefernece file. Again, another Terminal solution. I haven’t had any problems since.</p>
<hr />
<h2>Conclusion</h2>
<p>Even though I ran into several hiccups along the way, I wouldn’t go back to Leopard. I might get philsophical for a minute, but anytime there’s change that’s bound to be a some pain. — that’s why they call it growing pains. But, in the end, I think we’re all better for it. There were obviously issues with Leopard, otherwise, I wouldn’t have gotten 30GB of my harddrive back when I upgraded!</p>
<p>&nbsp;</p>


<h2>Related posts:</h2><ol><li><a href='http://www.amyhaywood.com/2011/05/24/turning-your-mac-into-a-server/' rel='bookmark' title='Turning your Mac into a server'>Turning your Mac into a server</a></li>
<li><a href='http://www.amyhaywood.com/2010/07/28/getting-started-with-codeigniter/' rel='bookmark' title='Getting Started with CodeIgniter'>Getting Started with CodeIgniter</a></li>
<li><a href='http://www.amyhaywood.com/2009/09/23/getting-social-media-to-work-for-you-part-10-dropbox/' rel='bookmark' title='Getting Social Media to Work for You (Part 10: Dropbox)'>Getting Social Media to Work for You (Part 10: Dropbox)</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2011/08/16/i-finally-upgraded-to-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The humidity came down and I went for a Run</title>
		<link>http://www.amyhaywood.com/2011/08/16/the-humidity-came-down-and-i-went-for-a-run/</link>
		<comments>http://www.amyhaywood.com/2011/08/16/the-humidity-came-down-and-i-went-for-a-run/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 04:24:19 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[Content Category]]></category>
		<category><![CDATA[My Life]]></category>
		<category><![CDATA[Picture]]></category>
		<category><![CDATA[Post Type]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=673</guid>
		<description><![CDATA[The humidity finally came down yesterday to something less than what it was. I took advantage of it and went running after work. I’m definitely looking forward to the fall when it’s even cooler than what it was yesterday. I’m such a wimp in the heat. No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/amyhaywood/6049155754/in/photostream"><img src="http://farm7.static.flickr.com/6085/6049155754_e6af644ea1.jpg" alt="" width="470" /></a></p>
<p>The humidity finally came down yesterday to something less than what it was. I took advantage of it and went running after work. I’m definitely looking forward to the fall when it’s even cooler than what it was yesterday. I’m such a wimp in the heat.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2011/08/16/the-humidity-came-down-and-i-went-for-a-run/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This doesn’t make sense</title>
		<link>http://www.amyhaywood.com/2011/08/08/this-doesnt-make-sense/</link>
		<comments>http://www.amyhaywood.com/2011/08/08/this-doesnt-make-sense/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 04:56:28 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[Content Category]]></category>
		<category><![CDATA[My Life]]></category>
		<category><![CDATA[Picture]]></category>
		<category><![CDATA[Post Type]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=674</guid>
		<description><![CDATA[If the final destination is Nashville, remind me why we’re going to Kentucky? No related posts.]]></description>
			<content:encoded><![CDATA[<p><a class="colorbox" href="/wp/wp-content/uploads/ee_import/110808_dhl_l.png"><img src="/wp/wp-content/uploads/ee_import/110808_dhl.jpg" alt="DHL Tracking Shipment" width="470" height="230" /></a></p>
<div class="caption">If the final destination is Nashville, remind me why we’re going to Kentucky?</div>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2011/08/08/this-doesnt-make-sense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tote for Dot Mom</title>
		<link>http://www.amyhaywood.com/2011/07/23/tote-for-dot-mom/</link>
		<comments>http://www.amyhaywood.com/2011/07/23/tote-for-dot-mom/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 09:40:43 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[Content Category]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Post]]></category>
		<category><![CDATA[Post Type]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=675</guid>
		<description><![CDATA[This is a tote that I designed this week for the Dot Mom event we’re doing at LifeWay. Unfortunately, there was a miscommunication and this will never see the light of day (other than, here). My favorite part: Mom Jeans. And for that: No related posts.]]></description>
			<content:encoded><![CDATA[<p><a class="colorbox" href="/wp/wp-content/uploads/ee_import/DOT_MOM_TOTE_L.jpg"><img src="/wp/wp-content/uploads/ee_import/DOT_MOM_TOTE_M.jpg" alt="Dot Mom Tote" width="470" height="309" /></a></p>
<p><img src="/wp/wp-content/uploads/ee_import/DOT_MOM_TOTE_BAG_M.jpg" alt="Dot Mom Tote" width="470" height="405" /></p>
<p>This is a tote that I designed this week for the <a href="http://www.lifeway.com/dotMom/c/N-1z13wdb?type=events">Dot Mom</a> event we’re doing at <a href="http://www.lifeway.com">LifeWay.</a> Unfortunately, there was a miscommunication and this will never see the light of day (other than, here).</p>
<p>My favorite part: Mom Jeans. And for that:</p>
<p><iframe id="NBC Video Widget" src="http://www.nbc.com/assets/video/widget/widget.html?vid=229048" frameborder="0" width="470" height="318"></iframe></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2011/07/23/tote-for-dot-mom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Beach is About Sharing</title>
		<link>http://www.amyhaywood.com/2011/07/04/the-beach-is-about-sharing/</link>
		<comments>http://www.amyhaywood.com/2011/07/04/the-beach-is-about-sharing/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 10:46:03 +0000</pubDate>
		<dc:creator>Amy</dc:creator>
				<category><![CDATA[Content Category]]></category>
		<category><![CDATA[My Life]]></category>
		<category><![CDATA[Picture]]></category>
		<category><![CDATA[Post Type]]></category>

		<guid isPermaLink="false">http://www.amyhaywood.com/?p=676</guid>
		<description><![CDATA[My Mom and I are Rainbow Chasers. I decided if I ever started a band, that’s what I’d call it: Rainbow Chasers. It had been storming and the sun came out. I kept pacing the deck, determined to find a rainbow. Sure enough, one appeared. Me and my sisters, in line to get ice cream. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/amyhaywood/5901593690/in/set-72157626990070257"><img src="http://farm7.static.flickr.com/6013/5901593690_8a06f5f3fd.jpg" alt="" width="470" /></a><br />
<span class="caption">My Mom and I are Rainbow Chasers. I decided if I ever started a band, that’s what I’d call it: Rainbow Chasers. It had been storming and the sun came out. I kept pacing the deck, determined to find a rainbow. Sure enough, one appeared.</span></p>
<p><a href="http://www.flickr.com/photos/amyhaywood/5901032755/in/set-72157626990070257"><img src="http://farm6.static.flickr.com/5040/5901032755_75824abd19.jpg" alt="" width="470" /></a><br />
<span class="caption">Me and my sisters, in line to get ice cream.</span></p>
<p><a href="http://www.flickr.com/photos/amyhaywood/5901594374/in/set-72157626990070257"><img src="http://farm6.static.flickr.com/5271/5901594374_5c55bc8b2a.jpg" alt="" width="470" /></a><br />
<span class="caption">While we were waiting for breakfast at the pier house, I walked out on the pier with my camera.</span></p>
<p><a href="http://www.flickr.com/photos/amyhaywood/sets/72157626990070257/"><img src="/wp/wp-content/uploads/ee_import/110704_beach_flickr_grid1.jpg" alt="Beach 2011 on Flickr" width="470" height="319" /></a></p>
<p>I just posted some of my favorite pictures from our annual beach trip on my <a href="http://www.flickr.com/photos/amyhaywood/sets/72157626990070257/">Flickr account.</a></p>
<p>When I got back last year, <a href="/index.php?/blog/post/beach-pictures-on-flickr">I wrote about tradition.</a> This year, I thought a lot about sharing.</p>
<p>My sister is getting married this weekend. Next year, Brent will join us on our annual trip. There’s something sacred about sharing this place with someone else. There are so many memories and traditions we have there. It’s something I look forward to every year. And next year, we’ll be expanding our circle.</p>
<p>But, I think that’s the beautiful thing about marriage. It’s not replacing. It’s not all leaving and cleaving. It’s sharing. It’s about expanding the circle. It’s a blending of traditions and a merging of lives. Living life together. Sharing.</p>
<p>That’s all we really want anyways, right? Someone to live life with. Someone to share moments with. Successes and failures. Joys and heartaches. Laughing and crying. Not just the big, significant milestones, but the small things too, the things that often get overlooked that make up so much of who we are.</p>
<p>Yeah, the beach is about sharing. Sharing part of who we are with each other.</p>


<h2>Related posts:</h2><ol><li><a href='http://www.amyhaywood.com/2010/07/01/beach-pictures-on-flickr/' rel='bookmark' title='Beach Pictures on Flickr'>Beach Pictures on Flickr</a></li>
<li><a href='http://www.amyhaywood.com/2010/08/15/change-is-inevitable/' rel='bookmark' title='Change is Inevitable'>Change is Inevitable</a></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://www.amyhaywood.com/2011/07/04/the-beach-is-about-sharing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

