<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>&#60;!-- something random just like junk - yard --&#62;</title>
	<atom:link href="http://ullu.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ullu.wordpress.com</link>
	<description>An an0ther un-satisfied gEEk, with the rand0m alphabats ;}</description>
	<lastBuildDate>Thu, 26 Jan 2012 06:00:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ullu.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>&#60;!-- something random just like junk - yard --&#62;</title>
		<link>http://ullu.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ullu.wordpress.com/osd.xml" title="&#60;!-- something random just like junk - yard --&#62;" />
	<atom:link rel='hub' href='http://ullu.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Simple Java AD/LDAP Authenticaion Code</title>
		<link>http://ullu.wordpress.com/2012/01/20/simple-java-adldap-authenticaion-code/</link>
		<comments>http://ullu.wordpress.com/2012/01/20/simple-java-adldap-authenticaion-code/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 05:57:18 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[learning]]></category>
		<category><![CDATA[Code Recipes]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[ldap]]></category>
		<category><![CDATA[active directory]]></category>
		<category><![CDATA[code snippt]]></category>
		<category><![CDATA[language java]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=671</guid>
		<description><![CDATA[There are so much of code and reference available for AD/LDAP integration in Java. I also searched a lot and the below code worked for me. As a non-java developer I found so interesting while working on some complex java stuff. &#160; Happy Java. Filed under: Code Recipes, learning, Other Tagged: active directory, ad, code, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=671&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are so much of code and reference available for AD/LDAP integration in Java. I also searched a lot and the below code worked for me.<br />
As a non-java developer I found so interesting while working on some complex java stuff.</p>
<p>&nbsp;</p>
<p><pre class="brush: java;">
import java.util.*;
import javax.naming.*;
import javax.naming.directory.*;
public class ADTestNew {
    public static void main(String[] args) {
    try {
        Hashtable env = new Hashtable();

        env.put(Context.INITIAL_CONTEXT_FACTORY,&quot;com.sun.jndi.ldap.LdapCtxFactory&quot;);

        env.put(Context.PROVIDER_URL,&quot;ldap://192.168.100.225:389&quot;); //replace with your server URL/IP

        // This line is optional based on environment. You can try with comment or without comment also.
        env.put(Context.SECURITY_AUTHENTICATION,&quot;DIGEST-MD5&quot;); //No other SALS worked with me

        env.put(Context.SECURITY_PRINCIPAL,&quot;login&quot;); // the user name.

        env.put(Context.SECURITY_CREDENTIALS, &quot;Passw0rD&quot;); //the password.

        DirContext ctx = new InitialDirContext(env);

        ctx.close();

    } catch(NamingException ne) {
        System.out.println(&quot;Error authenticating user:&quot;);
        System.out.println(ne.getMessage());
        return;
    }
    //if no exception, the user is already authenticated.
    System.out.println(&quot;OK, successfully authenticating user&quot;);
    }
}
</pre></p>
<p>Happy Java.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/code-recipes/'>Code Recipes</a>, <a href='http://ullu.wordpress.com/category/learning/'>learning</a>, <a href='http://ullu.wordpress.com/category/programming/other/'>Other</a> Tagged: <a href='http://ullu.wordpress.com/tag/active-directory/'>active directory</a>, <a href='http://ullu.wordpress.com/tag/ad/'>ad</a>, <a href='http://ullu.wordpress.com/tag/code/'>code</a>, <a href='http://ullu.wordpress.com/tag/code-snippt/'>code snippt</a>, <a href='http://ullu.wordpress.com/tag/java/'>java</a>, <a href='http://ullu.wordpress.com/tag/language-java/'>language java</a>, <a href='http://ullu.wordpress.com/tag/ldap/'>ldap</a>, <a href='http://ullu.wordpress.com/tag/program/'>program</a>, <a href='http://ullu.wordpress.com/tag/programming/'>programming</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/671/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=671&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2012/01/20/simple-java-adldap-authenticaion-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>2011 in review</title>
		<link>http://ullu.wordpress.com/2012/01/01/2011-in-review/</link>
		<comments>http://ullu.wordpress.com/2012/01/01/2011-in-review/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 19:12:43 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[2011]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[year review]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=666</guid>
		<description><![CDATA[The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog. Here&#8217;s an excerpt: Madison Square Garden can seat 20,000 people for a concert. This blog was viewed about 61,000 times in 2011. If it were a concert at Madison Square Garden, it would take about 3 sold-out performances for that many people [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=666&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog.</p>
<div style="background:url('/wp-content/mu-plugins/annual-reports/img/emailteaser.jpg') no-repeat center center;height:300px;"></div>
<p>Here&#8217;s an excerpt:</p>
<blockquote><p>Madison Square Garden can seat 20,000 people for a concert. This blog was viewed about <strong>61,000</strong> times in 2011. If it were a concert at Madison Square Garden, it would take about 3 sold-out performances for that many people to see it.</p></blockquote>
<p><a href="/2011/annual-report/">Click here to see the complete report.</a></p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/general/'>General</a>, <a href='http://ullu.wordpress.com/category/me/'>me</a> Tagged: <a href='http://ullu.wordpress.com/tag/2011/'>2011</a>, <a href='http://ullu.wordpress.com/tag/review/'>review</a>, <a href='http://ullu.wordpress.com/tag/year-review/'>year review</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/666/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/666/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/666/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=666&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2012/01/01/2011-in-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>How to enable Apache mod_rewrite in openSUSE</title>
		<link>http://ullu.wordpress.com/2011/12/26/how-to-enable-apache-mod_rewrite-in-opensuse/</link>
		<comments>http://ullu.wordpress.com/2011/12/26/how-to-enable-apache-mod_rewrite-in-opensuse/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 05:50:55 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[bash]]></category>
		<category><![CDATA[Code Recipes]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Quick Tutorial]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache module]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[open suse]]></category>
		<category><![CDATA[quick tip]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/2011/12/26/how-to-enable-apache-mod_rewrite-in-opensuse/</guid>
		<description><![CDATA[I got a situation where my Apache mod_rewrite module was not enabled for my openSUSE machine. Here is the simple way to do it. First check which apache modules are enabled in your machine. Second Change the apache2 config for modules and restart your apache. Finally, chech you module is installed. huh!! Its working. Happy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=660&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I got a situation where my Apache mod_rewrite module was not enabled for my openSUSE machine.<br />
Here is the simple way to do it.</p>
<p>First check which apache modules are enabled in your machine.</p>
<p><pre class="brush: bash;">
ankur@ankur:/srv/www/htdocs&gt; grep &quot;^APACHE_MODULES&quot; /etc/sysconfig/apache2
APACHE_MODULES=&quot;actions alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user autoindex cgi dir env expires include log_config mime negotiation setenvif ssl userdir php5&quot;
</pre></p>
<p>Second Change the apache2 config for modules and restart your apache.</p>
<p><pre class="brush: bash;">
ankur@ankur:/srv/www/htdocs&gt; sudo vi /etc/sysconfig/apache2
ankur@ankur:/srv/www/htdocs&gt; sudo /etc/init.d/apache2 restart
Syntax OK
Shutting down httpd2 (waiting for all children to terminate) done
Starting httpd2 (prefork) done
</pre></p>
<p>Finally, chech you module is installed.</p>
<p><pre class="brush: bash;">
ankur@ankur:/srv/www/htdocs&gt; grep &quot;^APACHE_MODULES&quot; /etc/sysconfig/apache2
APACHE_MODULES=&quot;actions alias auth_basic authn_file authz_host authz_groupfile authz_default authz_user autoindex cgi dir env expires include log_config mime negotiation setenvif ssl userdir php5 rewrite&quot;
</pre></p>
<p>huh!! Its working.</p>
<p>Happy Apache.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/programming/bash/'>bash</a>, <a href='http://ullu.wordpress.com/category/code-recipes/'>Code Recipes</a>, <a href='http://ullu.wordpress.com/category/linux/'>linux</a>, <a href='http://ullu.wordpress.com/category/programming/'>programming</a>, <a href='http://ullu.wordpress.com/category/quick-tutorial/'>Quick Tutorial</a>, <a href='http://ullu.wordpress.com/category/tips/'>tips</a> Tagged: <a href='http://ullu.wordpress.com/tag/apache/'>apache</a>, <a href='http://ullu.wordpress.com/tag/apache-module/'>apache module</a>, <a href='http://ullu.wordpress.com/tag/mod_rewrite/'>mod_rewrite</a>, <a href='http://ullu.wordpress.com/tag/open-suse/'>open suse</a>, <a href='http://ullu.wordpress.com/tag/quick-tip/'>quick tip</a>, <a href='http://ullu.wordpress.com/tag/rewrite/'>rewrite</a>, <a href='http://ullu.wordpress.com/tag/tips/'>tips</a>, <a href='http://ullu.wordpress.com/tag/unix/'>unix</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/660/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/660/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/660/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=660&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/12/26/how-to-enable-apache-mod_rewrite-in-opensuse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Hindu Rituals and Routines on daily basis.</title>
		<link>http://ullu.wordpress.com/2011/12/23/hindu-rituals-and-routines-on-daily-basis/</link>
		<comments>http://ullu.wordpress.com/2011/12/23/hindu-rituals-and-routines-on-daily-basis/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 05:28:44 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=658</guid>
		<description><![CDATA[Hindu Rituals and Routines. Hindu Rituals and Routines.pdf Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=658&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hindu Rituals and Routines.</p>
<p><a href="http://ullu.files.wordpress.com/2011/12/hindu-rituals-and-routines.pdf">Hindu Rituals and Routines.pdf</a></p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/658/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=658&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/12/23/hindu-rituals-and-routines-on-daily-basis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>What is Vision</title>
		<link>http://ullu.wordpress.com/2011/12/20/what-is-vision/</link>
		<comments>http://ullu.wordpress.com/2011/12/20/what-is-vision/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 03:44:56 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/2011/12/20/what-is-vision/</guid>
		<description><![CDATA[Vision The only way to discover the limits of the possible is to go beyond them into the limits of the impossible. From my desk calender. Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=657&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Vision</p>
<p>The only way to discover the limits of the possible is to go beyond them into the limits of the impossible.</p>
<p>From my desk calender.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/657/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/657/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/657/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/657/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/657/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/657/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/657/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/657/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/657/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/657/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/657/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/657/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/657/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/657/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=657&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/12/20/what-is-vision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Achyutam Keshavam (अच्युतम  केशवं ) Hindi Lyrics</title>
		<link>http://ullu.wordpress.com/2011/11/29/achyutam-keshavam-%e0%a4%85%e0%a4%9a%e0%a5%8d%e0%a4%af%e0%a5%81%e0%a4%a4%e0%a4%ae-%e0%a4%95%e0%a5%87%e0%a4%b6%e0%a4%b5%e0%a4%82-hindi-lyrics/</link>
		<comments>http://ullu.wordpress.com/2011/11/29/achyutam-keshavam-%e0%a4%85%e0%a4%9a%e0%a5%8d%e0%a4%af%e0%a5%81%e0%a4%a4%e0%a4%ae-%e0%a4%95%e0%a5%87%e0%a4%b6%e0%a4%b5%e0%a4%82-hindi-lyrics/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 11:40:05 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[हिंदी]]></category>
		<category><![CDATA[hindi]]></category>
		<category><![CDATA[religious]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Achyutam]]></category>
		<category><![CDATA[Achyutam Keshavam]]></category>
		<category><![CDATA[bhajan]]></category>
		<category><![CDATA[damodar]]></category>
		<category><![CDATA[indian]]></category>
		<category><![CDATA[janaki]]></category>
		<category><![CDATA[karishna]]></category>
		<category><![CDATA[Keshavam]]></category>
		<category><![CDATA[lord]]></category>
		<category><![CDATA[narayan]]></category>
		<category><![CDATA[ram]]></category>
		<category><![CDATA[vallabh]]></category>
		<category><![CDATA[vishnu]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=654</guid>
		<description><![CDATA[अच्युतम केशवं कृष्ण दामोदरं, राम नारायणं जानकी वल्लभं &#124;&#124; -2 कौन कहता है भगवान आते नहीं, तुम मीरा के जैसे बुलाते नहीं &#124; अच्युतम केशवं कृष्ण दामोदरं, राम नारायणं जानकी वल्लभं &#124;&#124; कौन कहता है भगवान खाते नहीं, बेर शबरी के जैसे खिलते नहीं &#124; अच्युतम केशवं कृष्ण दामोदरं, राम नारायणं जानकी वल्लभं &#124;&#124; कौन [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=654&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>अच्युतम  केशवं  कृष्ण  दामोदरं, राम  नारायणं  जानकी  वल्लभं || -2</p>
<p>कौन  कहता  है  भगवान  आते  नहीं, तुम  मीरा  के  जैसे  बुलाते  नहीं |<br />
अच्युतम  केशवं  कृष्ण  दामोदरं, राम  नारायणं  जानकी  वल्लभं ||</p>
<p>कौन  कहता  है  भगवान  खाते  नहीं, बेर  शबरी  के  जैसे  खिलते  नहीं |<br />
अच्युतम  केशवं  कृष्ण  दामोदरं, राम  नारायणं  जानकी  वल्लभं ||</p>
<p>कौन  कहता  है  भगवान सोते  नहीं, माँ  यशोदा  के  जैसे  सुलाते  नहीं |<br />
अच्युतम  केशवं  कृष्ण  दामोदरं, राम  नारायणं  जानकी  वल्लभं ||</p>
<p>कौन  कहता  है  भगवान नाचते  नहीं, तुम  गोपी  के  जैसे  नचाते  नहीं |<br />
अच्युतम  केशवं  कृष्ण  दामोदरं, राम  नारायणं  जानकी  वल्लभं ||</p>
<p>कौन  कहता  है  भगवान नचाते नहीं, गोपियों  की  तरह  तुम  नाचते नहीं |<br />
अच्युतम  केशवं  कृष्ण  दामोदरं, राम  नारायणं  जानकी  वल्लभं ||</p>
<p>अच्युतम  केशवं  कृष्ण  दामोदरं, राम  नारायणं  जानकी  वल्लभं ||</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/%e0%a4%b9%e0%a4%bf%e0%a4%82%e0%a4%a6%e0%a5%80/'>हिंदी</a>, <a href='http://ullu.wordpress.com/category/hindi/'>hindi</a>, <a href='http://ullu.wordpress.com/category/religious/'>religious</a>, <a href='http://ullu.wordpress.com/category/tips/'>tips</a> Tagged: <a href='http://ullu.wordpress.com/tag/achyutam/'>Achyutam</a>, <a href='http://ullu.wordpress.com/tag/achyutam-keshavam/'>Achyutam Keshavam</a>, <a href='http://ullu.wordpress.com/tag/bhajan/'>bhajan</a>, <a href='http://ullu.wordpress.com/tag/damodar/'>damodar</a>, <a href='http://ullu.wordpress.com/tag/indian/'>indian</a>, <a href='http://ullu.wordpress.com/tag/janaki/'>janaki</a>, <a href='http://ullu.wordpress.com/tag/karishna/'>karishna</a>, <a href='http://ullu.wordpress.com/tag/keshavam/'>Keshavam</a>, <a href='http://ullu.wordpress.com/tag/lord/'>lord</a>, <a href='http://ullu.wordpress.com/tag/narayan/'>narayan</a>, <a href='http://ullu.wordpress.com/tag/ram/'>ram</a>, <a href='http://ullu.wordpress.com/tag/religious/'>religious</a>, <a href='http://ullu.wordpress.com/tag/vallabh/'>vallabh</a>, <a href='http://ullu.wordpress.com/tag/vishnu/'>vishnu</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/654/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/654/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/654/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=654&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/11/29/achyutam-keshavam-%e0%a4%85%e0%a4%9a%e0%a5%8d%e0%a4%af%e0%a5%81%e0%a4%a4%e0%a4%ae-%e0%a4%95%e0%a5%87%e0%a4%b6%e0%a4%b5%e0%a4%82-hindi-lyrics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Shiv Tandav Stotra in Sanskrit-Hindi Lyrics with easy readble format</title>
		<link>http://ullu.wordpress.com/2011/11/27/shiv-tandav-stotra-in-sanskrit-hindi-lyrics-with-easy-readble-format/</link>
		<comments>http://ullu.wordpress.com/2011/11/27/shiv-tandav-stotra-in-sanskrit-hindi-lyrics-with-easy-readble-format/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 04:38:02 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[हिंदी]]></category>
		<category><![CDATA[hindi]]></category>
		<category><![CDATA[india]]></category>
		<category><![CDATA[religious]]></category>
		<category><![CDATA[hindu]]></category>
		<category><![CDATA[shiv]]></category>
		<category><![CDATA[shiv tandav stotra]]></category>
		<category><![CDATA[shiva]]></category>
		<category><![CDATA[shivtandav]]></category>
		<category><![CDATA[sholaka]]></category>
		<category><![CDATA[stotra]]></category>
		<category><![CDATA[tandav]]></category>
		<category><![CDATA[tandav stotra]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=649</guid>
		<description><![CDATA[&#124;&#124;सार्थशिवताण्डवस्तोत्रम् &#124;&#124; &#124;&#124;श्रीगणेशाय नमः &#124;&#124; जटा टवी गलज्जल प्रवाह पावितस्थले, गलेऽवलम्ब्य लम्बितां भुजङ्ग तुङ्ग मालिकाम् &#124; डमड्डमड्डमड्डमन्निनाद वड्डमर्वयं, चकार चण्डताण्डवं तनोतु नः शिवः शिवम् &#124;&#124;१&#124;&#124; जटा कटा हसंभ्रम भ्रमन्निलिम्प निर्झरी, विलो लवी चिवल्लरी विराजमान मूर्धनि &#124; धगद् धगद् धगज्ज्वलल् ललाट पट्ट पावके किशोर चन्द्र शेखरे रतिः प्रतिक्षणं मम &#124;&#124;२&#124;&#124; धरा धरेन्द्र नंदिनी विलास बन्धु बन्धुरस् [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=649&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>||सार्थशिवताण्डवस्तोत्रम् ||</p>
<p>||श्रीगणेशाय नमः ||</p>
<p>जटा टवी गलज्जल प्रवाह पावितस्थले, गलेऽवलम्ब्य लम्बितां भुजङ्ग तुङ्ग मालिकाम् |<br />
डमड्डमड्डमड्डमन्निनाद वड्डमर्वयं, चकार चण्डताण्डवं तनोतु नः शिवः शिवम् ||१||</p>
<p>जटा कटा हसंभ्रम भ्रमन्निलिम्प निर्झरी, विलो लवी चिवल्लरी विराजमान मूर्धनि |<br />
धगद् धगद् धगज्ज्वलल् ललाट पट्ट पावके किशोर चन्द्र शेखरे रतिः प्रतिक्षणं मम ||२||</p>
<p>धरा धरेन्द्र नंदिनी विलास बन्धु बन्धुरस् फुरद् दिगन्त सन्तति प्रमोद मानमानसे |<br />
कृपा कटाक्ष धोरणी निरुद्ध दुर्धरापदि क्वचिद् दिगम्बरे मनो विनोदमेतु वस्तुनि ||३||</p>
<p>लता भुजङ्ग पिङ्गलस् फुरत्फणा मणिप्रभा कदम्ब कुङ्कुमद्रवप् रलिप्तदिग्व धूमुखे |<br />
मदान्ध सिन्धुरस् फुरत् त्वगुत्तरीयमे दुरे मनो विनोद मद्भुतं बिभर्तु भूतभर्तरि ||४||</p>
<p>सहस्र लोचनप्रभृत्य शेष लेखशेखर प्रसून धूलिधोरणी विधूस राङ्घ्रि पीठभूः |<br />
भुजङ्ग राजमालया निबद्ध जाटजूटक श्रियै चिराय जायतां चकोर बन्धुशेखरः ||५||</p>
<p>ललाट चत्वरज्वलद् धनञ्जयस्फुलिङ्गभा निपीत पञ्चसायकं नमन्निलिम्प नायकम् |<br />
सुधा मयूखले खया विराजमानशेखरं  महाकपालिसम्पदे शिरोज टालमस्तु नः ||६|| </p>
<p>कराल भाल पट्टिका धगद् धगद् धगज्ज्वल द्धनञ्जयाहुती कृतप्रचण्ड पञ्चसायके |<br />
धरा धरेन्द्र नन्दिनी कुचाग्र चित्रपत्रक प्रकल्प नैक शिल्पिनि त्रिलोचने रतिर्मम |||७|| </p>
<p>नवीन मेघ मण्डली निरुद् धदुर् धरस्फुरत्-  कुहू निशीथि नीतमः प्रबन्ध बद्ध कन्धरः |<br />
निलिम्प निर्झरी धरस् तनोतु कृत्ति सिन्धुरः  कला निधान बन्धुरः श्रियं जगद् धुरंधरः ||८|| </p>
<p>प्रफुल्ल नीलपङ्कज प्रपञ्च कालिम प्रभा- वलम्बि कण्ठकन्दली रुचिप्रबद्ध कन्धरम् |<br />
स्मरच्छिदं पुरच्छिदं भवच्छिदं मखच्छिदं गजच्छि दांध कच्छिदं तमंत कच्छिदं भजे ||९|| </p>
<p>अखर्व सर्व मङ्गला कला कदंब मञ्जरी रस प्रवाह माधुरी विजृंभणा मधुव्रतम् |<br />
स्मरान्तकं पुरान्तकं भवान्तकं मखान्तकं गजान्त कान्ध कान्त कं तमन्त कान्त कं भजे ||१०|| </p>
<p>जयत् वदभ्र विभ्रम भ्रमद् भुजङ्ग मश्वस &#8211; द्विनिर्ग मत् क्रमस्फुरत् कराल भाल हव्यवाट् |<br />
धिमिद्धिमिद्धिमिध्वनन्मृदङ्गतुङ्गमङ्गल  ध्वनिक्रमप्रवर्तित प्रचण्डताण्डवः शिवः ||११|| </p>
<p>स्पृषद्विचित्रतल्पयोर्भुजङ्गमौक्तिकस्रजोर्- &#8211; गरिष्ठरत्नलोष्ठयोः सुहृद्विपक्षपक्षयोः |<br />
तृष्णारविन्दचक्षुषोः प्रजामहीमहेन्द्रयोः  समप्रवृत्तिकः ( समं प्रवर्तयन्मनः) कदा सदाशिवं भजे ||१२|| </p>
<p>कदा निलिम्पनिर्झरीनिकुञ्जकोटरे वसन्  विमुक्तदुर्मतिः सदा शिरः स्थमञ्जलिं वहन् |<br />
विमुक्तलोललोचनो ललामभाललग्नकः  शिवेति मंत्रमुच्चरन् कदा सुखी भवाम्यहम् ||१३|| </p>
<p>इदम् हि नित्यमेवमुक्तमुत्तमोत्तमं स्तवं  पठन्स्मरन्ब्रुवन्नरो विशुद्धिमेतिसंततम् |<br />
हरे गुरौ सुभक्तिमाशु याति नान्यथा गतिं विमोहनं हि देहिनां सुशङ्करस्य चिंतनम् ||१४|| </p>
<p>पूजा वसान समये दशवक्त्र गीतं  यः शंभु पूजन परं पठति प्रदोषे |<br />
तस्य स्थिरां रथगजेन्द्र तुरङ्ग युक्तां  लक्ष्मीं सदैव सुमुखिं प्रददाति शंभुः ||१५|| </p>
<p>इति श्रीरावण- कृतम्  शिव- ताण्डव- स्तोत्रम्  सम्पूर्णम् </p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/%e0%a4%b9%e0%a4%bf%e0%a4%82%e0%a4%a6%e0%a5%80/'>हिंदी</a>, <a href='http://ullu.wordpress.com/category/hindi/'>hindi</a>, <a href='http://ullu.wordpress.com/category/india/'>india</a>, <a href='http://ullu.wordpress.com/category/religious/'>religious</a> Tagged: <a href='http://ullu.wordpress.com/tag/hindu/'>hindu</a>, <a href='http://ullu.wordpress.com/tag/religious/'>religious</a>, <a href='http://ullu.wordpress.com/tag/shiv/'>shiv</a>, <a href='http://ullu.wordpress.com/tag/shiv-tandav-stotra/'>shiv tandav stotra</a>, <a href='http://ullu.wordpress.com/tag/shiva/'>shiva</a>, <a href='http://ullu.wordpress.com/tag/shivtandav/'>shivtandav</a>, <a href='http://ullu.wordpress.com/tag/sholaka/'>sholaka</a>, <a href='http://ullu.wordpress.com/tag/stotra/'>stotra</a>, <a href='http://ullu.wordpress.com/tag/tandav/'>tandav</a>, <a href='http://ullu.wordpress.com/tag/tandav-stotra/'>tandav stotra</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/649/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/649/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/649/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=649&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/11/27/shiv-tandav-stotra-in-sanskrit-hindi-lyrics-with-easy-readble-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Quote</title>
		<link>http://ullu.wordpress.com/2011/11/17/quote/</link>
		<comments>http://ullu.wordpress.com/2011/11/17/quote/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 03:58:47 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/2011/11/17/quote/</guid>
		<description><![CDATA[दुखो से भरी इस दुनिया मैं वास्तविकता संपाती धन नहीं, संतुष्टता है। Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=645&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>दुखो से भरी इस दुनिया मैं वास्तविकता संपाती धन नहीं, संतुष्टता है।</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/645/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=645&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/11/17/quote/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Aarti Kunj Bihari Ki : Hindi Lyrics : Lord Krishana Bhajan</title>
		<link>http://ullu.wordpress.com/2011/10/18/aarti-kunj-bihari-ki-hindi-lyrics-krishna/</link>
		<comments>http://ullu.wordpress.com/2011/10/18/aarti-kunj-bihari-ki-hindi-lyrics-krishna/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 15:29:44 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[हिंदी]]></category>
		<category><![CDATA[religious]]></category>
		<category><![CDATA[aarti]]></category>
		<category><![CDATA[bhagwan]]></category>
		<category><![CDATA[bhajan]]></category>
		<category><![CDATA[bihari]]></category>
		<category><![CDATA[hindi]]></category>
		<category><![CDATA[india]]></category>
		<category><![CDATA[indian]]></category>
		<category><![CDATA[krishna]]></category>
		<category><![CDATA[kunj]]></category>
		<category><![CDATA[kunj bihari]]></category>
		<category><![CDATA[lord]]></category>
		<category><![CDATA[lord krishna]]></category>
		<category><![CDATA[lyrics]]></category>
		<category><![CDATA[worship]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=643</guid>
		<description><![CDATA[From so many days I was searching for Lyrics on this bhajan &#8220;Aarti Kunj Bihari Ki, Shree Giridhar Krishna Murari Ki&#8221;. Here is the hindi Lyrics for this hindi bhajan. Bol Krishan Kanhiyaa Lal Ki Jai. आरती कुंजबिहारी की, श्री गिरिधर कृष्ण मुरारी की ॥ गले में बैजंती माला, बजावै मुरली मधुर बाला । श्रवण [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=643&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>From so many days I was searching for Lyrics on this bhajan &#8220;Aarti Kunj Bihari Ki, Shree Giridhar Krishna Murari Ki&#8221;.<br />
Here is the hindi Lyrics for this hindi bhajan.</p>
<p>Bol Krishan Kanhiyaa Lal Ki Jai.</p>
<p>आरती कुंजबिहारी की, श्री गिरिधर कृष्ण मुरारी की ॥</p>
<p>गले में बैजंती माला, बजावै मुरली मधुर बाला ।<br />
श्रवण में कुण्डल झलकाला, नंद के आनंद नंदलाला ।<br />
गगन सम अंग कांति काली, राधिका चमक रही आली ।<br />
लतन में ठाढ़े बनमाली |<br />
भ्रमर सी अलक | (Fast)<br />
कस्तूरी तिलक | (Fast)<br />
चंद्र सी झलक | (Fast)<br />
ललित छवि श्यामा प्यारी की ॥<br />
श्री गिरिधर कृष्ण मुरारी की…</p>
<p>कनकमय मोर मुकुट बिलसै, देवता दरसन को तरसैं ।<br />
गगन सों सुमन रासि बरसै;<br />
बजे मुरचंग | (Fast)<br />
मधुर मिरदंग | (Fast)<br />
ग्वालिन संग | (Fast)<br />
अतुल रति गोप कुमारी की ॥<br />
श्री गिरिधर कृष्णमुरारी की…</p>
<p>जहां ते प्रकट भई गंगा, कलुष कलि हारिणि श्रीगंगा ।<br />
स्मरन ते होत मोह भंगा;<br />
बसी सिव सीस | (Fast)<br />
जटा के बीच | (Fast)<br />
हरै अघ कीच | (Fast)<br />
चरन छवि श्रीबनवारी की ॥<br />
श्री गिरिधर कृष्णमुरारी की…</p>
<p>चमकती उज्ज्वल तट रेनू, बज रही वृंदावन बेनू ।<br />
चहुं दिसि गोपि ग्वाल धेनू;<br />
हंसत मृदु मंद | (Fast)<br />
चांदनी चंद | (Fast)<br />
कटत भव फंद | (Fast)<br />
टेर सुन दीन भिखारी की ॥<br />
श्री गिरिधर कृष्णमुरारी की…</p>
<p>आरती कुंजबिहारी की, श्री गिरिधर कृष्ण मुरारी की ॥<br />
आरती कुंजबिहारी की, श्री गिरिधर कृष्ण मुरारी की ॥</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/%e0%a4%b9%e0%a4%bf%e0%a4%82%e0%a4%a6%e0%a5%80/'>हिंदी</a>, <a href='http://ullu.wordpress.com/category/religious/'>religious</a> Tagged: <a href='http://ullu.wordpress.com/tag/aarti/'>aarti</a>, <a href='http://ullu.wordpress.com/tag/bhagwan/'>bhagwan</a>, <a href='http://ullu.wordpress.com/tag/bhajan/'>bhajan</a>, <a href='http://ullu.wordpress.com/tag/bihari/'>bihari</a>, <a href='http://ullu.wordpress.com/tag/hindi/'>hindi</a>, <a href='http://ullu.wordpress.com/tag/india/'>india</a>, <a href='http://ullu.wordpress.com/tag/indian/'>indian</a>, <a href='http://ullu.wordpress.com/tag/krishna/'>krishna</a>, <a href='http://ullu.wordpress.com/tag/kunj/'>kunj</a>, <a href='http://ullu.wordpress.com/tag/kunj-bihari/'>kunj bihari</a>, <a href='http://ullu.wordpress.com/tag/lord/'>lord</a>, <a href='http://ullu.wordpress.com/tag/lord-krishna/'>lord krishna</a>, <a href='http://ullu.wordpress.com/tag/lyrics/'>lyrics</a>, <a href='http://ullu.wordpress.com/tag/worship/'>worship</a>, <a href='http://ullu.wordpress.com/tag/wow/'>wow</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/643/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/643/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/643/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/643/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/643/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/643/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/643/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/643/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/643/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/643/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/643/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/643/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/643/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/643/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=643&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/10/18/aarti-kunj-bihari-ki-hindi-lyrics-krishna/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>What is inspiration</title>
		<link>http://ullu.wordpress.com/2011/09/06/what-is-inspiration/</link>
		<comments>http://ullu.wordpress.com/2011/09/06/what-is-inspiration/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 09:43:47 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/2011/09/06/what-is-inspiration/</guid>
		<description><![CDATA[Many people have gone further than they imagined they could because somebody else thought they could. From my Desktop Calender. Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=642&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Many people have gone further than they imagined they could because somebody else thought they could.</p>
<p>From my Desktop Calender.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/642/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/642/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/642/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/642/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/642/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/642/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/642/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/642/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/642/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/642/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/642/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/642/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/642/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/642/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=642&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/09/06/what-is-inspiration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Customer Cycle for a company</title>
		<link>http://ullu.wordpress.com/2011/08/08/customer-cycle-for-a-company/</link>
		<comments>http://ullu.wordpress.com/2011/08/08/customer-cycle-for-a-company/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 06:33:31 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/2011/08/08/customer-cycle-for-a-company/</guid>
		<description><![CDATA[Customer Cycle for a company. Customer Acquisition Customer Feedback Customer Transition. Customer Gratification. Customer Retention. Happy Customer. Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=641&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Customer Cycle for a company.</p>
<ol>
<li>Customer Acquisition</li>
<li>Customer Feedback</li>
<li>Customer Transition.</li>
<li>Customer Gratification.</li>
<li>Customer Retention.</li>
</ol>
<p>Happy Customer.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/641/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/641/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/641/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/641/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/641/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/641/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/641/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/641/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/641/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/641/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/641/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/641/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/641/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/641/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=641&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/08/08/customer-cycle-for-a-company/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>what is Destiny</title>
		<link>http://ullu.wordpress.com/2011/08/04/what-is-destiny/</link>
		<comments>http://ullu.wordpress.com/2011/08/04/what-is-destiny/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 06:49:27 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/2011/08/04/what-is-destiny/</guid>
		<description><![CDATA[Destiny is not a matter of chance, It is a matter of choice. It is not a thing to be waited for, it is a thing to be achieved. From my Desktop Calender. Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=640&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Destiny is not a matter of chance,<br />
It is a matter of choice.</p>
<p>It is not a thing to be waited for,<br />
it is a thing to be achieved.</p>
<p>From my Desktop Calender.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/640/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/640/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/640/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/640/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/640/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/640/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/640/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/640/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/640/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/640/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/640/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/640/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/640/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/640/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=640&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/08/04/what-is-destiny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>what is confidence ?</title>
		<link>http://ullu.wordpress.com/2011/07/05/what-is-confidence/</link>
		<comments>http://ullu.wordpress.com/2011/07/05/what-is-confidence/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 05:20:59 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/2011/07/05/what-is-confidence/</guid>
		<description><![CDATA[Confidence It&#8217;s not who you are that holds you back, it&#8217;s who you think you are. From my desktop calendar. Filed under: General<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=639&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Confidence </strong><br />
It&#8217;s not who you are that holds you back,<br />
it&#8217;s who you think you are.</p>
<p>From my desktop calendar.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/general/'>General</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/639/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/639/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/639/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=639&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/07/05/what-is-confidence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Get time in millisecond in groovy</title>
		<link>http://ullu.wordpress.com/2011/07/04/get-time-in-millisecond-in-groovy/</link>
		<comments>http://ullu.wordpress.com/2011/07/04/get-time-in-millisecond-in-groovy/#comments</comments>
		<pubDate>Mon, 04 Jul 2011 05:51:43 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[Groovy/Grails]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/2011/07/04/get-time-in-millisecond-in-groovy/</guid>
		<description><![CDATA[I found there are 2 ways to get time in millisecond Filed under: Groovy/Grails, programming Tagged: groovy, java, programming<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=635&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I found there are 2 ways to get time in millisecond</p>
<p><pre class="brush: groovy;">
 def m1 = System.currentTimeMillis()
 println m1

def m2 = new Date()
 println m2.getTime()
 </pre></p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/programming/groovygrails/'>Groovy/Grails</a>, <a href='http://ullu.wordpress.com/category/programming/'>programming</a> Tagged: <a href='http://ullu.wordpress.com/tag/groovy/'>groovy</a>, <a href='http://ullu.wordpress.com/tag/java/'>java</a>, <a href='http://ullu.wordpress.com/tag/programming/'>programming</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/635/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/635/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/635/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/635/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/635/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/635/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/635/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/635/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/635/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/635/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/635/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/635/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/635/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/635/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=635&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/07/04/get-time-in-millisecond-in-groovy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Neral &#8211; Matheran Mountain Railway</title>
		<link>http://ullu.wordpress.com/2011/05/22/neral-matheran-mountain-railway/</link>
		<comments>http://ullu.wordpress.com/2011/05/22/neral-matheran-mountain-railway/#comments</comments>
		<pubDate>Sun, 22 May 2011 11:58:52 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[familly]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[weekend]]></category>
		<category><![CDATA[hill station]]></category>
		<category><![CDATA[IN]]></category>
		<category><![CDATA[maharashtra]]></category>
		<category><![CDATA[matheran]]></category>
		<category><![CDATA[MH]]></category>
		<category><![CDATA[mountain railways]]></category>
		<category><![CDATA[neral]]></category>
		<category><![CDATA[panorma]]></category>
		<category><![CDATA[photo blogging]]></category>
		<category><![CDATA[photoblog]]></category>
		<category><![CDATA[railfanning]]></category>
		<category><![CDATA[toy train]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=628</guid>
		<description><![CDATA[I like rail-fanning though I am not giving too much time on my this hidden activity. But one day I will be active rail-fanning guy. Want to know all about train and trains. Even though today also its like daily adventure traveling via train in mumbai. So we have decided to visit Matheran via Neral-Matheran [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=628&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I like rail-fanning though I am not giving too much time on my this hidden activity. But one day I will be active rail-fanning guy.<br />
Want to know all about train and trains. Even though today also its like daily adventure traveling via train in mumbai.</p>
<p>So we have decided to visit Matheran via Neral-Matheran Mountain Railways.<br />
The train timings are very convenient. There are very few routes in India where toy trains are running. You can see <a title="Mountain Railways in India" href="http://www.trainenquiry.com/StaticContent/Special_Hills.aspx" target="_blank">http://www.trainenquiry.com/StaticContent/Special_Hills.aspx</a> like for more detail.</p>
<p>In season time and on weekends the trains are running full, so you make sure you book train tickets well in time. You can book tickets via IRCTC website. So we did the same we have already booked the tickets. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Nerail is situated in Mumbai &#8211; Pune rail road. From Neral we can catch Matheran Train which takes 90 minutes average.</p>
<h3>Neral-Matheran Train Time Table.</h3>
<p><a title="Neral - Matheran Train Time Table by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5363716973/"><img src="http://farm6.static.flickr.com/5202/5363716973_e47b33a7db_z.jpg" alt="Neral - Matheran Train Time Table" width="640" height="480" /></a></p>
<h3>Neral Railway Station</h3>
<p><a title="Nerail Junction, Maharashtra by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5357466530/"><img src="http://farm6.static.flickr.com/5123/5357466530_afbae3c486_z.jpg" alt="Nerail Junction, Maharashtra" width="640" height="480" /></a></p>
<h3>Matheran Railway Station</h3>
<p><a title="Neral-Matheran Railway Engine  by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356825245/"><img src="http://farm6.static.flickr.com/5163/5356825245_a17847564c_z.jpg" alt="Neral-Matheran Railway Engine " width="640" height="480" /></a></p>
<p><a title="Matheran Railway Station by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5357447612/"><img src="http://farm6.static.flickr.com/5163/5357447612_56fe22d2e1_z.jpg" alt="Matheran Railway Station" width="640" height="480" /></a></p>
<p><a title="Matheran Railway Station by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356974665/"><img src="http://farm6.static.flickr.com/5245/5356974665_91879f94d8_z.jpg" alt="Matheran Railway Station" width="640" height="480" /></a></p>
<p><a title="Matheran Railway Station by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5363727457/"><img src="http://farm6.static.flickr.com/5123/5363727457_d9259e79b8_z.jpg" alt="Matheran Railway Station" width="640" height="480" /></a></p>
<p>A View of narrow gauge, it looks very less space between two tracks and put us into confusion that how a train run on such a narrow space.<br />
<a title="At Matheran Railway Station by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356839999/"><img src="http://farm6.static.flickr.com/5283/5356839999_b15b3fba94_z.jpg" alt="At Matheran Railway Station" width="640" height="480" /></a></p>
<p>Neral &#8211; Matheran Train traveling is all about fun, curves, hight, slow speed, toy train, stops, views and panoramas.</p>
<p>I clicked some of the train engines.<br />
<a title="Neral-Matheran Railway Engine  by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356827573/"><img src="http://farm6.static.flickr.com/5090/5356827573_3c3fc7c991_z.jpg" alt="Neral-Matheran Railway Engine " width="480" height="640" /></a></p>
<p><a title="Neral-Matheran Railway Engine  by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5357449582/"><img src="http://farm6.static.flickr.com/5161/5357449582_e4489d546a_z.jpg" alt="Neral-Matheran Railway Engine " width="640" height="480" /></a></p>
<p><a title="Neral - Matheran Railway Engine by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5364352436/"><img src="http://farm6.static.flickr.com/5243/5364352436_b62e1b23ce_z.jpg" alt="Neral - Matheran Railway Engine" width="640" height="480" /></a></p>
<p><a title="Neral - Matheran Railway Engine by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5363744895/"><img src="http://farm6.static.flickr.com/5126/5363744895_3c2f770b6c_z.jpg" alt="Neral - Matheran Railway Engine" width="640" height="480" /></a></p>
<p><a title="Neral - Matheran Railway Engine by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5364362228/"><img src="http://farm6.static.flickr.com/5001/5364362228_eafc74b7a1_z.jpg" alt="Neral - Matheran Railway Engine" width="480" height="640" /></a></p>
<p><a title="Neral-Matheran Train Engine by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5357586698/"><img src="http://farm6.static.flickr.com/5209/5357586698_22e4354634_z.jpg" alt="Neral-Matheran Train Engine" width="640" height="480" /></a></p>
<p>One by one every single engine is looking great and perfect. These trains are also used as passing goods to matheran city.<br />
I clicked the insides engines photos also.. every other engines has its own gears and views&#8230;</p>
<h3>Neral &#8211; Matheran Rail Engine Inside Views</h3>
<p><a title="Neral-Matheran Railway Engine  by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5357451692/"><img src="http://farm6.static.flickr.com/5243/5357451692_aa050cf0e7_z.jpg" alt="Neral-Matheran Railway Engine " width="640" height="480" /></a></p>
<p><a title="Neral - Matheran Railway Engine - Inside by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5364345632/"><img src="http://farm6.static.flickr.com/5161/5364345632_8164670724_z.jpg" alt="Neral - Matheran Railway Engine - Inside" width="640" height="480" /></a></p>
<p>The full track is covered as curves. Multiple curves in the routes.</p>
<h3>Curves at Neral &#8211; Matheran route</h3>
<p><a title="Matheran Railway Track by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356831445/"><img src="http://farm6.static.flickr.com/5086/5356831445_b187781084_z.jpg" alt="Matheran Railway Track" width="640" height="480" /></a></p>
<p><a title="Matheran Railway Track by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5357593292/"><img src="http://farm6.static.flickr.com/5281/5357593292_5575ddbedf_z.jpg" alt="Matheran Railway Track" width="640" height="480" /></a></p>
<p>And how about passing from tunnel &#8211; A fantastic view.<br />
<a title="Neral-Matheran Railway Engine in Tunnel by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5357448214/"><img src="http://farm6.static.flickr.com/5001/5357448214_cde1f7cfd1_z.jpg" alt="Neral-Matheran Railway Engine in Tunnel" width="640" height="480" /></a></p>
<p>It feels good when toy train stops at between station and you enjoy a sip of tea.<br />
<a title="Matheran Mountain Toy Train by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356841965/"><img src="http://farm6.static.flickr.com/5128/5356841965_f3c32717cd_z.jpg" alt="Matheran Mountain Toy Train" width="640" height="480" /></a></p>
<p><a title="Matheran Mountain Toy Train by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356844445/"><img src="http://farm6.static.flickr.com/5130/5356844445_f6b8c8fd0c_z.jpg" alt="Matheran Mountain Toy Train" width="640" height="480" /></a></p>
<p>Train also passes the road multiple times, all the time human barriers are available for others.<br />
<a title="Matheran Mountain Toy Train by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356856843/"><img src="http://farm6.static.flickr.com/5082/5356856843_28cb458f94_z.jpg" alt="Matheran Mountain Toy Train" width="640" height="480" /></a></p>
<p>It again feel fantastic when train give full throttle and full whistle and it gives WOW experience.</p>
<p><a title="Matheran Mountain Toy Train by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356846361/"><img src="http://farm6.static.flickr.com/5048/5356846361_b704d6aacc_z.jpg" alt="Matheran Mountain Toy Train" width="640" height="480" /></a></p>
<p><a title="Matheran Mountain Toy Train by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5357463308/"><img src="http://farm6.static.flickr.com/5242/5357463308_953308909f_z.jpg" alt="Matheran Mountain Toy Train" width="640" height="480" /></a></p>
<p>It was really memorable journey. It begins here.<br />
<a title="Matheran Railway Station by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5364381188/"><img src="http://farm6.static.flickr.com/5003/5364381188_7b98b902b0_z.jpg" alt="Matheran Railway Station" width="640" height="480" /></a></p>
<p><a title="Old Style Railway Signal on the way to Matheran-Neral by ganuullu, on Flickr" href="http://www.flickr.com/photos/ganuullu/5356854983/"><img src="http://farm6.static.flickr.com/5245/5356854983_8f021fe315_z.jpg" alt="Old Style Railway Signal on the way to Matheran-Neral" width="640" height="480" /></a></p>
<p>Happy Traveling.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/personal/familly/'>familly</a>, <a href='http://ullu.wordpress.com/category/photography/'>photography</a>, <a href='http://ullu.wordpress.com/category/tips/'>tips</a>, <a href='http://ullu.wordpress.com/category/travel/'>travel</a>, <a href='http://ullu.wordpress.com/category/weekend/'>weekend</a> Tagged: <a href='http://ullu.wordpress.com/tag/hill-station/'>hill station</a>, <a href='http://ullu.wordpress.com/tag/in/'>IN</a>, <a href='http://ullu.wordpress.com/tag/maharashtra/'>maharashtra</a>, <a href='http://ullu.wordpress.com/tag/matheran/'>matheran</a>, <a href='http://ullu.wordpress.com/tag/mh/'>MH</a>, <a href='http://ullu.wordpress.com/tag/mountain-railways/'>mountain railways</a>, <a href='http://ullu.wordpress.com/tag/neral/'>neral</a>, <a href='http://ullu.wordpress.com/tag/panorma/'>panorma</a>, <a href='http://ullu.wordpress.com/tag/photo-blogging/'>photo blogging</a>, <a href='http://ullu.wordpress.com/tag/photoblog/'>photoblog</a>, <a href='http://ullu.wordpress.com/tag/photography/'>photography</a>, <a href='http://ullu.wordpress.com/tag/railfanning/'>railfanning</a>, <a href='http://ullu.wordpress.com/tag/toy-train/'>toy train</a>, <a href='http://ullu.wordpress.com/tag/travel/'>travel</a>, <a href='http://ullu.wordpress.com/tag/view/'>view</a>, <a href='http://ullu.wordpress.com/tag/wow/'>wow</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/628/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/628/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/628/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/628/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/628/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/628/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/628/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/628/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/628/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/628/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/628/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/628/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/628/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/628/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=628&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/05/22/neral-matheran-mountain-railway/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5202/5363716973_e47b33a7db_z.jpg" medium="image">
			<media:title type="html">Neral - Matheran Train Time Table</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5123/5357466530_afbae3c486_z.jpg" medium="image">
			<media:title type="html">Nerail Junction, Maharashtra</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5163/5356825245_a17847564c_z.jpg" medium="image">
			<media:title type="html">Neral-Matheran Railway Engine </media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5163/5357447612_56fe22d2e1_z.jpg" medium="image">
			<media:title type="html">Matheran Railway Station</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5245/5356974665_91879f94d8_z.jpg" medium="image">
			<media:title type="html">Matheran Railway Station</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5123/5363727457_d9259e79b8_z.jpg" medium="image">
			<media:title type="html">Matheran Railway Station</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5283/5356839999_b15b3fba94_z.jpg" medium="image">
			<media:title type="html">At Matheran Railway Station</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5090/5356827573_3c3fc7c991_z.jpg" medium="image">
			<media:title type="html">Neral-Matheran Railway Engine </media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5161/5357449582_e4489d546a_z.jpg" medium="image">
			<media:title type="html">Neral-Matheran Railway Engine </media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5243/5364352436_b62e1b23ce_z.jpg" medium="image">
			<media:title type="html">Neral - Matheran Railway Engine</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5126/5363744895_3c2f770b6c_z.jpg" medium="image">
			<media:title type="html">Neral - Matheran Railway Engine</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5001/5364362228_eafc74b7a1_z.jpg" medium="image">
			<media:title type="html">Neral - Matheran Railway Engine</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5209/5357586698_22e4354634_z.jpg" medium="image">
			<media:title type="html">Neral-Matheran Train Engine</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5243/5357451692_aa050cf0e7_z.jpg" medium="image">
			<media:title type="html">Neral-Matheran Railway Engine </media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5161/5364345632_8164670724_z.jpg" medium="image">
			<media:title type="html">Neral - Matheran Railway Engine - Inside</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5086/5356831445_b187781084_z.jpg" medium="image">
			<media:title type="html">Matheran Railway Track</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5281/5357593292_5575ddbedf_z.jpg" medium="image">
			<media:title type="html">Matheran Railway Track</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5001/5357448214_cde1f7cfd1_z.jpg" medium="image">
			<media:title type="html">Neral-Matheran Railway Engine in Tunnel</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5128/5356841965_f3c32717cd_z.jpg" medium="image">
			<media:title type="html">Matheran Mountain Toy Train</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5130/5356844445_f6b8c8fd0c_z.jpg" medium="image">
			<media:title type="html">Matheran Mountain Toy Train</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5082/5356856843_28cb458f94_z.jpg" medium="image">
			<media:title type="html">Matheran Mountain Toy Train</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5048/5356846361_b704d6aacc_z.jpg" medium="image">
			<media:title type="html">Matheran Mountain Toy Train</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5242/5357463308_953308909f_z.jpg" medium="image">
			<media:title type="html">Matheran Mountain Toy Train</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5003/5364381188_7b98b902b0_z.jpg" medium="image">
			<media:title type="html">Matheran Railway Station</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5245/5356854983_8f021fe315_z.jpg" medium="image">
			<media:title type="html">Old Style Railway Signal on the way to Matheran-Neral</media:title>
		</media:content>
	</item>
		<item>
		<title>Sau rupaye ka Dum jo lun, Do sau gum ho udan Chhu</title>
		<link>http://ullu.wordpress.com/2011/04/17/sau-rupaye-ka-dum-jo-lun-do-sau-gum-ho-udan-chhu/</link>
		<comments>http://ullu.wordpress.com/2011/04/17/sau-rupaye-ka-dum-jo-lun-do-sau-gum-ho-udan-chhu/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 23:03:39 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[health]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[dum]]></category>
		<category><![CDATA[hindi]]></category>
		<category><![CDATA[lyrics]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=620</guid>
		<description><![CDATA[Hindi Lycisc from Dum Maro Dum हे..!! फिर देख रहा है आज आँख सेक रहा है, कल हाथ सेकेगा आज ढील छोड़ रहा है, कल खुद ही तोड़ेगा आज मेरे लिए Chair खींच रहा है, कल मेरी स्किर्ट खींचेगा खीचेगा की नहीं ? हम्म&#8230;? अक्कड़ बक्कड़ बम्बे बो, अस्सी नब्बे पूरे सौ सौ रुपये का [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=620&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hindi Lycisc from Dum Maro Dum </p>
<p>हे..!!<br />
फिर देख रहा है<br />
आज आँख सेक रहा है, कल हाथ सेकेगा<br />
आज ढील छोड़ रहा है, कल खुद ही तोड़ेगा<br />
आज मेरे लिए Chair खींच रहा है, कल मेरी स्किर्ट खींचेगा<br />
खीचेगा की नहीं ? हम्म&#8230;?</p>
<p>अक्कड़ बक्कड़ बम्बे बो, अस्सी नब्बे पूरे सौ<br />
सौ रुपये का दम जो लूँ, दो सौ गम हो उड़न छू</p>
<p>फिर क्यूँ मैं तू, कर रहे टे टू&#8230;.</p>
<p>Aish Karo Yaara&#8230;<br />
Happy Dum. </p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/fun/'>fun</a>, <a href='http://ullu.wordpress.com/category/health/'>health</a>, <a href='http://ullu.wordpress.com/category/tips/'>tips</a> Tagged: <a href='http://ullu.wordpress.com/tag/dum/'>dum</a>, <a href='http://ullu.wordpress.com/tag/hindi/'>hindi</a>, <a href='http://ullu.wordpress.com/tag/lyrics/'>lyrics</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/620/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/620/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/620/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/620/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/620/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/620/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/620/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/620/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/620/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/620/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/620/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/620/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/620/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/620/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=620&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/04/17/sau-rupaye-ka-dum-jo-lun-do-sau-gum-ho-udan-chhu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>just random post for march</title>
		<link>http://ullu.wordpress.com/2011/03/31/just-random-post-for-march/</link>
		<comments>http://ullu.wordpress.com/2011/03/31/just-random-post-for-march/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 04:21:40 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[india]]></category>
		<category><![CDATA[Timepass]]></category>
		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=615</guid>
		<description><![CDATA[So in march month I have not written any thing. So hey everyone. I hope india winds the world cup. Filed under: india, Timepass Tagged: random, Timepass<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=615&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So in march month I have not written any thing.<br />
So hey everyone. </p>
<p>I hope india winds the world cup. </p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/india/'>india</a>, <a href='http://ullu.wordpress.com/category/timepass/'>Timepass</a> Tagged: <a href='http://ullu.wordpress.com/tag/random/'>random</a>, <a href='http://ullu.wordpress.com/tag/timepass/'>Timepass</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/615/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/615/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/615/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/615/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/615/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/615/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/615/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/615/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/615/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/615/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/615/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/615/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/615/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/615/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=615&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/03/31/just-random-post-for-march/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Answers from Sri Sri Ravishankar of Art of Living on Lord Krishna&#8217;s Gita Question.</title>
		<link>http://ullu.wordpress.com/2011/02/22/answers-from-sri-sri-ravishankar-of-art-of-living-on-lord-krishnas-gita-question/</link>
		<comments>http://ullu.wordpress.com/2011/02/22/answers-from-sri-sri-ravishankar-of-art-of-living-on-lord-krishnas-gita-question/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 09:15:50 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[हिंदी]]></category>
		<category><![CDATA[hindi]]></category>
		<category><![CDATA[india]]></category>
		<category><![CDATA[observation]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[religious]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[gita]]></category>
		<category><![CDATA[gita sandesh]]></category>
		<category><![CDATA[krishna]]></category>
		<category><![CDATA[nice]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[ravi shankar maharaj]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/2011/02/22/answers-from-sri-sri-ravishankar-of-art-of-living-on-lord-krishnas-gita-question/</guid>
		<description><![CDATA[Today I got mail from Rajendran Ganesan (http://shanthiraju.wordpress.com/) I am very fond of his blog. One of my favorite blog. He sent this mail&#8230; I just liked it&#8230; I am printing as it is. -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= An answer from Sri Sri Ravishankar of Art of Living, for a question which is grossly misunderstood by many of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=614&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I got mail from Rajendran Ganesan (<a href="http://shanthiraju.wordpress.com/">http://shanthiraju.wordpress.com/</a>) I am very fond of his blog. One of my favorite blog.</p>
<p>He sent this mail&#8230; I just liked it&#8230; I am printing as it is.</p>
<p>-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=<br />
An answer from Sri Sri Ravishankar of Art of Living, for a question which is grossly misunderstood by many of us, I believe.<br />
&gt;&gt;&gt;&gt;<br />
Q: Lord Krishna has said in the ‘Gita’ to sacrifice the fruits of action. Is</p>
<p>it possible to do that in real life?</p>
<p>Sri Sri: No, Krishna never asked you to sacrifice the fruits of action. He<br />
says, in any case you have no control over the fruits of your actions.<br />
Therefore put your attention on the performance of action. While running a<br />
race, have the attention on yourself and not on the other tracks. His advice<br />
is utterly practical.</p>
<p>Q: Then, don’t we have to look at the competition?</p>
<p>Sri Sri: Life is complex. Take this and that together. If you are not aware<br />
of what is happening around you, you will miss out. Improve your intuitive<br />
ability.</p>
<p>&gt;&gt;&gt;&gt;<br />
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=</p>
<p>My हिंदी Translation for easy understanding.</p>
<p>Q. भगवान कृष्ण ने &#8216;गीता&#8217; में कहा है कि कार्रवाई के फल का त्याग करो, क्या यह वास्तविक जीवन में करना संभव है?<br />
A. भगवान कृष्ण नें कभी नहीं कहा है की तुम कर्म के फलो का त्याग करो. बल्कि उनका तो ये मानना है की किसी भी मामले मैं मनुष्य का कर्म के फलो पर कोई नियंत्रण नहीं है.<br />
इसलिए कार्रवाई के प्रदर्शन पर अपना ध्यान रख. जैसे की एक प्रतियोगिता की दौड़ मैं दौड़ते वक़्त मनुष्य को अपनी दौड़ मैं ध्यान केन्द्रित करना चाहिए ना की दुसरे की दौड़ पर.<br />
उनकी सलाह पूरी तरह से व्यावहारिक है.</p>
<p>Q. तो क्या हम वास्तविक जीवन की प्रतियोगिता मैं भाग ना लेवे. ?<br />
A. जीवन जटिल है सब कुछ एक साथ ले कर चलो.<br />
यदि आप नहीं जानते हैं की तुम्हारे चारो तरफ क्या हो रहा है तो तुम गुम जाओगे. अंतर्ज्ञानी बनो.</p>
<p>So कर्म करता जा फल की इच्छा मत कर.</p>
<p>Happy Worship. Happy Hard Work. Happy Success.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/%e0%a4%b9%e0%a4%bf%e0%a4%82%e0%a4%a6%e0%a5%80/'>हिंदी</a>, <a href='http://ullu.wordpress.com/category/hindi/'>hindi</a>, <a href='http://ullu.wordpress.com/category/india/'>india</a>, <a href='http://ullu.wordpress.com/category/observation/'>observation</a>, <a href='http://ullu.wordpress.com/category/personal/'>Personal</a>, <a href='http://ullu.wordpress.com/category/religious/'>religious</a>, <a href='http://ullu.wordpress.com/category/tips/'>tips</a> Tagged: <a href='http://ullu.wordpress.com/tag/gita/'>gita</a>, <a href='http://ullu.wordpress.com/tag/gita-sandesh/'>gita sandesh</a>, <a href='http://ullu.wordpress.com/tag/hindi/'>hindi</a>, <a href='http://ullu.wordpress.com/tag/krishna/'>krishna</a>, <a href='http://ullu.wordpress.com/tag/nice/'>nice</a>, <a href='http://ullu.wordpress.com/tag/observation/'>observation</a>, <a href='http://ullu.wordpress.com/tag/question/'>question</a>, <a href='http://ullu.wordpress.com/tag/ravi-shankar-maharaj/'>ravi shankar maharaj</a>, <a href='http://ullu.wordpress.com/tag/wow/'>wow</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/614/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/614/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/614/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=614&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/02/22/answers-from-sri-sri-ravishankar-of-art-of-living-on-lord-krishnas-gita-question/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Groovy-Grails on Ubuntu</title>
		<link>http://ullu.wordpress.com/2011/02/13/installing-groovy-grails-on-ubuntu/</link>
		<comments>http://ullu.wordpress.com/2011/02/13/installing-groovy-grails-on-ubuntu/#comments</comments>
		<pubDate>Sat, 12 Feb 2011 22:23:53 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[Code Recipes]]></category>
		<category><![CDATA[Groovy/Grails]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Quick Tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[done]]></category>
		<category><![CDATA[good]]></category>
		<category><![CDATA[grails]]></category>
		<category><![CDATA[groovy]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=606</guid>
		<description><![CDATA[Now a days I am working with Groovy/Grails. This is really awesome language. Installing this in Ubuntu is very easy and this can be done very fast and in easy way. So how I installed Groovy/Grails up and running. First install openjdk and groovy. Since in ubuntu these 2 packages are already available. So install [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=606&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Now a days I am working with Groovy/Grails. This is really awesome language. Installing this in Ubuntu is very easy and this can be done very fast and in easy way. So how I installed Groovy/Grails up and running.</p>
<p>First install openjdk and groovy. Since in ubuntu these 2 packages are already available. So install it via apt-get.</p>
<p><pre class="brush: bash;">
sudo apt-get install openjdk-6-jdk
sudo apt-get install groovy

java -version
java version &quot;1.6.0_18&quot;
OpenJDK Runtime Environment (IcedTea6 1.8) (6b18-1.8-0ubuntu1)
OpenJDK Client VM (build 14.0-b16, mixed mode, sharing)

groovyConsole
</pre></p>
<p>Now for installing Grails. We need to install via binary zip file.<br />
Get the latest Binary Zip file and save to some of your location.<br />
Unzip the folder and move to /usr/share/grails/<br />
I just moved grails to /usr/share/ because ubuntu install Groovy at /usr/share/groovy so making the similarity.</p>
<p>Now Set the JAVA_HOME and GRAILS_HOME path for your profile. Since we are installing Grails via zip binary so we need to tell the system that where is Grails and where is JAVA.</p>
<p>Open ~/.profiles file and add these lines at the top.</p>
<p><pre class="brush: bash;">
JAVA_HOME=/usr/lib/jvm/java-6-openjdk
GRAILS_HOME=/usr/share/grails
PATH=$PATH:/usr/share/grails/bin
export JAVA_HOME PATH
export GRAILS_HOME PATH
</pre></p>
<p>And logout and login again and do</p>
<p><pre class="brush: bash;">
printenv
</pre></p>
<p>This will show you that Grails path is set for our profile.</p>
<p>Now just say</p>
<p><pre class="brush: bash;">
ganu@ganu:/usr/share/grails$ grails
Welcome to Grails 1.3.6 - http://grails.org/
Licensed under Apache Standard License 2.0
Grails home is set to: /usr/share/grails
</pre></p>
<p>Use &#8216;grails help&#8217; for more info or &#8216;grails interactive&#8217; to enter interactive mode</p>
<p>DONE !! WOW.</p>
<p>How to check where Groovy-Grails combination is working.</p>
<p>Go to your development Grails folder.</p>
<p><pre class="brush: bash;">
ganu@ganu:~/grails$ grails create-app wpdemo
Welcome to Grails 1.3.6 - http://grails.org/
Licensed under Apache Standard License 2.0
Grails home is set to: /usr/share/grails

Base Directory: /home/ganu/grails
Resolving dependencies...
Dependencies resolved in 2867ms.
Running script /usr/share/grails/scripts/CreateApp_.groovy
Environment set to development
...........
Executing tomcat-1.3.6 plugin post-install script ...
Plugin tomcat-1.3.6 installed
Plugin provides the following new scripts:
------------------------------------------
grails tomcat
Created Grails Application at /home/ganu/grails/wpdemo
ganu@ganu:~/grails$ cd wpdemo/
ganu@ganu:~/grails/wpdemo$ ll
total 28
-rw-r--r--  1 ganu ganu  178 2011-02-13 03:43 application.properties
drwxr-xr-x 10 ganu ganu 4096 2010-12-15 08:22 grails-app
drwxr-xr-x  2 ganu ganu 4096 2011-02-13 03:43 lib
drwxr-xr-x  2 ganu ganu 4096 2011-02-13 03:43 scripts
drwxr-xr-x  4 ganu ganu 4096 2011-02-13 03:43 src
drwxr-xr-x  4 ganu ganu 4096 2011-02-13 03:43 test
drwxr-xr-x  7 ganu ganu 4096 2010-12-15 08:22 web-app
ganu@ganu:~/grails/wpdemo$ grails run-app
Welcome to Grails 1.3.6 - http://grails.org/
Licensed under Apache Standard License 2.0
Grails home is set to: /usr/share/grails

Base Directory: /home/ganu/grails/wpdemo
Resolving dependencies...
Dependencies resolved in 2986ms.
Running script /usr/share/grails/scripts/RunApp.groovy
Environment set to development
...........
Running Grails application..
Server running. Browse to http://localhost:8080/wpdemo
</pre></p>
<div id="attachment_607" class="wp-caption aligncenter" style="width: 423px"><a href="http://ullu.files.wordpress.com/2011/02/grails-wpdemo.png"><img class="size-medium wp-image-607 " title="Grails Setup Screenshot" src="http://ullu.files.wordpress.com/2011/02/grails-wpdemo.png?w=413&#038;h=307" alt="Groovy/Grails SEtup" width="413" height="307" /></a><p class="wp-caption-text">Groovy/Grails SEtup</p></div>
<p>Happy Programming.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/code-recipes/'>Code Recipes</a>, <a href='http://ullu.wordpress.com/category/programming/groovygrails/'>Groovy/Grails</a>, <a href='http://ullu.wordpress.com/category/programming/'>programming</a>, <a href='http://ullu.wordpress.com/category/quick-tutorial/'>Quick Tutorial</a>, <a href='http://ullu.wordpress.com/category/ubuntu/'>ubuntu</a> Tagged: <a href='http://ullu.wordpress.com/tag/done/'>done</a>, <a href='http://ullu.wordpress.com/tag/good/'>good</a>, <a href='http://ullu.wordpress.com/tag/grails/'>grails</a>, <a href='http://ullu.wordpress.com/tag/groovy/'>groovy</a>, <a href='http://ullu.wordpress.com/tag/install/'>install</a>, <a href='http://ullu.wordpress.com/tag/setup/'>setup</a>, <a href='http://ullu.wordpress.com/tag/ubuntu/'>ubuntu</a>, <a href='http://ullu.wordpress.com/tag/wow/'>wow</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/606/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/606/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/606/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=606&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/02/13/installing-groovy-grails-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>

		<media:content url="http://ullu.files.wordpress.com/2011/02/grails-wpdemo.png?w=300" medium="image">
			<media:title type="html">Grails Setup Screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy Indian Republic Day &#8211; भारतीय गणतंत्र दिवस की शुभकामनाये</title>
		<link>http://ullu.wordpress.com/2011/01/26/happy-indian-republic-day-2011/</link>
		<comments>http://ullu.wordpress.com/2011/01/26/happy-indian-republic-day-2011/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 07:26:59 +0000</pubDate>
		<dc:creator>ganu</dc:creator>
				<category><![CDATA[हिंदी]]></category>
		<category><![CDATA[india]]></category>
		<category><![CDATA[गणतंत्र]]></category>
		<category><![CDATA[संविधान]]></category>
		<category><![CDATA[Constitution]]></category>
		<category><![CDATA[pride]]></category>
		<category><![CDATA[republic]]></category>
		<category><![CDATA[republic day]]></category>

		<guid isPermaLink="false">http://ullu.wordpress.com/?p=602</guid>
		<description><![CDATA[भारतीय गणतंत्र दिवस की आप सभी को शुभकामनाये. जी देश वासियों आज ही के दिन सन 1950 मैं भारत राष्ट्र का संविधान लागू हुआ था. संविधान की प्रस्तावना: &#8221; हम भारत के लोग, भारत को एक सम्पूर्ण प्रभुत्व सम्पन्न, समाजवादी, पंथनिरपेक्ष, लोकतंत्रात्मक गणराज्य बनाने के लिए तथा उसके समस्त नागरिकों को : सामाजिक, आर्थिक और [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=602&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>भारतीय गणतंत्र दिवस की आप सभी को शुभकामनाये.</p>
<p>जी देश वासियों आज ही के दिन सन 1950 मैं भारत राष्ट्र का संविधान लागू हुआ था.</p>
<p><strong>संविधान की प्रस्तावना:</strong><br />
&#8221; हम भारत के लोग, भारत को एक सम्पूर्ण प्रभुत्व सम्पन्न, समाजवादी, पंथनिरपेक्ष, लोकतंत्रात्मक गणराज्य बनाने के लिए तथा उसके समस्त नागरिकों को :<br />
सामाजिक, आर्थिक और राजनीतिक न्याय, विचार, अभिव्यक्ति, विश्वास, धर्म और उपासना की स्वतंत्रता, प्रतिष्ठा और अवसर की समता प्राप्त करने के लिए तथा<br />
उन सबमें व्यक्ति की गरिमा और राष्ट्र की एकता और अखण्डता सुनिश्चित करनेवाली बंधुता बढाने के लिए दृढ संकल्प होकर अपनी इस संविधान सभा में<br />
आज तारीख 26 नवंबर, 1949 ई0 (मिति मार्ग शीर्ष शुक्ल सप्तमी, सम्वत् दो हजार ग्यारह विक्रमी) को एतद द्वारा इस संविधान को अंगीकृत, अधिनियमित और आत्मार्पित करते हैं।&#8221;</p>
<p><strong>The preamble to the Constitution of India</strong><br />
WE, THE PEOPLE OF INDIA, having solemnly resolved to constitute India into a SOVEREIGN SOCIALIST SECULAR DEMOCRATIC REPUBLIC and to secure to all its citizens:<br />
JUSTICE, social, economic and political;<br />
LIBERTY of thought, expression, belief, faith and worship;<br />
EQUALITY of status and of opportunity;<br />
and to promote among them all<br />
FRATERNITY assuring the dignity of the individual and the unity and integrity of the Nation;<br />
IN OUR CONSTITUENT ASSEMBLY this twenty-sixth day of November, 1949, do HEREBY ADOPT, ENACT AND GIVE TO OURSELVES THIS CONSTITUTION.</p>
<p>To watch Indian Republic Day Parade. Watch <a href="http://republicday.nic.in/">Republic Day Celebrations</a>.</p>
<p>Happy Indian Republic Day.</p>
<br />Filed under: <a href='http://ullu.wordpress.com/category/%e0%a4%b9%e0%a4%bf%e0%a4%82%e0%a4%a6%e0%a5%80/'>हिंदी</a>, <a href='http://ullu.wordpress.com/category/india/'>india</a> Tagged: <a href='http://ullu.wordpress.com/tag/%e0%a4%97%e0%a4%a3%e0%a4%a4%e0%a4%82%e0%a4%a4%e0%a5%8d%e0%a4%b0/'>गणतंत्र</a>, <a href='http://ullu.wordpress.com/tag/%e0%a4%b8%e0%a4%82%e0%a4%b5%e0%a4%bf%e0%a4%a7%e0%a4%be%e0%a4%a8/'>संविधान</a>, <a href='http://ullu.wordpress.com/tag/constitution/'>Constitution</a>, <a href='http://ullu.wordpress.com/tag/india/'>india</a>, <a href='http://ullu.wordpress.com/tag/pride/'>pride</a>, <a href='http://ullu.wordpress.com/tag/republic/'>republic</a>, <a href='http://ullu.wordpress.com/tag/republic-day/'>republic day</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ullu.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ullu.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ullu.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ullu.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ullu.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ullu.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ullu.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ullu.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ullu.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ullu.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ullu.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ullu.wordpress.com/602/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ullu.wordpress.com/602/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ullu.wordpress.com/602/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ullu.wordpress.com&amp;blog=168990&amp;post=602&amp;subd=ullu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ullu.wordpress.com/2011/01/26/happy-indian-republic-day-2011/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3d8e4aefc1d3f92f11676cc9f06c7403?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">ullu</media:title>
		</media:content>
	</item>
	</channel>
</rss>
