<?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>Sentia &#124; Sydney IT Consultancy, Software Development, Ruby on Rails, Web Application Development, Rails Development, Test Driven Development, Microsoft.Net, Asp.Net , Agile, Continuous Integration Training, iPhone development &#187; mac osx</title>
	<atom:link href="http://www.sentia.com.au/category/mac-osx/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sentia.com.au</link>
	<description>Sentia company website and blog about all things development, Ruby on Rails, Microsoft .Net, ASP.Net, C#.Net, Agile web development, Test Driven Development</description>
	<lastBuildDate>Fri, 27 Aug 2010 05:10:54 +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>Improving productivity with Alfred</title>
		<link>http://www.sentia.com.au/2010/06/improving-productivity-with-alfred/</link>
		<comments>http://www.sentia.com.au/2010/06/improving-productivity-with-alfred/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 02:18:00 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://www.sentia.com.au/?p=759</guid>
		<description><![CDATA[First Bruce Wayne used his services now you can too. Alfread is a quicklaunch application for Mac OS X, which aims to save you time in searching your local computer and the web. 
We have been using the beta for a while now and its fantastic so be sure to check it out
]]></description>
			<content:encoded><![CDATA[<p>First Bruce Wayne used his services now you can too. <a href="http://www.alfredapp.com/">Alfread</a> is a quicklaunch application for Mac OS X, which aims to save you time in searching your local computer and the web. </p>
<p>We have been using the beta for a while now and its fantastic so be sure to check it out</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2010/06/improving-productivity-with-alfred/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using passenger to run your rails applications when developing</title>
		<link>http://www.sentia.com.au/2009/09/using-passenger-to-run-your-rails-applications-when-developing/</link>
		<comments>http://www.sentia.com.au/2009/09/using-passenger-to-run-your-rails-applications-when-developing/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 07:21:04 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[passenger]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=494</guid>
		<description><![CDATA[If your like me and sick of having to run ./script/server every time you want to start your rails app using passenger locally is for you then. First thing is to install passenger like so

sudo gem install passenger

Then you need to install the apache module for passenger.

sudo passenger-install-apache2-module

Now once you do this you will be [...]]]></description>
			<content:encoded><![CDATA[<p>If your like me and sick of having to run ./script/server every time you want to start your rails app using passenger locally is for you then. First thing is to install passenger like so</p>
<pre class="brush: ruby;">
sudo gem install passenger
</pre>
<p>Then you need to install the apache module for passenger.</p>
<pre class="brush: ruby;">
sudo passenger-install-apache2-module
</pre>
<p>Now once you do this you will be told to all the following lines to your httpd.conf file in apache. Now you can just add these lines no problems but l like to have it in its own conf file and since apache will also load all conf files in /etc/apache2/other/ directory just create a  passenger.conf file and add those lines in. Now these lines are different depending on how you installed ruby. I installed it in user/local keeping the orginal ruby version that ships with mac clean so mine looks like so</p>
<pre class="brush: ruby;">
LoadModule passenger_module /usr/local/lib/ruby/gems/1.8/gems/passenger-2.2.5/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/lib/ruby/gems/1.8/gems/passenger-2.2.5
PassengerRuby /usr/local/bin/ruby
</pre>
<p>To create the new passenger.conf file just run the below command assuming you have textmate installed.</p>
<pre class="brush: ruby;">
mate /etc/apache2/other/passenger.conf
</pre>
<p>Once you have cut and pasted those lines in save it and close the file. You then need to download the <a href=" http://www.fngtps.com/passenger-preference-pane">passenger preference pane</a>. Here is a link to the latest build <a href="http://www.fngtps.com/files/2/2009/09/PassengerPane-1.3.tgz">passenger-preference-pane1.3</a>. Download and install then fire it up.</p>
<p><img src="http://sentia.com.au/wp-content/uploads/2009/09/passenger_preference_pane.png" alt="Passenger preference pane"  height="382px" width="500px" title="Using passenger to run your rails applications when developing" /></p>
<p>Now unlock it if need be and click on the + button to add a new site. A window will pop up and now just select the root of your rails app and click &#8220;open&#8221;. You can now change the address if need be but just defaults to (rails_app_name).local. Hit apply and your good to go.</p>
<p>So go back to your browser and type in that address and it will fire up and your up and running. Now you wont see the log like you are used to since your not running webrick etc but all you have to do is tail the development log by going to the root dir of your application in terminal and typing the following</p>
<pre class="brush: ruby;">
 tail -f log/development.log
</pre>
<p>And that&#8217;s it. You will need to restart passenger if you change the environment.rb file but thats simple enough via the preference pane. So no more ./script/server yay</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/09/using-passenger-to-run-your-rails-applications-when-developing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>no such file to load &#8212; capistrano/ext/multistage</title>
		<link>http://www.sentia.com.au/2009/09/no-such-file-to-load-capistranoextmultistage/</link>
		<comments>http://www.sentia.com.au/2009/09/no-such-file-to-load-capistranoextmultistage/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 06:55:02 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[capistrano]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=488</guid>
		<description><![CDATA[I ran into this error the other day when running &#8220;cap -T&#8221;
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require&#8217;: no such file to load &#8212; capistrano/ext/multistage (LoadError)
So to fix this l did the following
sudo gem uninstall capistrano
sudo rm -rf /usr/bin/cap
sudo gem install capistrano-ext
sudo gem install capistrano
Needed to do &#8220;sudo rm -rf /usr/bin/cap&#8221; as doing just the uninstall of capistrano didn&#8217;t remove [...]]]></description>
			<content:encoded><![CDATA[<p>I ran into this error the other day when running &#8220;cap -T&#8221;</p>
<blockquote><p>/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require&#8217;: no such file to load &#8212; capistrano/ext/multistage (LoadError)</p></blockquote>
<p>So to fix this l did the following</p>
<blockquote><p>sudo gem uninstall capistrano<br />
sudo rm -rf /usr/bin/cap<br />
sudo gem install capistrano-ext<br />
sudo gem install capistrano</p></blockquote>
<p>Needed to do &#8220;sudo rm -rf /usr/bin/cap&#8221; as doing just the uninstall of capistrano didn&#8217;t remove all the files l needed it to.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/09/no-such-file-to-load-capistranoextmultistage/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cool colours and GitHub branch in Terminal</title>
		<link>http://www.sentia.com.au/2009/06/cool-colours-and-github-branch-in-terminal/</link>
		<comments>http://www.sentia.com.au/2009/06/cool-colours-and-github-branch-in-terminal/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 01:17:18 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=285</guid>
		<description><![CDATA[There are many posts out there about making terminal have nice colours and getting it to display your projects GitHub branch. So l thought l would post mine
Here is what my terminal looks like.

Yes l am using Ryan Bates railscasts as my sample project (Thanks Ryan). As you can see it has the username@machine and [...]]]></description>
			<content:encoded><![CDATA[<p>There are many posts out there about making terminal have nice colours and getting it to display your projects GitHub branch. So l thought l would post mine</p>
<p>Here is what my terminal looks like.</p>
<p><img src="http://sentia.com.au/wp-content/uploads/2009/06/picture-4.png" alt="my terminal" title="my terminal" width="438" height="73" class="alignnone size-full wp-image-286" /></p>
<p>Yes l am using Ryan Bates railscasts as my sample project (Thanks Ryan). As you can see it has the username@machine and then if you are in a project running git is also has the branch.</p>
<p>All you need to do it add the following to either your bash_login or bash_profile depending on what you are using. So first you run</p>
<pre class="brush: ruby;">
   mate ~/.bash_login
</pre>
<p>I am using textmate to edit this file. Once there simple add the following</p>
<pre class="brush: ruby;">
export CLICOLOR=1
export TERM=xterm-color
export LSCOLORS=gxfxcxdxbxegedabagacad  # cyan directories
export PS1=&quot;\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$ \`ruby -e \&quot;print (%x{git branch 2&gt; /dev/null}.grep(/^\*/).first || '').gsub(/^\* (.+)$/, '(\1) ')\&quot;\`\[\033[37m\]$\[\033[00m\] &quot;
</pre>
<p>Save the file and reload your bash like so and you are good to go enjoy.</p>
<pre class="brush: ruby;">
  . ~/.bash_login
</pre>
<p>Of course you can change the colour of the font but ill leave that to you</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/06/cool-colours-and-github-branch-in-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Open in TextMate&#8221; from Leopard Finder</title>
		<link>http://www.sentia.com.au/2009/06/open-in-textmate-from-leopard-finder/</link>
		<comments>http://www.sentia.com.au/2009/06/open-in-textmate-from-leopard-finder/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 22:58:59 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[finder]]></category>
		<category><![CDATA[textmate]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=277</guid>
		<description><![CDATA[Henrik Nyh has written a great little plugin that allows you to open files in TextMate from finder. Now most developers are used to doing this via terminal but this is very helpful so check it out
So click here to view the Open in Textmate button.
]]></description>
			<content:encoded><![CDATA[<p>Henrik Nyh has written a great little plugin that allows you to open files in <a href="http://macromates.com/">TextMate</a> from finder. Now most developers are used to doing this via terminal but this is very helpful so check it out</p>
<p>So click here to view the <a href="http://henrik.nyh.se/2007/10/open-in-textmate-from-leopard-finder">Open in Textmate button</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/06/open-in-textmate-from-leopard-finder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails 2.3 is out</title>
		<link>http://www.sentia.com.au/2009/03/rails-23-is-out/</link>
		<comments>http://www.sentia.com.au/2009/03/rails-23-is-out/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 09:46:17 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[mac osx]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://sentia.com.au/?p=118</guid>
		<description><![CDATA[Finally Rails 2.3 is out. Officially its tagged as 2.3.2 from memory. So what are you waiting for update already. Just run the following command in your terminal and your on your way. Sorry windows users find your own way

 sudo gem install rails

Check out the release notes here
]]></description>
			<content:encoded><![CDATA[<p>Finally Rails 2.3 is out. Officially its tagged as 2.3.2 from memory. So what are you waiting for update already. Just run the following command in your terminal and your on your way. Sorry windows users find your own way</p>
<pre class="brush: ruby;">
 sudo gem install rails
</pre>
<p>Check out the release notes <a href="http://guides.rubyonrails.org/2_3_release_notes.html">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/03/rails-23-is-out/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Moving to anywhere on a line in terminal on Mac OSX</title>
		<link>http://www.sentia.com.au/2009/03/moving-to-anywhere-on-a-line-in-terminal-on-mac-osx/</link>
		<comments>http://www.sentia.com.au/2009/03/moving-to-anywhere-on-a-line-in-terminal-on-mac-osx/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 23:38:28 +0000</pubDate>
		<dc:creator>Michael Cindric</dc:creator>
				<category><![CDATA[mac osx]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://blog.sentia.com.au/?p=110</guid>
		<description><![CDATA[If your like me and use terminal on you mac you might find yourself wanting to move to a point on the line you just typed. Well there is a simple way that l know at least. Just press and hold the &#8220;Option&#8221; key and click your mouse anywhere on the line and your cursor [...]]]></description>
			<content:encoded><![CDATA[<p>If your like me and use terminal on you mac you might find yourself wanting to move to a point on the line you just typed. Well there is a simple way that l know at least. Just press and hold the &#8220;Option&#8221; key and click your mouse anywhere on the line and your cursor will move there.</p>
<p>I know there might be a better way without going back to the evil mouse but, l just don&#8217;t know it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sentia.com.au/2009/03/moving-to-anywhere-on-a-line-in-terminal-on-mac-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
