<?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>Lunatic Notes &#187; Mac</title>
	<atom:link href="http://lunatic.web.id/tag/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://lunatic.web.id</link>
	<description>Rants about tech and design</description>
	<lastBuildDate>Fri, 22 May 2009 11:28:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Native Web Development (apache, PHP and mySQL) on Mac OSX Leopard</title>
		<link>http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/</link>
		<comments>http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/#comments</comments>
		<pubDate>Fri, 22 May 2009 11:27:12 +0000</pubDate>
		<dc:creator>anima</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Webdev]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://lunatic.web.id/?p=175</guid>
		<description><![CDATA[If you're a web developer and you're on a Mac, you're probably using MAMP or XAMPP for your all in one apache + PHP + mySQL need. But did you know that your Mac system is already a web server by default installation? Utilizing the native web server, you can save yourself from downloading stuffs you don't need.

It is not as complicated as you think. Given that Macs are descendants of *nix system, it already has apache2 and PHP module built in, we only need to activate those two and install mySQL. Here's how.]]></description>
			<content:encoded><![CDATA[<p><a href="http://lunatic.web.id/wp-content/uploads/2009/05/webdev1.png"><img class="alignleft size-full wp-image-196 hidden" title="Webdev" src="http://lunatic.web.id/wp-content/uploads/2009/05/webdev1.png" alt="Webdev" width="200" height="200" /></a>If you&#8217;re a web developer and you&#8217;re on a Mac, you&#8217;re probably using <a href="http://mamp.info/en/index.html">MAMP</a> or <a href="http://www.apachefriends.org/en/xampp-macosx.html">XAMPP</a> for your all in one apache + PHP + mySQL need. But did you know that your Mac system is already a web server by default installation? Utilizing the native web server, you can save yourself from downloading stuffs you don&#8217;t need.</p>
<p>It is not as complicated as you think. Given that Macs are descendants of *nix system, it already has apache2 and PHP module built in, we only need to activate those two and install mySQL. Here&#8217;s how.</p>
<h4>Activating apache web server</h4>
<p>Piece of cake, you only need to go to System Preferences and then to the Sharing prefpane.</p>
<div id="attachment_177" class="wp-caption alignnone" style="width: 650px"><a href="http://lunatic.web.id/wp-content/uploads/2009/05/picture-13.png"><img class="size-medium wp-image-177 " title="System Preferences" src="http://lunatic.web.id/wp-content/uploads/2009/05/picture-13-640x547.png" alt="System Preferences" width="640" height="547" /></a><p class="wp-caption-text">System Preferences</p></div>
<p>Inside the Sharing prefpane check the web sharing on the left hand side. Simple as that and you&#8217;re done.</p>
<div id="attachment_178" class="wp-caption alignnone" style="width: 650px"><a href="http://lunatic.web.id/wp-content/uploads/2009/05/picture-2.png"><img class="size-medium wp-image-178" title="Check web sharing in the pref pane" src="http://lunatic.web.id/wp-content/uploads/2009/05/picture-2-640x536.png" alt="Check web sharing in the pref pane" width="640" height="536" /></a><p class="wp-caption-text">Check web sharing in the pref pane</p></div>
<p>You know where you have the folder Sites in your home folder? If you put anything there, it will be accessible via <code>http://localhost/~yourusername/</code>. Cute anot?</p>
<h4>Activating the PHP module</h4>
<p>You will need to type things into terminal this time. This is also a piece of cake, don&#8217;t be afraid, the Terminal is our friend :)<br />
To run terminal you can spotlight it or go to Applications / Utilities using Finder.</p>
<div id="attachment_179" class="wp-caption alignnone" style="width: 650px"><a href="http://lunatic.web.id/wp-content/uploads/2009/05/picture-3.png"><img class="size-medium wp-image-179" title="Terminall app via Finder" src="http://lunatic.web.id/wp-content/uploads/2009/05/picture-3-640x278.png" alt="Terminall app via Finder" width="640" height="278" /></a><p class="wp-caption-text">Terminall app via Finder</p></div>
<p>Here&#8217;s what you have to do in Terminal.</p>
<ol>
<li>First go to <code>/etc/apache2/</code> directory by typing <code>cd /etc/apache2/</code> &lt;return&gt;. If it returns an error check your input, see if you&#8217;ve typed it right.
<div id="attachment_180" class="wp-caption alignnone" style="width: 595px"><a href="http://lunatic.web.id/wp-content/uploads/2009/05/picture-4.png"><img class="size-full wp-image-180" title="Opening the httpd.conf in terminal" src="http://lunatic.web.id/wp-content/uploads/2009/05/picture-4.png" alt="Opening the httpd.conf in terminal" width="585" height="447" /></a><p class="wp-caption-text">Opening the httpd.conf in terminal</p></div></li>
<li>Next on, let&#8217;s open the apache configuration file: <code>httpd.conf</code> as root. We do this by typing <code>sudo nano httpd.conf</code>. You will be prompted to enter your login password. Upon doing so, this screen will show. This is <em>nano</em>, Terminal&#8217;s text editor.
<p><div id="attachment_181" class="wp-caption alignnone" style="width: 595px"><a href="http://lunatic.web.id/wp-content/uploads/2009/05/picture-5.png"><img class="size-full wp-image-181" title="Editing httpd.conf using nano on Terminal" src="http://lunatic.web.id/wp-content/uploads/2009/05/picture-5.png" alt="Editing httpd.conf using nano on Terminal" width="585" height="447" /></a><p class="wp-caption-text">Editing httpd.conf using nano on Terminal</p></div></li>
<li>Now we&#8217;re going to activate the PHP5 module. If you take a look at the terminal screen, you&#8217;ll see a list of commands. We&#8217;ll do a <code>^W</code> aka <em>Where Is</em> to find the line that says <code>php5</code>. Press <code>Ctrl+W</code>, type in <code>php5</code> &lt;return&gt;</li>
<li>Take a good look at the terminal screen, you will see this line:<br />
<code>#LoadModule php5_module          libexec/httpd/libphp5.so</code>. You only have to delete the # sign:<br />
<code>LoadModule php5_module          libexec/httpd/libphp5.so</code></li>
<li>Done, now exit nano with <code>^X</code> command. You will be prompted to save your changes. Type <code>Y</code> &lt;return&gt; to save and exit. Don&#8217;t change the file name in process btw ;)
<p><div id="attachment_182" class="wp-caption alignnone" style="width: 595px"><a href="http://lunatic.web.id/wp-content/uploads/2009/05/picture-7.png"><img class="size-full wp-image-182" title="Save and exit with ^X" src="http://lunatic.web.id/wp-content/uploads/2009/05/picture-7.png" alt="Save and exit with ^X" width="585" height="447" /></a><p class="wp-caption-text">Save and exit with ^X</p></div></li>
</ol>
<p>That&#8217;s it, we have ourselves an apache2 web server with PHP. You can check if the PHP module&#8217;s running with a simple <code>phpinfo();</code></p>
<h4>Installing mySQL</h4>
<p>Another walk in the park. If you don&#8217;t already have it, you can <a href="http://dev.mysql.com/downloads/">download mySQL server here</a>. You are looking for the mySQL server installer <a href="http://dev.mysql.com/downloads/">in package format</a>, it&#8217;s the <code>.dmg</code> format you&#8217;re already familiar with. It&#8217;s a 60MB download, smaller than the 70+ MB XAMPP and 130+ MB MAMP ;)</p>
<p>Installing is simple, mount the .dmg and then install all the packages including the .prefpane. After installing all items you will be taken to the newly installed mySQL prefpane.</p>
<p><div id="attachment_185" class="wp-caption alignnone" style="width: 650px"><a href="http://lunatic.web.id/wp-content/uploads/2009/05/picture-9.png"><img class="size-medium wp-image-185" title="mySQL prefpane" src="http://lunatic.web.id/wp-content/uploads/2009/05/picture-9-640x350.png" alt="mySQL prefpane" width="640" height="350" /></a><p class="wp-caption-text">mySQL prefpane</p></div>
<p>Done, now mySQL&#8217;s up and running. You might want to install <a href="http://www.navicat.com/">Navicat</a> or <a href="http://www.phpmyadmin.net/">phpMyAdmin</a> for the mySQL front end. Now that you have everything working, you can already start developing.</p>
<h4>Extra: VirtualHostX to shorten your working URL</h4>
<p>I&#8217;m not a big fan of long URLs, my working host is <code>http://localhost/~anima/</code> and my phpMyAdmin URL is <code>http://localhost/~anima/phpmyadmin/</code>. Those are long badass URLs and I hate them, so I looked for a workaround shortening them and that&#8217;s when <a href="http://clickontyler.com/virtualhostx/">VirtualHostX</a> comes to the rescue.</p>
<div id="attachment_186" class="wp-caption alignnone" style="width: 650px"><a href="http://lunatic.web.id/wp-content/uploads/2009/05/picture-10.png"><img class="size-medium wp-image-186" title="VirtualHostX" src="http://lunatic.web.id/wp-content/uploads/2009/05/picture-10-640x415.png" alt="VirtualHostX" width="640" height="415" /></a><p class="wp-caption-text">VirtualHostX</p></div>
<p>This way I can shorten my <code>http://localhost/~anima/</code> to <code>http://anima/</code> and my <code>http://localhost/~anima/phpmyadmin/</code> to <code>http://mysql/</code></p>
<p>Free version of VirtualHostX allows you to create 3 host names, that should be enough: one for the main working URL, one for mySQL and you have an extra one. Different story if you want to assign each projects of yours with a different host name. You must get a license then :)</p>
<p><em><a href="http://clickontyler.com/">Tyler Hall</a> (the developer of VirtualHostX) was very kind to give me a free license of this because I tweeted something about it :)</em></p>
<p>Gotta love Macs, they have the beauty and the brains inside :) Happy developing!</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/" target="_blank" title="Share on Facebook">Share on Facebook</a></p><p class="shareparagraph" align="left"><a class="tt" href="http://twitter.com/home/?status=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard+http://bit.ly/3wwEpw" title="Tweet This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="[Post to Twitter]" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard+http://bit.ly/3wwEpw" title="Tweet This">Tweet This</a>&nbsp; <a class="tt" href="http://delicious.com/post?url=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard" title="Delicious This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="[Post to Delicious]" border="0" /></a> <a class="tt" href="http://delicious.com/post?url=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard" title="Delicious This">Delicious This</a>&nbsp; <a class="tt" href="http://digg.com/submit?url=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard" title="Digg This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="[Post to Digg]" border="0" /></a> <a class="tt" href="http://digg.com/submit?url=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard" title="Digg This">Digg This</a>&nbsp; <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard&amp;link=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/" title="Ping.fm This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-ping.png" alt="[Post to Ping.fm]" border="0" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard&amp;link=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/" title="Ping.fm This">Ping This</a>&nbsp; <a class="tt" href="http://reddit.com/submit?url=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard" title="Reddit This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="[Post to Reddit]" border="0" /></a> <a class="tt" href="http://reddit.com/submit?url=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard" title="Reddit This">Reddit This</a>&nbsp; <a class="tt" href="http://stumbleupon.com/submit?url=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard" title="StumbleUpon This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-su.png" alt="[Post to StumbleUpon]" border="0" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/&amp;title=Native+Web+Development+%28apache%2C+PHP+and+mySQL%29+on+Mac+OSX+Leopard" title="StumbleUpon This">Stumble This</a>&nbsp; </p>]]></content:encoded>
			<wfw:commentRss>http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Tweaking Safari 4&#8217;s Hidden Preferences</title>
		<link>http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/</link>
		<comments>http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/#comments</comments>
		<pubDate>Mon, 04 May 2009 02:05:04 +0000</pubDate>
		<dc:creator>anima</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[browsers]]></category>

		<guid isPermaLink="false">http://lunatic.web.id/?p=125</guid>
		<description><![CDATA[Okay, who else thinks Safari 4 is cute and all that, and that it looks like Google Chrome? New look and spanking great new features. Safari 4 has the tab bar on top, fancy URL completion, circular progress bar (instead of the bluish progress bar on the address bar we used to have in the previous version) and many more.

Some people are excited about the changes, some don’t. I personally can’t get used to the tab bar relocation so I looked for a solution to revert it back. There is the hard way, typing this and that into Terminal app but hey, let’s cheat and use the easier way.]]></description>
			<content:encoded><![CDATA[<p><a href="http://lunatic.web.id/wp-content/uploads/2009/05/mammoth.png"><img class="alignleft size-full wp-image-127 hidden" title="Safari 4 Buddy" src="http://lunatic.web.id/wp-content/uploads/2009/05/mammoth.png" alt="Safari 4 Buddy" width="200" height="200" /></a>Okay, who else thinks <a href="http://www.apple.com/safari/">Safari 4</a> is cute and all that, and that it looks like <a href="http://www.google.com/chrome">Google Chrome</a>? New look and spanking great new features. Safari 4 has the tab bar on top, fancy URL completion, circular progress bar (instead of the bluish progress bar on the address bar we used to have in the previous version) and many more.</p>
<p>Some people are excited about the changes, some don&#8217;t. I personally can&#8217;t get used to the tab bar relocation so I looked for a solution to revert it back. There is the hard way, typing this and that into Terminal app but hey, let&#8217;s cheat and use the easier way.</p>
<p><a href="http://www.swoon.net/">Swoon dot net made a neat app that allows us to tweak the hidden preferences in Safari</a>, such as relocate the tab bar to where it used to be. Installation is fairly simple, you can&#8217;t screw this up, really. <a href="http://www.swoon.net/site/software.html">Download the app here</a> and run it.</p>
<div id="attachment_126" class="wp-caption alignnone" style="width: 506px"><a href="http://lunatic.web.id/wp-content/uploads/2009/05/picture-1.png"><img class="size-medium wp-image-126" title="My safari 4 buddy preferences" src="http://lunatic.web.id/wp-content/uploads/2009/05/picture-1-496x640.png" alt="My safari 4 buddy preferences" width="496" height="640" /></a><p class="wp-caption-text">My safari 4 buddy preferences</p></div>
<p>Press apply and restart your Safari. Voila! You&#8217;ve got your familiar-looking Safari with the massive new features :)</p>
<p><em>Note: if you are using Safari 4 on Windows and you&#8217;re looking for the hidden preferences: sorry, not your lucky day.</em></p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/" target="_blank" title="Share on Facebook">Share on Facebook</a></p><p class="shareparagraph" align="left"><a class="tt" href="http://twitter.com/home/?status=Tweaking+Safari+4%27s+Hidden+Preferences+http://bit.ly/5kHRs" title="Tweet This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="[Post to Twitter]" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=Tweaking+Safari+4%27s+Hidden+Preferences+http://bit.ly/5kHRs" title="Tweet This">Tweet This</a>&nbsp; <a class="tt" href="http://delicious.com/post?url=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences" title="Delicious This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="[Post to Delicious]" border="0" /></a> <a class="tt" href="http://delicious.com/post?url=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences" title="Delicious This">Delicious This</a>&nbsp; <a class="tt" href="http://digg.com/submit?url=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences" title="Digg This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="[Post to Digg]" border="0" /></a> <a class="tt" href="http://digg.com/submit?url=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences" title="Digg This">Digg This</a>&nbsp; <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences&amp;link=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/" title="Ping.fm This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-ping.png" alt="[Post to Ping.fm]" border="0" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences&amp;link=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/" title="Ping.fm This">Ping This</a>&nbsp; <a class="tt" href="http://reddit.com/submit?url=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences" title="Reddit This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="[Post to Reddit]" border="0" /></a> <a class="tt" href="http://reddit.com/submit?url=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences" title="Reddit This">Reddit This</a>&nbsp; <a class="tt" href="http://stumbleupon.com/submit?url=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences" title="StumbleUpon This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-su.png" alt="[Post to StumbleUpon]" border="0" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/&amp;title=Tweaking+Safari+4%27s+Hidden+Preferences" title="StumbleUpon This">Stumble This</a>&nbsp; </p>]]></content:encoded>
			<wfw:commentRss>http://lunatic.web.id/tips-and-tricks/tweaking-safari-4s-hidden-preferences/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enable Growl notifications on iChat</title>
		<link>http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/</link>
		<comments>http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 06:30:49 +0000</pubDate>
		<dc:creator>anima</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[iChat]]></category>

		<guid isPermaLink="false">http://lunatic.web.id/?p=95</guid>
		<description><![CDATA[Being the default messenger app on Mac, iChat sure is pretty and well integrated to the system. However, unlike AdiumX, iChat does not show Growl notifications (wow I'm speaking alien language aren't I? Mac users should understand this, I think).

I'm not sure if it's an iChat issue or Growl issue, but we have a solution :)]]></description>
			<content:encoded><![CDATA[<p><a href="http://lunatic.web.id/wp-content/uploads/2009/04/chax.png"><img class="alignleft size-full wp-image-96 hidden" title="Chax" src="http://lunatic.web.id/wp-content/uploads/2009/04/chax.png" alt="Chax" width="200" height="200" /></a>Being the default messenger app on Mac, <a href="http://www.apple.com/macosx/features/ichat.html">iChat</a> sure is pretty and well integrated to the system. However, unlike <a href="http://adiumx.com/">AdiumX</a>, iChat does not show <a href="http://growl.info/">Growl</a> notifications (<em>wow I&#8217;m speaking alien language aren&#8217;t I? Mac users should understand this, I think</em>).</p>
<p>I&#8217;m not sure if it&#8217;s an iChat issue or Growl issue, but we have a solution :)</p>
<p><a href="http://www.ksuther.com/chax/">Chax</a> aims to make your experience using iChat more enjoyable. Go to their site, download the installer and run it. It should prompt you to restart iChat after installation.</p>
<p><a href="http://lunatic.web.id/wp-content/uploads/2009/04/picture-12.png"><img class="alignnone size-full wp-image-100" title="Chax preferences" src="http://lunatic.web.id/wp-content/uploads/2009/04/picture-12.png" alt="Chax preferences" width="597" height="617" /></a></p>
<p>Chax&#8217;s preferences is located inside iChat preferences. There are many things you can do there, but for me the most important thing is to turn on the Growl notifications. There. Now I am a happier iChat user :)</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/" target="_blank" title="Share on Facebook">Share on Facebook</a></p><p class="shareparagraph" align="left"><a class="tt" href="http://twitter.com/home/?status=Enable+Growl+notifications+on+iChat+http://bit.ly/UFyxC" title="Tweet This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="[Post to Twitter]" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=Enable+Growl+notifications+on+iChat+http://bit.ly/UFyxC" title="Tweet This">Tweet This</a>&nbsp; <a class="tt" href="http://delicious.com/post?url=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/&amp;title=Enable+Growl+notifications+on+iChat" title="Delicious This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="[Post to Delicious]" border="0" /></a> <a class="tt" href="http://delicious.com/post?url=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/&amp;title=Enable+Growl+notifications+on+iChat" title="Delicious This">Delicious This</a>&nbsp; <a class="tt" href="http://digg.com/submit?url=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/&amp;title=Enable+Growl+notifications+on+iChat" title="Digg This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="[Post to Digg]" border="0" /></a> <a class="tt" href="http://digg.com/submit?url=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/&amp;title=Enable+Growl+notifications+on+iChat" title="Digg This">Digg This</a>&nbsp; <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Enable+Growl+notifications+on+iChat&amp;link=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/" title="Ping.fm This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-ping.png" alt="[Post to Ping.fm]" border="0" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=Enable+Growl+notifications+on+iChat&amp;link=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/" title="Ping.fm This">Ping This</a>&nbsp; <a class="tt" href="http://reddit.com/submit?url=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/&amp;title=Enable+Growl+notifications+on+iChat" title="Reddit This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="[Post to Reddit]" border="0" /></a> <a class="tt" href="http://reddit.com/submit?url=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/&amp;title=Enable+Growl+notifications+on+iChat" title="Reddit This">Reddit This</a>&nbsp; <a class="tt" href="http://stumbleupon.com/submit?url=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/&amp;title=Enable+Growl+notifications+on+iChat" title="StumbleUpon This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-su.png" alt="[Post to StumbleUpon]" border="0" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/&amp;title=Enable+Growl+notifications+on+iChat" title="StumbleUpon This">Stumble This</a>&nbsp; </p>]]></content:encoded>
			<wfw:commentRss>http://lunatic.web.id/tips-and-tricks/enable-growl-notifications-on-ichat/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GreaseKit &#8211; Use GreaseMonkey&#8217;s User Scripts in Safari</title>
		<link>http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/</link>
		<comments>http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 16:25:14 +0000</pubDate>
		<dc:creator>anima</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://lunatic.web.id/?p=80</guid>
		<description><![CDATA[GreaseMonkey is a very powerful Firefox add-on that lets us make changes to the website we visit on-the-fly by installing <a href="http://userscripts.org/">user scripts</a>. In human language, that means we have more control over the websites we visit. For example, we can add a 'download' link to Youtube video pages and remove annoying quizzes from our Facebook homepage.

Neat innit? The problem is: GreaseMonkey cannot be installed in Safari, Mac OSX's default browser (and by far my favorite one). Solution: GreaseKit. Here's how.]]></description>
			<content:encoded><![CDATA[<p><a href="http://lunatic.web.id/wp-content/uploads/2009/04/safarigreasemonkey.jpg"><img class="alignleft size-full wp-image-86 hidden" title="Safari - GreaseMonkey" src="http://lunatic.web.id/wp-content/uploads/2009/04/safarigreasemonkey.jpg" alt="Safari - GreaseMonkey" width="200" height="200" /></a><a href="http://en.wikipedia.org/wiki/Greasemonkey">GreaseMonkey</a> is a very powerful Firefox add-on that lets us make <em>on-the-fly</em> changes to websites we visit  by installing <a href="http://userscripts.org/">user scripts</a>. Simply put: that means we have more control over websites we visit. For example, we can <a href="http://userscripts.org/scripts/show/21774">add a &#8216;download&#8217; link to Youtube video pages</a> and <a href="http://userscripts.org/scripts/show/44459">remove annoying quizzes from our Facebook homepage</a>.</p>
<p>Neat innit? The problem is: GreaseMonkey cannot be installed in Safari, Mac OSX&#8217;s default browser (and by far my favorite one). Solution: <a href="http://8-p.info/greasekit/">GreaseKit</a>. Here&#8217;s how.</p>
<p>First we&#8217;re going to have to install <a href="http://www.culater.net/software/SIMBL/SIMBL.php">SIMBL</a>. SIMBL is a software that lets you modify Cocoa applications. In this case, we&#8217;re modifying Safari.</p>
<p>After installing SIMBL, we can now proceed to installing <a href="http://8-p.info/greasekit/">GreaseKit (download it here)</a>. GreaseKit is not an application, it&#8217;s a SIMBL add on. Double click the DMG file and you&#8217;ll see this file:</p>
<p><a href="http://lunatic.web.id/wp-content/uploads/2009/04/picture-11.png"><img class="size-medium wp-image-82 alignnone" title="GreaseKit.dmg" src="http://lunatic.web.id/wp-content/uploads/2009/04/picture-11-640x407.png" alt="GreaseKit.dmg" width="640" height="407" /></a></p>
<p>Drag <code>GreaseKit.bundle</code> to <code>OSX</code> (this being your system root) &gt; <code>Library</code> &gt; <code>Application Support</code> &gt; <code>SIMBL</code> &gt; <code>Plugins</code>.</p>
<div id="attachment_83" class="wp-caption alignnone" style="width: 650px"><a href="http://lunatic.web.id/wp-content/uploads/2009/04/picture-21.png"><img class="size-medium wp-image-83 " title="Install location" src="http://lunatic.web.id/wp-content/uploads/2009/04/picture-21-640x275.png" alt="Install location - click to view larger image" width="640" height="275" /></a><p class="wp-caption-text">Install location - click to view larger image</p></div>
<p>Now restart your Safari app and check the menu bar, there will be an additional menu that says GreaseKit. That does it, now you can browse the available user scripts and install the ones you like :)</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/" target="_blank" title="Share on Facebook">Share on Facebook</a></p><p class="shareparagraph" align="left"><a class="tt" href="http://twitter.com/home/?status=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari+http://bit.ly/Wf0LS" title="Tweet This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-twitter.png" alt="[Post to Twitter]" border="0" /></a> <a class="tt" href="http://twitter.com/home/?status=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari+http://bit.ly/Wf0LS" title="Tweet This">Tweet This</a>&nbsp; <a class="tt" href="http://delicious.com/post?url=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari" title="Delicious This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-delicious.png" alt="[Post to Delicious]" border="0" /></a> <a class="tt" href="http://delicious.com/post?url=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari" title="Delicious This">Delicious This</a>&nbsp; <a class="tt" href="http://digg.com/submit?url=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari" title="Digg This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-digg.png" alt="[Post to Digg]" border="0" /></a> <a class="tt" href="http://digg.com/submit?url=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari" title="Digg This">Digg This</a>&nbsp; <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari&amp;link=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/" title="Ping.fm This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-ping.png" alt="[Post to Ping.fm]" border="0" /></a> <a class="tt" href="http://ping.fm/ref/?method=microblog&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari&amp;link=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/" title="Ping.fm This">Ping This</a>&nbsp; <a class="tt" href="http://reddit.com/submit?url=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari" title="Reddit This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-reddit.png" alt="[Post to Reddit]" border="0" /></a> <a class="tt" href="http://reddit.com/submit?url=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari" title="Reddit This">Reddit This</a>&nbsp; <a class="tt" href="http://stumbleupon.com/submit?url=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari" title="StumbleUpon This"><img class="nothumb" src="http://lunatic.web.id/wp-content/plugins/tweet-this/icons/tt-su.png" alt="[Post to StumbleUpon]" border="0" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/&amp;title=GreaseKit+--+Use+GreaseMonkey%27s+User+Scripts+in+Safari" title="StumbleUpon This">Stumble This</a>&nbsp; </p>]]></content:encoded>
			<wfw:commentRss>http://lunatic.web.id/tips-and-tricks/greasekit-use-greasemonkeys-user-scripts-in-safari/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
