<?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>&#62;   Enjoy the lifE  &#60;</title>
	<atom:link href="http://ajithsrikukan.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ajithsrikukan.wordpress.com</link>
	<description>What&#039;s going ON, . . . Ajith</description>
	<lastBuildDate>Thu, 26 Jan 2012 11:16:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ajithsrikukan.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/f193a10e4aaf05bf179108b03b9cab52?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>&#62;   Enjoy the lifE  &#60;</title>
		<link>http://ajithsrikukan.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ajithsrikukan.wordpress.com/osd.xml" title="&#62;   Enjoy the lifE  &#60;" />
	<atom:link rel='hub' href='http://ajithsrikukan.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Select and Move Objects/Points using OpenCV &#8211; Drag and Drop</title>
		<link>http://ajithsrikukan.wordpress.com/2011/09/20/select-and-move-objectspoints-using-opencv-drag-and-drop/</link>
		<comments>http://ajithsrikukan.wordpress.com/2011/09/20/select-and-move-objectspoints-using-opencv-drag-and-drop/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 19:18:16 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[Animation]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[OpenCV]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[drag and drop]]></category>
		<category><![CDATA[FuN]]></category>
		<category><![CDATA[mousehandler]]></category>
		<category><![CDATA[select and move]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=743</guid>
		<description><![CDATA[If you have a passion in image processing and computer animations, this post will be interesting . This post explains how to use the  OpenCV to select and move the objects.  Before the explanations, watch this video to get the idea. As you can see, the controls are based on the mouse movements and clicks. So first need [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=743&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">If you have a passion in image processing and computer animations, this post will be interesting . This post explains how to use the  OpenCV to select and move the objects.</p>
<p style="text-align:justify;"> Before the explanations, watch this video to get the idea.</p>
<p style="text-align:justify;"><span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2011/09/20/select-and-move-objectspoints-using-opencv-drag-and-drop/"><img src="http://img.youtube.com/vi/kmbXImLojtI/2.jpg" alt="" /></a></span></p>
<p style="text-align:justify;">As you can see, the controls are based on the mouse movements and clicks.</p>
<ul style="text-align:justify;">
<li>So first need to implement the <a href="http://www.cs.iit.edu/~agam/cs512/lect-notes/opencv-intro/opencv-intro.html#SECTION00030000000000000000" target="_blank">mouse-handler</a> that comes with OpenCV - <a href="http://opencv.willowgarage.com/documentation/user_interface.html#setmousecallback" target="_blank">cvSetMouseCallback</a></li>
<ul>
<li>Left button down &#8211; select the object of clicked point - <span class="Apple-style-span" style="font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;">findImg( x, y)</span></li>
<li>Left button up &#8211; release the object if there any objects has been picked - <span class="Apple-style-span" style="font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;white-space:pre;">releaseImg(selectedImg,x,y); </span></li>
<li>On mouse move &#8211; move the selected object with mouse</li>
</ul>
</ul>
<pre>void mouseHandler(int event, int x, int y, int flags, void *param)
{

	switch(event) {
	case CV_EVENT_LBUTTONDOWN:		//left button press
		selectedImg=findImg( x, y);
		break;

	case CV_EVENT_LBUTTONUP:	//left mouse button release
		if((selectedImg!=NULL)&amp;&amp;point!=-1){
			releaseImg(selectedImg,x,y);
			selectedImg=NULL;
		}
		break;

	case CV_EVENT_MOUSEMOVE:
		/* draw a rectangle*/
		if(point!=-1){
			if(selectedImg!=NULL){
				temp = cvCloneImage(selectedImg);
				cvRectangle(temp,
					cvPoint(x - 1, y - 1),
					cvPoint(x + 1, y + 1),
					cvScalar(0, 0,  255,0), 2, 8, 0);

				//adjust the lines
				for(int i=0;i&lt;nop;i++){
					if(i!=point){
						cvLine(temp,
							cvPoint(x,y ),
							cvPoint(globalCoordinateX[i] , globalCoordinateY[i] ),
							cvScalar(0, 0,  255,0), 1,8,0);
					}
				}
				cvShowImage("Drag &amp; Drop", temp);
			}
			break;
		}
		cvReleaseImage(&amp;temp);
	}
}</pre>
<ul style="text-align:justify;">
<li>Then implement the logics for the findImg( x, y) &amp; releaseImg(selectedImg,x,y)  methods according to your requirements.</li>
<ul>
<li> Here i used an integer array to store the initial position of each object.</li>
<li>Then search for object using the x &amp; y coordinates when there is a click.</li>
<li>when releasing the object update the integer array with released coordinate.</li>
</ul>
</ul>
<ul style="text-align:justify;">
<li><span class="Apple-style-span" style="font-family:Georgia, 'Times New Roman', serif;">Finally call the cvSetMouseCallback( &#8220;Drag &amp; Drop&#8221;, mouseHandler, NULL ) to activate the mouse handler to the window. where;</span></li>
<ul>
<li><span class="Apple-style-span" style="font-family:Georgia, 'Times New Roman', serif;">&#8220;Drag &amp; Drop&#8221; &#8211; the OpenCV window name</span></li>
<li><span class="Apple-style-span" style="font-family:Georgia, 'Times New Roman', serif;">mouseHandler &#8211; the mouse handler function name.</span></li>
</ul>
</ul>
<div style="text-align:justify;">Check the links for <a href="https://sourceforge.net/projects/opencvselmov/files/" target="_blank">demo </a>and <a href="https://sourceforge.net/p/opencvselmov/code/ci/081dc3ab7f79ac42aab1fe5ac878b96151c7068b/tree/" target="_blank">source</a></div>
<p style="text-align:justify;">Happy reading and animation  :) .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/743/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/743/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/743/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=743&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2011/09/20/select-and-move-objectspoints-using-opencv-drag-and-drop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>
	</item>
		<item>
		<title>Tips for creating posters using MS Word</title>
		<link>http://ajithsrikukan.wordpress.com/2011/09/17/tips-for-creating-posts-using-ms-word/</link>
		<comments>http://ajithsrikukan.wordpress.com/2011/09/17/tips-for-creating-posts-using-ms-word/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 08:30:26 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[for everyone]]></category>
		<category><![CDATA[poster]]></category>
		<category><![CDATA[word 2010]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=747</guid>
		<description><![CDATA[This post talks about, “Tips for create posters using Microsoft Word” if you don&#8217;t have any experiences with other tools like Photoshop or Gimp. Word 2007/2010 improved a lot compare to its previous releases. Here I share some of the features that I know . . . First setup the poster format. Set the page [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=747&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">This post talks about, “Tips for create posters using Microsoft Word” if you don&#8217;t have any experiences with other tools like Photoshop or Gimp.</p>
<p style="text-align:justify;">Word 2007/2010 improved a lot compare to its previous releases. Here I share some of the features that I know . . .</p>
<ul style="text-align:justify;">
<li>First setup the poster format.</li>
<ul>
<li><a href="http://thenewpaperclip.com/2010/02/01/change-the-paper-size-in-word-2007/">Set the page size</a> according to the poster size.</li>
<li>Use columns layout if needed.<a href="http://ajithsrikukan.files.wordpress.com/2011/09/face-age-progression-poster-color1.jpg"><img class="alignright size-thumbnail wp-image-756" style="border-color:initial;border-style:initial;" title="Face Age Progression poster-color" src="http://ajithsrikukan.files.wordpress.com/2011/09/face-age-progression-poster-color1.jpg?w=150&#038;h=150" alt="" width="150" height="150" /></a></li>
</ul>
<li>Used <a href="http://www.gcflearnfree.org/word2010/15">text boxes</a> to write texts. Text box has the feature of adding backgrounds and nice borders that make more attractive the poster.</li>
<ul>
<li>Especially when describing project components use text box.</li>
</ul>
<li>Use some nice picture for the <a href="http://www.addictivetips.com/microsoft-office/insert-image-background-colors-in-word-2010/">background</a>.</li>
<li>Use <a href="http://www.thebestdata.com/zoom.aspx?menutype=1&amp;auto=2160&amp;t=Picture%20styles%20Word%202010%20%E2%80%93%20frame,%20shadow,%20soft%20edge">the picture styles</a>.</li>
<li>Use MS Word <a href="http://office.microsoft.com/en-us/word-help/group-or-ungroup-shapes-pictures-or-other-objects-HA010355851.aspx">Illustrations</a> whenever needed.</li>
</ul>
<div style="text-align:justify;">Recently i experienced with creating a poster for my final year project. Initially I started with some</div>
<p style="text-align:justify;"> <a href="http://en.wikipedia.org/wiki/Graphics_software" target="_blank">graphic editing tool</a> and faced a hard time to make the poster within a limited time <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Suddenly got a thought of &#8220;Why don&#8217;t I work with the tool that I used for documentation”&#8230;.  yap, that led me to pick MS word even i never used it to graphic editing purposes.</p>
<p style="text-align:justify;">Happy Poster <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/747/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/747/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/747/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/747/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/747/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/747/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/747/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/747/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/747/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/747/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/747/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/747/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/747/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/747/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=747&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2011/09/17/tips-for-creating-posts-using-ms-word/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>

		<media:content url="http://ajithsrikukan.files.wordpress.com/2011/09/face-age-progression-poster-color1.jpg?w=150" medium="image">
			<media:title type="html">Face Age Progression poster-color</media:title>
		</media:content>
	</item>
		<item>
		<title>Read anything in Tamil &#8211; Google Translate</title>
		<link>http://ajithsrikukan.wordpress.com/2011/06/27/read-anything-in-tamil-google-translate/</link>
		<comments>http://ajithsrikukan.wordpress.com/2011/06/27/read-anything-in-tamil-google-translate/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 03:04:47 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[தமிழ்]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[google translate]]></category>
		<category><![CDATA[tamil]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=734</guid>
		<description><![CDATA[Read my blog in Tamil :) Tamil is one of the beautiful langue in the world but most of the time the people involved in IT field or in higher position not using their mother language frequently even communicate with same mother language person. There many be some reason for that,,, OK just leave it &#8230; Ohhh know [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=734&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://translate.google.com/translate?hl=en&amp;sl=auto&amp;tl=ta&amp;u=ajithsrikukan.wordpress.com" target="_blank">Read my blog in Tamil</a> :)</p>
<p>Tamil is one of the beautiful langue in the world<del> but most of the time the people involved in IT field or in higher position not using their mother language frequently even communicate with same mother language person.</del></p>
<p><del>There many be some reason for that,,, OK just leave it &#8230; Ohhh know i forgot the reason for this post and talking something else. </del> :(</p>
<p>OK, this post all about &#8220;<a href="http://translate.google.com/" target="_blank">Google Translate</a> for Tamil&#8221;. Recently Google added Tamil into their Translate tool that helps to read anything(% wise) in Tamil also Tamil to other languages. This is I expected from Google for a long time not only for read anything in Tamil but also it&#8217;ll help to survive the language.</p>
<p>The funny part of it is, reading the famous websites in Tamil, really funny when we read it with grammar mistakes <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . specially i enjoyed<a href="http://translate.google.com/translate?hl=en&amp;sl=auto&amp;tl=ta&amp;u=ajithsrikukan.wordpress.com" target="_blank"> reading my own blog in Tamil</a>.</p>
<p>Some of the famous websites in Tamil &#8211; First Time <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a href="http://ajithsrikukan.wordpress.com/2011/06/27/read-anything-in-tamil-google-translate/#gallery-1-slideshow">Click to view slideshow.</a>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/734/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/734/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/734/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=734&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2011/06/27/read-anything-in-tamil-google-translate/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>
	</item>
		<item>
		<title>How to activate the &#8220;use presenter view&#8221; using only one monitor in Power Point 2010</title>
		<link>http://ajithsrikukan.wordpress.com/2011/03/22/how-to-activate-the-use-presenter-view-using-only-one-monitor-in-power-point-2010/</link>
		<comments>http://ajithsrikukan.wordpress.com/2011/03/22/how-to-activate-the-use-presenter-view-using-only-one-monitor-in-power-point-2010/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 14:52:54 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[for everyone]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[power point]]></category>
		<category><![CDATA[time pass]]></category>
		<category><![CDATA[use presenter view]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=699</guid>
		<description><![CDATA[Some people may face this problem, activating the &#8220;use the presenter view&#8221; in power point with single monitor. I found a way to get it work, here the trick goes, Press Windows key + P in your keyboard. You may get something like this Select Extend view Now go to your power point and you can see the check box &#8221;use the presenter view&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=699&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Some people may face this problem, activating the &#8220;use the presenter view&#8221; in power point with single monitor.</p>
<p style="text-align:justify;">I found a way to get it work, here the trick goes,</p>
<ul>
<li>Press <strong>Windows key + P</strong> in your keyboard. You may get something like this</li>
</ul>
<p><a href="http://ajithsrikukan.files.wordpress.com/2011/03/untitled.png"><img class="aligncenter size-full wp-image-702" title="Untitled" src="http://ajithsrikukan.files.wordpress.com/2011/03/untitled.png?w=620&#038;h=129" alt="" width="620" height="129" /></a></p>
<ul>
<li>Select <strong>Extend </strong>view</li>
<li>Now go to your power point and you can see the check box &#8221;<strong>use the presenter view</strong>&#8221; will be activated.</li>
<li>Click on check box</li>
</ul>
<p><a href="http://ajithsrikukan.files.wordpress.com/2011/03/pp.png"><img class="aligncenter size-full wp-image-704" title="pp" src="http://ajithsrikukan.files.wordpress.com/2011/03/pp.png?w=620&#038;h=86" alt="" width="620" height="86" /></a></p>
<ul>
<li>In the &#8220;Show on&#8221; drop box select the monitor(Monitor 2) that you want to show the presentation, then other monitor(Primary Monitor) will be the presenter monitor.</li>
<li>Press <strong>f5</strong> to start the presentation and you will end up with this,</li>
</ul>
<p><img class="aligncenter size-full wp-image-703" title="final" src="http://ajithsrikukan.files.wordpress.com/2011/03/final.png?w=620&#038;h=368" alt="" width="620" height="368" /></p>
<p>** It works for me.  :)</p>
<p>Happy presentation.  ;)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/699/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/699/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/699/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/699/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/699/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/699/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/699/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/699/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/699/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/699/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/699/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/699/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/699/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/699/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=699&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2011/03/22/how-to-activate-the-use-presenter-view-using-only-one-monitor-in-power-point-2010/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>

		<media:content url="http://ajithsrikukan.files.wordpress.com/2011/03/untitled.png" medium="image">
			<media:title type="html">Untitled</media:title>
		</media:content>

		<media:content url="http://ajithsrikukan.files.wordpress.com/2011/03/pp.png" medium="image">
			<media:title type="html">pp</media:title>
		</media:content>

		<media:content url="http://ajithsrikukan.files.wordpress.com/2011/03/final.png" medium="image">
			<media:title type="html">final</media:title>
		</media:content>
	</item>
		<item>
		<title>Grub War &#8211; Reinstall Ubuntu/Windows Grub Boot-loader</title>
		<link>http://ajithsrikukan.wordpress.com/2011/02/27/grub-war-reinstall-ubuntuwindows-grub-boot-loader/</link>
		<comments>http://ajithsrikukan.wordpress.com/2011/02/27/grub-war-reinstall-ubuntuwindows-grub-boot-loader/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 04:43:12 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[for everyone]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[boot-loader]]></category>
		<category><![CDATA[GRUB]]></category>
		<category><![CDATA[reinstall]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=668</guid>
		<description><![CDATA[IF your PC has dual boot Windows and Ubuntu, you may probably face this problem, GRUB war . I also faced this problem and would like to share the solution i found by Googling . . . Reinstall Ubuntu 10.xx GRUB after Windows 7 install *** Boot Ubuntu 10.xx(xx- Your Ubuntu version ) from CD/USB. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=668&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">IF your PC has dual boot Windows and Ubuntu, you may probably face this problem, GRUB war <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I also faced this problem and would like to share the solution i found by Googling . . .</p>
<p style="text-align:justify;"><strong>Reinstall Ubuntu 10.xx GRUB after Windows 7 install ***</strong></p>
<p style="text-align:justify;">Boot Ubuntu 10.xx(xx- Your Ubuntu version ) from CD/USB.</p>
<p style="text-align:justify;">Open the Terminal and run the code</p>
<pre><strong>sudo fdisk -l</strong></pre>
<p style="text-align:justify;" dir="ltr">You will get a list like this.<a href="http://ajithsrikukan.files.wordpress.com/2011/02/ubuntu.png"><img class="alignleft size-full wp-image-681" title="ubuntu" src="http://ajithsrikukan.files.wordpress.com/2011/02/ubuntu.png?w=620&#038;h=387" alt="" width="620" height="387" /></a></p>
<p style="text-align:justify;" dir="ltr">From this list find the directory you have installed your Ubuntu. In my case it&#8217;s “/dev/sda7″</p>
<p style="text-align:justify;">Now type the following code in your terminal</p>
<pre><strong>sudo mkdir /media/sda7
sudo mount /dev/sda7 /media/sda7</strong></pre>
<p style="text-align:justify;" dir="ltr">Finally reinstall the GRUP</p>
<pre><strong>sudo grub-install --root-directory=/media/sda7 /dev/sda</strong></pre>
<p dir="ltr">That&#8217;s all, Restart your PC. The home welcomes you.</p>
<p dir="ltr">&nbsp;</p>
<p dir="ltr"><strong>Reinstall <strong>Windows 7 </strong>GRUB if you want to stay with Windows forever *** <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p dir="ltr">Boot windows 7 from DVD</p>
<p dir="ltr">In the Windows installation window select &#8220;Repair Your Computer&#8221;</p>
<p dir="ltr">After it identified your Windows 7 you will get a System Recovery Window.</p>
<p dir="ltr">Select Command Prompt and run the following codes one by one.</p>
<pre><strong>bootrec.exe /fixboot</strong></pre>
<pre><strong>bootrec.exe /fixmbr</strong></pre>
<p>Close the windows and restart, that&#8217;s ALL.</p>
<p>Some screenshots of GRUB war  ;)</p>
<a href="http://ajithsrikukan.wordpress.com/2011/02/27/grub-war-reinstall-ubuntuwindows-grub-boot-loader/#gallery-2-slideshow">Click to view slideshow.</a>
<p dir="ltr">* I faced this problem for a long time and most of the time i failed to repair the GRUP and most of the time i pushed into a situation ,reinstalling the entire OS again and that would be my hope. Reinstalling a OS is not a big task but after a fresh install talking your System into previous environment is too difficult and consumes lots of time.</p>
<p dir="ltr">** I doubted how many people gonna try this solution but i&#8217;m 100% sure there is a one person surely gonna follow this methods, THAT&#8217;S ME  . . .   <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p dir="ltr">*** It works on my PC !  :)</p>
<p style="text-align:justify;">Sources : <a href="http://ubuntuforums.org/showthread.php?t=1014708" target="_blank">[1]</a> , <a href="http://forums.techarena.in/guides-tutorials/1175447.htm" target="_blank">[2]</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/668/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=668&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2011/02/27/grub-war-reinstall-ubuntuwindows-grub-boot-loader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>

		<media:content url="http://ajithsrikukan.files.wordpress.com/2011/02/ubuntu.png" medium="image">
			<media:title type="html">ubuntu</media:title>
		</media:content>
	</item>
		<item>
		<title>Football Funnies &#8211; Cheating/Acting/Diving</title>
		<link>http://ajithsrikukan.wordpress.com/2011/02/26/football-funnies-cheatingactingdiving/</link>
		<comments>http://ajithsrikukan.wordpress.com/2011/02/26/football-funnies-cheatingactingdiving/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 04:37:35 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[Football]]></category>
		<category><![CDATA[for everyone]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[action]]></category>
		<category><![CDATA[dive]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[FuN]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=671</guid>
		<description><![CDATA[A football player can be an actor but an actor can&#8217;t be a football player Does this quote confuse you?, don&#8217;t worry just watch the following videos and you will discover it + the truth and secret behind a football paler. Hay SOB, you hit my face Ohhh Nooo, Action Contradicts &#8217; &#160; Ohh, Shit it didn&#8217;t work . [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=671&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>A football player can be an actor but an actor can&#8217;t be a football player</p></blockquote>
<p>Does this quote confuse you?, don&#8217;t worry just watch the following videos and you will discover it + the truth and secret behind a football paler. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em>Hay SOB, you hit my face</em></p>
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2011/02/26/football-funnies-cheatingactingdiving/"><img src="http://img.youtube.com/vi/pIGXAX4wrRE/2.jpg" alt="" /></a></span>
<p>Ohhh Nooo, Action Contradicts &#8217;</p>
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2011/02/26/football-funnies-cheatingactingdiving/"><img src="http://img.youtube.com/vi/H0n7XAUhQB0/2.jpg" alt="" /></a></span>
<p>&nbsp;</p>
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2011/02/26/football-funnies-cheatingactingdiving/"><img src="http://img.youtube.com/vi/vWr14M-iQBg/2.jpg" alt="" /></a></span>
<p><em>Ohh, Shit it didn&#8217;t work . . . </em></p>
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2011/02/26/football-funnies-cheatingactingdiving/"><img src="http://img.youtube.com/vi/VzeKiEtp0m0/2.jpg" alt="" /></a></span>
<p>&nbsp;</p>
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2011/02/26/football-funnies-cheatingactingdiving/"><img src="http://img.youtube.com/vi/LdgRIIN-6I0/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/671/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/671/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/671/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=671&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2011/02/26/football-funnies-cheatingactingdiving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>
	</item>
		<item>
		<title>Best entertainment place &#8211; Unawatuna Beach</title>
		<link>http://ajithsrikukan.wordpress.com/2011/01/17/best-entertainment-place-unawatuna-beach/</link>
		<comments>http://ajithsrikukan.wordpress.com/2011/01/17/best-entertainment-place-unawatuna-beach/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 05:18:18 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[beach]]></category>
		<category><![CDATA[for everyone]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[Holiday]]></category>
		<category><![CDATA[Sri Lanka]]></category>
		<category><![CDATA[trip]]></category>
		<category><![CDATA[entertainment]]></category>
		<category><![CDATA[FuN]]></category>
		<category><![CDATA[galle]]></category>
		<category><![CDATA[swimm]]></category>
		<category><![CDATA[Unawatuna Beach]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=648</guid>
		<description><![CDATA[In one of my previous post i wrote about Amaya Lake as one of the best entertainment pales in Sri lanka. But only thing we need to enjoy it is money because it a fabulas place and it has that much of weight. But guys like us always expect to have more fun with less money( [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=648&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In <a href="http://ajithsrikukan.wordpress.com/2010/05/19/beautiful-sri-lanka-amaya-lake/" target="_blank">one of my previous post</a> i wrote about Amaya Lake as one of the best entertainment pales in Sri lanka. But only thing we need to enjoy it is money because it a fabulas place and it has that much of weight. But guys like us always expect to have more fun with less money( if it is free <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   :) ). Here this post tells about such kind of place, <a title="Unawatuna Beach" href="http://www.google.lk/images?q=Unawatuna+Beach&amp;hl=en&amp;prmd=ivns&amp;source=lnms&amp;tbs=isch:1&amp;ei=YrozTcDgN9O4jAef8pXXCg&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;cd=2&amp;ved=0CA4Q_AUoAQ&amp;biw=1280&amp;bih=699" target="_blank">Unawatuna Beach</a> .</p>
<p>There are many entrance to this beach but the beach site near the <a href="http://www.unawatunabeachresort.com/" target="_blank"><em>Unawatuna Beach</em> Resort</a> has a good view and more facilities, the following slide show gives a better view of it. The beauty of this beach is, it&#8217;s filled by whites <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<a href="http://ajithsrikukan.wordpress.com/2011/01/17/best-entertainment-place-unawatuna-beach/#gallery-3-slideshow">Click to view slideshow.</a>
<p>the charges for additional facilities,</p>
<p>swimming pool &#8211; Rs 300 per day &#8211; unlimited time.</p>
<p>buffet - Rs 1018 per head. also budget foods available.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/648/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/648/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/648/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/648/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/648/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/648/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/648/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/648/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/648/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/648/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/648/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/648/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/648/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/648/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=648&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2011/01/17/best-entertainment-place-unawatuna-beach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>
	</item>
		<item>
		<title>Cloud Computing &#8211; FunnY &#8211; Copy Net</title>
		<link>http://ajithsrikukan.wordpress.com/2010/12/18/cloud-computing-funny-copy-net/</link>
		<comments>http://ajithsrikukan.wordpress.com/2010/12/18/cloud-computing-funny-copy-net/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 02:50:10 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[for everyone]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[cartoon]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[Hitler]]></category>
		<category><![CDATA[people]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=633</guid>
		<description><![CDATA[Funny toons Hitler and Cloud computing security What People think about cloud compution &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=633&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Funny toons</p>
<a href="http://ajithsrikukan.wordpress.com/2010/12/18/cloud-computing-funny-copy-net/#gallery-4-slideshow">Click to view slideshow.</a>
<p>Hitler and Cloud computing security</p>
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2010/12/18/cloud-computing-funny-copy-net/"><img src="http://img.youtube.com/vi/VjfaCoA2sQk/2.jpg" alt="" /></a></span>
<p>What People think about cloud compution</p>
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2010/12/18/cloud-computing-funny-copy-net/"><img src="http://img.youtube.com/vi/8g9penyLM5Q/2.jpg" alt="" /></a></span>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/633/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/633/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/633/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/633/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/633/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/633/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/633/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/633/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/633/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/633/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/633/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/633/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/633/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/633/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=633&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2010/12/18/cloud-computing-funny-copy-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>
	</item>
		<item>
		<title>Why do I write this post &#8211; No reasoN</title>
		<link>http://ajithsrikukan.wordpress.com/2010/11/15/why-do-i-write-this-post-no-reason/</link>
		<comments>http://ajithsrikukan.wordpress.com/2010/11/15/why-do-i-write-this-post-no-reason/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 17:33:15 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[FuN]]></category>
		<category><![CDATA[habit]]></category>
		<category><![CDATA[IFS]]></category>
		<category><![CDATA[stress]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=605</guid>
		<description><![CDATA[[Abstract]    This is a boring post and talks about how I involved with blog writing habit;  give a low priority to read or DON’T READ. During the training period at IFS I started the blog writing as my temporary habit to increase the fun. Because most of the guys like us working in a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=605&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>[<a href="http://en.wikipedia.org/wiki/Abstract_(summary)" target="_blank">Abstract</a>]    This is a boring post and talks about how I involved with blog writing habit;  give a low priority to read or DON’T READ. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>During the training period at IFS I started the blog writing as my temporary habit to increase the fun. Because most of the guys like us working in a software field, sit in-front of computer and spending 1/3 of our day to chat with computer. Sitting in the same place and working with computer might put stress on our head and our face will be progressed as a <a href="http://drlillianglassbodylanguageblog.files.wordpress.com/2009/12/terrorist-facial-expression.jpg" target="_blank">_____ [Fill the blank</a>] face <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . That’s why most of the software companies have some fun time to entertain their <a href="http://www.dublinhostels.org/files/u1/running-with-the-bulls.jpg" target="_self">BULLS</a>. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  don&#8217;t get angry guys . . . .</p>
<p><a href="http://ajithsrikukan.files.wordpress.com/2010/11/stat-pnsg.png"><img class="alignleft size-full wp-image-625" title="stat.pnsg" src="http://ajithsrikukan.files.wordpress.com/2010/11/stat-pnsg.png?w=620" alt=""   /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>When i started this process I never expected any response from public and thought that I’ll be the only one gonna read my blog. But some amazing thing happened, there was 2 or 3 readers came to see me through <a href="http://ajithsrikukan.wordpress.com/">ajithsrikukan.wordpress.com</a> per day and recent days it reached upto 10. Initially I started this habit for fun, but after I got bad [and some good] <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />   response from web people, it inspired me and became the reason for continue my blogging.</p>
<a href="http://ajithsrikukan.wordpress.com/2010/11/15/why-do-i-write-this-post-no-reason/#gallery-5-slideshow">Click to view slideshow.</a>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Start your blog NOW   <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />    HAPPY Blogging  :)</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/605/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=605&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2010/11/15/why-do-i-write-this-post-no-reason/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>

		<media:content url="http://ajithsrikukan.files.wordpress.com/2010/11/stat-pnsg.png" medium="image">
			<media:title type="html">stat.pnsg</media:title>
		</media:content>
	</item>
		<item>
		<title>EyEs ChEaT yOuR bRaIn &#8211; Illusion</title>
		<link>http://ajithsrikukan.wordpress.com/2010/11/15/eyes-cheat-your-brain-illusion/</link>
		<comments>http://ajithsrikukan.wordpress.com/2010/11/15/eyes-cheat-your-brain-illusion/#comments</comments>
		<pubDate>Mon, 15 Nov 2010 16:26:56 +0000</pubDate>
		<dc:creator>Ajith Srikukan</dc:creator>
				<category><![CDATA[amazing]]></category>
		<category><![CDATA[for everyone]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[chaet]]></category>
		<category><![CDATA[eye]]></category>
		<category><![CDATA[illision]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://ajithsrikukan.wordpress.com/?p=616</guid>
		<description><![CDATA[Have Fun<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=616&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Have Fun <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2010/11/15/eyes-cheat-your-brain-illusion/"><img src="http://img.youtube.com/vi/E9I-Onwfqpo/2.jpg" alt="" /></a></span></p>
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2010/11/15/eyes-cheat-your-brain-illusion/"><img src="http://img.youtube.com/vi/2K39Q9zvQoE/2.jpg" alt="" /></a></span>
<span style="text-align:center; display: block;"><a href="http://ajithsrikukan.wordpress.com/2010/11/15/eyes-cheat-your-brain-illusion/"><img src="http://img.youtube.com/vi/GCKbHz3JuFQ/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ajithsrikukan.wordpress.com/616/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ajithsrikukan.wordpress.com/616/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ajithsrikukan.wordpress.com/616/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ajithsrikukan.wordpress.com/616/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ajithsrikukan.wordpress.com/616/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ajithsrikukan.wordpress.com/616/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ajithsrikukan.wordpress.com/616/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ajithsrikukan.wordpress.com/616/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ajithsrikukan.wordpress.com/616/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ajithsrikukan.wordpress.com/616/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ajithsrikukan.wordpress.com/616/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ajithsrikukan.wordpress.com/616/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ajithsrikukan.wordpress.com/616/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ajithsrikukan.wordpress.com/616/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ajithsrikukan.wordpress.com&amp;blog=12673307&amp;post=616&amp;subd=ajithsrikukan&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ajithsrikukan.wordpress.com/2010/11/15/eyes-cheat-your-brain-illusion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8e9ad3ef146762dd425de76aa38cb66f?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">ajith</media:title>
		</media:content>
	</item>
	</channel>
</rss>
