<?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>blog &#124;&#124;= &#34;Lake Hills Media&#34;</title>
	<atom:link href="http://blog.lakehillsmedia.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.lakehillsmedia.com</link>
	<description>It&#039;s hard out there being a developer</description>
	<lastBuildDate>Mon, 19 Oct 2009 14:21:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating a First Cocoa Application</title>
		<link>http://blog.lakehillsmedia.com/?p=9</link>
		<comments>http://blog.lakehillsmedia.com/?p=9#comments</comments>
		<pubDate>Sun, 16 Aug 2009 03:27:04 +0000</pubDate>
		<dc:creator>Derek Zinser</dc:creator>
				<category><![CDATA[Cocoa]]></category>

		<guid isPermaLink="false">http://blog.lakehillsmedia.com/?p=9</guid>
		<description><![CDATA[Now, that I’m starting to move all my personal files from a PC to my new Mac, I learned that I need a way to replace a Microsoft Access database I use all the time.  It’s a simple application.  It just keeps track of what I’m spending on utilities and the usage readings.  I have [...]]]></description>
			<content:encoded><![CDATA[<p>Now, that I’m starting to move all my personal files from a PC to my new Mac, I learned that I need a way to replace a Microsoft Access database I use all the time.  It’s a simple application.  It just keeps track of what I’m spending on utilities and the usage readings.  I have some reports that will show how the cost and usage varies over the years.</p>
<p>Since, I’m super cheap, I decided not to purchase File Maker Pro, which is a great replacement.  I’m going to write my own application in Cocoa.</p>
<p>I found a decent tutorial for learning Cocoa.   <a href="http://cocoadevcentral.com/d/learn_cocoa/">http://cocoadevcentral.com/d/learn_cocoa/</a></p>
<p>The tutorial was easy to follow, but when it came time to compile and run, it failed with the following error message</p>
<p>error: can’t exec ‘/Developer/Library/Xcode/Plug-ins/CoreBuildTasks.xcplugin/Contents/Resources/copystrings’ (No such file or directory)</p>
<p>I found an interesting article that help me fix the problem. <a href="http://www.digitalsanctum.com/2008/10/04/xcode-cant-exec-developerlibraryxcodeplug-inscorebuildtasksxcplugincontentsresourcescopystrings-no-such-file-or-directory/">Fix</a></p>
<p>If you run the copystrings command in Terminal, you will find that it’s looking for ruby in /usr/bin/ruby.  However, since MacPorts was installed, Ruby is in another location /opt/local/bin/ruby.</p>
<p>To fix the problem, run the following code</p>
<p><code>sudo ln -s /opt/local/bin/ruby /usr/bin/ruby</code></p>
<p>They mention that this is not an ideal fix, but worked for me, and since I’m new to Mac OS programming, I’ll take what I can get.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lakehillsmedia.com/?feed=rss2&amp;p=9</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails, Postgres &amp; Leopard</title>
		<link>http://blog.lakehillsmedia.com/?p=7</link>
		<comments>http://blog.lakehillsmedia.com/?p=7#comments</comments>
		<pubDate>Sun, 16 Aug 2009 03:26:35 +0000</pubDate>
		<dc:creator>Derek Zinser</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://blog.lakehillsmedia.com/?p=7</guid>
		<description><![CDATA[So, I bought myself a new iMac for Christmas with the sole purpose of creating a new business around RoR.  This business was going to center around 2 things.  Consulting services and a few new products.  Little did I know, that only after my 1st weekend of getting RoR &#38; Postgres installed, I would be [...]]]></description>
			<content:encoded><![CDATA[<p>So, I bought myself a new iMac for Christmas with the sole purpose of creating a new business around RoR.  This business was going to center around 2 things.  Consulting services and a few new products.  Little did I know, that only after my 1st weekend of getting RoR &amp; Postgres installed, I would be questioning my approach.</p>
<p>Let me explain.  I’m a Microsoft guy…been developing .NET for years and very comfortable with it.  Additionally, I can pretty much figure anything out with the oddities that pop up.  Sadly, that is not the case for Unix type operating systems.  I was having the hardest time getting Postgres to work with Rake.  I kept getting the infamous ” install the gem ‘activerecord-postgres-adapter’”.</p>
<p>I finally found an article by Robby Russell <a href="http://www.robbyonrails.com/articles/2008/01/22/installing-ruby-on-rails-and-postgresql-on-os-x-third-edition">http://www.robbyonrails.com/articles/2008/01/22/installing-ruby-on-rails-and-postgresql-on-os-x-third-edition</a> which was a perfect walk-through.</p>
<p>Some of the key components are:</p>
<ul>
<li>Install XCode 3.0</li>
<li>Install MacPorts</li>
<li>Hide Leopards Ruby, Gems and      Rails (These can be unhidden if needed…just rename /xxx/ruby.orig back to      /xxx/ruby, etc…</li>
<li>Install Ruby, Gems and Rails      via MacPorts</li>
<li>Install PostgreSQL</li>
</ul>
<p>Everything worked fine, except now, the preferred gem is ruby-pg instead of postgres.</p>
<p>Also, I installed all the latest versions…rails 2.2.2, ruby 1.8.7, MacPorts 1.7</p>
<p>Now, I’m happy and my first RoR product is up and running, albeit a same 1 table application!</p>
<p>Thanks Robby!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lakehillsmedia.com/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog &amp; Lake Hills Media Site up and running</title>
		<link>http://blog.lakehillsmedia.com/?p=3</link>
		<comments>http://blog.lakehillsmedia.com/?p=3#comments</comments>
		<pubDate>Sun, 16 Aug 2009 03:25:23 +0000</pubDate>
		<dc:creator>Derek Zinser</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.lakehillsmedia.com/?p=3</guid>
		<description><![CDATA[I’m pleased to announce that http://www.lakehillsmedia.com is up and running.  The Lake Hills Media blog site is also up and running at http://blog.lakehillsmedia.com.  This blog will have a few different purposes.  First is documenting the process from a very experience Microsoft Developer to learning and creating sites based on Ruby on Rails.  Additional blog posts [...]]]></description>
			<content:encoded><![CDATA[<p>I’m pleased to announce that <a href="http://www.lakehillsmedia.com/">http://www.lakehillsmedia.com</a> is up and running.  The Lake Hills Media blog site is also up and running at <a href="../">http://blog.lakehillsmedia.com</a>.  This blog will have a few different purposes.  First is documenting the process from a very experience Microsoft Developer to learning and creating sites based on Ruby on Rails.  Additional blog posts will be based on MSFT technologies, including ASP.NET, C# and SharePoint / MOSS.  I might even throw in some cooking posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lakehillsmedia.com/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
