<?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>Gautham&#039;s Tech Blog</title>
	<atom:link href="http://gtmstechblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gtmstechblog.wordpress.com</link>
	<description>Just another tech blog</description>
	<lastBuildDate>Wed, 11 Jan 2012 12:47:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gtmstechblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Gautham&#039;s Tech Blog</title>
		<link>http://gtmstechblog.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gtmstechblog.wordpress.com/osd.xml" title="Gautham&#039;s Tech Blog" />
	<atom:link rel='hub' href='http://gtmstechblog.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Under-used Keyboard Shortcuts for Text Editing</title>
		<link>http://gtmstechblog.wordpress.com/2011/10/05/under-used-keyboard-shortcuts-for-text-editing/</link>
		<comments>http://gtmstechblog.wordpress.com/2011/10/05/under-used-keyboard-shortcuts-for-text-editing/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 17:31:51 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[keyboard shortcuts]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[shortcuts]]></category>

		<guid isPermaLink="false">https://gtmstechblog.wordpress.com/2011/10/05/under-used-keyboard-shortcuts-for-text-editing/</guid>
		<description><![CDATA[Most people know about the basic windows shortcuts for Cut, Copy and Paste (right? ), but there are a few more shortcuts that I consider are invaluable when writing text. And I was surprised that most people don’t really use them. I am talking about the Home and End keys and their respective combinations with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=142&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most people know about the basic windows shortcuts for Cut, Copy and Paste (right? <img style="border-style:none;" class="wlEmoticon wlEmoticon-smilewithtongueout" alt="Smile with tongue out" src="http://gtmstechblog.files.wordpress.com/2011/10/wlemoticon-smilewithtongueout.png?w=604">), but there are a few more shortcuts that I consider are invaluable when writing text. And I was surprised that most people don’t really use them. <strong>I am talking about the Home and End keys and their respective combinations with Ctrl and/or Shift keys</strong>.</p>
<ul>
<li>Home: Takes the cursor to the beginning of the current line.</li>
<li>End: Takes the cursor to the end of the current line (after the last character in the line).</li>
<li>Ctrl + Home: Takes the cursor to the very beginning of the active text field/document.</li>
<li>Ctrl + End: Takes the cursor to the very end of the active text field/document.</li>
<li>Shift + Home/End/Right/Left/Up/Down: Selects all the text between the initial cursor position and the final cursor position.</li>
<li>Ctrl + A: Selects everything in the active text field.</li>
</ul>
<p>All coders and pretty much everyone who types a lot of text in your everyday life, for the love of God, drill these shortcuts into your minds! I promise your productivity will increase at least by 30%.&nbsp; Here are a few examples of usages:</p>
<ol>
<li><strong>Example 1 (Ctrl + A):</strong> Say you want to post a rather long status update in Facebook and twitter. Type out your message, hit Ctrl + A, then Ctrl + C. Then hit the post button in Facebook, go to Twitter, click on the “What’s New” text box, press Ctrl + V and post it.</li>
<li><strong>Example 2 (Shift + Home):</strong> Say you’ve written a complex printf() statement in C to display some information and you have to repeat the same output with a few changes about 5 times. Here’s what you do: Type out the first printf() statement. Your cursor will be at the end of the line right. Now press Shift + Home. The cursor will move to the beginning of the line because of the Home key, but it will also select all the text along the way because of the Shift key. Now copy and paste it as many times as you want. You have thus successfully avoided moving your hand to the mouse, moving the cursor and selecting the text by mouse movement. You’ve achieved all that in just 2 keystrokes: Shift + Home, without taking your hand off the keyboard. <strong>Note that you can use Shift with the arrow keys to select text letter by letter.</strong></li>
</ol>
<p>Aside from these shortcuts, I implore you to familiarize yourself with the keyboard shortcuts of the programs you use the most. It will drastically reduce the time needed to perform simple but repetitive actions. Just use Google, because as they say, <a href="http://www.giyf.com/">Google is your friend</a>! And if you don’t listen, then <a href="http://justfuckinggoogleit.com/">this</a> <img style="border-style:none;" class="wlEmoticon wlEmoticon-smilewithtongueout" alt="Smile with tongue out" src="http://gtmstechblog.files.wordpress.com/2011/10/wlemoticon-smilewithtongueout.png?w=604"></p>
<p>Ciao!</p>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/coding-2/'>coding</a>, <a href='http://gtmstechblog.wordpress.com/tag/keyboard-shortcuts/'>keyboard shortcuts</a>, <a href='http://gtmstechblog.wordpress.com/tag/productivity/'>productivity</a>, <a href='http://gtmstechblog.wordpress.com/tag/shortcuts/'>shortcuts</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=142&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2011/10/05/under-used-keyboard-shortcuts-for-text-editing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/10/wlemoticon-smilewithtongueout.png" medium="image">
			<media:title type="html">Smile with tongue out</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/10/wlemoticon-smilewithtongueout.png" medium="image">
			<media:title type="html">Smile with tongue out</media:title>
		</media:content>
	</item>
		<item>
		<title>The odd details of C++</title>
		<link>http://gtmstechblog.wordpress.com/2011/10/05/the-odd-details-of-c/</link>
		<comments>http://gtmstechblog.wordpress.com/2011/10/05/the-odd-details-of-c/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 16:54:12 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">https://gtmstechblog.wordpress.com/2011/10/05/the-odd-details-of-c/</guid>
		<description><![CDATA[I’m revisiting C++ with the intention of figuring out the details. This post will contain various little things and questions and pretty much anything. I intend this list to be “something that you won’t typically find in most books”, a list of the details of the C++ language. Not to mention, this page will be [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=140&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I’m revisiting C++ with the intention of figuring out the details. This post will contain various little things and questions and pretty much anything. I intend this list to be “something that you won’t typically find in most books”, a list of the details of the C++ language. Not to mention, this page will be changing constantly as I add new information or get answers to questions listed.</p>
<p>Legend:</p>
<p>(?) – Still needs confirmation, some info missing.</p>
<p>And the list begins:</p>
<ol>
<li>Structured vs. Object oriented programming: Structured programming is task-centric where as object oriented programming is object-centric. For example, in structured approach, when a task is to be performed, we first think of subroutines and then the data structures. In OO approach, we first think of the objects needed to perform the task, then we design the details of the objects and their behaviour. C is a structured language, C++ is an object oriented language.
<li>(?) Default values for data types in C++: When variables are declared and not initialized, what are their values? I believe number types will be set to 0, but it might depend on the compiler. For example, C-Free 4 gave garbage values to int, float and char variables. But when run multiple times, the value for int kept changing but the values for float and char remained the same. Confirm.
<li>(?) String Mutability: Need to explore string mutability, even by using pointers. For example, when I have a char pointer, can I still use it when I change the string length?Also need to explore String class capabilities.
<li>Static variables and functions: Figure out 1.Where static variables can be a.declared b.initialized and experiment on their scope.</li>
</ol>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/c/'>C++</a>, <a href='http://gtmstechblog.wordpress.com/tag/coding-2/'>coding</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=140&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2011/10/05/the-odd-details-of-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>
	</item>
		<item>
		<title>Tasty Static &#8211; the modern day SkyRoads remix</title>
		<link>http://gtmstechblog.wordpress.com/2011/08/27/tasty-static-the-modern-day-skyroads-remix/</link>
		<comments>http://gtmstechblog.wordpress.com/2011/08/27/tasty-static-the-modern-day-skyroads-remix/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 13:01:59 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[BlueMoon]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[Interactive]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[SkyRoads]]></category>
		<category><![CDATA[Tasty Static]]></category>
		<category><![CDATA[trailer]]></category>

		<guid isPermaLink="false">https://gtmstechblog.wordpress.com/2011/08/27/tasty-static-the-modern-day-skyroads-remix/</guid>
		<description><![CDATA[Fans of BlueMoon Interactive’s DOS game SkyRoads, rejoice! I found an excellent remake of the classic: Tasty Static. The game is FANTASTIC, take my word for it Or don’t. Just check the screenshots and the trailer. The basic gameplay is the same as SkyRoads, you have to reach the end of a road by jumping [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=137&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Fans of <a href="http://www.bluemoon.ee/history/skyroads/">BlueMoon Interactive’s DOS game SkyRoads</a>, rejoice! I found an excellent remake of the classic: <a href="http://www.tastystatic.com/">Tasty Static</a>. The game is FANTASTIC, take my word for it <img style="border-style:none;" class="wlEmoticon wlEmoticon-openmouthedsmile" alt="Open-mouthed smile" src="http://gtmstechblog.files.wordpress.com/2011/08/wlemoticon-openmouthedsmile.png?w=604"> Or don’t. Just check the <a href="http://www.tastystatic.com/media.php">screenshots and the trailer</a>.</p>
<p>The basic gameplay is the same as SkyRoads, you have to reach the end of a road by jumping and moving on differently setup platforms. There are different types of platforms, ones which make you go faster, slow you down, lava blocks which burn you on contact and bumpy blocks which make you hop when you touch them. There are also a few extras like shooting lasers and backward mode. The visuals are very nice. The ship and all the other effects are simple polygons, but they still manage to look fantastic. The best part about the game, though, is the sound track. I can’t describe it in words. Tasty Static is freeware, so just head over to the <a href="http://www.tastystatic.com/">website</a> and download the game. Did I mention it comes for Windows, Mac and Linux operating systems? This game is truly a gem, and it inspires me to see such amazing work in the freeware domain.</p>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/bluemoon/'>BlueMoon</a>, <a href='http://gtmstechblog.wordpress.com/tag/freeware/'>freeware</a>, <a href='http://gtmstechblog.wordpress.com/tag/gaming/'>Gaming</a>, <a href='http://gtmstechblog.wordpress.com/tag/interactive/'>Interactive</a>, <a href='http://gtmstechblog.wordpress.com/tag/linux/'>Linux</a>, <a href='http://gtmstechblog.wordpress.com/tag/mac/'>Mac</a>, <a href='http://gtmstechblog.wordpress.com/tag/osx/'>OSX</a>, <a href='http://gtmstechblog.wordpress.com/tag/skyroads/'>SkyRoads</a>, <a href='http://gtmstechblog.wordpress.com/tag/tasty-static/'>Tasty Static</a>, <a href='http://gtmstechblog.wordpress.com/tag/trailer/'>trailer</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/137/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/137/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/137/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=137&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2011/08/27/tasty-static-the-modern-day-skyroads-remix/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/08/wlemoticon-openmouthedsmile.png" medium="image">
			<media:title type="html">Open-mouthed smile</media:title>
		</media:content>
	</item>
		<item>
		<title>Samsung Infuse 4G vs HTC Inspire 4G vs iPhone 4</title>
		<link>http://gtmstechblog.wordpress.com/2011/08/19/samsung-infuse-4g-vs-htc-inspire-4g-vs-iphone-4/</link>
		<comments>http://gtmstechblog.wordpress.com/2011/08/19/samsung-infuse-4g-vs-htc-inspire-4g-vs-iphone-4/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 11:55:14 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Phones]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[comparison]]></category>
		<category><![CDATA[Gingerbread]]></category>
		<category><![CDATA[Infuse]]></category>
		<category><![CDATA[Inspire]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[Sense]]></category>
		<category><![CDATA[TouchWiz]]></category>
		<category><![CDATA[vs]]></category>

		<guid isPermaLink="false">https://gtmstechblog.wordpress.com/2011/08/19/samsung-infuse-4g-vs-htc-inspire-4g-vs-iphone-4/</guid>
		<description><![CDATA[A friend of mine recently went to the US to pursue his Masters degree, and he has asked me to help him decide between 3 phones: Samsung Infuse 4G, HTC Inspire 4G and Apple iPhone 4. I used the internet to quickly compare the phones and had to suggest Samsung Infuse 4G. Here’s my response: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=128&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A friend of mine recently went to the US to pursue his Masters degree, and he has asked me to help him decide between 3 phones:</p>
<p><a href="http://www.samsung.com/us/mobile/cell-phones/SGH-I997ZKAATT">Samsung Infuse 4G</a>, <a href="http://www.htc.com/us/products/inspire-att">HTC Inspire 4G</a> and <a href="http://www.apple.com/iphone/design/">Apple iPhone 4</a>.</p>
<p>I used the internet to quickly compare the phones and had to suggest Samsung Infuse 4G. Here’s my response:</p>
<ul>
<ul>
<ul>
<li>Between Samsung Infuse 4G and HTC Inspire 4G, <a href="http://www.compare-cellphones.org/Samsung-Infuse-4G-vs-HTC-Inspire-4G">go for Samsung Infuse (click me)</a>. Except maybe for looks, or the UI. HTC has Sense UI where as Samsung has TouchWiz UI. I personally like TouchWiz. Check some YouTube videos to get a better idea.</li>
<li>Between Samsung Infuse 4G and iPhone 4, <a href="http://www.compare-cellphones.org/Samsung-Infuse-4G-vs-Apple-iPhone-4">go with Samsung Infuse 4G (click me)</a>. The pros outweigh the cons in my opinion. But since you already have the iPad, having an iPhone will give you a more integrated and simple experience. But think about Bluetooth file transfer. On an iPhone, you can&#8217;t transfer files through Bluetooth to other brand phones, only to an iPhone.</li>
<li>Between HTC Inspire 4G and iPhone 4, go with whatever you like, <a href="http://www.compare-cellphones.org/HTC-Inspire-4G-vs-Apple-iPhone-4">according to your preferences (click me)</a>.</li>
</ul>
</ul>
</ul>
<p>All in all, if you ask me, you should disregard the HTC Inspire 4G altogether. <strong>Samsung Infuse 4G is the overall winner</strong>, but if you want the Apple experience, go with the iPhone. Just remember that Samsung Infuse will come with Froyo (Android 2.2), not the latest Gingerbread (Android 2.3). But apparently, <a href="http://phandroid.com/2011/08/12/att-samsung-infuse-4g-will-receive-gingerbread-update-this-month/">Gingerbread for Infuse 4G is on its way</a>, so it shouldn&#8217;t be an issue.</p>
<ul>
<ul>Remember that I have not checked detailed reviews of each phone. If you REALLY want to know your phone before you buy it, you should read through detailed reviews:</p>
<ul>
<li><a href="http://www.phonearena.com/reviews/Samsung-Infuse-4G-Review_id2733">Detailed review of Samsung Infuse 4G</a></li>
<li><a href="http://www.phonearena.com/reviews/HTC-Inspire-4G-Review_id2661">Detailed review of HTC Inspire 4G</a></li>
<li><a href="http://www.phonearena.com/reviews/Apple-iPhone-4-Review_id2463">Detailed review of iPhone 4</a></li>
</ul>
</ul>
</ul>
<p>Look for reviews on YouTube if you don&#8217;t feel like reading. Let me know what you&#8217;ve decided <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<ul>PS: btw, in those comparisons, disregard the &#8220;More Apps Available&#8221; factor, because it honestly shouldn&#8217;t make a difference to you between Apple&#8217;s 350K apps vs Android&#8217;s 270K apps. The important and most useful apps are covered in both the platforms. If you ask me, Apple probably has more</ul>
</ul>
<p><a href="http://www.heartlessdoll.com/2009/02/10_absolutely_useless_iphone_apps_that_made_someon.php">redundant and useless apps which actually cost money</a></p>
<ul>.</ul>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/android/'>Android</a>, <a href='http://gtmstechblog.wordpress.com/tag/apple/'>Apple</a>, <a href='http://gtmstechblog.wordpress.com/tag/comparison/'>comparison</a>, <a href='http://gtmstechblog.wordpress.com/tag/gingerbread/'>Gingerbread</a>, <a href='http://gtmstechblog.wordpress.com/tag/infuse/'>Infuse</a>, <a href='http://gtmstechblog.wordpress.com/tag/inspire/'>Inspire</a>, <a href='http://gtmstechblog.wordpress.com/tag/samsung/'>Samsung</a>, <a href='http://gtmstechblog.wordpress.com/tag/sense/'>Sense</a>, <a href='http://gtmstechblog.wordpress.com/tag/touchwiz/'>TouchWiz</a>, <a href='http://gtmstechblog.wordpress.com/tag/vs/'>vs</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=128&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2011/08/19/samsung-infuse-4g-vs-htc-inspire-4g-vs-iphone-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>
	</item>
		<item>
		<title>Firefox 6 Released</title>
		<link>http://gtmstechblog.wordpress.com/2011/08/17/firefox-6-released/</link>
		<comments>http://gtmstechblog.wordpress.com/2011/08/17/firefox-6-released/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 12:23:37 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox 6]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[web browser]]></category>

		<guid isPermaLink="false">https://gtmstechblog.wordpress.com/2011/08/17/firefox-6-released/</guid>
		<description><![CDATA[So what’s the deal with Mozilla? I know they’ve changed to a rapid release cycle, but it doesn’t feel like it was too long ago that version 4 was released. Soon after, version 5 didn’t bring any groundbreaking changes to the table either. Now, they’ve released version 6. Judging from FF6’s release notes, most of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=119&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So what’s the deal with Mozilla? I know they’ve changed to a rapid release cycle, but it doesn’t feel like it was too long ago that version 4 was released. Soon after, version 5 didn’t bring any groundbreaking changes to the table either. Now, they’ve released version 6.</p>
<p align="center"><a href="http://www.mozilla.org/firefox?WT.mc_id=aff_en04&amp;WT.mc_ev=click"><img border="0" alt="Firefox Download Button" src="http://www.mozilla.org/contribute/buttons/110x32bubble_b.png" /></a> </p>
<p>Judging from FF6’s release notes, most of the changes are under the hood:</p>
<blockquote><p><font color="#333333">The latest version of Firefox has the following changes:</font></p>
<ul>
<li><font color="#333333">The address bar now highlights the domain of the website you&#8217;re visiting </font></li>
<li><font color="#333333">Streamlined the look of the </font><a href="http://blog.margaretleibovic.com/post/4769940235/identity-block-uplift"><font color="#333333">site identity block</font></a><font color="#333333"> </font></li>
<li><font color="#333333">Added support for the latest draft version of WebSockets with a </font><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=659324"><font color="#333333">prefixed API</font></a><font color="#333333"> </font></li>
<li><font color="#333333">Added support for </font><a href="http://hacks.mozilla.org/2011/06/a-wall-powered-by-eventsource-and-server-sent-events/"><font color="#333333">EventSource / server-sent events</font></a><font color="#333333"> </font></li>
<li><font color="#333333">Added support for </font><a href="http://dbaron.org/log/20110422-matchMedia"><font color="#333333">window.matchMedia</font></a><font color="#333333"> </font></li>
<li><font color="#333333">Added </font><a href="http://antennasoft.net/robcee/2011/06/08/scratchpad-canvas-demo/"><font color="#333333">Scratchpad</font></a><font color="#333333">, an interactive JavaScript prototyping environment </font></li>
<li><font color="#333333">Added a new Web Developer menu item and moved development-related items into it </font></li>
<li><font color="#333333">Improved usability of the </font><a href="http://blog.mozilla.com/devtools/2011/05/28/web-console-where-you-want-it-to-be-with-nicer-completion-and-more/"><font color="#333333">Web Console</font></a><font color="#333333"> </font></li>
<li><font color="#333333">Improved the discoverability of Firefox Sync </font></li>
<li><font color="#333333">Reduced browser startup time when using Panorama </font></li>
<li><font color="#333333">Fixed several stability issues </font></li>
<li><font color="#333333">Fixed several </font><a href="http://www.mozilla.org/security/known-vulnerabilities/firefox.html#firefox6"><font color="#333333">security issues</font></a> </li>
</ul>
</blockquote>
<p><font color="#000000">I’m used to seeing major changes or overhauls with an increase in version number by 1. Oh well. I hope by the time FF reaches it’s double digit version, it’ll be different from FF6.</font></p>
<p><font color="#000000">You can download Firefox 6 from the </font><font color="#000000">official website</font><font color="#000000">, if your browser hasn’t already prompted you about the update. One word of caution though. Remember when some of your add-ons were rendered useless with the update from 3.6 to 4? I don’t expect more add-ons to be unsupported, because versions 4, 5 and 6 are similar, but watch out. Until next time.</font></p>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/browser/'>browser</a>, <a href='http://gtmstechblog.wordpress.com/tag/firefox/'>firefox</a>, <a href='http://gtmstechblog.wordpress.com/tag/firefox-6/'>firefox 6</a>, <a href='http://gtmstechblog.wordpress.com/tag/news/'>news</a>, <a href='http://gtmstechblog.wordpress.com/tag/web-browser/'>web browser</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/119/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/119/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/119/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=119&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2011/08/17/firefox-6-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>

		<media:content url="http://www.mozilla.org/contribute/buttons/110x32bubble_b.png" medium="image">
			<media:title type="html">Firefox Download Button</media:title>
		</media:content>
	</item>
		<item>
		<title>KDE for Windows</title>
		<link>http://gtmstechblog.wordpress.com/2011/08/09/kde-for-windows/</link>
		<comments>http://gtmstechblog.wordpress.com/2011/08/09/kde-for-windows/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 10:15:00 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Desktop Customization]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[KDE for Windows]]></category>

		<guid isPermaLink="false">https://gtmstechblog.wordpress.com/2011/08/09/kde-for-windows/</guid>
		<description><![CDATA[The computer desktop is an essential part of our computing experience. It is the starting point, the home page, the single point in space-time continuum that we can come back to. That’s all very good. But the Windows desktop looks old. Despite so many changes and developments in interface technology, we are still stuck with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=117&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The computer desktop is an essential part of our computing experience. It is the starting point, the home page, the single point in space-time continuum that we can come back to. That’s all very good. But the Windows desktop looks <em>old</em>. Despite so many changes and developments in interface technology, we are still stuck with the same old desktop from Windows 95. The taskbar offers little improvement from previous versions. All we have is a Start button, active program list, pinned programs, and a system tray, which hides some useful functionality like adjusting volume. These kind of things should have become easy by now.</p>
<p><a href="http://gtmstechblog.files.wordpress.com/2011/08/w95_vs_w7.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border-width:0;" title="Windows 95 and Windows 7 Desktop Comparision" border="0" alt="Win95_vs_Win7" src="http://gtmstechblog.files.wordpress.com/2011/08/w95_vs_w7_thumb.jpg?w=450&#038;h=177" width="450" height="177" /></a></p>
<p>I’d have liked if the desktops started acting more like those in smart phones, i.e, widgetized/realtime functionality. Just check <em>any</em> smartphone interface, be it HTC’s Sense or Samsung’s TouchWiz, or even Symbian’s Widgeted interface. They use that space on the screen so efficiently. They either provide useful realtime information in a very readable manner (like time and date, news feeds, facebook updates…), or provide easy access to most used tasks in one click (or touch). Why hasn’t Windows done anything like that? Sure they have Gadgets, but they are little more than trinkets which are satisfied with being the auxiliary components instead of seizing the desktop.</p>
<p>In this department, the Linux community has made a lot of progress. Of course, I have <em>no</em> idea about the iOS, mainly because I’ve never seen one in my life. Take Gnome for instance. It offers so many widgets and multiple taskbars for us to customize. We can populate the bars with useful trinkets like dictionary, quick search, multimedia controls, clipboard, copy stack, volume controls, and what not. Ubuntu, in particular, has integrated social network into it’s operating system.</p>
<p><a href="http://gtmstechblog.files.wordpress.com/2011/08/selection_0011.png"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;float:left;padding-top:0;border-width:0;" title="Selection_0011" border="0" alt="Selection_0011" align="left" src="http://gtmstechblog.files.wordpress.com/2011/08/selection_0011_thumb.png?w=291&#038;h=58" width="291" height="58" /></a> How cool is that? And why hasn’t Windows have something like that already? And then there is KDE. It has made so many radical changes in it’s UI that the learning curve is rather steep. But it offers so much promise and it implements the added functionality I’ve been craving for. KDE is headed in the right direction, and I really wanted to experience it.</p>
<p><a href="http://gtmstechblog.files.wordpress.com/2011/08/opensuse114kdenetbookpages.png"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="OpenSUSE 11.4 KDE Netbook Desktop" border="0" alt="OpenSUSE114KDENetbookPages" src="http://gtmstechblog.files.wordpress.com/2011/08/opensuse114kdenetbookpages_thumb.png?w=450&#038;h=283" width="450" height="283" /></a></p>
<p>To that end I installed openSUSE on my computer, but I guess I was too used to the look of the old explorer paradigm. I found the Gnome/Windows explorers more agreeable. In the end, I removed it because I was simply not using it too often.</p>
<p>I was looking for a Windows alternative to KDE’s Folder View widget, which essentially displays the contents of a selected folder in a nice panel on the desktop. This was so that I can remove clutter on my desktop and have easy access to all my frequently used locations, not to mention clear up desktop space for a more unrestricted and complete Rainmeter setup (more on this some other time). And guess what I found from the official makers of KDE: the <a href="http://windows.kde.org/" target="_blank">KDE for Windows</a> package! It enables one to run KDE applications in Windows alongside Windows Explorer and native Windows applications. What’s more, it allows us to use the KDE desktop over the Windows desktop (replaces the desktop area, not the taskbar).</p>
<p><a href="http://gtmstechblog.files.wordpress.com/2011/08/kde_on_windows.jpg"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="KDE_on_Windows" border="0" alt="KDE_on_Windows" src="http://gtmstechblog.files.wordpress.com/2011/08/kde_on_windows_thumb.jpg?w=450&#038;h=255" width="450" height="255" /></a></p>
<p>I was pretty excited, and installed the required packages. Alas, it’s not perfect. The apps crash randomly, and messing around with the desktop widgets also crashes certain processes. It’s not as seamless as KDE on openSUSE, but it’s still something. The Folder View widget works, and it’s probably the only reason I downloaded this. But opening a folder opens it in the KDE explorer, not Windows explorer.</p>
<p>Oh well, it’s a start. Lot’s of exploring to do still. I’ll write again when I have made progress. And since KDE for Windows isn’t in it’s final stages of development, let’s hope time fixes all the bugs.</p>
<p>On an other note, one other way to improve your desktop functionality (especially in terms of realtime information) is Rainmeter. Even if it has a slightly steep learning curve, it is just phenomenal. Take the <a href="http://omnimo.info/" target="_blank">Omnimo skin suite</a>, for instance. It turns your desktop to a full on Windows Phone 7 desktop, with loads of functionality.</p>
<p><a href="http://karmat111.deviantart.com/art/My-Omnimo-Panels-164948973"><img style="background-image:none;border-bottom:0;border-left:0;padding-left:0;padding-right:0;display:inline;border-top:0;border-right:0;padding-top:0;" title="karmat111&#039;s Omnimo Setup" border="0" alt="My_Omnimo_Panels_by_karmat111" src="http://gtmstechblog.files.wordpress.com/2011/08/my_omnimo_panels_by_karmat111.png?w=450&#038;h=255" width="450" height="255" /></a></p>
<p>The only problem is handling the desktop icons. You’ll have to find a way to deal with them. More on Rainmeter later. This post is more of a record than an article. My next article will explore what the ideal and prodictive desktop is supposed to be, and how we can achieve something close with what is available freely. Until next time.</p>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/desktop/'>Desktop</a>, <a href='http://gtmstechblog.wordpress.com/tag/desktop-customization/'>Desktop Customization</a>, <a href='http://gtmstechblog.wordpress.com/tag/kde/'>KDE</a>, <a href='http://gtmstechblog.wordpress.com/tag/kde-for-windows/'>KDE for Windows</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/117/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/117/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/117/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=117&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2011/08/09/kde-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/08/w95_vs_w7_thumb.jpg" medium="image">
			<media:title type="html">Windows 95 and Windows 7 Desktop Comparision</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/08/selection_0011_thumb.png" medium="image">
			<media:title type="html">Selection_0011</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/08/opensuse114kdenetbookpages_thumb.png" medium="image">
			<media:title type="html">OpenSUSE 11.4 KDE Netbook Desktop</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/08/kde_on_windows_thumb.jpg" medium="image">
			<media:title type="html">KDE_on_Windows</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/08/my_omnimo_panels_by_karmat111.png" medium="image">
			<media:title type="html">karmat111&#039;s Omnimo Setup</media:title>
		</media:content>
	</item>
		<item>
		<title>More 3D pics from my Leh trip</title>
		<link>http://gtmstechblog.wordpress.com/2011/07/25/more-3d-pics-from-my-leh-trip/</link>
		<comments>http://gtmstechblog.wordpress.com/2011/07/25/more-3d-pics-from-my-leh-trip/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 14:43:56 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[3d image]]></category>
		<category><![CDATA[red blue glasses]]></category>
		<category><![CDATA[stereoscopic 3D]]></category>

		<guid isPermaLink="false">https://gtmstechblog.wordpress.com/2011/07/25/more-3d-pics-from-my-leh-trip/</guid>
		<description><![CDATA[&#160; Remember my post about Stereoscopic 3D? I have processed more such photos on the occasion of my family trip to Leh, Ladakh. Use your typical red-blue 3D glasses to view: If I had known they’d turn out so great, I would have made time to take more, which would really shine in 3D. To [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=107&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>Remember my post about <a href="http://gtmstechblog.wordpress.com/2010/04/06/stereoscopic-vision/" target="_blank">Stereoscopic 3D</a>? I have processed more such photos on the occasion of my family trip to <a href="http://en.wikipedia.org/wiki/Leh" target="_blank">Leh, Ladakh</a>. Use your typical red-blue 3D glasses to view:</p>
<p><a href="http://gtmstechblog.files.wordpress.com/2011/07/gtm.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="Your beloved blog author." src="http://gtmstechblog.files.wordpress.com/2011/07/gtm_thumb.jpg?w=244&#038;h=181" alt="Me." width="244" height="181" border="0" /></a></p>
<p><a href="http://gtmstechblog.files.wordpress.com/2011/07/dad.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="Your beloved blog author's dad." src="http://gtmstechblog.files.wordpress.com/2011/07/dad_thumb.jpg?w=244&#038;h=183" alt="My dad." width="244" height="183" border="0" /></a></p>
<p><a href="http://gtmstechblog.files.wordpress.com/2011/07/road.jpg"><img style="background-image:none;padding-left:0;padding-right:0;display:inline;padding-top:0;border:0;" title="Road outside Thiksey Monastery" src="http://gtmstechblog.files.wordpress.com/2011/07/road_thumb.jpg?w=244&#038;h=186" alt="Road" width="244" height="186" border="0" /></a></p>
<p><a href="http://gtmstechblog.files.wordpress.com/2011/07/thikse-monastery.jpg"><img class="alignnone size-medium wp-image-125" title="Thikse Monastery" src="http://gtmstechblog.files.wordpress.com/2011/07/thikse-monastery.jpg?w=240&#038;h=177" alt="thikse_monastery" width="240" height="177" /></a></p>
<p>If I had known they’d turn out so great, I would have made time to take more, which would really shine in 3D. To see how 3D works and how one might make 3D photos, refer to my post about stereoscopic vision. And I compel you to use Google and Youtube for really good tutorials. Until next time folks.</p>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/3d/'>3d</a>, <a href='http://gtmstechblog.wordpress.com/tag/3d-image/'>3d image</a>, <a href='http://gtmstechblog.wordpress.com/tag/red-blue-glasses/'>red blue glasses</a>, <a href='http://gtmstechblog.wordpress.com/tag/stereoscopic-3d/'>stereoscopic 3D</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=107&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2011/07/25/more-3d-pics-from-my-leh-trip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/07/gtm_thumb.jpg" medium="image">
			<media:title type="html">Your beloved blog author.</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/07/dad_thumb.jpg" medium="image">
			<media:title type="html">Your beloved blog author&#039;s dad.</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/07/road_thumb.jpg" medium="image">
			<media:title type="html">Road outside Thiksey Monastery</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/07/thikse-monastery.jpg?w=300" medium="image">
			<media:title type="html">Thikse Monastery</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Live Writer</title>
		<link>http://gtmstechblog.wordpress.com/2011/07/23/windows-live-writer/</link>
		<comments>http://gtmstechblog.wordpress.com/2011/07/23/windows-live-writer/#comments</comments>
		<pubDate>Sat, 23 Jul 2011 14:10:00 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogging client]]></category>
		<category><![CDATA[live writer]]></category>
		<category><![CDATA[weblog client]]></category>
		<category><![CDATA[windows live writer]]></category>

		<guid isPermaLink="false">https://gtmstechblog.wordpress.com/2011/07/23/windows-live-writer/</guid>
		<description><![CDATA[I haven’t been blogging much, have I? I have missed a lot of wonderful posts I could have made, like reviews of my new 22 inch LCD monitor, my Logitech MX-518 gaming mouse, my new desk (well, modified the old one), my Sennheiser HD201 circumaural headphones, my wonderful phone Nokia 5230, the C6 firmware mod [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=100&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I haven’t been blogging much, have I? I have missed a lot of wonderful posts I could have made, like reviews of my new 22 inch LCD monitor, my Logitech MX-518 gaming mouse, my new desk (well, modified the old one), my Sennheiser HD201 circumaural headphones, my wonderful phone <a href="http://www.gsmarena.com/nokia_5230-review-427.php" target="_blank">Nokia 5230</a>, the C6 firmware mod ported for Nokia 5230 (<a href="http://forum.dailymobile.se/index.php?topic=27688" target="_blank">by 008Rohit from Daily Mobile Forums</a>) which really REALLY improves productivity, how I then tragically lost my phone ( <img class="wlEmoticon wlEmoticon-cryingface" style="border-style:none;" src="http://gtmstechblog.files.wordpress.com/2011/07/wlemoticon-cryingface.png?w=604" alt="Crying face" /> ), got a new <a href="http://www.gsmarena.com/nokia_x2_01-review-563.php" target="_blank">Nokia X2-01</a> (which sports S40, and is not moddable at all), and a bunch of other things like my new obsession with getting myself an Android phone and why I‘m considering the <a href="http://www.gsmarena.com/samsung_galaxy_ace_s5830-review-573.php" target="_blank">Samsung Galaxy Ace</a>… etc., etc…</p>
<p>One of the reasons has something to do with how inconvenient I find making a new post using WordPress. While the editor is good, I don’t have a quick option for logging into my account from my blog. I have to go to the WordPress homepage to log in. That, and I’m lazy as hell, so I need things to look easy for me to do them.</p>
<p>While cleaning up my PC the other day, I was uninstalling Windows Live Essentials. I got curious and checked out what it has to offer and <a href="http://explore.live.com/windows-live-writer?os=other" target="_blank">Windows Live Writer</a> grabbed my attention. It’s simple and fits in with the whole Windows 7 look and feel. It also offers the ribbon toolbar, which I quite favor. How good it is remains to be seen, as this is still the first post I’m making with it. Let’s see how it turns out.</p>
<p>If anyone knows how I can log into my WordPress account directly from my blog, it might help me. Of course, I’ll be using Live Writer for some time now, but still I’d like to know. My first guess is a theme, or a widget. see you folks <img class="wlEmoticon wlEmoticon-smile" style="border-style:none;" src="http://gtmstechblog.files.wordpress.com/2011/07/wlemoticon-smile.png?w=604" alt="Smile" /></p>
<p>&nbsp;</p>
<p>EDIT:</p>
<p>Ganesh Dhamodkar of <a href="http://blogofreflections.wordpress.com/">Blog of Reflections</a> had this to say:</p>
<blockquote><p>Add the “Meta” widget somewhere in your blog and you will be able to log in directly from your blog <img src="http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1300809600g" alt=":)" /></p></blockquote>
<p>Thanks for the tip bro <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/blogging-client/'>blogging client</a>, <a href='http://gtmstechblog.wordpress.com/tag/live-writer/'>live writer</a>, <a href='http://gtmstechblog.wordpress.com/tag/weblog-client/'>weblog client</a>, <a href='http://gtmstechblog.wordpress.com/tag/windows-live-writer/'>windows live writer</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=100&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2011/07/23/windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/07/wlemoticon-cryingface.png" medium="image">
			<media:title type="html">Crying face</media:title>
		</media:content>

		<media:content url="http://gtmstechblog.files.wordpress.com/2011/07/wlemoticon-smile.png" medium="image">
			<media:title type="html">Smile</media:title>
		</media:content>

		<media:content url="http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif?m=1300809600g" medium="image">
			<media:title type="html">:)</media:title>
		</media:content>
	</item>
		<item>
		<title>An old half-coocked game in Pyglet: Ship Showdown!</title>
		<link>http://gtmstechblog.wordpress.com/2011/06/18/an-old-half-coocked-game-in-pyglet-ship-showdown/</link>
		<comments>http://gtmstechblog.wordpress.com/2011/06/18/an-old-half-coocked-game-in-pyglet-ship-showdown/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 19:10:55 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[game dev]]></category>
		<category><![CDATA[game development]]></category>
		<category><![CDATA[pyglet]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://gtmstechblog.wordpress.com/?p=86</guid>
		<description><![CDATA[My interest in role playing games and the fact that I use the alias &#8220;Fantasist&#8221; online led me to a nice program called RPG Maker 2000, and then to RPG Maker XP (both by Enterbrain) and they finally showed me the way to game development. I&#8217;ve messed around with RMXP&#8217;s scripts and even made a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=86&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My interest in role playing games and the fact that I use the alias &#8220;Fantasist&#8221; online led me to a nice program called RPG Maker 2000, and then to RPG Maker XP (both by Enterbrain) and they finally showed me the way to game development. I&#8217;ve messed around with RMXP&#8217;s scripts and even made a few. Then, I tried a little bit of indy game dev, and my favorite so far is <a title="Pyglet" href="http://www.pyglet.org/">Pyglet</a>.</p>
<p>Here is a little something I developed in Pyglet. I&#8217;ve made many trials and errors and a lot of my experimental work is not published or properly materialized, except this. I know it&#8217;s not complete and it still has a few hitches here and there (nothing that crashes the game though, I hope), but it&#8217;s the most solid chunk of work I&#8217;ve bothered to keep. Now I present to you&#8230;</p>
<h2 style="text-align:center;">Ship Showdown!</h2>
<p><a title="Download Ship Showdown source code" href="http://dl.dropbox.com/u/38383557/Ship%20Showdown.zip">Download Source Code</a> (Dropbox Link)</p>
<p><a title="Download Ship Showdown source code" href="http://www.mediafire.com/?hetx2a7gcol41fw" target="_blank">Mirror</a> (Media Fire)</p>
<p>1. You will need Python installed to run the game.</p>
<p>2. Extract and run the file &#8220;Ship Showdown.py&#8221;</p>
<h2 style="text-align:center;">Screenshots</h2>
<p><img class="alignnone" title="Title Screen" src="http://i.imgur.com/vgvbb.jpg" alt="" width="640" height="480" /></p>
<p><img class="alignnone" title="Pre-game Options" src="http://i.imgur.com/8Iv99.jpg" alt="" width="640" height="480" /></p>
<p><img class="alignnone" title="In-game screenshot" src="http://i.imgur.com/VoS0d.jpg" alt="" width="640" height="480" /></p>
<p><img class="alignnone" title="In-game screenshot" src="http://i.imgur.com/Y1gAI.jpg" alt="" width="640" height="480" /></p>
<p>I know going through other people&#8217;s code is a bit tedious, but if anyone want to take it apart, learn, experiment, modify, adapt, feel free to do so <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>And with that I bid adieu!</p>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/game-dev/'>game dev</a>, <a href='http://gtmstechblog.wordpress.com/tag/game-development/'>game development</a>, <a href='http://gtmstechblog.wordpress.com/tag/pyglet/'>pyglet</a>, <a href='http://gtmstechblog.wordpress.com/tag/python/'>python</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=86&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2011/06/18/an-old-half-coocked-game-in-pyglet-ship-showdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/vgvbb.jpg" medium="image">
			<media:title type="html">Title Screen</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/8Iv99.jpg" medium="image">
			<media:title type="html">Pre-game Options</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/VoS0d.jpg" medium="image">
			<media:title type="html">In-game screenshot</media:title>
		</media:content>

		<media:content url="http://i.imgur.com/Y1gAI.jpg" medium="image">
			<media:title type="html">In-game screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Stereoscopic 3D</title>
		<link>http://gtmstechblog.wordpress.com/2010/04/06/stereoscopic-3d/</link>
		<comments>http://gtmstechblog.wordpress.com/2010/04/06/stereoscopic-3d/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 12:58:19 +0000</pubDate>
		<dc:creator>Gautham Yerroju</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[3d vision]]></category>
		<category><![CDATA[red blue glasses]]></category>
		<category><![CDATA[stereoscopic vision]]></category>

		<guid isPermaLink="false">http://gtmstechblog.wordpress.com/?p=48</guid>
		<description><![CDATA[Howdy, folks! It&#8217;s been a while since my last post. Well, I&#8217;ve been busy, but I&#8217;ve been lazier, hehe Anyway, most of you might have seen the Avatar movie, and in 3D too, probably. Wasn&#8217;t the experience amazing? I wouldn&#8217;t know, because I only got to see the 2D version ;_; Anyway, today I&#8217;m going [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=48&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Howdy, folks! It&#8217;s been a while since my last post. Well, I&#8217;ve been busy, but I&#8217;ve been lazier, hehe <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Anyway, most of you might have seen the Avatar movie, and in 3D too, probably. Wasn&#8217;t the experience amazing? I wouldn&#8217;t know, because I only got to see the 2D version ;_; Anyway, today I&#8217;m going to explain how 3D works.</p>
<p>Note: Though you will find instructions, this is by no means a tutorial and was never meant to be. It&#8217;s only a descriptive guide to help explain the process better.</p>
<p>So basically&#8230;</p>
<h2 style="text-align:center;"><span style="text-decoration:underline;">What is 3D?</span></h2>
<p>3D stands for 3 Dimensions. Now what are dimensions? In the world of mathematics, physical space can be represented in up to 3 dimensions.</p>
<p>An example of a 1-dimensional figure would be a straight line. All measurements are limited to only one constraint: length.</p>
<div class="wp-caption aligncenter" style="width: 397px"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/1D.png"><img class="  " title="1 Dimension" src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/1D.png" alt="" width="387" height="275" /></a><p class="wp-caption-text">The only measurement is the length. Even a dot can be a 1D image (though, a dot is defined as a figure with zero dimensions... math is funny, eh?)</p></div>
<p>A square, a triangle or anything you can draw on a paper is 2-dimensional, meaning those figures can be represented with the help of length and width.</p>
<div class="wp-caption aligncenter" style="width: 397px"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/2D.png"><img class="  " title="2 Dimensions" src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/2D.png" alt="" width="387" height="275" /></a><p class="wp-caption-text">Anything you can draw on a paper qualifies as a 2D image.</p></div>
<p>Now, a cube, a cone, a pyramid, a pizza, the Taj Mahal, even <strong>you</strong>, are 3-dimensional. These objects can be represented in 3 dimensions namely length, width and depth.</p>
<div class="wp-caption aligncenter" style="width: 397px"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3D.png"><img class="  " title="3 Dimensions" src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3D.png" alt="" width="387" height="275" /></a><p class="wp-caption-text">Most real objects are 3D.</p></div>
<p>Most of what you see in a book, on the computer screen and in the movies is 2D. Sure, you can make out the depth of the objects shown on the screen, but that&#8217;s because your mind simply concludes that there&#8217;s depth, based on what it already knows, even though it doesn&#8217;t <em>feel</em> the depth.</p>
<div class="wp-caption aligncenter" style="width: 380px"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/Pseudo-3D.png"><img class=" " title="Pseudo-3D" src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/Pseudo-3D.png" alt="" width="370" height="239" /></a><p class="wp-caption-text">You can tell that the cylinder is behind the cube even though you can&#039;t &quot;feel&quot; it.</p></div>
<h2 style="text-align:center;"><span style="text-decoration:underline;">What is depth?</span></h2>
<p>Now how does your mind perceive &#8220;depth&#8221;? Well, it&#8217;s simple. When you view something with both your eyes, what do you see? You see just one picture, or that&#8217;s what you think. In reality, you see <strong>two different pictures</strong>, one with each eye. Try it out, look at an object by closing your eyes alternately. You&#8217;ll realize that you&#8217;re seeing the object from two <em>slightly</em> different angles. This, ladies and gentlemen, is the key to 3D. When your eyes send their signals to the brain, it merges them together and calculates the depth in the image.</p>
<div class="wp-caption aligncenter" style="width: 296px"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3DPerception.png"><img class=" " title="3D Perception" src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3DPerception.png" alt="" width="286" height="297" /></a><p class="wp-caption-text">This is how your mind sees two images as one, perceiving depth. Observe the slight variation in how each eye sees the image.</p></div>
<p>Now we know that the brain processes two separate images into one to get the sense of depth. How is this knowledge used to replicate depth through 2D media (computer screen for example)? Let&#8217;s explore that.</p>
<h2 style="text-align:center;"><span style="text-decoration:underline;">Replication</span></h2>
<p>We have one main point to take away from the previous explanation: depth can only be simulated by feeding the brain two different views of the same scene. This is the reason we don&#8217;t feel depth when we watch something on the computer screen: both our eyes see the same image.</p>
<p>To simulate the sense of depth one has to find a way to view two different images at the same time through different eyes. Let&#8217;s discuss the process with a 3D picture, because I actually made a few B)</p>
<p>So my aim is to make this scene 3D:</p>
<p style="text-align:center;"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/Target.jpg"><img class="aligncenter" title="This is the target image, my PC workspace." src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/Target.jpg" alt="" width="430" height="304" /></a></p>
<p>I take two pictures from slightly different angles. Each picture is how each of my eye sees it separately:</p>
<div class="wp-caption aligncenter" style="width: 570px"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/TargetCompare.png"><img class=" " title="The target scene shot from two different angles." src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/TargetCompare.png" alt="" width="560" height="199" /></a><p class="wp-caption-text">These two pictures represent the target as seen by the right and left eyes.</p></div>
<p>Now I superimpose (combine) them:</p>
<div class="wp-caption aligncenter" style="width: 474px"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/TargetCombined.png"><img class="    " title="Targets Combined" src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/TargetCombined.png" alt="" width="464" height="329" /></a><p class="wp-caption-text">Both images super-imposed.</p></div>
<p>But when I look at this pic, I can see both the views with both the eyes. How do I make it so that one image reaches one eye and the other image reaches the other eye separately? The answer is that I use some form of filtering.</p>
<p>One simple thing I can do is, I use colour filtering. It means that I will colourize each picture with a different colour like this:</p>
<div class="wp-caption aligncenter" style="width: 591px"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/TargetColourCompare-1.png"><img class="   " title="Coloured Targets" src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/TargetColourCompare-1.png" alt="" width="581" height="205" /></a><p class="wp-caption-text">Both images are colourized.</p></div>
<p>Now I&#8217;ll superimpose them again:</p>
<div class="wp-caption aligncenter" style="width: 501px"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3D_Result.jpg"><img class="  " title="The Result" src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3D_Result.jpg" alt="" width="491" height="345" /></a><p class="wp-caption-text">I superimposed the two coloured images, this is the result.</p></div>
<p>OK, now the pic is ready. How do I see the pic? with these (or similar):</p>
<p style="text-align:center;"><a href="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3d-specs.jpg"><img class="aligncenter" title="3D Anaglyph Glasses" src="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/upimg5-Plastic-3D-Glasses_50915.jpg" alt="" width="325" height="223" /></a></p>
<p>Notice the colours. The left frame (from our point of view) has a red filter and the right frame has a cyan filter (have you noticed that they&#8217;re contrast colours?). Now when I look at the pic with these glasses on, my left eye will only see the red-colourized part of the pic and my right eye will only see the cyan-colourized part; mission accomplished! I get to enjoy the depth in the picture!</p>
<p>You can make a crude version of these &#8220;glasses&#8221;. You&#8217;ll need:</p>
<ol>
<li>Red and cyan sketch pens</li>
<li>A colourless transparent sheet of paper or plastic (like a CD jewel case)</li>
</ol>
<p>Just take your transparent material and colour them with the sketch pens, and you&#8217;re done <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  Of course, you might not find the exact shade of colours, so you might still see double-images when you view the pic, but you <em>will</em> feel some depth.</p>
<h2 style="text-align:center;"><span style="text-decoration:underline;">Showtime!</span></h2>
<p>This is how 3D movies are made. The movie is shot with two cameras with filters covering the lenses. They combine the two reels and publish the movie. You are given &#8220;3D glasses&#8221; which are nothing but filters, which separate the two images projected on the screen and send them to the respective eyes.</p>
<p>Of course, there&#8217;s another more refined form of filtering than the red-cyan / yellow-blue filters: the polarized lens filtering. These glasses have dark lenses and kinda feel like shades. These type of glasses are what you probably used when watching a 3D movie, not the old coloured ones. The advantage is obvious: no colour distortion. When you use coloured filtering, a lot of colour detail is lost, but with polarized lenses, you get the full spectrum. Polarized lenses are basically filters too and they involve some concepts of optics which I will not be explaining in this post.</p>
<p>Check out the pictures in <a href="http://www.3dglassesonline.com/how-do-3d-glasses-work/" target="_blank">this page</a> to get a good idea of how 3D movies work. (Maybe it&#8217;s explained better there than here ;_;)</p>
<p>There are also other methods to simulate depth (like <a title="ChromaDepth Technology" href="http://www.chromatek.com/" target="_blank">Chromadepth</a>). Hopefully, someone will come up with a solution which lets us enjoy 3D in everyday television and computing <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<h2 style="text-align:center;"><span style="text-decoration:underline;">nVidia 3D Vision</span></h2>
<p>nVidia has come up with a <em>wonderful</em> technology called <a title="nVidia 3D Vision" href="http://www.nvidia.com/object/3D_Vision_Main.html" target="_blank"><strong>nVidia 3D Vision</strong></a>. The concept is basically the same, but it applies it to 3D games and the result is <em>amazing.</em> Now that&#8217;s what I call innovation! Well, not exactly, it&#8217;s pretty obvious once you see it, but it&#8217;s about time someone implemented it!</p>
<p>Note that nVidia 3D vision has two forms: <strong>nVidia 3D Vision</strong> and <strong>nVidia 3D Vision Discover</strong>. 3D Vision Discover just lets us experience 3D, but in a crude way (using red-cyan glasses). The real thing uses shutter glasses and requires a 120Hz LCD monitor. Though, I&#8217;ve come across posts that claim it&#8217;s not a strict requirement. I enjoy my games using the red-cyan glasses since I don&#8217;t have an LCD monitor (let alone a 120Hz one!). There&#8217;s a rather annoying limitation: 3D vision only works in Windows Vista and above, not in XP. There might be some mods out there which enable 3D vision in XP, but I haven&#8217;t found them. If you know, drop a comment and I&#8217;ll add it here <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you happen to make or acquire 3D glasses but the colours don&#8217;t match with 3D vision defaults, you will still see double-images and it kind of hurts your eyes. I did a search in Google and found this registry hack which allows you to define the anaglyph colours. Here&#8217;s what you do. Open notepad and paste the following into the document:</p>
<p><span style="text-decoration:underline;"><strong>==Start copy from below==</strong></span></p>
<p>Windows Registry Editor Version 5.00</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\NVIDIA Corporation\Global</p>
<p>\Stereo3D]<br />
@=&#8221;"</p>
<p>&#8220;LeftAnaglyphFilter&#8221;=dword:ffff0000<br />
&#8220;RightAnaglyphFilter&#8221;=dword:ff00ffff</p>
<p>&#8220;StereoGamma&#8221;=dword:3f800000</p>
<p><span style="text-decoration:underline;"><strong>==End copy above==</strong></span></p>
<p>Change the bolded parts in the lines:</p>
<p>&#8220;LeftAnaglyphFilter&#8221;=dword:<strong>ffff0000</strong>&#8221; and<br />
&#8220;RightAnaglyphFilter&#8221;=dword:<strong>ff00ffff</strong>&#8220;</p>
<p>to represent your desired colours in hex code. Don&#8217;t get confused if you don&#8217;t know what that is. Head over to <a title="Hex Color Code Generator" href="http://www.2createawebsite.com/build/hex-colors.html" target="_blank">this site</a> and you can generate the hex codes for any colour. Of course, there are many other sites like this, just use google <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>After you&#8217;re done, save the file as &#8220;3dVision_color_mod.reg&#8221;. Run the file and accept the prompt, you&#8217;re done. If you didn&#8217;t backup the original colour codes, you can use the text above, it&#8217;s the default setting.</p>
<h2 style="text-align:center;"><span style="text-decoration:underline;">Conclusion</span></h2>
<p>If you ever acquire a set of 3D glasses, just do a google image search for &#8220;3D image&#8221; and you&#8217;ll get loads of fun pics to look at. Always remember that Google and Wikipedia are your friends (here&#8217;s the Wiki page about <a title="Wiki Page on 3D Images" href="http://en.wikipedia.org/wiki/Anaglyph_image" target="_blank">anaglyph images</a>). Having explained this, <strong>I now have a question to all of you</strong>: can a person with only one eye experience simulated 3D? Rack your brains, until my next post &gt;:)</p>
<p>That&#8217;s it for today, see you next time!</p>
<p><strong>PS:</strong> Why did I use &#8220;colour&#8221; instead of &#8220;color&#8221;? Well, that&#8217;s the spelling I knew from childhood and that&#8217;s what I&#8217;m used to. It&#8217;s correct according to British English. I <em>do</em> use &#8220;color&#8221;, but only when I&#8217;m coding <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<br /> Tagged: <a href='http://gtmstechblog.wordpress.com/tag/3d/'>3d</a>, <a href='http://gtmstechblog.wordpress.com/tag/3d-vision/'>3d vision</a>, <a href='http://gtmstechblog.wordpress.com/tag/red-blue-glasses/'>red blue glasses</a>, <a href='http://gtmstechblog.wordpress.com/tag/stereoscopic-vision/'>stereoscopic vision</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gtmstechblog.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gtmstechblog.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gtmstechblog.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gtmstechblog.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gtmstechblog.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gtmstechblog.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gtmstechblog.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gtmstechblog.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gtmstechblog.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gtmstechblog.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gtmstechblog.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gtmstechblog.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gtmstechblog.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gtmstechblog.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gtmstechblog.wordpress.com&amp;blog=11569856&amp;post=48&amp;subd=gtmstechblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gtmstechblog.wordpress.com/2010/04/06/stereoscopic-3d/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:thumbnail url="http://gtmstechblog.files.wordpress.com/2010/04/stereo-3d-featured.jpg?w=150" />
		<media:content url="http://gtmstechblog.files.wordpress.com/2010/04/stereo-3d-featured.jpg?w=150" medium="image">
			<media:title type="html">stereo-3d-featured</media:title>
		</media:content>

		<media:content url="http://0.gravatar.com/avatar/23ad8c9414a49e86cca92d15b2648c8a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Gautham</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/1D.png" medium="image">
			<media:title type="html">1 Dimension</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/2D.png" medium="image">
			<media:title type="html">2 Dimensions</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3D.png" medium="image">
			<media:title type="html">3 Dimensions</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/Pseudo-3D.png" medium="image">
			<media:title type="html">Pseudo-3D</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3DPerception.png" medium="image">
			<media:title type="html">3D Perception</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/Target.jpg" medium="image">
			<media:title type="html">This is the target image, my PC workspace.</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/TargetCompare.png" medium="image">
			<media:title type="html">The target scene shot from two different angles.</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/TargetCombined.png" medium="image">
			<media:title type="html">Targets Combined</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/TargetColourCompare-1.png" medium="image">
			<media:title type="html">Coloured Targets</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/3D_Result.jpg" medium="image">
			<media:title type="html">The Result</media:title>
		</media:content>

		<media:content url="http://i231.photobucket.com/albums/ee219/TheFantasist/Tech%20Blog%20Pictures/upimg5-Plastic-3D-Glasses_50915.jpg" medium="image">
			<media:title type="html">3D Anaglyph Glasses</media:title>
		</media:content>
	</item>
	</channel>
</rss>
