<?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>Kumaresan&#039;s Weblog</title>
	<atom:link href="http://kumaresan1024.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://kumaresan1024.wordpress.com</link>
	<description>And miles to go before i sleep...</description>
	<lastBuildDate>Fri, 31 Dec 2010 18:42:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='kumaresan1024.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Kumaresan&#039;s Weblog</title>
		<link>http://kumaresan1024.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://kumaresan1024.wordpress.com/osd.xml" title="Kumaresan&#039;s Weblog" />
	<atom:link rel='hub' href='http://kumaresan1024.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Data Migration from Postgres to Mysql</title>
		<link>http://kumaresan1024.wordpress.com/2010/12/31/data-migration-from-postgres-to-mysql/</link>
		<comments>http://kumaresan1024.wordpress.com/2010/12/31/data-migration-from-postgres-to-mysql/#comments</comments>
		<pubDate>Fri, 31 Dec 2010 18:22:24 +0000</pubDate>
		<dc:creator>kumaresan1024</dc:creator>
				<category><![CDATA[postgres - mysql]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[example migration script]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[postgres]]></category>

		<guid isPermaLink="false">http://kumaresan1024.wordpress.com/?p=31</guid>
		<description><![CDATA[Steps involve in converting Postgres data to Mysql data For this script 2 databases(postgres,mysql) must  have identical relations Here i am using &#8220;relname like &#8216;tm%&#8217; and relkind=&#8217;r'&#8221; i.e tm is the prefix for table name(u can use your own prefix) ans &#8220;r&#8221; refer to relations. Here i am using adodb package for connecting databases. please [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=31&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Steps involve in converting Postgres data to Mysql data</strong></p>
<p>For this script 2 databases(postgres,mysql) must  have identical relations</p>
<p>Here i am using &#8220;relname like &#8216;tm%&#8217; and relkind=&#8217;r'&#8221; i.e tm is the prefix for table name(u can use your own prefix) ans &#8220;r&#8221; refer to relations.</p>
<p>Here i am using <a href="http://adodb.sourceforge.net/">adodb</a> package for connecting databases.</p>
<p>please see the script</p>
<blockquote><p>
define(&#8220;POS_DATABASE_IP&#8221;,&#8221;YOUR POSTGRES IP&#8221;);<br />
define(&#8220;POS_DATABASE_UID&#8221;,&#8221;POSTGRES USERID&#8221;);<br />
define(&#8220;POS_DATABASE_PWD&#8221;,&#8221;PASSWORD&#8221;);<br />
define(&#8216;POS_DATABASE_NAME&#8217;,'DBNAME&#8217;);</p>
<p>define(&#8220;MY_DATABASE_IP&#8221;,&#8221;YOUR MYSQL IP&#8221;);<br />
define(&#8220;MY_DATABASE_UID&#8221;,&#8221;MYSQL USERID&#8221;);<br />
define(&#8220;MY_DATABASE_PWD&#8221;,&#8221;PASSWORD&#8221;);<br />
define(&#8216;MY_DATABASE_NAME&#8217;,'DBNAME&#8217;);</p>
<p>include($glb_folderlevel.&#8221;adodb/adodb.inc.php&#8221;);<br />
include($glb_folderlevel.&#8217;adodb/adodb-errorhandler.inc.php&#8217;);<br />
//define(&#8216;ADODB_ERROR_LOG_TYPE&#8217;,3);<br />
//$error_path=$_SERVER["DOCUMENT_ROOT"].APP_FOLDER.&#8217;/sql_errors/sql_error.log&#8217;;<br />
//define(&#8216;ADODB_ERROR_LOG_DEST&#8217;,$error_path);</p>
<p>$glb_conn = &amp;ADONewConnection(&#8216;postgres&#8217;);<br />
Connect(POS_DATABASE_IP,POS_DATABASE_UID,POS_DATABASE_PWD,POS_DATABASE_NAME);<br />
$glb_conn-&gt;SetFetchMode(ADODB_FETCH_ASSOC);</p>
<p>$my_glb_conn = &amp;ADONewConnection(&#8216;mysql&#8217;);<br />
$my_glb_conn-&gt;Connect(MY_DATABASE_IP,MY_DATABASE_UID,MY_DATABASE_PWD,MY_DATABASE_NAME);<br />
$my_glb_conn-&gt;SetFetchMode(ADODB_FETCH_ASSOC);</p>
<p>//getting all the user created table name<br />
$str_query=&#8221; SELECT relname  FROM pg_class where  relname like &#8216;tm%&#8217; and relkind=&#8217;r'&#8221;;<br />
$rs_query=$glb_conn-&gt;Execute($str_query);<br />
if($rs_query &amp;&amp; $rs_query-&gt;RecordCount()&gt;0)<br />
{<br />
	while(!$rs_query-&gt;EOF)<br />
	{<br />
		$arr=$rs_query-&gt;FetchRow();<br />
		$tablename=$arr[relname];<br />
		//echo $tablename;<br />
		$str_get_query=&#8221;select * from $tablename&#8221;;<br />
		$rs_get_query=$glb_conn-&gt;Execute($str_get_query);<br />
		$tmp_int_columncount=$rs_get_query-&gt;FieldCount();<br />
		$tmp_int_columnname=array();<br />
                for($tmp_int_we=0;$tmp_int_weFieldCount();$tmp_int_we++){<br />
                     $tmp_obj=$rs_get_query-&gt;FetchField($tmp_int_we);<br />
	  	     $tmp_int_columnname[$tmp_obj-&gt;name]=$tmp_obj-&gt;name;<br />
		}<br />
		if($rs_get_query &amp;&amp; $rs_get_query-&gt;RecordCount()&gt;0)<br />
		{<br />
			while(!$rs_get_query-&gt;EOF)<br />
			{<br />
				unset($arr);<br />
				$str_column=&#8221;";<br />
				$str_values=&#8221;";<br />
				$arr=$rs_get_query-&gt;FetchRow();<br />
				foreach($tmp_int_columnname as $key =&gt; $value)<br />
				{<br />
					if($str_column!=&#8221;")<br />
					$str_column.=&#8221;,&#8221;;<br />
					$str_column.=$key;</p>
<p>					if($str_values!=&#8221;")<br />
                                        $str_values.=&#8221;,&#8221;;<br />
                                        $str_values.=&#8221;&#8216;&#8221;.addslashes($arr[$key]).&#8221;&#8216;&#8221;;<br />
				}<br />
				//chk before insert<br />
				//insert query<br />
				$str_insert=&#8221;insert into $tablename($str_column)values($str_values)&#8221;;<br />
				echo $str_insert;<br />
				echo &#8220;\n&#8221;;<br />
				$rs_insert=$my_glb_conn-&gt;Execute($str_insert);<br />
			}<br />
		}</p>
<p>	}<br />
}<br />
?&gt;
</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kumaresan1024.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kumaresan1024.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kumaresan1024.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kumaresan1024.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kumaresan1024.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kumaresan1024.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kumaresan1024.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kumaresan1024.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kumaresan1024.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kumaresan1024.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kumaresan1024.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kumaresan1024.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kumaresan1024.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kumaresan1024.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=31&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kumaresan1024.wordpress.com/2010/12/31/data-migration-from-postgres-to-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4d594c20866cb56f83255dac891a283?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kumaresan</media:title>
		</media:content>
	</item>
		<item>
		<title>Switch between terminal tabs(ubuntu 10.04)</title>
		<link>http://kumaresan1024.wordpress.com/2010/09/02/switch-between-terminal-tabsubuntu-10-04/</link>
		<comments>http://kumaresan1024.wordpress.com/2010/09/02/switch-between-terminal-tabsubuntu-10-04/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 12:53:49 +0000</pubDate>
		<dc:creator>kumaresan1024</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kumaresan1024.wordpress.com/?p=27</guid>
		<description><![CDATA[How to switch between tabs? Use CTRL+page down or Use CTRL+page up To go particular tab ? use ALT [n] n refer to 1,2,3&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=27&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How to switch between tabs?<br />
Use CTRL+page down<br />
or<br />
Use CTRL+page up</p>
<p>To go particular tab ?<br />
use ALT [n]<br />
n refer to 1,2,3&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kumaresan1024.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kumaresan1024.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kumaresan1024.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kumaresan1024.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kumaresan1024.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kumaresan1024.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kumaresan1024.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kumaresan1024.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kumaresan1024.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kumaresan1024.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kumaresan1024.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kumaresan1024.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kumaresan1024.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kumaresan1024.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=27&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kumaresan1024.wordpress.com/2010/09/02/switch-between-terminal-tabsubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4d594c20866cb56f83255dac891a283?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kumaresan</media:title>
		</media:content>
	</item>
		<item>
		<title>server time ticking clock with IST,PST</title>
		<link>http://kumaresan1024.wordpress.com/2009/08/27/server-time-ticking-clock-with-istpst/</link>
		<comments>http://kumaresan1024.wordpress.com/2009/08/27/server-time-ticking-clock-with-istpst/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 20:59:04 +0000</pubDate>
		<dc:creator>kumaresan1024</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[ASK]]></category>
		<category><![CDATA[ask1024]]></category>
		<category><![CDATA[ist]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[pdt]]></category>
		<category><![CDATA[phpclock]]></category>
		<category><![CDATA[pst]]></category>
		<category><![CDATA[running clock]]></category>
		<category><![CDATA[server time]]></category>
		<category><![CDATA[server time ticking clock in php]]></category>
		<category><![CDATA[ticking clock]]></category>
		<category><![CDATA[ticking clock + php]]></category>
		<category><![CDATA[timezone]]></category>
		<category><![CDATA[vaanathi]]></category>

		<guid isPermaLink="false">http://kumaresan1024.wordpress.com/?p=18</guid>
		<description><![CDATA[&#60;? $ist=IST SERVER TIME; $pst= PST SERVER TIME; /* Initially we need to find the IST,PST server time values. And then get the all relevant time variables for both(i.e $Year,$Month,$Day ..etc ) */ ?&#62; &#60;script type=&#8221;text/javascript&#8221;&#62; //format new Date(year, month-1, day, hours, minutes, seconds, milliseconds. //pass the server time variables to the corresponding arguments. var [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=18&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&lt;?</p>
<p>$ist=IST SERVER TIME;</p>
<p>$pst= PST SERVER TIME;</p>
<p>/*</p>
<p>Initially we need to find the IST,PST server time values. And then get the all relevant time variables for both(i.e $Year,$Month,$Day ..etc )</p>
<p>*/</p>
<p>?&gt;</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;</p>
<p>//format new Date(year, month-1, day, hours, minutes, seconds, milliseconds.</p>
<p>//pass the server time variables to the corresponding arguments.</p>
<p>var ist=new Date(&#8216;&lt;?=$Year?&gt;&#8217;,'&lt;?=$Month-1?&gt;&#8217;,'&lt;?=$Day?&gt;&#8217;,'&lt;?=$H?&gt;&#8217;,'&lt;?=$M?&gt;&#8217;,'&lt;?=$S?&gt;&#8217;);<br />
var pst=new Date(&#8216;&lt;?=$Yearpst?&gt;&#8217;,'&lt;?=$Monthpst-1?&gt;&#8217;,'&lt;?=$Daypst?&gt;&#8217;,'&lt;?=$hr?&gt;&#8217;,'&lt;?=$mo?&gt;&#8217;,'&lt;?=$se?&gt;&#8217;);</p>
<p>var montharray=new Array(&#8220;January&#8221;,&#8221;February&#8221;,&#8221;March&#8221;,&#8221;April&#8221;,&#8221;May&#8221;,&#8221;June&#8221;,&#8221;July&#8221;,&#8221;August&#8221;,&#8221;September&#8221;,&#8221;October&#8221;,&#8221;November&#8221;,&#8221;December&#8221;)</p>
<p>var shortmonth=new Array(&#8220;Jan&#8221;,&#8221;Feb&#8221;,&#8221;Mar&#8221;,&#8221;Apr&#8221;,&#8221;May&#8221;,&#8221;Jun&#8221;,&#8221;Jul&#8221;,&#8221;Aug&#8221;,&#8221;Sep&#8221;,&#8221;Oct&#8221;,&#8221;Nov&#8221;,&#8221;Dec&#8221;)</p>
<p>function padlength(what){</p>
<p>var output=(what.toString().length==1)? &#8220;0&#8243;+what : what</p>
<p>return output</p>
<p>}</p>
<p>function formatField(num, isHour)</p>
<p>{</p>
<p>if (typeof isHour!=&#8221;undefined&#8221;)</p>
<p>{ //if this is the hour field</p>
<p>var hour=(num&gt;12)? num-12 : num</p>
<p>return (hour==0)? 12 : hour</p>
<p>//var hour=(num&gt;23)? num-24 : num</p>
<p>//return hour</p>
<p>}</p>
<p>function displayTime(objTime,target,format)<br />
{<br />
objTime.setSeconds(objTime.getSeconds()+1)<br />
var datestring=padlength(objTime.getDate()) + &#8221; &#8221; + shortmonth[objTime.getMonth()] + &#8221; &#8221; + objTime.getFullYear()<br />
var timestring=padlength(objTime.getHours())+&#8221;:&#8221;+padlength(objTime.getMinutes())+&#8221;:&#8221;+padlength(objTime.getSeconds())<br />
var hour = objTime.getHours();<br />
var minutes = objTime.getMinutes();<br />
var seconds = objTime.getSeconds();<br />
var month = objTime.getMonth();<br />
var date = objTime.getDate();<br />
var year = objTime.getFullYear();<br />
var ampm=(hour&gt;=12)? &#8220;PM&#8221; : &#8220;AM&#8221;<br />
document.getElementById(target).innerHTML=datestring+&#8221;, &#8220;+ formatField(hour,1) + &#8220;:&#8221; + formatField(minutes) + &#8220;:&#8221; + formatField(seconds) + &#8221; &#8221; + ampm + &#8221; &#8221; + format;</p>
<p>}<br />
setInterval(&#8220;displayTime(ist,&#8217;IST&#8217;,'IST&#8217;)&#8221;, 1000);<br />
setInterval(&#8220;displayTime(pst,&#8217;PST&#8217;,'PST&#8217;)&#8221;, 1000);</p>
<p>&lt;/script&gt;</p>
<p>//and finally dont forget to call IST and PST divs</p>
<p>&lt;div id=IST&gt;&lt;/div&gt;</p>
<p>&lt;div id=PST&gt;&lt;/div&gt;</p>
<p>save the file as php file then run in browser. It will ticking ist,pst times</p>
<p>Any comments welcome.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kumaresan1024.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kumaresan1024.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kumaresan1024.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kumaresan1024.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kumaresan1024.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kumaresan1024.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kumaresan1024.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kumaresan1024.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kumaresan1024.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kumaresan1024.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kumaresan1024.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kumaresan1024.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kumaresan1024.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kumaresan1024.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=18&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kumaresan1024.wordpress.com/2009/08/27/server-time-ticking-clock-with-istpst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4d594c20866cb56f83255dac891a283?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kumaresan</media:title>
		</media:content>
	</item>
		<item>
		<title>My bike</title>
		<link>http://kumaresan1024.wordpress.com/2009/08/06/10/</link>
		<comments>http://kumaresan1024.wordpress.com/2009/08/06/10/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 07:01:49 +0000</pubDate>
		<dc:creator>kumaresan1024</dc:creator>
				<category><![CDATA[Yamaha Bike]]></category>
		<category><![CDATA[gladiator]]></category>
		<category><![CDATA[sportsbike]]></category>
		<category><![CDATA[type ss]]></category>
		<category><![CDATA[yamaha]]></category>

		<guid isPermaLink="false">http://kumaresan1024.wordpress.com/?p=10</guid>
		<description><![CDATA[Hi Friends, I have purchased my Yamaha Gladiator 4 months back Till now Im happy with the performance of the bike…Its pickup is so nice……. As i am a new rider , looking comfotable. As per my analysis there is no other 125cc bike will match with the performance of Gladi&#8230; Its style too superb….When [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=10&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi Friends,<br />
I have purchased my Yamaha Gladiator 4 months back<br />
Till now Im happy with the performance of the bike…Its pickup is so nice…….</p>
<p>As i am a new rider , looking comfotable.<br />
As per my analysis there is no other 125cc bike will match with the performance of Gladi&#8230;<br />
Its style too superb….When U r looking for a stylish,powerful and reliable bike then U can select the GLADI…..Its the best option for U.</p>
<p>According to me positive and negative abt GLADI is as follows</p>
<p>POSITIVE POINTS</p>
<p># Stylish(fantastic)<br />
# Powerful in that segment<br />
# Easy Handling<br />
# Nice Torque<br />
# Good Pickup</p>
<p>NEGATIVE POINTS<br />
* LESS MILEAGE( GETTING AROUND 45 in CITY)<br />
* Little bit stiff on gear shift. Especially at high gear(Expecting that may coreected after 1st service…)<br />
* Compared other bikes feels little bit noisy…..(compare with honda shine)…..But I love it…</p>
<p>If U r lokking for a 125cc sporting bike then go for GLADI……<br />
whatever it may be,,,,The product is from YAMAHA….So U can trust on Engine for sure…..Their engines are well named for reliablity….NO other branded bike wont last like this…</p>
<p>If U r looking for a commuting bike then U can select any other …. GLADI is only for the people who loves bike riding….</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kumaresan1024.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kumaresan1024.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kumaresan1024.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kumaresan1024.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kumaresan1024.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kumaresan1024.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kumaresan1024.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kumaresan1024.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kumaresan1024.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kumaresan1024.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kumaresan1024.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kumaresan1024.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kumaresan1024.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kumaresan1024.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=10&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kumaresan1024.wordpress.com/2009/08/06/10/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4d594c20866cb56f83255dac891a283?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kumaresan</media:title>
		</media:content>
	</item>
		<item>
		<title>Tamil Poem(taken from net)</title>
		<link>http://kumaresan1024.wordpress.com/2009/07/29/tamil-poemtaken-from-net/</link>
		<comments>http://kumaresan1024.wordpress.com/2009/07/29/tamil-poemtaken-from-net/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 06:31:37 +0000</pubDate>
		<dc:creator>kumaresan1024</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ask1024]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[poem]]></category>
		<category><![CDATA[tamil]]></category>

		<guid isPermaLink="false">http://kumaresan1024.wordpress.com/?p=7</guid>
		<description><![CDATA[உன்னிடம் சொல்லிவிடவென்று உருவாக்கி வைத்த வார்த்தையொன்று சொல்லப்படாமலேயே காத்திருக்கிறது உனை கடக்கையில், வழக்கமான புன்னகையில், மணிக்கனக்கான உரையாடலில், ஒரு பொழுதினில் என் கண்களோ, செய்கைகளோ ஏதோ ஒன்று உணர்த்தியிருக்கக்கூடும் நான் சொல்லிவிட துடிக்கும் வார்த்தைதனை பாசாங்கில் பவனி வரும் உன்னிடம் கூட எனக்கான வார்த்தை தவமிருக்கக்கூடும்..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=7&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>உன்னிடம் சொல்லிவிடவென்று<br />
உருவாக்கி வைத்த வார்த்தையொன்று<br />
சொல்லப்படாமலேயே காத்திருக்கிறது<br />
உனை கடக்கையில்,<br />
வழக்கமான புன்னகையில்,<br />
மணிக்கனக்கான உரையாடலில்,<br />
ஒரு பொழுதினில்<br />
என் கண்களோ, செய்கைகளோ<br />
ஏதோ ஒன்று உணர்த்தியிருக்கக்கூடும்<br />
நான் சொல்லிவிட துடிக்கும் வார்த்தைதனை<br />
பாசாங்கில் பவனி வரும்<br />
உன்னிடம் கூட எனக்கான வார்த்தை<br />
தவமிருக்கக்கூடும்..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kumaresan1024.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kumaresan1024.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kumaresan1024.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kumaresan1024.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kumaresan1024.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kumaresan1024.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kumaresan1024.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kumaresan1024.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kumaresan1024.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kumaresan1024.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kumaresan1024.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kumaresan1024.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kumaresan1024.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kumaresan1024.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=7&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kumaresan1024.wordpress.com/2009/07/29/tamil-poemtaken-from-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4d594c20866cb56f83255dac891a283?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kumaresan</media:title>
		</media:content>
	</item>
		<item>
		<title>Configuring cake php in XAMPP</title>
		<link>http://kumaresan1024.wordpress.com/2008/04/19/configuring-cake-php-in-xampp/</link>
		<comments>http://kumaresan1024.wordpress.com/2008/04/19/configuring-cake-php-in-xampp/#comments</comments>
		<pubDate>Sat, 19 Apr 2008 07:25:58 +0000</pubDate>
		<dc:creator>kumaresan1024</dc:creator>
				<category><![CDATA[cake php]]></category>
		<category><![CDATA[ask1024]]></category>
		<category><![CDATA[cake php example]]></category>
		<category><![CDATA[kumaresan]]></category>
		<category><![CDATA[mvc]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://kumaresan1024.wordpress.com/?p=3</guid>
		<description><![CDATA[CakePHP is an open source web application framework written in PHP, modeled after the concepts of Ruby on Rails, and distributed under the MIT License. Here the configuration First install xampp which consists of Apache, PHP, and MySQL. The install process just copies some files to a specified folder. Next Get latest cake php download [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=3&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em><strong>CakePHP</strong> is an <span class="ilnk">open source</span> <span class="ilnk">web application framework</span> written in <a class="ilnk" href="http://www.answers.com/topic/php" target="_top">PHP</a>, modeled after the concepts of <a class="ilnk" href="http://www.answers.com/topic/ruby-on-rails" target="_top">Ruby on Rails</a>, and distributed under the <span class="ilnk">MIT License</span>.</em></p>
<p><a name="History"></a></p>
<p><strong>Here the configuration</strong></p>
<p>First install <a href="http://www.apachefriends.org/en/xampp.html">xampp</a> which consists of Apache, PHP, and MySQL. The install process just copies some files to a specified folder.</p>
<p>Next</p>
<p>Get latest cake php</p>
<p><a href="http://cakeforge.org/frs/?group_id=23&amp;release_id=371" target="_blank">download</a></p>
<p>Let’s take a look at what CakePHP looks like right out of the box. You know what CakePHP looks like from a basic MVC request standpoint, but you’ll need to know how its files are organized as well.</p>
<ul>
<li>app</li>
<li>cake</li>
<li>docs</li>
<li>index.php</li>
<li>vendors</li>
</ul>
<p>When you download CakePHP, you will see four main folders. The app folder will be where you work your magic: it’s where your application’s files will be placed. The cake folder is where we’ve worked our magic. Make a personal commitment not to edit files in this folder. We can’t help you if you’ve modified the core. The docs folder is for the quintessential readme, changelog, and licensing information. Finally, the vendors folder is where you’ll place third-party PHP libraries you need to use with your CakePHP applications</p>
<div class="body">
<p>CakePHP’s app folder is where you will do most of your application development. Let’s look a little closer and the folders inside of app.</p>
<dl>
<dt><strong>config</strong></dt>
<dd>Holds the (few) configuration files CakePHP uses. Database connection details, bootstrapping, core configuration files and more should be stored here.</dd>
<dt><strong>controllers</strong></dt>
<dd>Contains your application’s controllers and their components.</dd>
<dt><strong>locale</strong></dt>
<dd>Stores string files for internationalization.</dd>
<dt><strong>models</strong></dt>
<dd>Contains your application’s models, behaviors, and datasources.</dd>
<dt><strong>plugins</strong></dt>
<dd>Contains plugin packages.</dd>
<dt><strong>tmp</strong></dt>
<dd>This is where CakePHP stores temporary data. The actual data it stores depends on how you have CakePHP configured, but this folder is usually used to store model descriptions, logs, and sometimes session information.</dd>
<dt><strong>vendors</strong></dt>
<dd>Any third-party classes or libraries should be placed here. Doing so makes them easy to access using the vendor() function. Keen observers will note that this seems redundant, as there is also a vendors folder at the top level of our directory structure. We&#8217;ll get into the differences between the two when we discuss managing multiple applications and more complex system setups.</dd>
<dt><strong>views</strong></dt>
<dd>Presentational files are placed here: elements, error pages, helpers, layouts, and view files.</dd>
<dt><strong>webroot</strong></dt>
<dd>In a production setup, this folder should serve as the document root for your application. Folders here also serve as holding places for CSS stylesheets, images, and JavaScript files.</dd>
<dd> </dd>
<dd><strong>Steps</strong></dd>
</dl>
<ul>
<li>After that open “httpd.conf” located on “apache\conf” folder. Then uncomment the line that contains “mod_rewrite”</li>
<li>Afterwards, extract Cake somewhere in the “htdocs” folder. I usually put it in “htdocs\cake”.</li>
<li>The last step is to copy “database.php.default” in “app\config” of Cake’s folder to “database.php”. Then change the “$default” variable to suit your database settings</li>
</ul>
</div>
<div class="body"></div>
<div class="body">An example is:</p>
<pre>class DATABASE_CONFIG
{
   var $default = array('driver' =&gt; 'mysql',
      'connect' =&gt; 'mysql_connect',
      'host' =&gt; 'localhost',
      'login' =&gt; 'root',
      'password' =&gt; '',
      'database' =&gt; 'test',
      'prefix' =&gt; '');
}</pre>
<p>Which works with the default MySQL in xampp</p>
</div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kumaresan1024.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kumaresan1024.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kumaresan1024.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kumaresan1024.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kumaresan1024.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kumaresan1024.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kumaresan1024.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kumaresan1024.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kumaresan1024.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kumaresan1024.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kumaresan1024.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kumaresan1024.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kumaresan1024.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kumaresan1024.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kumaresan1024.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kumaresan1024.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=3&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kumaresan1024.wordpress.com/2008/04/19/configuring-cake-php-in-xampp/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4d594c20866cb56f83255dac891a283?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kumaresan</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://kumaresan1024.wordpress.com/2008/04/02/hello-world/</link>
		<comments>http://kumaresan1024.wordpress.com/2008/04/02/hello-world/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 07:33:29 +0000</pubDate>
		<dc:creator>kumaresan1024</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=1&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/kumaresan1024.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/kumaresan1024.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/kumaresan1024.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/kumaresan1024.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/kumaresan1024.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/kumaresan1024.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/kumaresan1024.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/kumaresan1024.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/kumaresan1024.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/kumaresan1024.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/kumaresan1024.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/kumaresan1024.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/kumaresan1024.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/kumaresan1024.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/kumaresan1024.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/kumaresan1024.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=kumaresan1024.wordpress.com&amp;blog=3352547&amp;post=1&amp;subd=kumaresan1024&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://kumaresan1024.wordpress.com/2008/04/02/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a4d594c20866cb56f83255dac891a283?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kumaresan</media:title>
		</media:content>
	</item>
	</channel>
</rss>
