<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>NULL.in &#187; Miscellaneous</title>
	<atom:link href="http://www.nalinmakar.com/category/miscellaneous/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nalinmakar.com</link>
	<description>Nalin's Labyrinth</description>
	<lastBuildDate>Thu, 29 Jul 2010 04:07:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Connect to MS SQL Server using JDBC</title>
		<link>http://www.nalinmakar.com/2008/12/13/connect-to-ms-sql-server-using-jdbc/</link>
		<comments>http://www.nalinmakar.com/2008/12/13/connect-to-ms-sql-server-using-jdbc/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 00:51:56 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jdbc]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/?p=537</guid>
		<description><![CDATA[The following example shows a java class that can be used to verify if you connection to MS SQL Server using JDBC is working properly. The following code establishes a connection to MS SQL server and then executes a query to print system tables. You need to get Microsoft&#8217;s JDBC drivers or jTDS JDBC drivers. [...]]]></description>
			<content:encoded><![CDATA[<p>The following example shows a java class that can be used to verify if you connection to MS SQL Server using JDBC is working properly. The following code establishes a connection to MS SQL server and then executes a query to print system tables. You need to get <a  href="http://msdn.microsoft.com/en-us/data/aa937724.aspx">Microsoft&#8217;s JDBC drivers</a> or <a  href="http://jtds.sourceforge.net/">jTDS JDBC drivers</a>.</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.sql.Connection</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.sql.DriverManager</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.sql.ResultSet</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">import</span> <span style="color: #006699;">java.sql.Statement</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> ConnectMSSQLServer
<span style="color: #009900;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000066; font-weight: bold;">void</span> dbConnect<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span> db_connect_string,
            <span style="color: #003399;">String</span> db_userid,
            <span style="color: #003399;">String</span> db_password<span style="color: #009900;">&#41;</span>
   <span style="color: #009900;">&#123;</span>
      <span style="color: #000000; font-weight: bold;">try</span> <span style="color: #009900;">&#123;</span>
         <span style="color: #000000; font-weight: bold;">Class</span>.<span style="color: #006633;">forName</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;com.microsoft.sqlserver.jdbc.SQLServerDriver&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
         <span style="color: #003399;">Connection</span> conn <span style="color: #339933;">=</span> <span style="color: #003399;">DriverManager</span>.<span style="color: #006633;">getConnection</span><span style="color: #009900;">&#40;</span>db_connect_string,
                  db_userid, db_password<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
         <span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;connected&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
         <span style="color: #003399;">Statement</span> statement <span style="color: #339933;">=</span> conn.<span style="color: #006633;">createStatement</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
         <span style="color: #003399;">String</span> queryString <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;select * from sysobjects where type='u'&quot;</span><span style="color: #339933;">;</span>
         <span style="color: #003399;">ResultSet</span> rs <span style="color: #339933;">=</span> statement.<span style="color: #006633;">executeQuery</span><span style="color: #009900;">&#40;</span>queryString<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
         <span style="color: #000000; font-weight: bold;">while</span> <span style="color: #009900;">&#40;</span>rs.<span style="color: #006633;">next</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #003399;">System</span>.<span style="color: #006633;">out</span>.<span style="color: #006633;">println</span><span style="color: #009900;">&#40;</span>rs.<span style="color: #006633;">getString</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
         <span style="color: #009900;">&#125;</span>
      <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">catch</span> <span style="color: #009900;">&#40;</span><span style="color: #003399;">Exception</span> e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
         e.<span style="color: #006633;">printStackTrace</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
   <span style="color: #009900;">&#125;</span>
&nbsp;
   <span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">static</span> <span style="color: #000066; font-weight: bold;">void</span> main<span style="color: #009900;">&#40;</span><span style="color: #003399;">String</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> args<span style="color: #009900;">&#41;</span>
   <span style="color: #009900;">&#123;</span>
      ConnectMSSQLServer connServer <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> ConnectMSSQLServer<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      connServer.<span style="color: #006633;">dbConnect</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;jdbc:sqlserver://&amp;lt;hostname&amp;gt;&quot;</span>, <span style="color: #0000ff;">&quot;&amp;lt;user&amp;gt;&quot;</span>,
               <span style="color: #0000ff;">&quot;&amp;lt;password&amp;gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Change <code>&lt;hostname&gt;</code>, <code>&lt;user&gt;</code> and <code>&lt;password&gt;</code> to the correct values. Also, if you use the jTDS drivers, the driver class should be set to <code>net.sourceforge.jtds.jdbc.Driver</code>.</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2010/07/28/logging-tests-to-separate-files/" title="Logging tests to separate files">Logging tests to separate files</a></li><li><a  href="http://www.nalinmakar.com/2010/03/26/hudson-ci-for-testing/" title="Hudson CI for Testing">Hudson CI for Testing</a></li><li><a  href="http://www.nalinmakar.com/2009/11/28/what-is-wrong-with-me/" title="What is wrong with me?">What is wrong with me?</a></li><li><a  href="http://www.nalinmakar.com/2008/12/06/removing-tags-from-posts-contents-in-wordpress/" title="Removing tags from Wordpress posts content">Removing tags from Wordpress posts content</a></li><li><a  href="http://www.nalinmakar.com/2006/08/01/mass-string-replace-in-mysql/" title="Mass string replace in MySQL">Mass string replace in MySQL</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2008/12/13/connect-to-ms-sql-server-using-jdbc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Say Hello to HemingwayEx 1.0</title>
		<link>http://www.nalinmakar.com/2007/07/15/say-hello-to-hemingwayex-10/</link>
		<comments>http://www.nalinmakar.com/2007/07/15/say-hello-to-hemingwayex-10/#comments</comments>
		<pubDate>Sun, 15 Jul 2007 08:14:05 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[hemingwayex]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Widget]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/2007/07/15/say-hello-to-hemingwayex-10/</guid>
		<description><![CDATA[After about 4 months of inactivity little activity, I finally sat down sometime back and updated HemingwayEx. Added some much needed new features and squashed some old bugs. Again, a lot of help came from many others who have liked this forum and were nice enough to report bugs and give ideas of what more [...]]]></description>
			<content:encoded><![CDATA[<p>After about 4 months of <strike>inactivity</strike> little activity, I finally sat down sometime back and updated HemingwayEx. Added some much needed new features and squashed some old bugs. Again, a lot of help came from many others who have liked this forum and were nice enough to report bugs and give ideas of what more can be done with the theme.</p>
<p><!-- HemingwayEx:Update date="2007-07-14" version="1.0" --></p>
<p>Anyways, with this relase, HemingwayEx has made a major jump. The theme is now <strong>Widgetized</strong>. Users can now go to the options page and set whether they want to use the old blocks system or use widgets for sidebars. I have also added a font size changer and added comment numbering.</p>
<p>Going forward, I am planning on making the theme more customizable and adding internationalization support. Also, will work on adding more user styles.</p>
<p>Here are the <strike>pseudo</strike> release notes / changelog:</p>
<p>Version: <a  href="http://www.nalinmakar.com/blog/download-manager.php?id=4" title="Download HemingwayEx 1.0">1.0</a><br />
Release date: Jul 14, 2007<br />
Release Notes: I have fixed a few more bugs. Also added some major features into the theme.</p>
<p>Added Features</p>
<ul>
<li>Widgetized the theme. User can switch between using Hemingway Blocks System or Widgetized Sidebars.</li>
<li>Added a font size changer. Now viewers can increase / decrease the size of font by clicking on a few links just below the search form. Credit goes to this <a  href="http://www.duvien.com/blog/p,93/" title="How to add font size changer to your site">simple and easy tutorial</a>.</li>
<li>Numbered comments, that look (IMHO) cool.</li>
<li>Added an Asides Widget to be used when theme is being used in widgetized mode. The functionality is the same as the Asides block previously added to HemingwayEx.</li>
<li>Added a new block WordSpew, thanks to Darwin.</li>
</ul>
<p>Bug Fixes</p>
<ul>
<li>Simple CSS fixes to style.css</li>
<li>Added more properties to white.css</li>
<li>Removed all PHP short tags. <em>I think this time I got &#8216;em all.</em></li>
<li>Fixed bugs pointed out by <a  href="http://darwin.info.tm/" title="Darwin Bautista">Darwin</a></li>
</ul>
<p>Tested on : WordPress 2.1 and WordPress 2.2.1 with IE6, IE7 and Firefox</p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2007/12/02/hemingwayex-11-on-its-way/" title="HemingwayEx 1.1 on it&#8217;s way">HemingwayEx 1.1 on it&#8217;s way</a></li><li><a  href="http://www.nalinmakar.com/hemingwayex/" title="HemingwayEx">HemingwayEx</a></li><li><a  href="http://www.nalinmakar.com/2008/09/02/hemingwayex-15-final/" title="HemingwayEx 1.5 Final">HemingwayEx 1.5 Final</a></li><li><a  href="http://www.nalinmakar.com/2008/04/29/hemingwayex-11-is-finally-here/" title="Hemingwayex 1.1 is finally here">Hemingwayex 1.1 is finally here</a></li><li><a  href="http://www.nalinmakar.com/2007/03/04/hemingwayex-095-beta/" title="HemingwayEx 0.95 beta">HemingwayEx 0.95 beta</a></li><li><a  href="http://www.nalinmakar.com/2007/02/18/introducing-hemingwayex-for-wordpress/" title="Introducing HemingwayEx for Wordpress">Introducing HemingwayEx for Wordpress</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2007/07/15/say-hello-to-hemingwayex-10/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>HemingwayEx 0.95 beta</title>
		<link>http://www.nalinmakar.com/2007/03/04/hemingwayex-095-beta/</link>
		<comments>http://www.nalinmakar.com/2007/03/04/hemingwayex-095-beta/#comments</comments>
		<pubDate>Mon, 05 Mar 2007 06:28:20 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[hemingwayex]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/2007/03/04/hemingwayex-095-beta/</guid>
		<description><![CDATA[I have updated HemingwayEx wordpress theme by adding some simple new features. I also made some bug fixes. The best thing about this update is that now users will see a notification of a new version on the HemingwayEx Option page. I really hope that this works. I am not much of a PHP coder&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>I have updated HemingwayEx wordpress theme by adding some simple new features. I also made some bug fixes. The best thing about this update is that now users will see a notification of a new version on the HemingwayEx Option page. I really hope that this works. I am not much of a PHP coder&#8230; just hacked up what I could by reading Peter Harkins&#8217;s code for the wordpress plug-in <a  href="http://push.cx/sociable">Sociable</a>.</p>
<p>I also fixed some more CSS issues with the white.css stylesheet. The worst part about styling a theme is making it compatible with different browsers. I must make my displeasure with IE&#8217;s handling of CSS very clear here. I have done what I can for now and will keep fixing things as I learn more.</p>
<p>You can download the latest version, 0.95 beta from <a  href="http://nalinmakar.com/hemingwayex/">HemingwayEx homepage</a>.</p>
<blockquote><p><strong>If you are UPGRADING, you will need to reset/uninstall the previous version of HemingwayEx first as I have moved the blocks around. If you don&#8217;t you might find the display mixed up. Here are the steps you should follow:<br />
</strong></p>
<ol>
<li><em>Goto HemingwayEx Options page and note down you settings.</em></li>
<li><em>Now upload the new files for HemingwayEx theme.</em></li>
<li><em>Click reset button right at the bottom of the HemingwayEx options page.</em></li>
<li><em>Refresh the HemingwayEx Options page and set the options to what they were before.<br />
</em></li>
</ol>
</blockquote>
<p><!-- HemingwayEx:Update date="2007-03-04" version="0.95 beta" --></p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2008/09/02/hemingwayex-15-final/" title="HemingwayEx 1.5 Final">HemingwayEx 1.5 Final</a></li><li><a  href="http://www.nalinmakar.com/2008/04/29/hemingwayex-11-is-finally-here/" title="Hemingwayex 1.1 is finally here">Hemingwayex 1.1 is finally here</a></li><li><a  href="http://www.nalinmakar.com/2007/12/02/hemingwayex-11-on-its-way/" title="HemingwayEx 1.1 on it&#8217;s way">HemingwayEx 1.1 on it&#8217;s way</a></li><li><a  href="http://www.nalinmakar.com/2007/07/15/say-hello-to-hemingwayex-10/" title="Say Hello to HemingwayEx 1.0">Say Hello to HemingwayEx 1.0</a></li><li><a  href="http://www.nalinmakar.com/hemingwayex/" title="HemingwayEx">HemingwayEx</a></li><li><a  href="http://www.nalinmakar.com/2007/02/18/introducing-hemingwayex-for-wordpress/" title="Introducing HemingwayEx for Wordpress">Introducing HemingwayEx for Wordpress</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2007/03/04/hemingwayex-095-beta/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Isreal&#8217;s PR Campaign</title>
		<link>http://www.nalinmakar.com/2006/08/11/isreals-pr-campaign/</link>
		<comments>http://www.nalinmakar.com/2006/08/11/isreals-pr-campaign/#comments</comments>
		<pubDate>Fri, 11 Aug 2006 23:57:22 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[videos]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/2006/08/11/isreals-pr-campaign/</guid>
		<description><![CDATA[This is a must watch video showing how Isreal and a lot of other factors affect the US Media and hence the view of the people here. I learnt a hell a lot watching this&#8230; Related PostsCommercialBill Gates on The Daily ShowFlurry: The best screensaver ever !!Google Vids]]></description>
			<content:encoded><![CDATA[<p>This is a must watch <a  href="http://video.google.com/videoplay?docid=-7828123714384920696">video</a> showing how Isreal and a lot of other factors affect the US Media and hence the view of the people here. I learnt a hell a lot watching this&#8230; </p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2007/03/05/commercial/" title="Commercial">Commercial</a></li><li><a  href="http://www.nalinmakar.com/2007/01/31/bill-gates-on-the-daily-show/" title="Bill Gates on The Daily Show">Bill Gates on The Daily Show</a></li><li><a  href="http://www.nalinmakar.com/2006/09/24/flurry-the-best-screensaver-ever/" title="Flurry: The best screensaver ever !!">Flurry: The best screensaver ever !!</a></li><li><a  href="http://www.nalinmakar.com/2006/03/29/google-vids/" title="Google Vids">Google Vids</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2006/08/11/isreals-pr-campaign/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mt Rushmore Trip</title>
		<link>http://www.nalinmakar.com/2006/07/04/mt-rushmore-trip/</link>
		<comments>http://www.nalinmakar.com/2006/07/04/mt-rushmore-trip/#comments</comments>
		<pubDate>Tue, 04 Jul 2006 19:43:25 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Rushmore]]></category>
		<category><![CDATA[trip]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/2006/07/04/mt-rushmore-trip/</guid>
		<description><![CDATA[sucked&#8230; The weather wasn&#8217;t all that great&#8230; it was really hot during the day and it rained the night when we camped&#8230; couldn&#8217;t go trekking cause everyone wasn&#8217;t ready. Mt Rushmore isn&#8217;t that big of a deal&#8230; many might not agree with that statement, but I was really disappointed after sitting in a car for [...]]]></description>
			<content:encoded><![CDATA[<p>sucked&hellip;</p>
<p>The weather wasn&rsquo;t all that great&hellip; it was really hot during the day and it rained the night when we camped&hellip; couldn&rsquo;t go trekking cause everyone wasn&rsquo;t ready. Mt Rushmore isn&rsquo;t that big of a deal&hellip; many might not agree with that statement, but I was really disappointed after sitting in a car for 15 hours.&nbsp;Ohh&hellip; and the car&hellip; it was another experience in itself&hellip; Six people with a lot of luggage&nbsp;were packed tightly into a Mercury Mountaineer&hellip;&nbsp;On the way back we got a ticket as well&hellip; </p>
<p>I guess just because my experience wasn&rsquo;t all that great (because of the things mentioned above&hellip; <em>and many that I can&rsquo;t mention here</em>), I feel that the weekend was a waste&hellip; South Dakota is a nice place&hellip; it makes sense passing though SD or staying there over night when you are out on a long road trip. Making a trip <em>to SD</em>, doesn&rsquo;t make any sense. </p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2006/06/25/mt-rushmore/" title="Mt Rushmore">Mt Rushmore</a></li><li><a  href="http://www.nalinmakar.com/2006/04/03/hot-tub-vids/" title="Hot Tub vids">Hot Tub vids</a></li><li><a  href="http://www.nalinmakar.com/2006/03/29/google-vids/" title="Google Vids">Google Vids</a></li><li><a  href="http://www.nalinmakar.com/2006/03/23/smoky-mountains-trip/" title="Smoky Mountains Trip">Smoky Mountains Trip</a></li><li><a  href="http://www.nalinmakar.com/2006/02/01/nalin-and-friends-goto-nyc/" title="Nalin and Friends goto NYC">Nalin and Friends goto NYC</a></li><li><a  href="http://www.nalinmakar.com/2005/07/04/trip-to-wisconsin/" title="Trip to Wisconsin">Trip to Wisconsin</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2006/07/04/mt-rushmore-trip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: Current State of Mind</title>
		<link>http://www.nalinmakar.com/2006/05/18/current-state-of-mind/</link>
		<comments>http://www.nalinmakar.com/2006/05/18/current-state-of-mind/#comments</comments>
		<pubDate>Thu, 18 May 2006 21:14:36 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/2006/05/18/current-state-of-mind/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://www.nalinmakar.com/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-300">Password:<br />
<input name="post_password" id="pwbox-300" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2005/06/11/went-for-the-chicago-blues/" title="Went for the Chicago Blues">Went for the Chicago Blues</a></li><li><a  href="http://www.nalinmakar.com/2005/06/29/my-voice/" title="My voice">My voice</a></li><li><a  href="http://www.nalinmakar.com/2005/10/06/musicbrainz-tagger/" title="MusicBrainz Tagger">MusicBrainz Tagger</a></li><li><a  href="http://www.nalinmakar.com/2006/04/28/quarter-life-crisis/" title="Quarter Life Crisis">Quarter Life Crisis</a></li><li><a  href="http://www.nalinmakar.com/2006/04/10/i-am/" title="I am&#8230;">I am&#8230;</a></li><li><a  href="http://www.nalinmakar.com/2006/09/21/finally-3/" title="Finally&#8230;">Finally&#8230;</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2006/05/18/current-state-of-mind/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kabhi Kabhi</title>
		<link>http://www.nalinmakar.com/2006/05/11/kabhi-kabhi/</link>
		<comments>http://www.nalinmakar.com/2006/05/11/kabhi-kabhi/#comments</comments>
		<pubDate>Thu, 11 May 2006 21:56:20 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[lyrics]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/2006/05/11/kabhi-kabhi/</guid>
		<description><![CDATA[Loved these lyrics&#38;hellip; have heard this song many times and few days back was the first time I...]]></description>
			<content:encoded><![CDATA[<p>Loved these lyrics&hellip; have heard this song many times and few days back was the first time I actually listened to the words&hellip; <em>I tend to just enjoy the music and not listen to the lyrics.</em> Beautifully expressed emotions&hellip; <img src='http://www.nalinmakar.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><em>Kabhi kabhi mere dil main khayal aata hain<br />Ki zindagi teri zulfon ki narm chhaon main guzarne pati<br />to shadab ho bhi sakti thi.</em></p>
<p><em>Yeh ranj-o-gham ki siyahi jo dil pe chhayi hain<br />Teri nazar ki shuaon main kho bhi sakti thi.</em></p>
<p><em>Magar yeh ho na saka aur ab ye aalam hain<br />Ki tu nahin, tera gham teri justjoo bhi nahin.</em></p>
<p><em>Guzar rahi hain kuchh iss tarah zindagi jaise,<br />isse kisi ke sahare ki aarzoo bhi nahin.</em></p>
<p><em>Na koi raah, na manzil, na roshni ka suraag<br />Bhatak rahin hai andheron main zindagi meri.</em></p>
<p><em>Inhi andheron main reh jaoonga kabhi kho kar<br />Main janta hoon meri hum-nafas, magar yoonhi<br />Kabhi kabhi mere dil main khayal aata hai.</em></p>
<p>Shadab=fresh,delightful <br />Ranj=distress,grief<br />Justjoo=desire<br />Nafas=breath<br />Shuaon=light</p>
<p>(<a  title="Source for Kabhi kabhi lyrics" href="http://notestomyself.wordpress.com/2006/04/21/kabhi-kabhi-mere-dil-mein-amitabh-bachchan/">source for lyrics</a>)</p>
<p><em>Update: </em>These lyrics are a simpler version of a <em><a  title="Kabhi Kabhi by Sahir Ludhianavi" href="http://o3.indiatimes.com/chandler/archive/2005/07/08/168026.aspx">sher by Sahir Ludhianavi</a></em>.</p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2006/02/27/last-weekend/" title="Last weekend">Last weekend</a></li><li><a  href="http://www.nalinmakar.com/2005/06/03/niagara-falls/" title="Niagara Falls">Niagara Falls</a></li><li><a  href="http://www.nalinmakar.com/2006/04/22/good-night-and-good-luck/" title="Good Night, and Good Luck">Good Night, and Good Luck</a></li><li><a  href="http://www.nalinmakar.com/2006/01/24/15-park-avenue/" title="15 Park Avenue">15 Park Avenue</a></li><li><a  href="http://www.nalinmakar.com/2005/08/27/indian-consulate-at-chicago/" title="Indian Consulate at Chicago">Indian Consulate at Chicago</a></li><li><a  href="http://www.nalinmakar.com/2005/06/29/audioblogger/" title="Audioblogger">Audioblogger</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2006/05/11/kabhi-kabhi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mad World &#8211; Gary Jules</title>
		<link>http://www.nalinmakar.com/2006/05/09/mad-world-gary-jules/</link>
		<comments>http://www.nalinmakar.com/2006/05/09/mad-world-gary-jules/#comments</comments>
		<pubDate>Tue, 09 May 2006 05:07:52 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Song]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/2006/05/09/mad-world-gary-jules/</guid>
		<description><![CDATA[This song&#160;is by Gary Jules that plays right the end of Donnie Darko. Please&#38;hellip; please&#38;hellip...]]></description>
			<content:encoded><![CDATA[<p>This song&nbsp;is by Gary Jules that plays right the end of <em><a  title="IMDB: Donnie Darko" href="http://www.imdb.com/title/tt0246578/">Donnie Darko</a></em>. Please&hellip; <em>please</em>&hellip; do yourself a favor and listen to this song&hellip; and also, try to watch this movie&hellip;</p>
<p><em>All around me are familiar faces<br />Worn out places, Worn out faces<br />Bright and early for the daily races<br />Going nowhere, Going nowhere<br />Their tears are filling up their glasses<br />No expression, No expression<br />Hide my head I want to drown my sorrows<br />No tomorrow, No tomorrow<br />&nbsp;<br />And I find it kind of funny, I find it kind of sad<br />These dreams in which I&#8217;m dying, Are the best I&#8217;ve ever had<br />I find it hard to tell you, I find it hard to take<br />When people run in circles its a very very&hellip;<br />Mad World, Mad World</p>
<p>Children waiting for the day they feel good<br />Happy Birthday, Happy Birthday<br />And they feel the way that every child should<br />Sit and listen, Sit and listen<br />Went to school and I was very nervous <br />No one knew me, No one knew me<br />Hello teacher tell me what&#8217;s my lesson<br />Look right through me, Look right through me<br />&nbsp;<br />And I find it kind of funny, I find it kind of sad<br />The dreams in which I&#8217;m dying, Are the best I&#8217;ve ever had<br />I find it hard to tell you, I find it hard to take<br />When people run in circles it&#8217;s a very very&hellip;<br />Mad World, Mad World</p>
<p>Enlargen your world&hellip;</p>
<p>Mad World&hellip;</em></p>
<h3  class="related_post_title">Related Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2005/11/25/dust-in-the-wind-by-kansas/" title="Dust in the Wind by Kansas">Dust in the Wind by Kansas</a></li><li><a  href="http://www.nalinmakar.com/2005/11/21/the-flame-by-cheap-trick/" title="The Flame by Cheap Trick">The Flame by Cheap Trick</a></li><li><a  href="http://www.nalinmakar.com/2005/11/08/white-flag-by-dido/" title="White Flag by Dido">White Flag by Dido</a></li><li><a  href="http://www.nalinmakar.com/2005/11/07/look-away-by-chicago/" title="Look Away by Chicago">Look Away by Chicago</a></li><li><a  href="http://www.nalinmakar.com/2005/11/04/hard-habit-to-break-by-chicago/" title="Hard Habit to Break by Chicago">Hard Habit to Break by Chicago</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2006/05/09/mad-world-gary-jules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am&#8230;</title>
		<link>http://www.nalinmakar.com/2006/04/10/i-am/</link>
		<comments>http://www.nalinmakar.com/2006/04/10/i-am/#comments</comments>
		<pubDate>Mon, 10 Apr 2006 17:40:58 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/?p=266</guid>
		<description><![CDATA[sad... and sleepy.... 
Deadly combination.... 
X-(]]></description>
			<content:encoded><![CDATA[<p>sad&#8230; and sleepy&#8230;. </p>
<p>Deadly combination&#8230;. </p>
<p>X-(</p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2006/08/01/mass-string-replace-in-mysql/" title="Mass string replace in MySQL">Mass string replace in MySQL</a></li><li><a  href="http://www.nalinmakar.com/2006/04/11/man-wants-to-sell-wifes-box/" title="Man wants to sell wife&#8217;s box">Man wants to sell wife&#8217;s box</a></li><li><a  href="http://www.nalinmakar.com/2005/09/27/amazoncom-contact-phone-number/" title="Amazon.com Contact Phone Number">Amazon.com Contact Phone Number</a></li><li><a  href="http://www.nalinmakar.com/2005/09/19/yahaan-movie-review/" title="Yahaan">Yahaan</a></li><li><a  href="http://www.nalinmakar.com/2006/04/21/scary-movie-4/" title="Scary Movie 4">Scary Movie 4</a></li><li><a  href="http://www.nalinmakar.com/2005/10/08/tim-burtons-corpse-bride/" title="Tim Burton&#8217;s Corpse Bride">Tim Burton&#8217;s Corpse Bride</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2006/04/10/i-am/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>With or without you by U2</title>
		<link>http://www.nalinmakar.com/2005/12/13/with-or-without-you-by-u2/</link>
		<comments>http://www.nalinmakar.com/2005/12/13/with-or-without-you-by-u2/#comments</comments>
		<pubDate>Tue, 13 Dec 2005 09:25:17 +0000</pubDate>
		<dc:creator>Nalin</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://www.nalinmakar.com/2005/12/15/with-or-without-you-by-u2/</guid>
		<description><![CDATA[See the stone set in your eyes
See the thorn twist in your side
I wait for ...]]></description>
			<content:encoded><![CDATA[<p>See the stone set in your eyes<br />
See the thorn twist in your side<br />
I wait for you</p>
<p>Sleight of hand and twist of fate<br />
On a bed of nails she makes me wait<br />
And I wait without you</p>
<p>With or without you<br />
With or without you</p>
<p>Through the storm we reach the shore<br />
You give it all but I want more<br />
And I‚Äôm waiting for you</p>
<p>With or without you<br />
With or without you<br />
I can‚Äôt live<br />
With or without you</p>
<p>And you give yourself away<br />
And you give yourself away<br />
And you give<br />
And you give<br />
And you give yourself away</p>
<p>My hands are tied<br />
My body bruised, she‚Äôs got me with<br />
Nothing to win and<br />
Nothing left to lose</p>
<p>And you give yourself away<br />
And you give yourself away<br />
And you give<br />
And you give<br />
And you give yourself away</p>
<p>With or without you<br />
With or without you<br />
I can‚Äôt live<br />
With or without you</p>
<p>With or without you<br />
With or without you<br />
I can‚Äôt live<br />
With or without you<br />
With or without you</p>
<p>(<a  href="http://www.lyricsfreak.com/u/u2/141437.html">source</a>)</p>
<h3  class="related_post_title">Random Posts</h3><ul class="related_post"><li><a  href="http://www.nalinmakar.com/2008/12/13/connect-to-ms-sql-server-using-jdbc/" title="Connect to MS SQL Server using JDBC">Connect to MS SQL Server using JDBC</a></li><li><a  href="http://www.nalinmakar.com/2005/09/17/must-love-dogs-movie-review/" title="Must Love Dogs">Must Love Dogs</a></li><li><a  href="http://www.nalinmakar.com/2006/03/11/memoirs-of-a-geisha/" title="Memoirs of a Geisha">Memoirs of a Geisha</a></li><li><a  href="http://www.nalinmakar.com/2006/09/16/i-feel-like-i-am-in-rehab/" title="I feel like I am in rehab">I feel like I am in rehab</a></li><li><a  href="http://www.nalinmakar.com/2005/11/11/blog-updated/" title="Blog Updated">Blog Updated</a></li><li><a  href="http://www.nalinmakar.com/2006/01/24/chicken-little/" title="Chicken Little">Chicken Little</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.nalinmakar.com/2005/12/13/with-or-without-you-by-u2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
