<?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>Lijeesh Blog &#187; Mac</title>
	<atom:link href="http://lijeeshms.com/tag/mac/feed" rel="self" type="application/rss+xml" />
	<link>http://lijeeshms.com</link>
	<description>It is the matter of freedom</description>
	<lastBuildDate>Wed, 28 Apr 2010 10:07:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Setting up a development Sphinx search engine in Mac OS</title>
		<link>http://lijeeshms.com/2010/01/11/setting-up-a-development-sphinx-search-engine-in-mac-os.html</link>
		<comments>http://lijeeshms.com/2010/01/11/setting-up-a-development-sphinx-search-engine-in-mac-os.html#comments</comments>
		<pubDate>Mon, 11 Jan 2010 08:24:16 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=267</guid>
		<description><![CDATA[Sphinx is one of the high performance, free open-source full-text search engine with rich feature list. Recently I was experimenting, on this tool for developing a search platform, for big and complex databases. It is very interesting, and easy to setup a developing environment in Mac OS. Sometimes the compiling using the method specified in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.sphinxsearch.com/" target="_blank">Sphinx</a> is one of the high performance, free open-source full-text search engine with rich feature list. Recently I was experimenting, on this tool for developing a search platform, for big and complex databases.  It is very interesting, and easy to setup a developing environment in Mac OS. Sometimes the compiling using the method specified in the <a href="http://www.sphinxsearch.com/docs/manual-0.9.9.html" target="_blank"> documents of sphinx</a> will not work that easily. I found it is super easy, installation using mac ports. Here is how I done it.</p>
<h3>Installing Sphinx using Mac Ports </h3>
<p>1. If you don&#8217;t have mac-ports installed, Install <a href="http://www.macports.org/" target="_blank">mac-ports downloading from their site</a>.<br />
2. If you not installed X code tools from Mac OS X, DVD install it &#8211; need this for compiling sources in a UNIX development way.<br />
3. Now install sphinx using following command.
<pre class="brush: plain;">sudo port install sphinx</pre>
<p> This will compile and install everything required for making the sphinx work.</p>
<p>Now sphinx is installed and we have &#8216;indexer&#8217;, &#8216;search&#8217; utilities and a &#8216;searchd&#8217; daemon. </p>
<h3>Basic way to use Sphinx</h3>
<p>Sphinx comes with a sample sql file to setup a sql-query based search (Simplest configuration). This SQL and a sample Sphinx sample configuration is located at
<pre class="brush: plain;">/opt/local/etc/sphinx</pre>
<p>. Try following steps to make it running with your configuration<br />
1. Create a directory some where in your system. In my case I created at desktop named &#8216;sphinx&#8217;.
<pre class="brush: plain;"> cd ~/Desktop/sphinx </pre>
<p>2. Create &#8216;test&#8217; database in your mysql server and import the Sample SQL.<br />
2. copy sphinx.conf from sample /opt/local/etc/sphinx to this folder.
<pre class="brush: plain;">cp /opt/local/etc/sphinx/sphinx.conf.dist sphinx.conf</pre>
<p>3. Now edit sphinx.conf and change the database Params and paths. In my case it looks like following. Edit the queries related to your custom databases to make it yours.</p>
<pre class="brush: plain;">
source src1
{
	type					= mysql

	sql_host				= localhost
	sql_user				= test
	sql_pass				=
	sql_db					= test
	sql_port				= 3306	# optional, default is 3306

	sql_query				= \
		SELECT id, group_id, UNIX_TIMESTAMP(date_added) AS date_added, title, content \
		FROM documents

	sql_attr_uint			= group_id
	sql_attr_timestamp		= date_added

	sql_query_info			= SELECT * FROM documents WHERE id=$id
}

index test1
{
	source					= src1
	path					= /Users/lijeeshms/Desktop/sphinx/data/test1
	docinfo					= extern
	charset_type			= sbcs
}

indexer
{
	mem_limit				= 32M
}

searchd
{
	port					= 3312
	log						= /Users/lijeeshms/Desktop/sphinx/log/searchd.log
	query_log				= /Users/lijeeshms/Desktop/sphinx/log/query.log
	read_timeout			= 5
	max_children			= 30
	pid_file				= /Users/lijeeshms/Desktop/sphinx/log/searchd.pid
	max_matches				= 1000
	seamless_rotate			= 1
	preopen_indexes			= 0
	unlink_old				= 1
}
</pre>
<p>4. Create 2 folders, &#8216;data&#8217; and &#8216;log&#8217; inside the &#8216;sphinx&#8217; directory.
<pre class="brush: plain;">mkdir data log</pre>
<p>5. Now run the indexer with the configuration we created from the test directory.
<pre class="brush: plain;">indexer --config /&lt;path-to&gt;/sphinx.conf --all</pre>
<p> This will create the indexes based the confutation.<br />
6. Now run the Sphinx search daemon using the same command.
<pre class="brush: plain;">searchd --config /&lt;path-to&gt;/sphinx.conf </pre>
<p> If everything is fine, sphinx search engine will start with the above index configurations. If any error happens you need to check the configuration for any errors.<br />
7. You can now test a search with &#8216;search&#8217; command from terminal.
<pre class="brush: plain;">search &lt;query&gt; </pre>
<p> The results will be shown.</p>
<p>Once all the above is working, it will be easy to use any of the client libraries for PHP (or <a href="http://php.net/sphinx" target="_blank">PECL</a>), Python, Ruby or Java to search from a web or desktop based environments. Sphinx provides options to run multiple indexes and search on selected indexes, thus allowing one daemon to use with multiple type of searches.<br />
Sphinx can index data from an XMLPipe, this is best for creating configurable search indexes from very dynamic datasources like a CMS or CRM.</p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2010/01/11/setting-up-a-development-sphinx-search-engine-in-mac-os.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A better firefox for snow leapard &#8211; Shiretoko</title>
		<link>http://lijeeshms.com/2009/10/01/a-better-firefox-for-snow-leapard-shiretoko.html</link>
		<comments>http://lijeeshms.com/2009/10/01/a-better-firefox-for-snow-leapard-shiretoko.html#comments</comments>
		<pubDate>Thu, 01 Oct 2009 08:39:39 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[leapard]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=213</guid>
		<description><![CDATA[After updating to my Macbook to snow leapard  I was facing serious performance issues. Sometimes it even slows down the entire system. I tried reinstalling the newest version. Still problems didnt go away. There is still no firefox intel 64 build for snowleapard yet. I find out Shiretoko recently it works amazing, Download it here]]></description>
			<content:encoded><![CDATA[<p>After updating to my Macbook to snow leapard  I was facing serious performance issues. Sometimes it even slows down the entire system. I tried reinstalling the newest version. Still problems didnt go away. There is still no firefox intel 64 build for snowleapard yet.</p>
<p>I find out Shiretoko recently it works amazing,</p>
<div id="attachment_219" class="wp-caption aligncenter" style="width: 650px"><a rel="attachment wp-att-219" href="http://lijeeshms.com/2009/10/01/a-better-firefox-for-snow-leapard-shiretoko.html/screen-shot-2009-10-01-at-12-34-17-pm"><img class="size-full wp-image-219" title="Shiretoko Firefox Mac " src="http://lijeeshms.com/wp-content/uploads/2009/10/Screen-shot-2009-10-01-at-12.34.17-PM.png" alt="Shiretoko Firefox Mac " width="640" height="558" /></a><p class="wp-caption-text">Shiretoko Firefox Mac </p></div>
<p><a title="Shiretoko Firefox mac" href="http://www.latko.org/media/shiretoko-3.5.3.dmg" target="_blank">Download it here </a></p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2009/10/01/a-better-firefox-for-snow-leapard-shiretoko.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy open source software for the Macs</title>
		<link>http://lijeeshms.com/2009/10/01/easy-open-source-software-for-the-macs.html</link>
		<comments>http://lijeeshms.com/2009/10/01/easy-open-source-software-for-the-macs.html#comments</comments>
		<pubDate>Thu, 01 Oct 2009 08:23:16 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[My system]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[Open source]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=207</guid>
		<description><![CDATA[Mac ports is the way to use most of the opens source software from the community on Macs. Recently I found out new tool named Porticus, that makes the life so easy. Setting up Porticus for the first time &#8211; snow leapard 1) Install macports, downloading the dmg &#8211; checkout Macports website for updates 2) [...]]]></description>
			<content:encoded><![CDATA[<p>Mac ports is the way to use most of the opens source software from the community on Macs. Recently I found out new tool named Porticus, that makes the life so easy.</p>
<div id="attachment_208" class="wp-caption aligncenter" style="width: 721px"><a rel="attachment wp-att-208" href="http://lijeeshms.com/2009/10/01/easy-open-source-software-for-the-macs.html/screen-shot-2009-10-01-at-12-10-33-pm"><img class="size-full wp-image-208" title="Porticus for Macports" src="http://lijeeshms.com/wp-content/uploads/2009/10/Screen-shot-2009-10-01-at-12.10.33-PM.png" alt="Porticus for Macports" width="711" height="568" /></a><p class="wp-caption-text">Porticus for Macports</p></div>
<h3>Setting up Porticus for the first time &#8211; snow leapard</h3>
<p>1) Install macports, <a title="Mac ports 1.8.1 for snow leapard" href="http://distfiles.macports.org/MacPorts/MacPorts-1.8.1-10.6-SnowLeopard.dmg" target="_blank">downloading the dmg</a> &#8211; checkout <a title="Macports wesite" href="http://www.macports.org" target="_blank">Macports website</a> for updates</p>
<p>2) Install Porticus <a title="Porticus download" href="http://porticus.alittledrop.com/downloads/Porticus_1_6_3.dmg" target="_blank">downloading</a> from  <a title="Porticus website" href="http://porticus.alittledrop.com/index.html" target="_blank">Porticus website</a></p>
<p>That is it. It is realy usefull tool to try free software on mac. Feels like one of the software package management GUIs Linux users enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2009/10/01/easy-open-source-software-for-the-macs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple updates iphone, Mac OSX, Macbook Pro &#8211; We gathered in Dubai</title>
		<link>http://lijeeshms.com/2009/06/09/apple-updates-iphone-mac-osx-macbook-pro-we-gathered-in-dubai.html</link>
		<comments>http://lijeeshms.com/2009/06/09/apple-updates-iphone-mac-osx-macbook-pro-we-gathered-in-dubai.html#comments</comments>
		<pubDate>Tue, 09 Jun 2009 06:35:07 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[lifestyle]]></category>
		<category><![CDATA[Macbook]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[shuffle magazine]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=180</guid>
		<description><![CDATA[Apple updated in MAC OSX with new release, Snow Leopard &#8211; The most powerful Operating system for Macs yet. They updated iPhone with new iPhone 3GS and updated Macbook Pro. Best thing is prices are reduced and power and features are increased. These news are announced yesterday night at WWDC keynote presentation. Apple fans are [...]]]></description>
			<content:encoded><![CDATA[<p>Apple updated in MAC OSX with new release, Snow Leopard &#8211; The most powerful Operating system for Macs yet. They updated iPhone with new iPhone 3GS and  updated Macbook Pro. Best thing is prices are reduced and power and features are increased. These news are announced yesterday night at WWDC keynote presentation. Apple fans are always curious about any new from the company. In Dubai we all are at <a href="http://www.facebook.com/event.php?eid=84229015833&amp;ref=mf" target="_blank">WWDC Get-Together event </a> organized by <a href="http://www.shufflegazine.com/" target="_blank">shuffle Magazine</a> ( twitter &#8211; <a href="http://twitter.com/shufflegazine" target="_blank">@shufflegazine</a>), to track the event live.</p>
<p>We are watching the event live at <a href="http://www.macrumors.com/" target="_blank">www.macrumors.com</a> and <a href="http://www.engadget.com/2009/06/08/phil-schiller-keynote-live-from-wwdc-2009/" target="_blank">Engadget</a> live blogs. We discussed and enjoyed the new updates.</p>
<p>here is some photos from the event</p>
<div id="a" class="wp-caption aligncenter" style="width: 614px"> <a rel="lightbox[wwdc]" href="http://photos-g.ak.fbcdn.net/hphotos-ak-snc1/hs082.snc1/4563_107941379251_89246719251_2723358_6147500_n.jpg" title="WWDC Get together in Dubai" rel="lightbox[180]"><img title="WWDC Get together in Dubai" src="http://photos-g.ak.fbcdn.net/hphotos-ak-snc1/hs082.snc1/4563_107941379251_89246719251_2723358_6147500_n.jpg" alt="WWDC Get together in Dubai" width="604" height="403" /></a><p class="wp-caption-text">WWDC Get together in Dubai</p></div>
<p><div id="b" class="wp-caption alignleft" style="width: 130px"> <a rel="lightbox[wwdc]" href="http://photos-h.ak.fbcdn.net/hphotos-ak-snc1/hs082.snc1/4563_107941384251_89246719251_2723359_1143505_n.jpg" title="WWDC Get Together in Dubai" rel="lightbox[180]"><img title="WWDC Get Together in Dubai" src="http://photos-h.ak.fbcdn.net/hphotos-ak-snc1/hs102.snc1/4563_107941384251_89246719251_2723359_1143505_s.jpg" alt="WWDC Get Together in Dubai by shuffle magazine" width="120" height="80" /></a><p class="wp-caption-text">WWDC Get Together in Dubai by shuffle magazine</p></div> <div id="c" class="wp-caption alignleft" style="width: 130px"> <a rel="lightbox[wwdc]" href="http://photos-g.ak.fbcdn.net/hphotos-ak-snc1/hs102.snc1/4563_107941339251_89246719251_2723350_5676607_n.jpg" title="Shuja in WWDC get Together" rel="lightbox[180]"><img title="Shuja in WWDC get Together" src="http://photos-g.ak.fbcdn.net/hphotos-ak-snc1/hs082.snc1/4563_107941339251_89246719251_2723350_5676607_s.jpg" alt="Shuja in WWDC get Together" width="120" height="80" /></a> <p class="wp-caption-text">Shuja in WWDC get Together</p></div> <div id="e" class="wp-caption alignleft" style="width: 130px"> <a rel="lightbox[wwdc]" href="http://photos-h.ak.fbcdn.net/hphotos-ak-snc1/hs082.snc1/4563_107941439251_89246719251_2723367_7691510_n.jpg" title="Me in WWDC get Togeher in Dubai" rel="lightbox[180]"><img title="Me in WWDC get Togeher in Dubai" src="http://photos-h.ak.fbcdn.net/hphotos-ak-snc1/hs102.snc1/4563_107941439251_89246719251_2723367_7691510_s.jpg" alt="Me in WWDC get Togeher in Dubai" width="120" height="80" /></a> <p class="wp-caption-text">Me in WWDC get Togeher in Dubai</p></div> <div id="d" class="wp-caption alignleft" style="width: 130px"> <a rel="lightbox[wwdc]" href="http://photos-f.ak.fbcdn.net/hphotos-ak-snc1/hs102.snc1/4563_107941474251_89246719251_2723373_6595075_n.jpg" title="Lucky Draw at WWDC Get Together by shuffle magazine" rel="lightbox[180]"><img title="Lucky Draw at WWDC Get Together by shuffle magazine" src="http://photos-f.ak.fbcdn.net/hphotos-ak-snc1/hs102.snc1/4563_107941474251_89246719251_2723373_6595075_s.jpg" alt="Lucky Draw at WWDC Get Together" width="120" height="80" /></a><p class="wp-caption-text">Lucky Draw at WWDC Get Together</p></div><br />
<br clear="both"/><br />
More images can be found in <a href="http://www.facebook.com/album.php?aid=115126&amp;id=89246719251" target="_blank">Shuffle magazine Facebook album</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2009/06/09/apple-updates-iphone-mac-osx-macbook-pro-we-gathered-in-dubai.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blog updated.</title>
		<link>http://lijeeshms.com/2009/03/28/blog-updated.html</link>
		<comments>http://lijeeshms.com/2009/03/28/blog-updated.html#comments</comments>
		<pubDate>Sat, 28 Mar 2009 06:57:05 +0000</pubDate>
		<dc:creator>Lijeesh</dc:creator>
				<category><![CDATA[Blog updates]]></category>
		<category><![CDATA[Flip Media]]></category>
		<category><![CDATA[Flip Trivandrum]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Friends]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Update]]></category>

		<guid isPermaLink="false">http://lijeeshms.com/?p=49</guid>
		<description><![CDATA[Finally after more than one year, I updated my blog. Unfortunately may be due to  a lazy digital life style, I forgot my blog for a while I started thinking about updating my blog after  Shuja posted his long awaited blog post entry, struggling to blog. When Ambarish started his blog, he asked me some [...]]]></description>
			<content:encoded><![CDATA[<p>Finally after more than one year, I updated my blog. Unfortunately may be due to  a lazy digital life style, I forgot my blog for a while <img src='http://lijeeshms.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I started thinking about updating my blog after  <a title="Shuja Shabandri - Technical Lead Flip Media" href="http://dollarthis.com" target="_blank">Shuja</a> posted his long awaited blog post entry, <a title="Struggling to blog" href="http://dollarthis.com/2009/03/general/struggling-to-blog.html" target="_blank">struggling to blog</a>.</p>
<p>When <a title="IT Specialist Flip Media" href="http://ambarishrh.com" target="_blank">Ambarish</a> started his blog, he asked me some help on setting up. He linked my blog on his blog. This also gave me more strength to update my blog.</p>
<p>From <a title="Flip Trivandrum - Flip Media Private Limited" href="http://www.flipcorp.com/en/category/discover/flip-offices/trivandrum/" target="_blank">Flip Trivandrum</a> most the guys started blogging. And <a title="Muhammed shameer - Feel it fresh" href="http://feelitfresh.com" target="_blank">Muhammed shameer</a> blogged about the <a href="http://feelitfresh.com/blogging/flip-trivandrum-bloggers/" target="_blank">Flip Trivandrum bloggers</a>. All started twittering, and <a title="Saif blog - Who cares web" href="http://whocaresweb.com/" target="_blank">Saifudeen</a> said twitter is for lazy bloggers.  All these new happenings  made me update my blog again for new start.</p>
<p><strong>Updates</strong></p>
<ol>
<li>Blog theme is updated with the iBlog theme by <a href="http://apowers.com/">Andrew Powers</a> and <a href="http://www.pagelines.com/">Pagelines Design</a>, inspired by Apple &#8211; also in these days I switched to mac from Linux, will update about this in upcomming posts <img src='http://lijeeshms.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</li>
<li>Edited the theme to make it work with my Open id authentication &#8211; my blog URL is my Open ID. Added my &#8220;photoblog&#8221; page back in, by a small hack</li>
<li>Added plugin  <a title="Visit plugin homepage" href="http://semperfiwebdesign.com/">All in One SEO Pack .<br />
</a></li>
<li>Added <a title="Visit plugin homepage" href="http://www.23systems.net/plugins/lightbox-plus/">Lightbox Plus</a> plugin to make my old lightbox stuffs work.- There exists lot of amazing alternatives for lightbox these days will updates with similar one later.</li>
</ol>
<p>Since my wordpress installation was a bit older some existing plugins made problems while updating to latest. With wordpress plugin autoinstall features everything went very easy.</p>
]]></content:encoded>
			<wfw:commentRss>http://lijeeshms.com/2009/03/28/blog-updated.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->