<?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; Nerd</title> <atom:link href="http://sikhnerd.com/category/nerd/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>Awesome &#8211; Timelapse video from ISS</title><link>http://sikhnerd.com/nerd/awesome-timelapse-video-from-iss/</link> <comments>http://sikhnerd.com/nerd/awesome-timelapse-video-from-iss/#comments</comments> <pubDate>Sun, 18 Sep 2011 19:05:06 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category> <category><![CDATA[Quick Things]]></category> <category><![CDATA[awesome]]></category> <category><![CDATA[iss]]></category> <category><![CDATA[nasa]]></category> <category><![CDATA[space]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=759</guid> <description><![CDATA[No comments needed: No related posts.<div
id="yarp"> No related posts.</div>]]></description> <content:encoded><![CDATA[<p>No comments needed:</p><p><iframe
width="480" height="360" src="http://www.youtube.com/embed/74mhQyuyELQ?rel=0" frameborder="0" allowfullscreen></iframe></p><div
id="yarp"><p>No related posts.</p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/nerd/awesome-timelapse-video-from-iss/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <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>Google removing all user-uploaded videos from google video</title><link>http://sikhnerd.com/nerd/google-removing-all-user-uploaded-videos-from-google-video/</link> <comments>http://sikhnerd.com/nerd/google-removing-all-user-uploaded-videos-from-google-video/#comments</comments> <pubDate>Sat, 16 Apr 2011 12:24:37 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category> <category><![CDATA[FYI]]></category> <category><![CDATA[google]]></category> <category><![CDATA[googlevideo]]></category> <category><![CDATA[video]]></category> <category><![CDATA[youtube]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=683</guid> <description><![CDATA[Google is going to remove all user-uploaded videos from google video in a couple weeks, so this is just a friendly reminder, that if you previously used googlevideo, and have [...]<div
id="yarp"> Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/awesome-timelapse-video-from-iss/' rel='bookmark' title='Awesome &#8211; Timelapse video from ISS'>Awesome &#8211; Timelapse video from ISS</a></li><li><a
href='http://sikhnerd.com/quick-things/cool-video-death-of-a-downturn/' rel='bookmark' title='Cool Video &#8211; Death of a Downturn'>Cool Video &#8211; Death of a Downturn</a></li><li><a
href='http://sikhnerd.com/quick-things/hair-documentary/' rel='bookmark' title='Hair Documentary'>Hair Documentary</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>Google is going to <a
href="http://video.google.com/support/bin/answer.py?answer=1233300&amp;hl=en">remove all user-uploaded videos from google video in a couple weeks</a>, so this is just a friendly reminder, that if you previously used googlevideo, and have content uploaded there that is not available anywhere else (like <a
href="http://youtube.com">youtube</a>, <a
href="http://vimeo.com">vimeo</a>, <a
href="http://www.dailymotion.com/">dailymotion</a>, etc) Now is the best time to download them before they are gone forever.</p><p>You can <a
href="http://keepvid.com/">use keepvid</a> to download the videos in flv format that can easily be uploaded elsewhere.</p><div
id="yarp"><p>Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/awesome-timelapse-video-from-iss/' rel='bookmark' title='Awesome &#8211; Timelapse video from ISS'>Awesome &#8211; Timelapse video from ISS</a></li><li><a
href='http://sikhnerd.com/quick-things/cool-video-death-of-a-downturn/' rel='bookmark' title='Cool Video &#8211; Death of a Downturn'>Cool Video &#8211; Death of a Downturn</a></li><li><a
href='http://sikhnerd.com/quick-things/hair-documentary/' rel='bookmark' title='Hair Documentary'>Hair Documentary</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/nerd/google-removing-all-user-uploaded-videos-from-google-video/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>[HowTo] Install ChiliProject (or Redmine) on CentOS</title><link>http://sikhnerd.com/nerd/howto-install-chiliproject-or-redmine-on-centos/</link> <comments>http://sikhnerd.com/nerd/howto-install-chiliproject-or-redmine-on-centos/#comments</comments> <pubDate>Sat, 05 Feb 2011 23:22:16 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category> <category><![CDATA[chiliproject]]></category> <category><![CDATA[howto]]></category> <category><![CDATA[rails]]></category> <category><![CDATA[redmine]]></category> <category><![CDATA[ruby]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=617</guid> <description><![CDATA[This a quick and dirty guide to getting a chiliproject or redmine installation up on CentOS 5.5 with the following: Ruby Enterprise Edition Rails RubyGems Passenger Apache MySQL This is [...]<div
id="yarp"> Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/howtoinstall-chiliproject-on-centos-5-6-take-two/' rel='bookmark' title='[HowTo]Install ChiliProject on CentOS 5.6 take two'>[HowTo]Install ChiliProject on CentOS 5.6 take two</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>This a quick and dirty guide to getting a <a
href="https://www.chiliproject.org">chiliproject</a> or redmine installation up on CentOS 5.5 with the following:</p><ul><li>Ruby Enterprise Edition</li><li>Rails</li><li>RubyGems</li><li>Passenger</li><li>Apache</li><li>MySQL</li></ul><p>This is just a suggested method that I would use for testing locally, there are MANY alternate, better ways of doing this. This is just to get you started in the right direction to setup and test ChiliProject/Redmine. In the future I&#8217;ll post a full proper tutorial as soon as I get time. In this &#8220;tutorial&#8221; I assume you are doing things as root on a server intended only to host a single redmine, in general this is not a secure or perfect setup but is fine for internal use.</p><p>First, let&#8217;s install some prerequisites and the things we want from the centos repositories:</p><pre class="brush: bash; title: ; notranslate">
yum install gcc zlib-devel 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
</pre><p>This will get mysql and apache, as well as the basic tools you should need to build the remaining applications.</p><p>Start httpd and make sure there are no errors, configure the server to start automatically</p><pre class="brush: bash; title: ; notranslate">
/etc/init.d/httpd start
Starting httpd:                                            [  OK  ]
/sbin/chkconfig httpd on
</pre><p>Same with mysql</p><pre class="brush: bash; title: ; notranslate">
/etc/init.d/mysqld start
Starting MySQL:                                            [  OK  ]
/sbin/chkconfig mysqld on
</pre><p>Ensure both are done correctly:</p><pre class="brush: bash; title: ; notranslate">
/sbin/chkconfig --list httpd
httpd          	0:off	1:off	2:on	3:on	4:on	5:on	6:off
/sbin/chkconfig --list mysqld
mysqld         	0:off	1:off	2:on	3:on	4:on	5:on
</pre><p>Download, extract and install ruby enterprise edition, if you are not comfortable managing and updating a source installaiton, you should consider using <a
href="https://packages.endpoint.com">this repository</a> or <a
href="http://rvm.beginrescueend.com/">rvm</a>.</p><pre class="brush: bash; title: ; notranslate">
wget http://rubyforge.org/frs/download.php/71096/ruby-enterprise-1.8.7-2010.02.tar.gz
tar xzvf ruby-enterprise-1.8.7-2010.02.tar.gz
./ruby-enterprise-1.8.7-2010.02/installer
</pre><p>Follow the prompts in the installer, the defaults should be fine.</p><p>Create some useful symlinks:</p><pre class="brush: bash; title: ; notranslate">
ln -s /opt/ruby-enterprise-1.8.7-2010.02/bin/rake /usr/bin/rake
ln -s /opt/ruby-enterprise-1.8.7-2010.02/bin/gem /usr/bin/gem
ln -s /opt/ruby-enterprise-1.8.7-2010.02/bin/ruby /usr/bin/ruby
ln -s /opt/ruby-enterprise-1.8.7-2010.02/bin/irb /usr/bin/irb
</pre><p>Remove the included copy of rails and install the version required by ChiliProject</p><pre class="brush: bash; title: ; notranslate">
gem uninstall rails
gem install rails -v=2.3.5
</pre><p>Let&#8217;s install passenger:</p><pre class="brush: bash; title: ; notranslate">
/opt/ruby-enterprise-1.8.7-2010.02/bin/passenger-install-apache2-module
</pre><p>Once it completes it will give you the following lines to place in the apache config, you can use your favorite editor to add these to /etc/httpd/conf/httpd.conf</p><pre class="brush: bash; title: ; notranslate">
   LoadModule passenger_module /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/passenger-3.0.2/ext/apache2/mod_passenger.so
   PassengerRoot /opt/ruby-enterprise-1.8.7-2010.02/lib/ruby/gems/1.8/gems/passenger-3.0.2
   PassengerRuby /opt/ruby-enterprise-1.8.7-2010.02/bin/ruby
</pre><p>Restart Apache:</p><pre class="brush: bash; title: ; notranslate">
/etc/init.d/httpd restart
</pre><p>In case you don&#8217;t have git and svn installed, enable EPEL repositories and get them:</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'
yum install git subversion
</pre><p>Now just follow the directions at <a
href="https://www.chiliproject.org/projects/chiliproject/wiki/Installation">https://www.chiliproject.org/projects/chiliproject/wiki/Installation</a> (or <a
href="http://www.redmine.org/projects/redmine/wiki/RedmineInstall">redmine</a>)</p><p>Once you have confirmed it&#8217;s working with webrick, add this to your apache conf:</p><pre class="brush: bash; title: ; notranslate">
   &lt;VirtualHost *:80&gt;
      ServerName www.yourhost.com
      DocumentRoot /somewhere/public    # &lt;-- be sure to point to 'public'!
      &lt;Directory /somewhere/public&gt;
         AllowOverride all              # &lt;-- relax Apache security settings
         Options -MultiViews            # &lt;-- MultiViews must be turned off
      &lt;/Directory&gt;
   &lt;/VirtualHost&gt;
</pre><p>In my example setup it would be like the following:</p><pre class="brush: plain; title: ; notranslate">
&lt;VirtualHost *:80&gt;
      ServerName www.my.domain.com
      DocumentRoot /var/www/chiliproject/public
      &lt;Directory /var/www/chiliproject/public&gt;
         AllowOverride all
        Options -MultiViews
      &lt;/Directory&gt;
   &lt;/VirtualHost&gt;
</pre><p>Restart apache and everything should be working as expected :)</p><p>This is just a rough guide, hit me up on IRC for specific help. If you are setting up a site for public use, this guide isn&#8217;t recommended at all.</p><div
id="yarp"><p>Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/howtoinstall-chiliproject-on-centos-5-6-take-two/' rel='bookmark' title='[HowTo]Install ChiliProject on CentOS 5.6 take two'>[HowTo]Install ChiliProject on CentOS 5.6 take two</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/nerd/howto-install-chiliproject-or-redmine-on-centos/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>May the force of typography be with you</title><link>http://sikhnerd.com/nerd/may-the-force-of-typography-be-with-you/</link> <comments>http://sikhnerd.com/nerd/may-the-force-of-typography-be-with-you/#comments</comments> <pubDate>Sun, 21 Nov 2010 03:05:40 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category> <category><![CDATA[darth vader]]></category> <category><![CDATA[font]]></category> <category><![CDATA[star wars]]></category> <category><![CDATA[typography]]></category> <category><![CDATA[yoda]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=558</guid> <description><![CDATA[Sometimes it&#8217;s hard to not become a full-out font nerd. These images hit two of my favorite things, Fonts &#38; Star Wars! Click for Big! Related posts: Look up into [...]<div
id="yarp"> Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/look-up-into-the-sky/' rel='bookmark' title='Look up into the sky'>Look up into the sky</a></li><li><a
href='http://sikhnerd.com/sikh/gurbanidb-translate-and-transliterate-sri-guru-granth-sahib/' rel='bookmark' title='GurbaniDB &#8211; Translate and Transliterate Sri Guru Granth Sahib'>GurbaniDB &#8211; Translate and Transliterate Sri Guru Granth Sahib</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>Sometimes it&#8217;s hard to not become a full-out font nerd. These images hit two of my favorite things, Fonts &amp; Star Wars!</p><p>Click for Big!</p><p
style="text-align: center;"><a
href="http://sikhnerd.com/wp-content/uploads/The-force-of-Typography382.jpg"><img
class="aligncenter size-medium wp-image-560" title="The-force-of-Typography382" src="http://sikhnerd.com/wp-content/uploads/The-force-of-Typography382-212x300.jpg" alt="" width="212" height="300" /></a><br
/> <a
href="http://sikhnerd.com/wp-content/uploads/The-force-of-Typography383.jpg"><img
class="aligncenter size-medium wp-image-561" title="The-force-of-Typography383" src="http://sikhnerd.com/wp-content/uploads/The-force-of-Typography383-212x300.jpg" alt="" width="212" height="300" /></a><br
/> <a
href="http://sikhnerd.com/wp-content/uploads/The-force-of-Typography381.jpg"><img
class="size-medium wp-image-559  aligncenter" title="The-force-of-Typography381" src="http://sikhnerd.com/wp-content/uploads/The-force-of-Typography381-212x300.jpg" alt="" width="212" height="300" /></a></p><p
style="text-align: left;"><div
id="yarp"><p>Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/look-up-into-the-sky/' rel='bookmark' title='Look up into the sky'>Look up into the sky</a></li><li><a
href='http://sikhnerd.com/sikh/gurbanidb-translate-and-transliterate-sri-guru-granth-sahib/' rel='bookmark' title='GurbaniDB &#8211; Translate and Transliterate Sri Guru Granth Sahib'>GurbaniDB &#8211; Translate and Transliterate Sri Guru Granth Sahib</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/nerd/may-the-force-of-typography-be-with-you/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>GurbaniDB &#8211; Translate and Transliterate Sri Guru Granth Sahib</title><link>http://sikhnerd.com/sikh/gurbanidb-translate-and-transliterate-sri-guru-granth-sahib/</link> <comments>http://sikhnerd.com/sikh/gurbanidb-translate-and-transliterate-sri-guru-granth-sahib/#comments</comments> <pubDate>Wed, 20 Oct 2010 12:40:40 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category> <category><![CDATA[Sikh]]></category> <category><![CDATA[font]]></category> <category><![CDATA[gurbanidb]]></category> <category><![CDATA[project]]></category> <category><![CDATA[sggs]]></category> <category><![CDATA[sikher]]></category> <category><![CDATA[translation]]></category> <category><![CDATA[transliteration]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=491</guid> <description><![CDATA[Today the Sikher Project released GurbaniDB, where you can download 52 translations and 22 transliterations of Shri Guru Granth Sahib Ji under a CC-BY-NC-SA license. As far as I can [...]<div
id="yarp"> Related posts:<ol><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><li><a
href='http://sikhnerd.com/sikh/download-sikhnerd-punjabi-fonts-mega-pack/' rel='bookmark' title='Download &#8211; SikhNerd Punjabi Fonts Mega Pack'>Download &#8211; SikhNerd Punjabi Fonts Mega Pack</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p
style="text-align: center;"><a
href="http://gurbanidb.org"><img
class="size-full wp-image-492    aligncenter" title="GurbaniDB_Logo_Small" src="http://sikhnerd.com/wp-content/uploads/GurbaniDB_Logo_Small.jpg" alt="" width="260" height="64" /></a></p><p>Today the <a
href="http://www.sikher.com/">Sikher Project</a> released <a
href="http://www.gurbanidb.org">GurbaniDB</a>, where you can download 52 translations and 22 transliterations of Shri Guru Granth Sahib Ji under a <a
href="http://creativecommons.org/licenses/by-nc-sa/3.0/">CC-BY-NC-SA</a> license.</p><p>As far as I can tell these are entirely machine generated and of pretty poor quality &#8211; but that&#8217;s the point, these are destined to be used as starting points on a collaboritive effort to create actual usable translations and transliterations. <a
href="http://www.gurbanidb.org/collaborate/">Sign up to help here.</a></p><p>They suggest the use of the <a
href="http://www.code2000.net/code2000_page.htm">Code200</a>0 font, which is actually a pretty ugly Shareware (meaning it costs $5 to use) font. It&#8217;s generally uneeded to use these giant Pan-Unicode fonts, as most modern operating systems include the proper regional fonts already. If you have to use one of these I would suggest either <a
href="http://www.gnu.org/software/freefont/">GNU Freefont</a> or <a
href="http://unifoundry.com/">GNU Unifont</a>. Even better than using these would be to get the regional Unicode fonts for the language you are using, for Gurmukhi the best one is <a
href="http://guca.sourceforge.net/typography/fonts/saab/">SAAB</a> which is released under the GPL.</p><p>So definitely check out this cool project, donate some money or time towards it if you think it&#8217;s useful (I do)</p><div
id="yarp"><p>Related posts:<ol><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><li><a
href='http://sikhnerd.com/sikh/download-sikhnerd-punjabi-fonts-mega-pack/' rel='bookmark' title='Download &#8211; SikhNerd Punjabi Fonts Mega Pack'>Download &#8211; SikhNerd Punjabi Fonts Mega Pack</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/sikh/gurbanidb-translate-and-transliterate-sri-guru-granth-sahib/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Time</title><link>http://sikhnerd.com/nerd/time/</link> <comments>http://sikhnerd.com/nerd/time/#comments</comments> <pubDate>Wed, 13 Oct 2010 14:18:12 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category> <category><![CDATA[time]]></category> <category><![CDATA[updates]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=482</guid> <description><![CDATA[Time &#8211; Who has it? Cause I sure don&#8217;t. This blog has languished mainly due to my distinct lack of time &#8211; however I aim to fix that very soon. [...]<div
id="yarp"> No related posts.</div>]]></description> <content:encoded><![CDATA[<p><a
href="http://sikhnerd.com/wp-content/uploads/eternalclock.jpg"><img
class="size-medium wp-image-483 alignnone" title="eternalclock" src="http://sikhnerd.com/wp-content/uploads/eternalclock-300x300.jpg" alt="" width="300" height="300" /></a></p><p>Time &#8211; Who has it? Cause I sure don&#8217;t. This blog has languished mainly due to my distinct lack of time &#8211; however I aim to fix that very soon. By next week expect some regular posts with all new stuff!</p><p>See ya then!</p><div
id="yarp"><p>No related posts.</p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/nerd/time/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Beta Testers Wanted.</title><link>http://sikhnerd.com/nerd/beta-testers-wanted/</link> <comments>http://sikhnerd.com/nerd/beta-testers-wanted/#comments</comments> <pubDate>Thu, 13 May 2010 21:34:07 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category> <category><![CDATA[Quick Things]]></category> <category><![CDATA[beta]]></category> <category><![CDATA[redmight]]></category> <category><![CDATA[redmine]]></category> <category><![CDATA[testers]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=454</guid> <description><![CDATA[Looking for some beta testers for custom redmine hosting. Testers get 66% off for life. Join #redmight on freenode irc or contact me No related posts.<div
id="yarp"> No related posts.</div>]]></description> <content:encoded><![CDATA[<p>Looking for some beta testers for custom <a
href="http://redmine.org">redmine</a> hosting. Testers get 66% off for life. Join #<a
href="http://webchat.freenode.net/?channels=redmight&amp;uio=Mj10cnVlJjQ9dHJ1ZSY5PXRydWUmMTE9MzU5d7">redmight on freenode irc</a> or contact me</p><div
id="yarp"><p>No related posts.</p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/nerd/beta-testers-wanted/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Trustworthiness of Beards</title><link>http://sikhnerd.com/nerd/trustworthiness-of-beards/</link> <comments>http://sikhnerd.com/nerd/trustworthiness-of-beards/#comments</comments> <pubDate>Thu, 22 Apr 2010 13:36:37 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category> <category><![CDATA[Quick Things]]></category> <category><![CDATA[beard]]></category> <category><![CDATA[beards]]></category> <category><![CDATA[funny]]></category> <category><![CDATA[hair]]></category> <category><![CDATA[trust]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=442</guid> <description><![CDATA[Funny. I&#8217;m way to the left :) Related posts: FBB: The Quest for every beard Khabran &#8211; Sikh Internet News and Information Dashboard<div
id="yarp"> Related posts:<ol><li><a
href='http://sikhnerd.com/beards-2/fbb-the-quest-for-every-beard/' rel='bookmark' title='FBB: The Quest for every beard'>FBB: The Quest for every beard</a></li><li><a
href='http://sikhnerd.com/nerd/khabran-sikh-internet-news-and-information-dashboard/' rel='bookmark' title='Khabran &#8211; Sikh Internet News and Information Dashboard'>Khabran &#8211; Sikh Internet News and Information Dashboard</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p
style="text-align: left;">Funny. I&#8217;m way to the left :)</p><p
style="text-align: center;"><div
id="attachment_443" class="wp-caption aligncenter" style="width: 310px"><a
href="http://sikhnerd.com/wp-content/uploads/PHmF5.jpg"><img
class="size-medium wp-image-443" title="Trustworthiness of Beards" src="http://sikhnerd.com/wp-content/uploads/PHmF5-300x70.jpg" alt="Beards" width="300" height="70" /></a><p
class="wp-caption-text">Where do you fall on this Chart?</p></div><div
id="yarp"><p>Related posts:<ol><li><a
href='http://sikhnerd.com/beards-2/fbb-the-quest-for-every-beard/' rel='bookmark' title='FBB: The Quest for every beard'>FBB: The Quest for every beard</a></li><li><a
href='http://sikhnerd.com/nerd/khabran-sikh-internet-news-and-information-dashboard/' rel='bookmark' title='Khabran &#8211; Sikh Internet News and Information Dashboard'>Khabran &#8211; Sikh Internet News and Information Dashboard</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/nerd/trustworthiness-of-beards/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Windows Mobile Font Problem &#8211; a better solution</title><link>http://sikhnerd.com/nerd/windows-mobile-font-problem-a-better-solution/</link> <comments>http://sikhnerd.com/nerd/windows-mobile-font-problem-a-better-solution/#comments</comments> <pubDate>Wed, 27 Jan 2010 20:05:10 +0000</pubDate> <dc:creator>Sikh Nerd</dc:creator> <category><![CDATA[Nerd]]></category><guid
isPermaLink="false">http://sikhnerd.com/?p=377</guid> <description><![CDATA[For those of you who have the problem of using SIkhi to the Max or Gurbani Anywhere on your windows mobile phone and the gurmukhi fonts screw your phone up [...]<div
id="yarp"> Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/how-to-fix-fonts-on-windows-mobile-after-installing-sttm-or-gurbani-anywhere/' rel='bookmark' title='How to fix fonts on windows mobile after installing STTM or Gurbani Anywhere'>How to fix fonts on windows mobile after installing STTM or Gurbani Anywhere</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/nerd/my-windows-mobile-software-list/' rel='bookmark' title='My windows mobile software list'>My windows mobile software list</a></li></ol></div>]]></description> <content:encoded><![CDATA[<p>For those of you who have the problem of using SIkhi to the Max or<a
href="http://gurbanianywhere.com" target="_blank"> Gurbani Anywhere</a> on your windows mobile phone and the gurmukhi fonts screw your phone up &#8211; Good news! I have an easier solution than the one in my <a
href="http://sikhnerd.com/nerd/how-to-fix-fonts-on-windows-mobile-after-installing-sttm-or-gurbani-anywhere/" target="_blank">last post</a>.</p><p>Instead of mucking about in the registry and lots of third-party programs and nonsense, just download the attached zip file which contains modified versions of the fonts, and replace the ones that come with those applications.</p><h1>Clearer instructions:</h1><blockquote><ol><li>Install STTM/GA</li><li>Delete GURAKHAR.ttf and WebAkharThick.ttf from /windows/Fonts (on your mobile device)</li><li>Copy the files from this post into /windows/Fonts (which have the exact same names as the ones you deleted)</li><li>Reboot your device</li></ol></blockquote><h4>I would really appreciate comments letting me know if this did or did not work for you!</h4><div
style="width: 300px; margin: 10px; text-align: center;margin-right: auto;margin-left: auto;"><p><a
rel="nofollow" title="Download version 0.1 of Fix_Windows_Mobile_Fonts.zip" onclick="if (window.urchinTracker) urchinTracker ('http://sikhnerd.com/downloads/nerd/Fix_Windows_Mobile_Fonts.zip');" href="http://sikhnerd.com/downloads/nerd/Fix_Windows_Mobile_Fonts.zip"><img
src="http://sikhnerd.com/wp-content/plugins/drain-hole/images/download.png" alt="download" width="128" height="128"/></a></p><table
class="download"><tr><th>Download:</th><td><a
rel="nofollow" title="Download version 0.1 of Fix_Windows_Mobile_Fonts.zip" onclick="if (window.urchinTracker) urchinTracker ('http://sikhnerd.com/downloads/nerd/Fix_Windows_Mobile_Fonts.zip');" href="http://sikhnerd.com/downloads/nerd/Fix_Windows_Mobile_Fonts.zip">Fix Windows Mobile Fonts</a></td></tr><tr><th>Version:</th><td>0.1</td></tr><tr><th>Updated:</th><td>January 27, 2010</td></tr><tr><th>Size:</th><td>51.6 KB</td></tr></table></div><div
id="yarp"><p>Related posts:<ol><li><a
href='http://sikhnerd.com/nerd/how-to-fix-fonts-on-windows-mobile-after-installing-sttm-or-gurbani-anywhere/' rel='bookmark' title='How to fix fonts on windows mobile after installing STTM or Gurbani Anywhere'>How to fix fonts on windows mobile after installing STTM or Gurbani Anywhere</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/nerd/my-windows-mobile-software-list/' rel='bookmark' title='My windows mobile software list'>My windows mobile software list</a></li></ol></p></div>]]></content:encoded> <wfw:commentRss>http://sikhnerd.com/nerd/windows-mobile-font-problem-a-better-solution/feed/</wfw:commentRss> <slash:comments>14</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 11/135 queries in 0.066 seconds using disk: basic
Object Caching 2607/2798 objects using disk: basic

Served from: sikhnerd.com @ 2011-12-25 22:29:56 -->
