<?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>Allajunaki's Random blurbs</title>
	<atom:link href="http://allajunaki.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://allajunaki.wordpress.com</link>
	<description>Misfirings of dysfunctional cluster of neurons</description>
	<lastBuildDate>Wed, 11 Nov 2009 11:38:27 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='allajunaki.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/f037582c92e414248336b81c516302e5?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Allajunaki's Random blurbs</title>
		<link>http://allajunaki.wordpress.com</link>
	</image>
			<item>
		<title>Swap Values, no third variable</title>
		<link>http://allajunaki.wordpress.com/2009/11/11/swap-values-no-third-variable/</link>
		<comments>http://allajunaki.wordpress.com/2009/11/11/swap-values-no-third-variable/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 11:30:33 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Geeky]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/2009/11/11/swap-values-no-third-variable/</guid>
		<description><![CDATA[A classic problem asked in many interviews and such. And almost every genius will tell you that its simple.
swap(int *x,int *y)
{
  *x += *y;
  *y = *x - *y;
  *x = *x - *y;
}

Simple right? Wrong!
what happens if one value is 2147483647 and the other is 2147483640 ?
You will definitely overflow x [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=175&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A classic problem asked in many interviews and such. And almost every genius will tell you that its simple.</p>
<pre>swap(int *x,int *y)
{
  *x += *y;
  *y = *x - *y;
  *x = *x - *y;
}
</pre>
<p>Simple right? Wrong!<br />
what happens if one value is 2147483647 and the other is 2147483640 ?<br />
You will definitely overflow x and make a mess of it!</p>
<p>So whats the foolproof way?  Observe!</p>
<pre>swap(int *x, int *y)
{
 *x ^= *y;
 *y ^= *x;
 *x ^= *y;
}</pre>
<p>So how is it done? Bit-wise Xor operation. Faster, better <span style="text-decoration:line-through;">and guaranteed to get you laid</span>. For more info on bit wise xor Google it or <a href="http://tinyurl.com/yzv8q8o" target="_blank">click here </a></p>
<p>Technorati Tags: <a class="performancingtags" rel="tag" href="http://technorati.com/tag/C">C</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/Variable%20swap">Variable swap</a>, <a class="performancingtags" rel="tag" href="http://technorati.com/tag/Bit%20operations">Bit operations</a></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=cd0f8394-3402-851e-addb-b776126b7ba8" alt="" /></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=175&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/11/11/swap-values-no-third-variable/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>

		<media:content url="http://img.zemanta.com/pixy.gif?x-id=cd0f8394-3402-851e-addb-b776126b7ba8" medium="image" />
	</item>
		<item>
		<title>Efficient way to print int in binary format</title>
		<link>http://allajunaki.wordpress.com/2009/11/10/efficient-way-to-print-int-in-binary-format/</link>
		<comments>http://allajunaki.wordpress.com/2009/11/10/efficient-way-to-print-int-in-binary-format/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:33:49 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Print binary]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/?p=167</guid>
		<description><![CDATA[A simple and efficient way of printing binary of a variable in C.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=167&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><pre>void printBinary(int *intVal){
  register unsigned int mask;
  mask = 1&lt;&lt;((8*sizeof(int))-1);
  do
    print("%d",((*intVal &amp; mask)/mask));
  while((mask &gt;&gt;= 1) &amp; -1);
}</pre>
<p>Ok, Sorry I did not put any comments in the code, simply because I want it to look short and sweet. Now let me elaborate a bit on how this works.</p>
<pre><strong>void printBinary(int <span style="color:#ff0000;">*intVal</span>){</strong></pre>
<p>We are taking a pointer here, so make sure your calling function sends an address and not the value.</p>
<pre><strong>  register unsigned int mask;</strong></pre>
<p>Register for speed, we need to have an unsigned int.</p>
<pre><strong>mask = 1&lt;&lt;((8*sizeof(int))-1);</strong></pre>
<p>Ok, let me explain this one step at a time<br />
Step 1: Get Size of integer.<br />
Step 2: Multiply it with 8 ( we need the Size in Bits, not in bytes).<br />
Step 3: Subtract this value by 1<br />
Step 4 : Left Shift 1 by the value obtained by Step 3 calculation.</p>
<p>How does this work?<br />
Assume that the platform where you are gonna run this code represents binary as 4bytes. So<br />
Step 1: 4 Bytes<br />
Step 2 : 4&#215;2 = 32 Bits<br />
Step 3 : 32 -1 = 31<br />
Step 4 : Left shift 1 (binary : 00000000000000000000000000000001) by 31 times = binary : 10000000000000000000000000000000</p>
<pre><strong>  do
    print("%d",((*intVal &amp; mask)/mask));
  while((mask &gt;&gt;= 1) &amp; -1);</strong></pre>
<p>Now comes the bit tricky part, so how do we do this? Quite simple once you get a hang of it.</p>
<p>First we do a bitwise and on the value we got from the calling function and the mask. We then divide it by mask.</p>
<p>Initially, the mask will be at the leftmost position (which is usually the sign bit, hence will be 1 if the value is negative). Now if the number you passed on was signed and negative, then &#8216;and&#8217;ing with mask will ensure that only signed bit will remain and makes the rest of the bits as &#8216;0&#8242;. Now you divide this value by mask itself. Hence you will get value with 1.</p>
<p>Now if the bit was zero then the result of  &#8216;and&#8217;ing would have been all zeros. Thus dividing the value with mask would have yielded 0.</p>
<p>Ok, now the next step, we right shift the mask by 1. So we will end up with 01000000000000000000000000000000 , first time around. We then do a bitwise and with -1 which is represented as binary all 1&#8217;s. Thus this while loop will remain true till we keep right shifting 1 in the mask all the way to the right, and finally dropped. By that time we would have printed the value of  referenced by intVal pointer in binary form.</p>
<p>Simple? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Tip: If you know the size of integer in your platform then you can get some more performance and simplicity by pre calculating what number will be 1 followed by all zeros. For 4 bytes this value will be  2147483648.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/167/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/167/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/167/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=167&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/11/10/efficient-way-to-print-int-in-binary-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>
	</item>
		<item>
		<title>Cscope + Notepad++ Coding nirvana!</title>
		<link>http://allajunaki.wordpress.com/2009/11/10/cscope-notepad-coding-nirvana/</link>
		<comments>http://allajunaki.wordpress.com/2009/11/10/cscope-notepad-coding-nirvana/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 14:46:06 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Geeky]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Cscope]]></category>
		<category><![CDATA[Cygwin]]></category>
		<category><![CDATA[Editor]]></category>
		<category><![CDATA[Notepad++]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/?p=164</guid>
		<description><![CDATA[You, Cscope, Notepad++ An Awesome threesome! <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=164&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Loved Cscope on cygwin, but hated the fact that you anything you select will open up in Vi, and then do some keyboard voodoo to get back to the cscope window?</p>
<p>Or are you one of those fan of notepad++ awesomeness but love the way cscope hunts for stuff for ya?</p>
<p>Fear not, there is a way both your sweethearts can now play with you, all at the same time for an awesome threesome <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Just export these lines before you fire up Cscope</p>
<pre>export CSCOPE_EDITOR="/cygdrive/c/Program Files/Notepad++/notepad++.exe"
export CSCOPE_LINEFLAG="-n%s"
</pre>
<p>Please note : Change the CSCOPE_EDITOR path to where your notepad++ is currently residing. For your convenience, I have included the path that is default for Normal install of notepad++.</p>
<p>Better still, put it in a script file (or perhaps bashrc).</p>
<p>Got a better suggestion? Post a comment <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/164/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/164/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/164/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=164&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/11/10/cscope-notepad-coding-nirvana/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 First Impressions</title>
		<link>http://allajunaki.wordpress.com/2009/05/07/windows-7-first-impressions/</link>
		<comments>http://allajunaki.wordpress.com/2009/05/07/windows-7-first-impressions/#comments</comments>
		<pubDate>Thu, 07 May 2009 03:00:30 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[First Impressions]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/2009/05/07/windows-7-first-impressions/</guid>
		<description><![CDATA[Just managed to pull up Windows 7 RC1 from microsoft website. I immediately managed to installed it to my laptop ( I had to kill my Fedora 10 install in favour of Windows 7   , But I do have a copy of turnkey linux installed in my Vista under virtual box   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=159&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just managed to pull up Windows 7 RC1 from <a href="http://www.microsoft.com/windows/windows-7/" target="_blank">microsoft website</a>. I immediately managed to installed it to my laptop ( I had to kill my Fedora 10 install in favour of Windows 7 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  , But I do have a copy of turnkey linux installed in my Vista under virtual box <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ). I have kept my vista Intact. Coming from Vista, here are my initial impressions (Approx 4 hours of usage). BTW, I have a Vaio CR35G/R&#160; ( Core2 Duo T8100 2.10 Ghz, 2GB DDR2 RAM, Intel 965 Mother Board, ATI Radeon X2300 Card with 128MB on board).<a href="http://allajunaki.files.wordpress.com/2009/05/windows7desktop1.jpg"><img style="border-bottom:0;border-left:0;display:inline;margin-left:0;border-top:0;margin-right:0;border-right:0;" title="Windows 7 desktop" border="0" alt="Windows 7 desktop" align="right" src="http://allajunaki.files.wordpress.com/2009/05/windows7desktop-thumb1.jpg?w=244&#038;h=154" width="244" height="154" /></a> </p>
<ul>
<li>Installation was pretty fast. I have my copy running in about 35 minutes (Including 2 restarts and my <strike>retarded</strike> <em>slow </em>DVD drive).</li>
<li>The new windows 7 taskbar…err… superbar is pretty good, but it will take some time for me to get used to. Plus I don’t like the amount real estate it takes up on the screen (it can be reduced though).</li>
<li>Windows 7 art work is very very good. Kudos to Microsoft for coming up with fresh art work. Not quite in the apple league, but getting there, <em>fast.</em></li>
<li>Unlike Vista, Windows 7 does not thrash Hard disk ( Vista has the nasty habit of keeping your hard disk busy for no apparent reason). </li>
<li>Bootup, Hibernate – resume, Standby – resume times are a lot faster than Vista.</li>
<li>Laptop feels a lot more snappier with Windows 7 than with Vista.</li>
<li>The new Windows media player (Windows Media Player 12)&#160; is a lot more polished and a lot better than Vista’s. However, I was not able to get ffdshow running with it though.</li>
<li>Changing wallpaper desktop themes are pretty cool. Windows 7 supports wallpaper cycling.</li>
<li>Reduced foot print. Windows 7 at bootup takes up about 30% of RAM as compared ~50% on Vista. </li>
<li>Builtin monitor colour calibration tool ( I don’t thing Vista had one).</li>
<li>I dont know why, but since yesterday night till today morning, I have received at least some 4 updates to my Windows 7. Cant you guys club em and do ONE BIG update? (Pretty annoying, but I guess since this is a RC, they will be fixing up a lot small stuff. I hope they have a better policy for updation cycle in the final release).</li>
</ul>
<p>All in all Microsoft seems to have go it right this time around. I will seriously consider purchasing this once it comes out. ( And no, Microsoft is not paying me to say this :p, though if they sponsor me a desktop with Nvidia GTX 250 or ATI HD 4750, I can say how well Windows 7 will do on gaming front. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> &#160; ). </p>
<p>If you have anything to add (Good/bad/ugly things about windows 7), feel free to post em in the comments section. </p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:fca91a5c-0edf-4713-ab93-aa3beb90412d" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Microsoft" rel="tag">Microsoft</a>,<a href="http://technorati.com/tags/Windows+7" rel="tag">Windows 7</a>,<a href="http://technorati.com/tags/First+Impressions" rel="tag">First Impressions</a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/159/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/159/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/159/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=159&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/05/07/windows-7-first-impressions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>

		<media:content url="http://allajunaki.files.wordpress.com/2009/05/windows7desktop-thumb1.jpg" medium="image">
			<media:title type="html">Windows 7 desktop</media:title>
		</media:content>
	</item>
		<item>
		<title>My Latest submission on DeviantART :)</title>
		<link>http://allajunaki.wordpress.com/2009/05/06/my-latest-submission-on-devaintart/</link>
		<comments>http://allajunaki.wordpress.com/2009/05/06/my-latest-submission-on-devaintart/#comments</comments>
		<pubDate>Tue, 05 May 2009 18:31:51 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Black and White]]></category>
		<category><![CDATA[deviantart]]></category>
		<category><![CDATA[Fuji S9600]]></category>
		<category><![CDATA[Leaves]]></category>
		<category><![CDATA[Rain]]></category>
		<category><![CDATA[Still Life]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/2009/05/06/my-latest-submission-on-devaintart/</guid>
		<description><![CDATA[&#160;
     Leaves in rain by ~allajunaki on deviantART
&#160;
Hit up “Download” link at deviantART for getting the full res snap   
&#160;

Technorati Tags: Photography,Fuji S9600,Black and White,deviantart,Leaves,Rain,Still Life
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=153&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>&#160;</p>
<p><a href="http://allajunaki.deviantart.com/art/Leaves-in-rain-121545420" target="_blank"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="DSCF5000_E" border="0" alt="DSCF5000_E" src="http://allajunaki.files.wordpress.com/2009/05/dscf5000-e.jpg?w=644&#038;h=484" width="644" height="484" /></a>     <br /><a href="http://www.deviantart.com/deviation/121545420/">Leaves in rain</a> by ~<a class="u" href="http://allajunaki.deviantart.com/">allajunaki</a> on <a href="http://www.deviantart.com">deviant</a><a href="http://www.deviantart.com">ART</a></p>
<p>&#160;</p>
<p>Hit up “Download” link at deviantART for getting the full res snap <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>&#160;</p>
</p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:cf9ca715-b401-46be-bcdb-a2116fb0d26e" class="wlWriterEditableSmartContent">Technorati Tags: <a href="http://technorati.com/tags/Photography" rel="tag">Photography</a>,<a href="http://technorati.com/tags/Fuji+S9600" rel="tag">Fuji S9600</a>,<a href="http://technorati.com/tags/Black+and+White" rel="tag">Black and White</a>,<a href="http://technorati.com/tags/deviantart" rel="tag">deviantart</a>,<a href="http://technorati.com/tags/Leaves" rel="tag">Leaves</a>,<a href="http://technorati.com/tags/Rain" rel="tag">Rain</a>,<a href="http://technorati.com/tags/Still+Life" rel="tag">Still Life</a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/153/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/153/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/153/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=153&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/05/06/my-latest-submission-on-devaintart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>

		<media:content url="http://allajunaki.files.wordpress.com/2009/05/dscf5000-e.jpg" medium="image">
			<media:title type="html">DSCF5000_E</media:title>
		</media:content>
	</item>
		<item>
		<title>Push Mail for s60 ( SEVEN )</title>
		<link>http://allajunaki.wordpress.com/2009/04/15/push-mail-for-s60-seven/</link>
		<comments>http://allajunaki.wordpress.com/2009/04/15/push-mail-for-s60-seven/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 12:15:46 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[S60]]></category>
		<category><![CDATA[E90]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Push Mail]]></category>
		<category><![CDATA[Seven]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/2009/04/15/push-mail-for-s60-seven/</guid>
		<description><![CDATA[ Most of the corporate executives are hooked to their blackberries and its push mail service. However, blackberry service is expensive (at least here in India). Fret not folks, Seven is here to answer our prayers. Seven is a service that enables push mail for most of public domain email service providers (like gmail, yahoo, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=140&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.seven.com" target="_blank"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="35" alt="logo_seven_cc3333" src="http://allajunaki.files.wordpress.com/2009/04/logo-seven-cc3333.gif?w=127&#038;h=35" width="127" align="right" border="0"></a> Most of the corporate executives are hooked to their blackberries and its push mail service. However, blackberry service is expensive (at least here in India). Fret not folks, Seven is here to answer our prayers. Seven is a service that enables push mail for most of public domain email service providers (like gmail, yahoo, hotmail etc.). But wait, there is more, Seven can enable push mail for corporate e-mail which has OWA (like the organization that I work <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).&nbsp; </p>
<p>I now get mails from office quite easily. I have also set up my gmail account for push. Now mails are delivered almost instantly to my Phone. Though I can get push mail with E90&#8217;s IMAP support (and gmail IMAP&#8217;s IDLE feature), I would still prefer SEVEN&#8217;s solution. Here are a few reasons.</p>
<ul>
<li>SEVEN client will re-establish a lost connection. The builtin email client does not. </li>
<li>SEVEN integrates with your existing mail/email system of S60 phones (works exactly like the builtin client). </li>
<li>SEVEN supports times at which real time push has to work. (with provisions for specifying alternate schedule for Push mail during weekends). </li>
<li>SEVEN retrieves all the mails as they arrive (you can specify the mail size to be downloaded, beyond which, message will be trucated). So no need to click on a mail to retrieve it. This alone makes the whole process of checking mails more enjoyable (and since there is a size cap on per message, rest assured that you wont end up having to sell your car for paying the phone bill).&nbsp; </li>
<li>Support for push mails for servers with OWA support. </li>
<li>SEVEN will switch off the push mail if the phone battery level goes below a certain threshold (Configurable).</li>
<li>SEVEN Push status is clearly shown on the phone standby screen with a neat icon. </li>
</ul>
<p>&nbsp;</p>
<p>Having said, there are a few observations. </p>
<ul>
<li>Seven makes the messaging application a little slow ( Not painfully slow, but noticeably slow). Im not sure if it is a problem with E90&#8217;s Messaging application, or Seven&#8217;s client. </li>
<li>Text only mails. No HTML support. But this mostly due to the fact that messaging application of E90 supports text only mails. </li>
<li>I&#8217;m using Beta edition, I&#8217;m not sure how long it will last. </li>
</ul>
<p>Overall, I have been using it since yesterday, I think seven is an application worth keeping. If you are interested then head over to <a href="http://www.seven.com">www.seven.com</a> for getting a copy of beta client. </p>
<p>&nbsp;</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:65760fa1-2803-40de-a198-4e9311418a8f" style="display:inline;margin:0;padding:0;">Technorati Tags: <a href="http://technorati.com/tags/S60" rel="tag">S60</a>,<a href="http://technorati.com/tags/Push%20Mail" rel="tag">Push Mail</a>,<a href="http://technorati.com/tags/Seven" rel="tag">Seven</a>,<a href="http://technorati.com/tags/Nokia" rel="tag">Nokia</a>,<a href="http://technorati.com/tags/E90" rel="tag">E90</a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=140&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/04/15/push-mail-for-s60-seven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>

		<media:content url="http://allajunaki.files.wordpress.com/2009/04/logo-seven-cc3333.gif" medium="image">
			<media:title type="html">logo_seven_cc3333</media:title>
		</media:content>
	</item>
		<item>
		<title>Vista Native vs Windows 7 in Virtualbox</title>
		<link>http://allajunaki.wordpress.com/2009/04/14/vista-native-vs-windows-7-in-virtualbox/</link>
		<comments>http://allajunaki.wordpress.com/2009/04/14/vista-native-vs-windows-7-in-virtualbox/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 06:50:09 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[Assessment]]></category>
		<category><![CDATA[Hardware Virtualization]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[Seven]]></category>
		<category><![CDATA[Sun]]></category>
		<category><![CDATA[Virtualbox]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[VT-x]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/2009/04/14/vista-native-vs-windows-7-in-virtualbox/</guid>
		<description><![CDATA[A simple Windows assessment comparison between Windows Vista running natively and Seven on a Virtualized platform.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=137&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just out of curiosity I ran Windows assessment of Windows 7 running in <a href="http://www.virtualbox.org" target="_blank">virtualbox</a> (with <a href="http://www.intel.com/technology/itj/2006/v10i3/1-hardware/6-vt-x-vt-i-solutions.htm" target="_blank">VT-x</a> enabled) and Vista. Here is a screen shot of the comparison.</p>
<p><a href="http://allajunaki.files.wordpress.com/2009/04/vista-native-vs-7-on-virtualbox.jpg" target="_blank"><img style="border-width:0;" src="http://allajunaki.files.wordpress.com/2009/04/vista-native-vs-7-on-virtualbox-thumb.jpg?w=644&#038;h=404" border="0" alt="Vista Native vs 7 on Virtualbox" width="644" height="404" /></a> </p>
<p>What was amazing is the Hard disk Score, Virtualbox HDD is faster than the native disk !! Processor score is not too shabby, but I expected more with VT-x turned on. So how much does VT-x have influence on the Virtualbox performance? I tried to do the same score with VT-x turned &#8220;OFF&#8221;.</p>
<p>To my surprise, I got the same score! Perhaps, the windows assessment tool does not run any ring-0 code ( as far as I know, VT-x helps better management of ring-0 code).</p>
<p>Anyhow I&#8217;m posting the screen shot of the windows 7 on virtualbox with VT-x turned off.</p>
<p><a href="http://allajunaki.files.wordpress.com/2009/04/seven-virtualbox-without-vt-x.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://allajunaki.files.wordpress.com/2009/04/seven-virtualbox-without-vt-x-thumb.jpg?w=644&#038;h=358" border="0" alt="Seven_virtualbox_without vt-x" width="644" height="358" /></a></p>
<p>If Anybody has a better idea as to why VT-x failed to change the scores in windows 7 assessment, please feel free to comment <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:7023e153-344b-48d2-8cfc-fc17796a3e27" class="wlWriterSmartContent" style="display:inline;margin:0;padding:0;">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/Sun">Sun</a>,<a rel="tag" href="http://technorati.com/tags/Virtualbox">Virtualbox</a>,<a rel="tag" href="http://technorati.com/tags/Vista">Vista</a>,<a rel="tag" href="http://technorati.com/tags/Seven">Seven</a>,<a rel="tag" href="http://technorati.com/tags/7">7</a>,<a rel="tag" href="http://technorati.com/tags/Microsoft">Microsoft</a>,<a rel="tag" href="http://technorati.com/tags/Windows">Windows</a>,<a rel="tag" href="http://technorati.com/tags/Assessment">Assessment</a>,<a rel="tag" href="http://technorati.com/tags/Performance">Performance</a><br />
<a rel="tag" href="http://technorati.com/tags/VT-x">VT-x</a>,<a rel="tag" href="http://technorati.com/tags/Virtualization">Virtualization</a>,<a rel="tag" href="http://technorati.com/tags/Hardware%20Virtualization">Hardware Virtualization</a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=137&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/04/14/vista-native-vs-windows-7-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>

		<media:content url="http://allajunaki.files.wordpress.com/2009/04/vista-native-vs-7-on-virtualbox-thumb.jpg" medium="image">
			<media:title type="html">Vista Native vs 7 on Virtualbox</media:title>
		</media:content>

		<media:content url="http://allajunaki.files.wordpress.com/2009/04/seven-virtualbox-without-vt-x-thumb.jpg" medium="image">
			<media:title type="html">Seven_virtualbox_without vt-x</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Trends Advani Vs Rahul Gandhi vs Sonia Gandhi</title>
		<link>http://allajunaki.wordpress.com/2009/04/13/google-trends-advani-vs-rahul-gandhi-vs-sonia-gandhi/</link>
		<comments>http://allajunaki.wordpress.com/2009/04/13/google-trends-advani-vs-rahul-gandhi-vs-sonia-gandhi/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 17:14:48 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[Elections]]></category>
		<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Irrelevant]]></category>
		<category><![CDATA[Advani]]></category>
		<category><![CDATA[Gandhi]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Rahul]]></category>
		<category><![CDATA[Sonia]]></category>
		<category><![CDATA[Trends]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/2009/04/13/google-trends-advani-vs-rahul-gandhi-vs-sonia-gandhi/</guid>
		<description><![CDATA[Just out of curiosity, I just did a google trends analysis of Advani, Rahul Gandhi, Sonia Gandhi. Posting the image below. Am not taking sides, not just yet..   . Click on the pic to see the full size image

Technorati Tags: India,Elections,Advani,Rahul,Gandhi,Sonia,Google,Trends
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=125&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just out of curiosity, I just did a google trends analysis of Advani, Rahul Gandhi, Sonia Gandhi. Posting the image below. Am not taking sides, not just yet.. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  . Click on the pic to see the full size image</p>
<p><a href="http://allajunaki.files.wordpress.com/2009/04/trends-advani-vs-rahul-gandhi-vs-sonia-gandhi2.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://allajunaki.files.wordpress.com/2009/04/trends-advani-vs-rahul-gandhi-vs-sonia-gandhi-thumb1.jpg?w=644&#038;h=389" border="0" alt="Trends Advani vs Rahul Gandhi vs Sonia Gandhi" width="644" height="389" /></a></p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:96cc5314-e1e4-4560-be68-795ef8ca6253" class="wlWriterSmartContent" style="display:inline;margin:0;padding:0;">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/India">India</a>,<a rel="tag" href="http://technorati.com/tags/Elections">Elections</a>,<a rel="tag" href="http://technorati.com/tags/Advani">Advani</a>,<a rel="tag" href="http://technorati.com/tags/Rahul">Rahul</a>,<a rel="tag" href="http://technorati.com/tags/Gandhi">Gandhi</a>,<a rel="tag" href="http://technorati.com/tags/Sonia">Sonia</a>,<a rel="tag" href="http://technorati.com/tags/Google">Google</a>,<a rel="tag" href="http://technorati.com/tags/Trends">Trends</a></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=125&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/04/13/google-trends-advani-vs-rahul-gandhi-vs-sonia-gandhi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>

		<media:content url="http://allajunaki.files.wordpress.com/2009/04/trends-advani-vs-rahul-gandhi-vs-sonia-gandhi-thumb1.jpg" medium="image">
			<media:title type="html">Trends Advani vs Rahul Gandhi vs Sonia Gandhi</media:title>
		</media:content>
	</item>
		<item>
		<title>Microsoft Surface Spoof</title>
		<link>http://allajunaki.wordpress.com/2009/04/13/microsoft-surface-spoof/</link>
		<comments>http://allajunaki.wordpress.com/2009/04/13/microsoft-surface-spoof/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 03:44:21 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Spoof]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[surface]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/2009/04/13/microsoft-surface-spoof/</guid>
		<description><![CDATA[I was browsing through wordpress blogs and I came across a post that posted this youtube video. I liked the comment on the part where he is routing to go somewhere on surface.



Technorati Tags: Microsoft,surface,spoof,funny,youtube,apple
Due credit goes to : http://burnsar.wordpress.com/2007/06/23/microsoft-surface-video-spoof/ ( I saw this video there first    )
      [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=119&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was browsing through wordpress blogs and I came across a post that posted this youtube video. I liked the comment on the part where he is routing to go somewhere on surface.</p>
<div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:0331d9c7-c4fd-4b9c-962f-b0861815a58b" class="wlWriterSmartContent" style="display:inline;margin:0;padding:0;">
<div><span style="text-align:center; display: block;"><a href="http://allajunaki.wordpress.com/2009/04/13/microsoft-surface-spoof/"><img src="http://img.youtube.com/vi/CZrr7AZ9nCY/2.jpg" alt="" /></a></span></div>
</div>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c61a6244-7023-4c3f-a000-bb15397e2590" class="wlWriterSmartContent" style="display:inline;margin:0;padding:0;">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/Microsoft">Microsoft</a>,<a rel="tag" href="http://technorati.com/tags/surface">surface</a>,<a rel="tag" href="http://technorati.com/tags/spoof">spoof</a>,<a rel="tag" href="http://technorati.com/tags/funny">funny</a>,<a rel="tag" href="http://technorati.com/tags/youtube">youtube</a>,<a rel="tag" href="http://technorati.com/tags/apple">apple</a></div>
<p>Due credit goes to : <a title="http://burnsar.wordpress.com/2007/06/23/microsoft-surface-video-spoof/" href="http://burnsar.wordpress.com/2007/06/23/microsoft-surface-video-spoof/">http://burnsar.wordpress.com/2007/06/23/microsoft-surface-video-spoof/</a> ( I saw this video there first <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   )</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=119&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/04/13/microsoft-surface-spoof/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/CZrr7AZ9nCY/2.jpg" medium="image" />
	</item>
		<item>
		<title>Vista BSOD!</title>
		<link>http://allajunaki.wordpress.com/2009/04/11/vista-bsod/</link>
		<comments>http://allajunaki.wordpress.com/2009/04/11/vista-bsod/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 07:26:01 +0000</pubDate>
		<dc:creator>allajunaki</dc:creator>
				<category><![CDATA[Geeky]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[BSOD]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://allajunaki.wordpress.com/2009/04/11/vista-bsod/</guid>
		<description><![CDATA[Never thought I will have to see the Blue Screen of Dread&#8230;err death on my vista. But thats exactly what I got today morning..  
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=118&subd=allajunaki&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Never thought I will have to see the Blue Screen of Dread&#8230;err death on my vista. But thats exactly what I got today morning.. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<div id="attachment_117" class="wp-caption alignright" style="width: 554px"><img src="http://allajunaki.files.wordpress.com/2009/04/dscf4926.jpg?w=544&#038;h=408" alt="Untimley Death of Vista x(" title="VISTA BSOD" width="544" height="408" class="size-full wp-image-117" /><p class="wp-caption-text">Untimley Death of Vista x(</p></div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/allajunaki.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/allajunaki.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/allajunaki.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/allajunaki.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/allajunaki.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/allajunaki.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/allajunaki.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/allajunaki.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/allajunaki.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/allajunaki.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=allajunaki.wordpress.com&blog=3402408&post=118&subd=allajunaki&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://allajunaki.wordpress.com/2009/04/11/vista-bsod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8341b697ec43b20eab598c67f98457be?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">allajunaki</media:title>
		</media:content>

		<media:content url="http://allajunaki.files.wordpress.com/2009/04/dscf4926.jpg" medium="image">
			<media:title type="html">VISTA BSOD</media:title>
		</media:content>
	</item>
	</channel>
</rss>