<?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>SikhNerd &#187; Tool</title> <atom:link href="http://sikhnerd.com/tag/tool/feed/" rel="self" type="application/rss+xml" /><link>http://sikhnerd.com</link> <description>50% Sikh &#124; 50% Nerd &#124; 100% Finger Licken' Good!</description> <lastBuildDate>Sun, 18 Sep 2011 19:05:06 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>[HowTo]Install ChiliProject on CentOS 5.6 take two</title><link>http://sikhnerd.com/nerd/howtoinstall-chiliproject-on-centos-5-6-take-two/</link> <comments>http://sikhnerd.com/nerd/howtoinstall-chiliproject-on-centos-5-6-take-two/#comments</comments> <pubDate>Sat, 28 May 2011 03:07:09 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category> <category><![CDATA[chiliproject]]></category> <category><![CDATA[howto]]></category> <category><![CDATA[internet]]></category> <category><![CDATA[redmine]]></category> <category><![CDATA[Tool]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=653</guid> <description><![CDATA[This is a quick guide on how to setup ChiliProject (or redmine) on CentOS 5.6. This is a followup to this post, with some different, slightly better methodology. I&#8217;ll likely [...]<div
id="yarp"> Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/howto-install-chiliproject-or-redmine-on-centos/' rel='bookmark' title='[HowTo] Install ChiliProject (or Redmine) on CentOS'>[HowTo] Install ChiliProject (or Redmine) on CentOS</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>This is a quick guide on how to setup <a
href="https://www.chiliproject.org">ChiliProject</a> (or <a
href="http://redmine.org">redmine</a>) on CentOS 5.6. This is a followup to <a
href="http://sikhnerd.com/nerd/howto-install-chiliproject-or-redmine-on-centos/">this post,</a> with some different, slightly better methodology. I&#8217;ll likely be iterating on this guide a few times, so check the blog for updates before launching into this. At the time of writing, ChiliProject v1.4.0 is the current stable release, once v2.0.0 comes out, some of this will not apply.</p><p>Once again we&#8217;re going to go with the tried and trusted:</p><ul><li>Ruby Enterprise Edition (REE)</li><li>Rails</li><li>RubyGems</li><li>Passenger</li><li>Apache</li><li>MySQL</li></ul><p>This time we&#8217;re going to install REE via rvm and put chiliproject into it&#8217;s own user.</p><p>Enable the EPEL repository, so we can grab slightly more up-to-date versions of some packages, as well as subversion and git:</p><pre class="brush: bash; title: ; notranslate">
su -c 'rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm'
</pre><p>Same as last time lets install httpd, mysql and the necessary build libraries via the yum repos:</p><pre class="brush: bash; title: ; notranslate">
yum install gcc zlib zlib-devel curl curl-devel expat-devel gettext-devel httpd httpd-devel apr-devel apr-util-devel mysql mysql-server mysql-devel openssl openssl-devel make gcc-c++ patch readline-devel ImageMagick ImageMagick-devel libffi-devel libyaml-devel sudo git subversion
</pre><p>Start httpd and mysql and enable them to run on boot:</p><pre class="brush: bash; title: ; notranslate">
/etc/init.d/httpd start
/sbin/chkconfig httpd on
/etc/init.d/mysqld start
/sbin/chkconfig mysqld on
</pre><p>Let&#8217;s create a user that we are going to put chiliproject under, in this tutorial this user will be called chili.</p><pre class="brush: bash; title: ; notranslate">
adduser chili
passwd chili
</pre><p>Depending on your long-term plans I would suggest adding the user chili to /etc/sudoers (using visudo) so you can later disable root logins for a more secure environment. This tutorial will assume you have done so, and at this point are logged in as the chili user. If you choose not to do this, this tutorial will still work just fine executing these as root.</p><p>In this example we are going to install just a single version of ruby to use just for our chili user. The following should be done as the chili user, unless otherwise mentioned.</p><pre class="brush: bash; title: ; notranslate">
bash &lt; &lt;(curl -s https://rvm.beginrescueend.com/install/rvm)
</pre><p>Add this line to the bottom of .bash_profile</p><pre class="brush: bash; title: ; notranslate">
[[ -s &quot;$HOME/.rvm/scripts/rvm&quot; ]] &amp;&amp; . &quot;$HOME/.rvm/scripts/rvm&quot;
</pre><p>Log out and log back in.</p><p>Ensure rvm is installed and running as a function</p><pre>
<pre class="brush: bash; title: ; notranslate">
type rvm | head -1
</pre></pre><p>Update and reload rvm (just in case)</p><pre class="brush: bash; title: ; notranslate">
rvm get head
rvm reload
</pre><p>Install Ruby Enterprise Edition and set it as the default, this may take some time depending on your hardware.</p><pre class="brush: bash; title: ; notranslate">
rvm install ree
rvm --default use ree
</pre><p>Install rails version 2.3.5, the mysql gem, and the correct version of the i18n gem</p><pre class="brush: bash; title: ; notranslate">
gem install rails --version 2.3.5
gem install mysql
gem install -v=0.4.2 i18n
</pre><p>These are some optional gems you may want to install. rmagick will give you pretty graphs and ruby-openid will enable the ability to activate openid logins.</p><pre class="brush: bash; title: ; notranslate">
gem install rmagick -v 1.15.13 --disable-htmldoc
gem install ruby-openid
</pre><p>Install passenger. Follow the prompts and read the last part of the output instructing you to copy-paste some lines into your /etc/httpd/conf/httpd.conf</p><pre class="brush: bash; title: ; notranslate">
gem install passenger
rvmsudo passenger-install-apache2-module
</pre><p>While we are editing httpd.conf, let&#8217;s go ahead and create a virtualhost entry, edit as neccessary:</p><pre>
<pre class="brush: bash; title: ; notranslate">
&lt;VirtualHost *:80&gt;
        ServerName www.demo.chiliproject.org
        ServerAlias demo.chiliproject.org
        DocumentRoot /home/chili/chiliproject/public
        &lt;Directory /home/chili/chiliproject/public&gt;
                AllowOverride all
                Options -MultiViews
        &lt;/Directory&gt;
&lt;/VirtualHost&gt;
</pre></pre><p>Finally, let&#8217;s download and install chiliproject  (or redmine)to the location in our virtualhost mentioned above. You can simply <a
href="https://www.chiliproject.org/projects/chiliproject/wiki/Installation">follow the install guide</a> from this point on, but I will reproduce the commands I do below for your convenience:</p><pre>
<pre class="brush: bash; title: ; notranslate">
cd /home/chili
git clone git://github.com/chiliproject/chiliproject.git
cd chiliproject/
git checkout stable
mysql
create database chiliproject character set utf8;
create user 'chiliproject'@'localhost' identified by 'my_password';
grant all privileges on chiliproject.* to 'chiliproject'@'localhost';
quit
cp config/database.yml.example config/database.yml
vim config/database.yml
cp config/configuration.yml.example config/configuration.yml
vim config/configuration.yml
rake generate_session_store
RAILS_ENV=production rake db:migrate
RAILS_ENV=production rake redmine:load_default_data
sudo /etc/init.d/httpd restart
</pre></pre><p>If all went well, you should  be able to browse to your successful chiliproject installation at this time! If you need help, hop into the <a
href="https://www.chiliproject.org/projects/chiliproject/wiki/IRC">Chiliproject IRC Channel</a> and I&#8217;m usually around, and there are many other helpful people there just <em>waiting</em> to help you.</p><div
id="yarp"><p>Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/howto-install-chiliproject-or-redmine-on-centos/' rel='bookmark' title='[HowTo] Install ChiliProject (or Redmine) on CentOS'>[HowTo] Install ChiliProject (or Redmine) on CentOS</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/nerd/howtoinstall-chiliproject-on-centos-5-6-take-two/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>iSikhi &#8211; Gurbani Search App for iPhone</title><link>http://sikhnerd.com/sikh/isikhi-gurbani-search-app-for-iphone/</link> <comments>http://sikhnerd.com/sikh/isikhi-gurbani-search-app-for-iphone/#comments</comments> <pubDate>Wed, 05 Aug 2009 23:37:43 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Sikh]]></category> <category><![CDATA[app]]></category> <category><![CDATA[gurbani]]></category> <category><![CDATA[internet]]></category> <category><![CDATA[iphone]]></category> <category><![CDATA[isikhi]]></category> <category><![CDATA[sggs]]></category> <category><![CDATA[Tool]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=269</guid> <description><![CDATA[After using Gurbani Anywhere on my phone for the last few weeks, my little brother has been getting pretty jealous of all the cool things I could do with it [...]<div
id="yarp"> Related posts:<ol><li><a
href='http://sikhnerd.com/sikh/cool-tool-search-gurbani-desktop-version/' rel='bookmark' title='Cool Tool &#8211; Search Gurbani Desktop Version'>Cool Tool &#8211; Search Gurbani Desktop Version</a></li><li><a
href='http://sikhnerd.com/sikh/gurbani-anywhere-bani-on-your-windows-mobile-phone/' rel='bookmark' title='Gurbani Anywhere &#8211; Bani on your Windows Mobile Phone'>Gurbani Anywhere &#8211; Bani on your Windows Mobile Phone</a></li><li><a
href='http://sikhnerd.com/sikh/introduction-gurbani-groups-project/' rel='bookmark' title='Introduction: Gurbani Groups Project'>Introduction: Gurbani Groups Project</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p
style="text-align: center;"><a
href="http://www.isikhi.com/" target="_blank"><img
class="size-full wp-image-278  aligncenter" title="iSikhiLogo" src="http://sikhnerd.com/wp-content/uploads/iSikhiLogo.jpg" alt="iSikhiLogo" width="310" height="74" /></a></p><p>After using <a
href="http://sikhnerd.com/sikh/gurbani-anywhere-bani-on-your-windows-mobile-phone">Gurbani Anywhere</a> on my phone for the last few weeks, my little brother has been getting pretty jealous of all the cool things I could do with it sitting in Diwans, Kirtans, or anytime on-the-go. So Yesterday I grabbed his iPhone and installed the iSikhi iPhone app, which promises to</p><ul><li>Work on iPhone, iPhone 3G, and iTouch devices</li><li>Search Sri Guru Granth Sahib Ji and view shabad(s) line by line with english translations</li><li>Search with either First Letters or First Letters Anywhere</li><li>Simple to install like any other iPhone application through App Store. No need to JailBreak your iPhone or any other modifications are required.</li></ul><p>Let&#8217;s have a look at version 3 of this software. One thing to note is that my brother has the iPhone 2G, but is running version 3.0 of the iPhone OS. I suggest you view these pictures in order:</p><div
class="ngg-galleryoverview" id="ngg-gallery-2-269"><div
id="ngg-image-61" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-01.png" title="iSikhi Installed and ready to use" class="shutterset_set_2" > <img
title="isikhi-01" alt="isikhi-01" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-01.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-62" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-02.png" title="Click on the icon and presented with a terse loading screen. " class="shutterset_set_2" > <img
title="isikhi-02" alt="isikhi-02" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-02.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-63" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-03.png" title="Welcome to iSikhi! Very good looking punjabi keyboard and an obviouse interface. Nice, clean and usable" class="shutterset_set_2" > <img
title="isikhi-03" alt="isikhi-03" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-03.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-64" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-04.png" title="Clicking on the 'i' info screen. If you use this software, make sure to donate!" class="shutterset_set_2" > <img
title="isikhi-04" alt="isikhi-04" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-04.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-65" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-05.png" title="Back to the search screen, lets search for a shabad" class="shutterset_set_2" > <img
title="isikhi-05" alt="isikhi-05" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-05.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-66" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-06.png" title="As this was an iPhone 2G running OS 3.0 perfomance was decidedly slow. Saw this screen more than I would've liked" class="shutterset_set_2" > <img
title="isikhi-06" alt="isikhi-06" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-06.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-67" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-07.png" title="Search results screen. Single tap on the result to open" class="shutterset_set_2" > <img
title="isikhi-07" alt="isikhi-07" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-07.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-68" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-08.png" title="Default shabad view, things look pretty good. Note the obvious lack of transliterations" class="shutterset_set_2" > <img
title="isikhi-08" alt="isikhi-08" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-08.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-69" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-09.png" title="A quick swipe along the bottom of the screen shows this slider which controls the font size" class="shutterset_set_2" > <img
title="isikhi-09" alt="isikhi-09" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-09.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-70" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-10.png" title="Dragged the slider all the way to small. Almost impossible to read" class="shutterset_set_2" > <img
title="isikhi-10" alt="isikhi-10" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-10.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-71" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-11.png" title="Moving larger, this thing must get pretty large if we're not done yet and it's HUGE!" class="shutterset_set_2" > <img
title="isikhi-11" alt="isikhi-11" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-11.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-72" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-12.png" title="I was right, it's huge! Perfect for when doing kirtan on stage (if you have a friend to flick it)" class="shutterset_set_2" > <img
title="isikhi-12" alt="isikhi-12" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-12.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-73" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-13.png" title="Switching the phone to landscape mode provides the expected result" class="shutterset_set_2" > <img
title="isikhi-13" alt="isikhi-13" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-13.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-74" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-14.png" title="Searching and typing in landscape mode is much more enjoyable and easy" class="shutterset_set_2" > <img
title="isikhi-14" alt="isikhi-14" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-14.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-75" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-15.png" title="Viewing in landscape is also a nicer experience" class="shutterset_set_2" > <img
title="isikhi-15" alt="isikhi-15" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-15.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-76" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-16.png" title="Unfortunetly, the developers put the settings in the iphone's settings menu, not within the application itself. Small annoyance" class="shutterset_set_2" > <img
title="isikhi-16" alt="isikhi-16" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-16.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-77" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-17.png" title="Only options are the font size (which is also in the app so I don't know why they put it here too) and to turn the translations on-off" class="shutterset_set_2" > <img
title="isikhi-17" alt="isikhi-17" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-17.png" width="100" height="75" /> </a></div></div><div
id="ngg-image-78" class="ngg-gallery-thumbnail-box"  ><div
class="ngg-gallery-thumbnail" > <a
href="http://sikhnerd.com/wp-content/gallery/isikhi/isikhi-18.png" title="Conclusion, a simple straight-forward app that delivers what's promised, and nothing more" class="shutterset_set_2" > <img
title="isikhi-18" alt="isikhi-18" src="http://sikhnerd.com/wp-content/gallery/isikhi/thumbs/thumbs_isikhi-18.png" width="100" height="75" /> </a></div></div><div
class='ngg-clear'></div></div><p>So the application is extremely clean and well-made. The gurmukhi keyboard and input work wonderfully. One thing I did notice is that performance on this older iPhone was definetly slower than expected, but not enough to bother me too much, or deter me from further use. The application makes good use of the iPhones screen real estate, and viewing the shabad in landscape mode with a slightly increased font makes it perfect for balancing on top of the vaja while practising kirtan.</p><p>There are some features from <a
href="http://sikhnerd.com/sikh/gurbani-anywhere-bani-on-your-windows-mobile-phone">Gurbani Anywhere</a> (which has an <a
href="http://www.gurbanianywhere.com/" target="_blank">upcoming iPhone release</a> also) are the transliterations, favorites, increased viewing options, and searching Bhai Gurdas Vara and Dasam Granth. Hopefully the iSikhi dev team can add some of these and more in upcoming releases.</p><p>Head on over to the <a
href="http://www.isikhi.com/">iSikhi website</a>, <a
href="http://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/browserRedirect?url=itms%253A%252F%252Fax.itunes.apple.com%252FWebObjects%252FMZStore.woa%252Fwa%252FviewSoftware%253Fid%253D301159609%2526mt%253D8" target="_blank">install it</a>, <a
href="http://www.isikhi.com/Contribute/tabid/56/Default.aspx" target="_blank">donate</a>, and <a
href="http://www.isikhi.com/Forum/tabid/55/Default.aspx" target="_blank">post on the forums</a> for help, comments, and support</p><div
id="yarp"><p>Related posts:<ol><li><a
href='http://sikhnerd.com/sikh/cool-tool-search-gurbani-desktop-version/' rel='bookmark' title='Cool Tool &#8211; Search Gurbani Desktop Version'>Cool Tool &#8211; Search Gurbani Desktop Version</a></li><li><a
href='http://sikhnerd.com/sikh/gurbani-anywhere-bani-on-your-windows-mobile-phone/' rel='bookmark' title='Gurbani Anywhere &#8211; Bani on your Windows Mobile Phone'>Gurbani Anywhere &#8211; Bani on your Windows Mobile Phone</a></li><li><a
href='http://sikhnerd.com/sikh/introduction-gurbani-groups-project/' rel='bookmark' title='Introduction: Gurbani Groups Project'>Introduction: Gurbani Groups Project</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/sikh/isikhi-gurbani-search-app-for-iphone/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Cool Tool &#8211; Search Gurbani Desktop Version</title><link>http://sikhnerd.com/sikh/cool-tool-search-gurbani-desktop-version/</link> <comments>http://sikhnerd.com/sikh/cool-tool-search-gurbani-desktop-version/#comments</comments> <pubDate>Fri, 20 Mar 2009 18:41:01 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Sikh]]></category> <category><![CDATA[download]]></category> <category><![CDATA[gurbani]]></category> <category><![CDATA[sggs]]></category> <category><![CDATA[Tool]]></category><guid
isPermaLink="false">http://sikhnerd.com/wp/?p=11</guid> <description><![CDATA[A great alternative to Sikhi To The Max today I bring you Search Gurbani Desktop Version. A Java application for searching, displaying, and exploring the Guru Granth Sahib. From the [...]<div
id="yarp"> Related posts:<ol><li><a
href='http://sikhnerd.com/sikh/isikhi-gurbani-search-app-for-iphone/' rel='bookmark' title='iSikhi &#8211; Gurbani Search App for iPhone'>iSikhi &#8211; Gurbani Search App for iPhone</a></li><li><a
href='http://sikhnerd.com/sikh/cool-website-gurbani-today/' rel='bookmark' title='Cool Website: Gurbani Today'>Cool Website: Gurbani Today</a></li><li><a
href='http://sikhnerd.com/sikh/about-compilation-of-sri-guru-granth-sahib/' rel='bookmark' title='About Compilation of Sri Guru Granth Sahib'>About Compilation of Sri Guru Granth Sahib</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p><img
class="aligncenter size-full wp-image-39" title="sgdv" src="http://sikhnerd.com/wp-content/uploads/sgdv.jpg" alt="sgdv" width="400" height="300" />A great alternative to <a
href="http://www.sikhitothemax.com/">Sikhi To The Max</a> today I bring you <a
href="http://www.searchgurbani.com/sgdv/index.php">Search Gurbani Desktop Version</a>. A Java application for searching, displaying, and exploring the Guru Granth Sahib. From the <a
href="http://www.searchgurbani.com/">website</a>:</p><div
class="quote-hilite"><blockquote><p><span
class="open">S</span>earch Gurbani Desktop Version (SGDV) brings to you a unique and comprehensive approach to explore and experience the word of God. We have the Sri Guru Granth Sahib Ji , Amrit Keertan Gutka and Bhai Gurdaas Vaaran and Sri Dasam Granth Sahib in entireity. You can explore these scriptures page by page or search for a keyword in either one or all of the scriptures.</p><p>The application is also designed for use in a Gurdwara like setting to help the sangat follow along with the Raagi. It displays the Gurmukhi line along with Romanization and English  translation tex<span
class="close">t.</span></p></blockquote></div><p>A good option for non-windows users or people on other java-enabled platforms. It works sufficiently well and definetly meets it&#8217;s goal of providing something to put up for the sangat to follow along. I will add the download files to the downloads section soon, but all the relevant and up-to-date files are available on the<a
href="http://www.searchgurbani.com/sgdv/"> SGDV website </a></p><div
id="yarp"><p>Related posts:<ol><li><a
href='http://sikhnerd.com/sikh/isikhi-gurbani-search-app-for-iphone/' rel='bookmark' title='iSikhi &#8211; Gurbani Search App for iPhone'>iSikhi &#8211; Gurbani Search App for iPhone</a></li><li><a
href='http://sikhnerd.com/sikh/cool-website-gurbani-today/' rel='bookmark' title='Cool Website: Gurbani Today'>Cool Website: Gurbani Today</a></li><li><a
href='http://sikhnerd.com/sikh/about-compilation-of-sri-guru-granth-sahib/' rel='bookmark' title='About Compilation of Sri Guru Granth Sahib'>About Compilation of Sri Guru Granth Sahib</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/sikh/cool-tool-search-gurbani-desktop-version/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/62 queries in 0.982 seconds using disk: basic
Object Caching 1385/1469 objects using disk: basic

Served from: sikhnerd.com @ 2012-01-10 15:43:02 -->
