<?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>Umakanthan&#039;s Blog</title>
	<atom:link href="http://ukanth.in/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://ukanth.in/blog</link>
	<description>aBouT eVeRyThInG !</description>
	<lastBuildDate>Thu, 17 Jun 2010 11:45:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>JFreeCharts &#8211; Add subtitle with different fonts</title>
		<link>http://ukanth.in/blog/?p=396</link>
		<comments>http://ukanth.in/blog/?p=396#comments</comments>
		<pubDate>Thu, 17 Jun 2010 11:45:42 +0000</pubDate>
		<dc:creator>Umakanthan</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[jfreecharts]]></category>

		<guid isPermaLink="false">http://ukanth.in/blog/?p=396</guid>
		<description><![CDATA[This little snippet adds subtitle to jfreechart. JfreeChart chart = ChartFactory.createBarChart&#40;&#34;Title Goes Here&#34;,....&#41;; &#160; chart.getTitle&#40;&#41;.setFont&#40;new Font&#40;&#34;Tahoma&#34;, Font.BOLD, 20&#41;&#41;; TextTitle dataTitle= new TextTitle&#40;&#34;This is subtitle&#34;&#41;; dataTitle.setHorizontalAlignment&#40;HorizontalAlignment.CENTER&#41;; dataTitle.setFont&#40;new Font&#40;&#34;Verdana&#34;, Font.ITALIC, 18&#41;&#41;; chart.addSubtitle&#40;dataTitle&#41;;]]></description>
			<content:encoded><![CDATA[<p>This little snippet adds subtitle to jfreechart.</p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">JfreeChart chart <span style="color: #339933;">=</span> ChartFactory.<span style="color: #006633;">createBarChart</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Title Goes Here&quot;</span>,....<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
chart.<span style="color: #006633;">getTitle</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">setFont</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">Font</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Tahoma&quot;</span>, <span style="color: #003399;">Font</span>.<span style="color: #006633;">BOLD</span>, <span style="color: #cc66cc;">20</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
TextTitle dataTitle<span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> TextTitle<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;This is subtitle&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
dataTitle.<span style="color: #006633;">setHorizontalAlignment</span><span style="color: #009900;">&#40;</span>HorizontalAlignment.<span style="color: #006633;">CENTER</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
dataTitle.<span style="color: #006633;">setFont</span><span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> <span style="color: #003399;">Font</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Verdana&quot;</span>, <span style="color: #003399;">Font</span>.<span style="color: #006633;">ITALIC</span>, <span style="color: #cc66cc;">18</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
chart.<span style="color: #006633;">addSubtitle</span><span style="color: #009900;">&#40;</span>dataTitle<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ukanth.in/blog/?feed=rss2&amp;p=396</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Perl modules without root access</title>
		<link>http://ukanth.in/blog/?p=377</link>
		<comments>http://ukanth.in/blog/?p=377#comments</comments>
		<pubDate>Thu, 17 Jun 2010 11:38:14 +0000</pubDate>
		<dc:creator>Umakanthan</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://ukanth.in/blog/?p=377</guid>
		<description><![CDATA[Sometimes we need to install perl modules on a machine where you dont have root (sudo) access. Here are the steps to install perl modules as a normal user Get Source package from search.cpan.org ( Example -&#62; http://search.cpan.org/~pythian/DBD-Oracle-1.24b/Oracle.pm) Extract the content into your local directory. Navigate to the extracted directory ( Ex- cd /home/ukanth/oracle ) [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes we need to install perl modules on a machine where you dont have root (sudo) access. Here are the steps to install perl modules as a normal user</p>
<ul>
<li>Get Source package from search.cpan.org ( Example -&gt; http://search.cpan.org/~pythian/DBD-Oracle-1.24b/Oracle.pm)</li>
<li>Extract the content into your local directory.</li>
<li>Navigate to the extracted directory ( Ex- cd /home/ukanth/oracle )</li>
<li>Now compile the source using the following command</li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">perl</span> Makefile.PL <span style="color: #007800;">PREFIX</span>=<span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>ukanth<span style="color: #000000; font-weight: bold;">/</span>oracle-perl-module</pre></div></div>

<p>This will override the default installation  directory.<br />
Then,</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">make</span></pre></div></div>

<p>and <span style="color: #0000ff;"> </span></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>If you don&#8217;t find any error in the installation, you are now ready to use it in your perl program.</p>

<div class="wp_syntax"><div class="code"><pre class="perl" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">use</span> lib <span style="color: #ff0000;">'/home/ukanth/oracle-perl-module/lib/site_perl/5.8.3/i686-linux-thread-multi'</span></pre></div></div>

<p>This is very simple way to install perl modules to custom directory( where you have read/write access ) .</p>
]]></content:encoded>
			<wfw:commentRss>http://ukanth.in/blog/?feed=rss2&amp;p=377</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Released MonitorES 1.0b</title>
		<link>http://ukanth.in/blog/?p=374</link>
		<comments>http://ukanth.in/blog/?p=374#comments</comments>
		<pubDate>Thu, 27 May 2010 01:32:02 +0000</pubDate>
		<dc:creator>Umakanthan</dc:creator>
				<category><![CDATA[Cplusplus]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[Monitor Energy Saver]]></category>
		<category><![CDATA[monitor turnoff]]></category>
		<category><![CDATA[monitores]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://ukanth.in/blog/?p=374</guid>
		<description><![CDATA[Hello All, I am pleased to announce that new version of MonitorES ( Monitor Energy Saver) 1.0b is released with lot of cool features.  Please download the latest from http://code.google.com/p/monitores Features: Support for Windows 7 ( including mute) Custom Hotkey&#8217;s Disable Screensaver. and more&#8230; Cheers, Umakanth]]></description>
			<content:encoded><![CDATA[<p>Hello All,</p>
<p>I am pleased to announce that new version of MonitorES ( Monitor Energy Saver) 1.0b is released with lot of cool features.  Please download the latest from <a title="MonitorES" href="http://code.google.com/p/monitores" target="_blank">http://code.google.com/p/monitores</a></p>
<p>Features:</p>
<ul>
<li>Support for Windows 7 ( including mute)</li>
<li>Custom Hotkey&#8217;s</li>
<li>Disable Screensaver.</li>
<li>and more&#8230;</li>
</ul>
<p>Cheers,</p>
<p>Umakanth</p>
]]></content:encoded>
			<wfw:commentRss>http://ukanth.in/blog/?feed=rss2&amp;p=374</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
