<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-7610315269249515041</atom:id><lastBuildDate>Sat, 14 Nov 2009 18:04:04 +0000</lastBuildDate><title>gr's blog</title><description /><link>http://ggauravr.blogspot.com/</link><managingEditor>noreply@blogger.com (Gaurav R)</managingEditor><generator>Blogger</generator><openSearch:totalResults>89</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/grsblog" type="application/rss+xml" /><feedburner:emailServiceId>grsblog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-1990745698136262725</guid><pubDate>Sun, 13 Sep 2009 12:31:00 +0000</pubDate><atom:updated>2009-09-15T06:06:33.633+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">programming</category><title>Scopes in C</title><description>This post is about the storage related topics in C .Three important aspects in this regard are &lt;span style="font-style: italic; font-weight: bold;"&gt;Scope, Linkage and Lifetime&lt;/span&gt;(storage duration) of the programming elements (variables).These are very well explained in &lt;span style="font-style: italic;"&gt;C Primer Plus&lt;/span&gt;(by Stephan Prata) and this post is mostly from it. When I read about it the first time I was a bit confused over the difference between scope and lifetime of variables.In short Scope of a variable is the region in which the existence of the variable is known or in other words ,the region in which the variable can be accessed and lifetime is the time (not exactly in sec or min but time relative to the program execution) for which the variable exists.&lt;br /&gt;Two scopes are particularly important viz File scope and Block scope.&lt;br /&gt;A Block is the region within an open brace and a corresponding closing one.Variables declared inside a block have block scope i.e they are meaningful only within the block defined.So two variables with same name can safely exist in two different blocks.Although it's not a good habit to use the same variable names in nested blocks (it only causes confusion).&lt;br /&gt;e.g :&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;//block 1&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;void main()&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;    int i=3;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;//block 2&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;while(condition)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;  {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;   int i =2;&lt;br /&gt;/*&lt;/span&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;here this i is known.not the outer one.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;                      inner one is said to hide the outer one.*/&lt;br /&gt;&lt;br /&gt;printf("%d",i);     //prints 2&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;//other statements&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;  }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;printf("%d",i);        //prints 3&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;&lt;br /&gt;}&lt;br /&gt;&lt;/span&gt;Variables which do not belong to any of the blocks(declared outside the blocks) are of File scope which means they can be accessed in any of the blocks in the file they are declared(they are also called Global variables).&lt;br /&gt;e.g :&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;int i ;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;void main()&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;  //other statements&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;printf("%d",i);&lt;br /&gt;&lt;br /&gt;     /*prints 0 ,coz variables declared out of the blocks are initialized to 0&lt;/span&gt; &lt;span style="font-family:courier new;"&gt;*/&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;There's another scope related to the visibility of goto labels. goto labels are said to have Function scope(different from block scope).No matter what block the goto label is specified in, it's accessible in the whole function(every function is a block but not every block need to be a function).&lt;br /&gt;)&lt;br /&gt;e.g :&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;void main()&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;while (condition)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;if (another condition) goto label;  &lt;br /&gt;/*the label actually is defined outside the while block ,but is known here&lt;/span&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;*/&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;//otherwise do this&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;label:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;// some statements&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;font-family:courier new;" &gt;}&lt;/span&gt;&lt;br /&gt;As the use of goto is considered as an unstructured way of programming ,the function scope is of little importance.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-1990745698136262725?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/z_7g-WXsuB4/scopes-in-c.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/09/scopes-in-c.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-695388447562171323</guid><pubDate>Sun, 06 Sep 2009 06:05:00 +0000</pubDate><atom:updated>2009-09-06T11:44:00.527+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">programming</category><title>char in Java</title><description>&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;This post is about character type in Java.It's important because it's implementation in Java is different&lt;/span&gt; &lt;span style=";font-family:times new roman;font-size:130%;"  &gt;from most other programming languages.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;First of all the char type here uses &lt;a href="http://www.unicode.org/standard/WhatIsUnicode.html"&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;Unicode encoding scheme&lt;/span&gt;&lt;/a&gt; ,unlike in most other where ASCII is used.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;This helps Java handle any of the characters in the world,be it any language.Unicode character set is a 16-bit &lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;encoding scheme which can represent 2^16 (65536) diff chars.But that didn't seem to be enough to represent all the&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt; characters ,so it has been extended to support about 1 million chars.The chars beyond the 16-bit limit are called &lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;Supplementary chars&lt;/span&gt; and JDK 1.5(Java 5) supports them.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;A char literal is represented in single quotation marks. eg :char eg_char ='A';&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;The Unicode set uses 2 Bytes and it's represented in Hexadecimal format in single quotation marks preceded by backslash-u&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt; (\u) as '\uXXXX',where XXXX varies from 0000 to FFFF.The first 128 chars are same as ASCII ones and vary from '\u0000'&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt; to '\u007F'(i.e decimal 0 to 127).&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;eg :char alphabet ='A'; //stores the ASCII value of A in 16 bits&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;is equivalent to &lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;    char alphabet ='\u0041'; //0041 is the ASCII value of A in hexadecimal(decimal 65)&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;Implicit casting is done if the operand on the RHS fits into the destination safely.Otherwise explicit casting has to be&lt;/span&gt;&lt;span style="font-size:130%;"&gt; &lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;done.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;eg :&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;int integer='A'; //implicitly casted coz 16-bit char safely fits into 32-bit int&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;System.out.println(integer); //shows 65&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;integer or floating points should be explicitly typecasted to char as (char)value.&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;In case of int lower 16-bits are used to identify the char and in floating point values lower 16-bits of the integral&lt;/span&gt;&lt;span style="font-size:130%;"&gt; &lt;/span&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;part is used.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-695388447562171323?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/HCkG22MVCNM/char-in-java.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/09/char-in-java.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-2356609559800794710</guid><pubDate>Sun, 30 Aug 2009 16:45:00 +0000</pubDate><atom:updated>2009-08-31T18:58:07.577+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">programming</category><title>Back with Java</title><description>I was out of ideas for posting in here,so took quite a long break from Blogging :-) .And Im back to it to write somethin about Java(Im currently scratching my head over it) . Unlike others who write about Java to help others, Im writing to help myself understand it ,may be atleast while writing  i may understand something.I don wanna start with the History coz i cant remember it inspite of reading it several times but if u are really interested , &lt;span style="font-weight: bold;"&gt;James Gosling&lt;/span&gt; is the name you can start googling with.&lt;br /&gt;To start with Java is an Object-oriented,secure and platform-independent language developed by researchers at Sun Microsystems in 1990's.&lt;br /&gt;There are actually more features than these, but these are the ones I've understood.&lt;br /&gt;It helps to have learnt some POP language as C and some partial OOP language like C++ to catch the meaning of Object-oriented paradigm ,if not don't get stuck till u come to know what it is. Coz you ll not know until you use the language.&lt;br /&gt;Java is said to be platform independednt because it compiles the source code NOT into the machine language but to its native (virtual machine) language and is called &lt;span style="font-weight: bold;"&gt;Bytecode&lt;/span&gt;. The Java Virtual Machine(&lt;span style="font-weight: bold;"&gt;JVM&lt;/span&gt;) then interprets the Bytecode into machine code. And since JVM is available for most of the platforms (it's different for different platforms) ,the code once compiled can be run on any platform(for which we have JVM) .&lt;br /&gt;It's called secure for many reasons and I know only some of them.Java implements &lt;span style="font-style: italic;"&gt;garbage collection&lt;/span&gt; techniques which automatically frees up memory for which there's no reference and there are &lt;span style="font-style: italic;"&gt;no pointers&lt;/span&gt; in Java, which is again a main security feature of it. So you just cant declare a pointer variable and play around with memory :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-2356609559800794710?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/6n8VIyDIcoc/back-with-java.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/08/back-with-java.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-4524194139191851690</guid><pubDate>Sun, 29 Mar 2009 05:11:00 +0000</pubDate><atom:updated>2009-03-29T11:17:15.532+05:30</atom:updated><title>Launchpad for Rockers...</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_4CU5jQFFZGw/Sc8KTwG26_I/AAAAAAAAAEE/FUIj-7a88eI/s1600-h/launchpadposterhrcrl0.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 400px;" src="http://3.bp.blogspot.com/_4CU5jQFFZGw/Sc8KTwG26_I/AAAAAAAAAEE/FUIj-7a88eI/s320/launchpadposterhrcrl0.jpg" alt="" id="BLOGGER_PHOTO_ID_5318481019395304434" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;For all those Rock lovers out there, this would be a good news.Channel V has started a hunt for India's No. 1 band called Channel V Launchpad.The permanent judge for the show is none other than the rock star of India,the man behind &lt;a href="http://en.wikipedia.org/wiki/Pentagram_%28Indian_band%29"&gt;Pentagram&lt;/a&gt;, the super cool music director &lt;a href="http://en.wikipedia.org/wiki/Vishal_Dadlani"&gt;Vishal Dadlani&lt;/a&gt;.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://i44.tinypic.com/2z53ij6.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 523px;" src="http://i44.tinypic.com/2z53ij6.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;It's amazing to watch people from different backgrounds,different culture giving a whole new variety of music,which wakes up the Rocker in you.It's telecast every Friday evening at 7 30.&lt;br /&gt;Go check it out.I guarantee u'll have a wonderful time watching it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-4524194139191851690?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/uGkS1ryPFpU/launchpad-for-rockers.html</link><author>noreply@blogger.com (Gaurav R)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_4CU5jQFFZGw/Sc8KTwG26_I/AAAAAAAAAEE/FUIj-7a88eI/s72-c/launchpadposterhrcrl0.jpg" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/03/launchpad-for-rockers.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-5557847857908482054</guid><pubDate>Mon, 23 Mar 2009 01:31:00 +0000</pubDate><atom:updated>2009-03-23T07:32:32.653+05:30</atom:updated><title>Feb n March-My Experience...</title><description>Uphhh....That is a sigh of relief.Feb n March kept me really busy.All the coll events are over n importantly internals are completed :-) and I'm back today.Tried out some new things last month..&lt;br /&gt;Gave a paper presentation at NITTE College(my first time),participated in movie-making and some other competitions conducted as a part of college day events n in the middle of all these, The Internals.And I think ,of all these ,movie-making was the only one I was good at(The one I made is actually a compilation of photoslides,but I think it's good enough).All others bombed.&lt;br /&gt;My technical paper was on Cloud Computing,which was actually a survey paper.Felt my preparation was good,but then during the queries round,I had nothin to say :-).Only judges were speaking!(firing questions at me).But overall,it was a wonderful experience,got to learn a lot from others and made some good friends there(all techies..).So as a first time,it was quite good.I should better start thinkin bout it more seriously.&lt;br /&gt;Now about the movie-making.The theme given was "Life is a journey" and we were supposed to make a movie of bout 10 mins(in a week!).Everyone tried in their own way..Some acted in it themselves,some made a compilation of videos,some compilation of photoslides and so on.&lt;br /&gt;Mine is of the third kind(if u wanna check it out ..)&lt;br /&gt;&lt;object width="480" height="295"&gt;&lt;param name="movie" value="http://www.youtube.com/v/wJXgLW9Czok&amp;hl=en&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/wJXgLW9Czok&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;So today,felt free enough to scribble my experience here.Hope to post good posts from now on.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-5557847857908482054?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/ccSBdFOlZsQ/feb-n-march-my-experience.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/03/feb-n-march-my-experience.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-4127837815672209252</guid><pubDate>Tue, 10 Feb 2009 03:23:00 +0000</pubDate><atom:updated>2009-02-10T09:16:34.186+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">gr's views</category><title>Gandhigiri in action</title><description>This is a practical example of  "Gandhigiri",which has now become the weapon for a new facebook group against the inhumane moves of Sri Ram Sene.&lt;br /&gt;This is the response they never expected to get.A new group in Facebook,created by Nisha Susan,a journalist,has launched what's called "A consortium of pub-going and forward women" or should we say "the pink chaddi campign" and is flooding the sene offices with Pink undergarments,,pushing them to the absurdity they really deserve.&lt;br /&gt;This step can not be called as the youth power,its actually more than that,coz a 65-year old woman has also reportedly donated "pink chaddis".&lt;br /&gt;Yet another Facebook group said that they would celebrate March 1 as "World Kamasutra Day",as the sene activists talk of Hindutwa and true Indian Culture and all that..So this should not be their matter of concern,coz it's very much Indian :-)..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-4127837815672209252?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/bT-z0HYPI08/gandhigiri-in-action.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/02/gandhigiri-in-action.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-6347005886311787255</guid><pubDate>Mon, 09 Feb 2009 11:56:00 +0000</pubDate><atom:updated>2009-02-09T18:12:15.783+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">jargon</category><category domain="http://www.blogger.com/atom/ns#">networking</category><title>Hamming Distance-An Introduction</title><description>If you've ever read something about error control methods(in data link layer especially),you 'll have definitely come accross this term,&lt;span style="font-style: italic;"&gt;Hamming distance&lt;/span&gt;.&lt;br /&gt;So here I would like to write something about it,&lt;span style="font-style: italic;"&gt;which would mostly help beginners and not for experts(who instead can add comments to it).&lt;/span&gt;&lt;br /&gt;This is the term you usually come across,like i said,when you study about error control mechanisms.&lt;br /&gt;&lt;br /&gt;Hamming distance,is nothing but the &lt;span style="font-style: italic; font-weight: bold;"&gt;count of bits,in a given set of two binary nos.( of same size) that differ from one another&lt;/span&gt;.For eg. If the nos. given are 1110 and 1000,we can see that two bits(2nd and 3rd) differ,so the hamming distance would be 2,similarly for 1110(A) and 1100(B),it would be 1 and so on.For two words x and y,its denoted as d(x,y),so here d(A,B) is 2.&lt;br /&gt;For smaller nos,as you can see,it can be easily got by simply observing the corresponding bits,but as the bits increase,it would be a bit confusing to do that.In this case we can get it by simply performing &lt;span style="font-weight: bold; font-style: italic;"&gt;xor(bitwise) operation&lt;/span&gt; and counting the no. of 1s in the bit pattern obtained.&lt;br /&gt;&lt;br /&gt;In addition, &lt;span style="font-weight: bold; font-style: italic;"&gt;minimum hamming distance&lt;/span&gt;,is the term used more often,because this is closely related to detecting and correcting errors.Minimum Hamming distance for a given set of binary nos,more than two(coz in this case minimum doesn't make any sense,coz there is only one value),is the minimum of the hamming distance calculated for every two binary nos. in the set.&lt;br /&gt;For eg.  say the given set is         {10000(A),11100(B),10110(C),11110(D)}&lt;br /&gt;-hamming distance of A n B is 2, A n C is 2, A n D is 3.&lt;br /&gt;-hamming distance of B n C is 2, B n D is 1 and of C n D is 1.&lt;br /&gt;Here min. hamming distance,as can be easily seen is 1(min of all of them).&lt;br /&gt;So this was an introduction to  the term.Actually what's needed to be discussed is &lt;span style="font-weight: bold; font-style: italic;"&gt;how this helps in error control&lt;/span&gt;,which i'll be posting soon.Do keep checking it out.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;next post&lt;/span&gt; : relation between minimum Hamming distance and Error detection.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-6347005886311787255?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/ohVIANE4jL0/hamming-distance-introduction.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/02/hamming-distance-introduction.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-2203480617368669175</guid><pubDate>Sat, 07 Feb 2009 16:39:00 +0000</pubDate><atom:updated>2009-02-07T22:21:47.148+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">How-to</category><title>Saving songs from online streaming sites!!</title><description>Have you ever come across sites which have a huge library of songs but unfortunately haven't provided any option to download n save it to the computer?You really might be thinking of some way to get songs from it..&lt;br /&gt;So here I would like to share a method to just that..&lt;br /&gt;The method I'm gonna explain here &lt;span style="font-style: italic; font-weight: bold;"&gt;works for the sites which use your media player to stream songs and not for the ones with their own embedded players&lt;/span&gt;.&lt;br /&gt;So here we go..&lt;br /&gt;&lt;br /&gt;1.Go to any such site,right click on the song needed n select &lt;span style="font-weight: bold; font-style: italic;"&gt;save link/target as&lt;/span&gt; and save the file(which ll be in ram format) in your system.&lt;br /&gt;&lt;br /&gt;2.Open the ram file in &lt;span style="font-weight: bold; font-style: italic;"&gt;Notepad&lt;/span&gt;.There u get a url,copy that and paste it in your browser address bar.Hit Enter.&lt;br /&gt;&lt;br /&gt;3.That's it,u'll get the song in &lt;span style="font-weight: bold; font-style: italic;"&gt;rm format&lt;/span&gt;(good to download,consumes less space).Convert it to mp3 using any of rm to mp3 converters(there are plenty of them).&lt;br /&gt;&lt;br /&gt;If you have got better methods to do it,plz do  share with me.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-2203480617368669175?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/mFRjU0oUGqA/saving-songs-from-online-streaming.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">4</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/02/saving-songs-from-online-streaming.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-4945346992446167798</guid><pubDate>Thu, 05 Feb 2009 00:23:00 +0000</pubDate><atom:updated>2009-02-05T06:06:35.117+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">jargon</category><category domain="http://www.blogger.com/atom/ns#">networking</category><title>Protocols-What are they?</title><description>Well,any dictionary on english defines it as&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;the forms of ceremony and etiquette observed by diplomats and head of state&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; font-weight: bold;"&gt;or a code of correct conduct&lt;/span&gt;.&lt;br /&gt;And in Computer Science it's defined as &lt;span style="font-style: italic; font-weight: bold;"&gt;a set of rules that govern data communication&lt;/span&gt;.These definitions may not make much sense without examples.So here are some analogies to get the meanings(coz they are many,based on context) of the term.&lt;br /&gt;Here I share a wonderful analogy,I found in a book by &lt;span style="font-style: italic; font-weight: bold;"&gt;Tanenbaum&lt;/span&gt;.&lt;br /&gt;When a woman is introduced to a man,she may decide to stick out her hand and the man can either shake her hand or kiss it depending the place and on who the woman is.If she is a professional,say a lawyer in an official meeting,then handshake would be a good choice&lt;br /&gt; &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://orphanarmy.com/wp-content/sketches/handshake.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 450px; height: 296px;" src="http://orphanarmy.com/wp-content/sketches/handshake.jpg" alt="" border="0" /&gt;&lt;/a&gt; and if she's the European Princess,it would be appropriate to kiss her hand.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.e-poland.org/handkissing2a.jpeg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 400px; height: 250px;" src="http://www.e-poland.org/handkissing2a.jpeg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;But it's entirely his choice.He would like to kiss the lawyer and give a handshake to princess instead,but  this would seem a little awkward.So protocols are the instructions built for easy and efficient communication.Deciding not to follow them,could make it a bit difficult,if not impossible.&lt;br /&gt;A protocol gives clear description for two problems:What and How the information is communicated.For eg. it would not be fair to transmit some random bit-stream,by random I mean without any rules(protocol) and expect the receiver to understand it.That is,if I decide to speak to my friend in code-words,it's  quite impossible for him to get what I say,unless I tell him how to interpret my message.Similarly the nodes between which communication has to take place have to agree to some specific rule,like for bit streams,may be the first 8-bits represent header,next 8 the tail and the rest represent the message and so on..&lt;br /&gt;The next thing to be fulfilled is tell the node what the header indicate,an address or something else etc.,&lt;br /&gt;So next time you read something about protocol(s),you now know it's a set of rules,so try to study the rules defined in the protocol to understand what it exactly is.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Comment on it if you liked it.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-4945346992446167798?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/2isXikSAs_w/protocols-what-are-they.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/02/protocols-what-are-they.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-4677545763842121400</guid><pubDate>Wed, 04 Feb 2009 08:01:00 +0000</pubDate><atom:updated>2009-02-04T14:23:02.535+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">gr's views</category><title>Why ban Google Earth??</title><description>Now,for the second time,Google has been charged for helping terrorists.Back in 2007,British govt. charged them for showing the images of their Military Bases.So it's now time for India to accuse Google for all this,which indirectly says the advancement in technology is an unwanted development.They say images from Google Earth helped terrorists plan the Mumbai attack.&lt;br /&gt;&lt;br /&gt;This clearly indicates that terrorists are technically more sound than the the ones in the Intelligence dept.,and it's like giving a non-sense reason for their failure to trace them.&lt;br /&gt;Instead of illogical arguments as these,I think,they should work more on sharpening their technical skills or atleast hire some geeks,if needed,to avoid all such anti-social activities.&lt;br /&gt;&lt;br /&gt;As given in Deccan Herald,it's difficult though,coz an e-mail from a terrorist to another is no different from a mail sent by me to my friend.So,I think there should be some kinda system to check all the e-mails before forwarding to the destination, and if they don't make any sense(like if they are in some codewords),they should filter back such mails.I donno know if this makes any sense,coz anyone may just have to send their credit card no. via e-mail and may get filtered..My point is that there should be a system which can tell apart a terrorsits mail from mine :-).&lt;br /&gt;Instead of forcing for a complete ban on such services,they can instead ban showing up of some security zones like those military bases.But this can't help it even, coz they may target a completely different place like a hotel,as they did in Mumbai.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-4677545763842121400?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/du_8LDabaCo/why-ban-google-earth.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/02/why-ban-google-earth.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-6429993571605098806</guid><pubDate>Mon, 02 Feb 2009 07:05:00 +0000</pubDate><atom:updated>2009-02-04T05:32:40.783+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">networking</category><title>Understanding IP addresses</title><description>This is one(and the first) of the several videos to come on networking and these are for &lt;span style="font-style: italic;"&gt;dummies&lt;/span&gt; by a &lt;span style="font-style: italic;"&gt;dummy&lt;/span&gt;.So if u r a geek,looking for an advanced discussion,this may not be the right place for you.But I request you to go through it and give feedback for it or suggest any points to be added.&lt;br /&gt;This post covers a basic introduction to IP address and classes etc..&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;Syntax&lt;/span&gt;&lt;br /&gt;The format followed is called &lt;span style="font-weight: bold; font-style: italic;"&gt;Dotted Decimal Format&lt;/span&gt;.The current version,that is IPv4 is a 32-bit number(4-bytes,the 4 in IPv4),divided into 4 parts of 1byte(8 bits),each separated by a period(like 192.168.1.3).&lt;br /&gt;As u know each bit can take values 1 or 0,the range of each octet therefore turns out to be 0 to 255(i.e eight 0s to eight 1s),a total of 256 values(i.e 2^8).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Classes&lt;/span&gt;&lt;br /&gt;Classful addressing is a method of organisation of the entire range of IP addresses(0.0.0.0 to 255.255.255.255),in which the first four bits(the most significant ones) determine the class of the address.Number of classes are 5&lt;br /&gt;-class A,class B,class C,class D and class E.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Specifications of Class A:&lt;/span&gt;&lt;br /&gt;1.The leftmost bit(i.e the most significant bit) is 0.&lt;br /&gt;2.Leftmost 8 bits represent the network,called network id and the rest of 24 bits represent hosts of a particular network.&lt;br /&gt;So keeping the MSB as 0,we can have 2^7=128 different networks from this class and each class can have 2^24 different hosts,&lt;span style="font-style: italic; font-weight: bold;"&gt;but this isn't the case&lt;/span&gt;.&lt;br /&gt;Actually the no. of networks in this class is 2^7 - 2(126),coz two networks,,net-id of 0(decimal) and 127 are reserved for what's called special addresses.Similarly host-id of all 0s and all 1s are special too.&lt;br /&gt;I would like to discuss about special addresses in newer posts.&lt;br /&gt;So this leaves 126 different networks in Class A and 2^24 - 2 hosts for each network.&lt;br /&gt;If in an IP address(in decimal format),the leftmost decimal no. is in the range 0 to 127(both inclusive),it belongs to class A.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Specifications of Class B:&lt;/span&gt;&lt;br /&gt;1.The 2 leftmost bits are 10.&lt;br /&gt;2.16 bits from the left represent net-id and the rest 16 represent host-id.&lt;br /&gt;By similar calculation,we get 2^14 different networks and 2^16 hosts.But as said earlier,host-id of all 0s and all 1s are special.So total hosts equals 2^16 - 2.&lt;br /&gt;If in an IP address(in decimal format),the leftmost decimal no. is in the range 128 to 191(both inclusive),it belongs to class B.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Specifications of Class C:&lt;/span&gt;&lt;br /&gt;1.The 3 leftmost bits are 110.&lt;br /&gt;2.24 bits from the left represent network-id  and the rest(8-bits) indicate the host.&lt;br /&gt;No. of networks=2^21(coz first three are constant)&lt;br /&gt;No. of hosts for each network=254(2^8 - 2)&lt;br /&gt;If in an IP address(in decimal format),the leftmost decimal no. is in the range 192 to 223(both inclusive),it belongs to class C.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Specifications of the rest:&lt;/span&gt;&lt;br /&gt;The addresses in any of the classes discussed until now are called unicast addresses,coz communication between the nodes using any one of these addresses is one-to-one(1 sender-1 receiver type communication).There is a class where the communication is of one-to-many kind and that class is D.&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Class D:&lt;/span&gt;&lt;br /&gt;1.The 4 leftmost bits are 1110.&lt;br /&gt;2.There's nothing like host-id and net-id in this class of addresses and the rightmost 28 bits indicate a particular group.&lt;br /&gt;These are called Multicast addresses,that is,data transmitted by a node with destination address belonging to this class is received by every node associated with that particular group.&lt;br /&gt;More to come on multicasting in newer posts.&lt;br /&gt;If in an IP address(in decimal format),the leftmost decimal no. is in the range 224 to 239(both inclusive),it belongs to class D.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Class E:&lt;/span&gt;&lt;br /&gt;1.The 4 leftmost bits are 1111.&lt;br /&gt;2.There's no host-id or net-id in this group too.&lt;br /&gt;These addresses are not used publicly and have been reserved for experimental/future use.&lt;br /&gt;If in an IP address(in decimal format),the leftmost decimal no. is in the range 240 to 255(both inclusive),it belongs to class E.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-6429993571605098806?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/3tSdK1QHR78/understanding-ip-addresses.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/02/understanding-ip-addresses.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-3063976455441096689</guid><pubDate>Sun, 01 Feb 2009 18:48:00 +0000</pubDate><atom:updated>2009-02-02T01:01:51.675+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">gr's views</category><title>The Master vs The Muscle</title><description>Any guesses what I'm talkin about??&lt;br /&gt;If u think it's the finals of the Australian Open,u got it right.The Legend Federer and the Muscle-man in the tennis world,Rafael Nadal took the match,played over a duration of 4.5 hrs,to the max. excitation point.Their every single shot fastened my heartbeats more n more.&lt;br /&gt;Nadal once again took-off the grand-slam title as Federer missed his 14th grand-slam title for the second time.I actually was counting on Roger but unfortunately,his unforced errors(they were too many) landed him down.Nadal,as usual was as active through the whole session as in the beginning,even though he ran all through the court,reaching the corners,anyone ever expected.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.cctv.com/program/sportsscene/20090131/images/1233365933758_1233365933758_r.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 475px; height: 270px;" src="http://www.cctv.com/program/sportsscene/20090131/images/1233365933758_1233365933758_r.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Even Roger,who I believe is the most emotionally stable man ended up crying in the presentation ceremony when people cheered for him.I think he broke down coz he was quite confident enough to make it this time but was unable to.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://im.videosearch.rediff.com/thumbImage/videoImages/videoImages1/blip/rdhash853/Mikhel-RogerFederer832.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 475px; height: 355px;" src="http://im.videosearch.rediff.com/thumbImage/videoImages/videoImages1/blip/rdhash853/Mikhel-RogerFederer832.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Nadal was very good on stage with so much simplicity on his face after the huge win and showed the true sportsman spirit by respecting Roger's emotions and I love him for that.&lt;br /&gt;I wish all the very best for both of them,more for Federer(he's my favorite : ) ).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-3063976455441096689?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/JnQiMJbcVTA/master-vs-muscle.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/02/master-vs-muscle.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-8914727899362532295</guid><pubDate>Sat, 31 Jan 2009 19:28:00 +0000</pubDate><atom:updated>2009-02-01T01:21:38.921+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">movies n music</category><title>Mohit Chauhan-the gifted singer</title><description>I hope u all might have liked &lt;span style="font-style: italic; font-weight: bold;"&gt;Masakkali&lt;/span&gt;,the current chartbuster from the movie &lt;span style="font-style: italic; font-weight: bold;"&gt;Delhi-6&lt;/span&gt;.Then u'll be glad to know that it's sung by the same person who has to his credit,the sensational songs like &lt;span style="font-weight: bold; font-style: italic;"&gt;Tumse hi&lt;/span&gt;(remember the movie?) and &lt;span style="font-weight: bold; font-style: italic;"&gt;Kahin na lage mann&lt;/span&gt;.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://img81.imageshack.us/img81/3691/vlcsnap35197az3.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 500px; height: 480px;" src="http://img81.imageshack.us/img81/3691/vlcsnap35197az3.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Yes..it's sung by &lt;span style="font-style: italic;"&gt;Mohit Chauhan&lt;/span&gt;,my current favorite.I thought until recently that he's a newbie in the industry and curiously googled his images but I was amazed to find that he's the one who sang &lt;span style="font-weight: bold; font-style: italic;"&gt;Dooba Dooba&lt;/span&gt;(by the silk route band),my all time favorite song..&lt;br /&gt;Even with very few tracks in his track-record, he's now the most wanted artist in the industry.&lt;br /&gt;Some of his tracks include &lt;span style="font-style: italic; font-weight: bold;"&gt;Khoon chala&lt;/span&gt; from RDB and &lt;span style="font-style: italic; font-weight: bold;"&gt;Kuch khaas&lt;/span&gt; from Fashion.&lt;br /&gt;&lt;br /&gt;You can listen to his songs online &lt;a href="http://www.desimusic.com/songs/singer/2003/mohit-chauhan.html" target="_blank"&gt;here&lt;/a&gt;..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-8914727899362532295?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/xRcybR-cAQU/mohit-chauhan-gifted-singer.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/02/mohit-chauhan-gifted-singer.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-3788438333069787264</guid><pubDate>Thu, 29 Jan 2009 19:39:00 +0000</pubDate><atom:updated>2009-01-30T01:31:10.677+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">How-to</category><title>Pin this Folder to Start menu !!</title><description>I hope many of you,like me,have at some point wished if there was an easy way to access your favorite folders.Go to My Computer,select the drive,navigate to the folder..ahh...so many steps to get to a folder..&lt;br /&gt;Now,you all know the way to pin programs(frequently used ones) to the start menu and you also know that the method is as it is not applicable to folders..So here's a small registry tweak to do exactly that!&lt;br /&gt;&lt;br /&gt;1.Type regedit in the run dialog box(&lt;span style="font-weight: bold;"&gt;windows+r is the shortcut for run dialog box&lt;/span&gt;) n hit Enter.&lt;br /&gt;&lt;br /&gt;2.Navigate to the following path:&lt;br /&gt;HKEY_CLASSES_ROOT-&gt;Folder-&gt;ShellEx-&gt;ContextMenuHandlers&lt;br /&gt;&lt;br /&gt;3.Select ContextMenuHandlers,right-click on it.Select new-&gt;key.&lt;br /&gt;&lt;br /&gt;4.Rename the new key as {a2a9545d-a0c2-42b4-9708-a0b2badd77c8}...(including the braces)&lt;br /&gt;&lt;br /&gt;5.Exit the editor.Now u have the Pin to start menu option even for folders..&lt;br /&gt;But &lt;span style="font-weight: bold; font-style: italic;"&gt;you need to hold shift and right-click on the required folder.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I actually have no idea how that particular string works!..&lt;br /&gt;just knew the trick so shared it..If u have got any such tricks plz send them to me..&lt;br /&gt;Ill post it with ur name(or email id)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-3788438333069787264?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/rbV_MqChw5M/pin-this-folder-to-start-menu.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/01/pin-this-folder-to-start-menu.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-6865744969289302226</guid><pubDate>Tue, 27 Jan 2009 21:55:00 +0000</pubDate><atom:updated>2009-01-28T04:03:32.841+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">How-to</category><title>Setting up a Gmail account in Windows Mail</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_4CU5jQFFZGw/SX-KMQXLDBI/AAAAAAAAADM/bgXYUSN-t5Q/s1600-h/Untitled.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 320px; height: 175px;" src="http://2.bp.blogspot.com/_4CU5jQFFZGw/SX-KMQXLDBI/AAAAAAAAADM/bgXYUSN-t5Q/s320/Untitled.jpg" alt="" id="BLOGGER_PHOTO_ID_5296103629966216210" border="0"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_4CU5jQFFZGw/SX-KNRxtNTI/AAAAAAAAADU/M3ovi5fUDxI/s1600-h/Untitled1.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 320px; height: 175px;" src="http://4.bp.blogspot.com/_4CU5jQFFZGw/SX-KNRxtNTI/AAAAAAAAADU/M3ovi5fUDxI/s320/Untitled1.jpg" alt="" id="BLOGGER_PHOTO_ID_5296103647525811506" border="0"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_4CU5jQFFZGw/SX-KOaCywSI/AAAAAAAAADc/3Gbt6ovwMQw/s1600-h/Untitled2.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 320px; height: 175px;" src="http://1.bp.blogspot.com/_4CU5jQFFZGw/SX-KOaCywSI/AAAAAAAAADc/3Gbt6ovwMQw/s320/Untitled2.jpg" alt="" id="BLOGGER_PHOTO_ID_5296103666924831010" border="0"&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_4CU5jQFFZGw/SX-KPS5CXWI/AAAAAAAAADk/64wxvpqvXHw/s1600-h/Untitled3.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 320px; height: 175px;" src="http://1.bp.blogspot.com/_4CU5jQFFZGw/SX-KPS5CXWI/AAAAAAAAADk/64wxvpqvXHw/s320/Untitled3.jpg" alt="" id="BLOGGER_PHOTO_ID_5296103682184732002" border="0"&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Tired of logging in ur gmail account everytime you get a mail??Why do so much when it supports downloading of ur mails using an e-mail client!!For those who don't know what the hell does that mean..read on..&lt;br /&gt;E-mail clients(like Mozilla Thunderbird,Windows mail or Outlook) helps you download your mails,so they can be viewed offline,once your account is set-up.For a Gmail account,it's free but free service of Yahoo doesn't let u do this and requires a Yahoo Mail Plus account(a paid service).&lt;br /&gt;So here I explain the set-up process..&lt;br /&gt;&lt;br /&gt;1.Log in to ur gmail account and follow the path:&lt;span style="font-weight: bold; font-style: italic;"&gt;Settings-&gt;Forwarding and POP/IMAP&lt;/span&gt;&lt;br style="font-weight: bold;"&gt;&lt;br /&gt;2.Select &lt;span style="font-weight: bold; font-style: italic;"&gt;Enable POP for mails that arrives from now on&lt;/span&gt;,click Save changes and log out.&lt;br /&gt;That's  not all.Now open up the Windows mail.&lt;br /&gt;&lt;br /&gt;3.Go to Tools menu-&gt;Accounts.Click Add button and select E-mail account.Type in the name ,whatever you want and give your e-mail id(or the gmail id).&lt;br /&gt;&lt;br /&gt;4.From the combobox under incoming e-mail server type,select POP3.&lt;br /&gt;In the first textbox under Incoming mail server,type &lt;span style="font-weight: bold; font-style: italic;"&gt;pop.gmail.com&lt;/span&gt;  and &lt;span style="font-weight: bold; font-style: italic;"&gt;smtp.gmail.com&lt;/span&gt; in the text box below it.&lt;br /&gt;Check the box that says outgoing server requires authentication.Click Next.&lt;br /&gt;&lt;br /&gt;5.Give ur username and password(it's the same u use to log in to ur gmail account).In the next window &lt;span style="font-weight: bold; font-style: italic;"&gt;check&lt;/span&gt; &lt;span style="font-weight: bold; font-style: italic;"&gt;Do not download mails at this time&lt;/span&gt;,coz the set-up is not yet completed...&lt;br /&gt;&lt;br /&gt;6.After you hit finish u should get the internet accounts window,where u gotta select ur gmail account created just now and click properties.&lt;br /&gt;Go to Advanced tab and enter &lt;span style="font-weight: bold; font-style: italic;"&gt;port no. 465 for outgoing server and 995 for incoming server&lt;/span&gt;.Check the checkboxes below them.Check the last box,if u want to store a copy of mail in the server even after it's downloaded.And u r done....&lt;br /&gt;Hit the &lt;span style="font-weight: bold; font-style: italic;"&gt;send/receive button&lt;/span&gt; to download mails.&lt;br /&gt;Hope this helped u..Reply to me if u liked it..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-6865744969289302226?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/ic-jEZnOpI4/setting-up-gmail-account-in-windows.html</link><author>noreply@blogger.com (Gaurav R)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_4CU5jQFFZGw/SX-KMQXLDBI/AAAAAAAAADM/bgXYUSN-t5Q/s72-c/Untitled.jpg" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/01/setting-up-gmail-account-in-windows.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-8914279154722716672</guid><pubDate>Fri, 23 Jan 2009 07:56:00 +0000</pubDate><atom:updated>2009-02-01T23:54:58.195+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">How-to</category><title>Something about blogger-Adding logos</title><description>I hope u all know how to add a gadget in ur blogger blog.So here I'm gonna explain &lt;span style="font-style: italic;"&gt;How to put on a logo(with a caption) onto ur blog&lt;/span&gt;.The one,I did as u can see above says &lt;span style="font-style: italic;"&gt;gr's blog,tech for dummies&lt;/span&gt;.Here's how I did it-&lt;br /&gt;&lt;br /&gt;*Create a custom logo with some logo generator such as &lt;span style="font-weight: bold; font-style: italic;"&gt;The Logo creator v5&lt;/span&gt; or &lt;span style="font-weight: bold; font-style: italic;"&gt;AAA Logo Creator&lt;/span&gt;,the one I used.A bit of googling will get you these,so I'm not gonna give links here!&lt;br /&gt;&lt;br /&gt;*Save ur customised logo in image formats like jpg or png etc. somewhere in ur harddisk.Use some external image-hosting sites(I use Photobucket) to upload ur logos onto the web so that they are available 24x7..&lt;br /&gt;&lt;br /&gt;*These sites give an html code(with the url) for the uploaded images.Copy that n paste it in the new gadget that u r gonna add(from ur dashboard).Now move around the gadget in the layout to place it whereever u like...&lt;br /&gt;and that's all u need to do..Now u've got ur own logo..&lt;br /&gt;&lt;br /&gt;Hope this helps anyone new to blogger.&lt;span style="font-weight: bold;"&gt;If u've got a better method to do this or if u need any clarifications plz feel free to contact me.Just scribble in my guestbook. &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-8914279154722716672?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/VKD2VzpRU8Y/something-about-blogger-adding-logos.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/01/something-about-blogger-adding-logos.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-8979939093306977961</guid><pubDate>Tue, 20 Jan 2009 11:04:00 +0000</pubDate><atom:updated>2009-02-01T23:54:58.195+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">How-to</category><title>Good night--For BSNL Night unlimited users</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_4CU5jQFFZGw/SXXuX_m7tqI/AAAAAAAAACM/ZQHFBrf6km4/s1600-h/create+task.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 100px; height: 100px;" src="http://2.bp.blogspot.com/_4CU5jQFFZGw/SXXuX_m7tqI/AAAAAAAAACM/ZQHFBrf6km4/s320/create+task.jpg" alt="" id="BLOGGER_PHOTO_ID_5293399033023018658" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Waking up at 2a.m to make the fullest use of the time??Then here's is a&lt;br /&gt;good-sleep pill for you guys.Follow these steps to get the most out of the&lt;br /&gt;specified time..&lt;br /&gt;&lt;br /&gt;*Get this software called &lt;span style="font-weight: bold;"&gt;reconnect&lt;/span&gt; &lt;a style="font-weight: bold; font-style: italic;" href="http://www.sharewareconnection.com/author.php?name=ntoolz.com"&gt;here&lt;/a&gt;,which connects your system to&lt;br /&gt;the network at the specified time.&lt;br /&gt;*No need to keep your system awake for the whole night.You can use the&lt;br /&gt;Windows Task Scheduler to do this.Navigate to the path given here--&lt;br /&gt;control panel-&gt;adminstrative tools-&gt;task scheduler-&gt;create task.But &lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;don't&lt;br /&gt;forget to hibernate the system and do not shut it down..&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;*Provide a name and description for ur task.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_4CU5jQFFZGw/SXXvDgEayvI/AAAAAAAAACs/XkyzrCxNOCw/s1600-h/triger.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 100px; height: 100px;" src="http://4.bp.blogspot.com/_4CU5jQFFZGw/SXXvDgEayvI/AAAAAAAAACs/XkyzrCxNOCw/s320/triger.jpg" alt="" id="BLOGGER_PHOTO_ID_5293399780470999794" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;*Navigate to the &lt;span style="font-weight: bold;"&gt;trigger&lt;/span&gt; tab and click &lt;span style="font-weight: bold;"&gt;new&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;*Select &lt;span style="font-weight: bold;"&gt;On a schedule&lt;/span&gt; in the &lt;span style="font-weight: bold;"&gt;Begin the task section&lt;/span&gt; and check daily.Specify the date to start the action ,that  would probably be the very next day u read this..&lt;br /&gt;&lt;br /&gt;*Go to &lt;span style="font-weight: bold;"&gt;actions&lt;/span&gt; tab and select &lt;span style="font-weight: bold;"&gt;new&lt;/span&gt;..select &lt;span style="font-weight: bold;"&gt;start a program&lt;/span&gt; in the &lt;span style="font-weight: bold;"&gt;action&lt;/span&gt; section.&lt;br /&gt;Under &lt;span style="font-weight: bold;"&gt;browse&lt;/span&gt; give the full path of &lt;span style="font-weight: bold;"&gt;reconnect.exe&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_4CU5jQFFZGw/SXXulW3gsVI/AAAAAAAAACc/lRiEJFgDU-c/s1600-h/new+action.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 100px; height: 100px;" src="http://1.bp.blogspot.com/_4CU5jQFFZGw/SXXulW3gsVI/AAAAAAAAACc/lRiEJFgDU-c/s320/new+action.jpg" alt="" id="BLOGGER_PHOTO_ID_5293399262604865874" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;*Go to &lt;span style="font-weight: bold;"&gt;conditions&lt;/span&gt; and check &lt;span style="font-weight: bold;"&gt;wake the computer to run this&lt;br /&gt;task&lt;/span&gt; option and that's all in the task scheduler..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_4CU5jQFFZGw/SXXu7fgXgUI/AAAAAAAAACk/NZzHnsmIjio/s1600-h/conditions.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; cursor: pointer; width: 100px; float: right; height: 100px;" src="http://4.bp.blogspot.com/_4CU5jQFFZGw/SXXu7fgXgUI/AAAAAAAAACk/NZzHnsmIjio/s320/conditions.jpg" alt="" id="BLOGGER_PHOTO_ID_5293399642880835906" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;*Now open Reconnect.exe and click settings.Give the username and password given by the ISP(that's the username and password u use to get connected) and &lt;span style="font-weight: bold; font-style: italic;"&gt;check&lt;/span&gt; &lt;span style="font-weight: bold; font-style: italic;"&gt;connect on start up&lt;/span&gt;..this is the most important one ..if u forget to check this,it only opens the application but doesn't connect and u r done&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_4CU5jQFFZGw/SXXvWZ2mf-I/AAAAAAAAAC0/6rOl8ULGU98/s1600-h/reconnect.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; cursor: pointer; width: 100px; float: right; height: 100px;" src="http://3.bp.blogspot.com/_4CU5jQFFZGw/SXXvWZ2mf-I/AAAAAAAAAC0/6rOl8ULGU98/s320/reconnect.jpg" alt="" id="BLOGGER_PHOTO_ID_5293400105219948514" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-8979939093306977961?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/2Jqj5cpoLjY/good-night-for-bsnl-night-unlimited.html</link><author>noreply@blogger.com (Gaurav R)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_4CU5jQFFZGw/SXXuX_m7tqI/AAAAAAAAACM/ZQHFBrf6km4/s72-c/create+task.jpg" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/01/good-night-for-bsnl-night-unlimited.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-8228870381319530998</guid><pubDate>Sat, 17 Jan 2009 00:27:00 +0000</pubDate><atom:updated>2009-02-02T01:04:47.707+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">tech news</category><title>Pass my password..!</title><description>&lt;span id="ctl00_MainContent_lblBody"&gt;&lt;p&gt;Elcomsoft, of “Advanced eBook Processor” fame is said to have released a proprietary WPA/WPA2-PSK(Wi-Fi Protected Access - Pre-Shared Key is a certified standard for securing wireless networks) cracker that uses GPUs(Graphical Processing Unit) to brute force passwords in record time.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Elcomsoft claims its software can try almost &lt;span style="font-weight: bold; font-style: italic;"&gt;16,000&lt;/span&gt; passwords per second (p/sec) with a single Radeon HD 4870, using an “advanced dictionary attack” that mutates entries from a master wordlist.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;The program, known as the &lt;span style="font-weight: bold; font-style: italic;"&gt;Elcomsoft Wireless Security Auditor&lt;/span&gt;, claims it was designed for network administrators and IT personnel seeking to audit internal security, as well as external penetration testers and other “white hat” hackers(also called &lt;span style="font-weight: bold; font-style: italic;"&gt;Ethical hackers&lt;/span&gt;,are the computer-security experts,specially hired by firms to ensure their data is safe).&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt; &lt;br /&gt;  &lt;p&gt;While &lt;span style="font-style: italic;"&gt;brute-force&lt;/span&gt;(this is a way to crack passwords by trying out a large no. of passwords in a specific character range at a very high-rate,but as said,the method now is quite older and more efficient and faster ways have emerged) and dictionary attacks(the name suggests an idea of what this might be :-)) are nothing new, Wireless Security Auditor appears to be one of the most efficient solutions available. To work, it requires a tcpdump-formatted communications dump with at least one handshake packet(I actually don't know what this means.. I would be thankful to someone who could explain it to me).&lt;/p&gt;&lt;p&gt;Late last year, security researchers announced that they were able to break weak SSL(stands for Secure Sockets Layer,is some kind of a security protocol,now succeeded by Transport Layer Security-TLS) certificates using the computing power of 600 PlayStation 3s over a handful of weekends.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;The price tag fixed by Elcomsoft is $1,199 but until March 1 '09 you can get it for $599.9(wow..for half the price so don't miss this offer..get urself a pack  :-) )&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.dailytech.com/New+Software+Uses+GPUs+to+Crack+WPA+Passwords/article13963.htm"&gt;Source&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-8228870381319530998?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/e4o1vcGXuSM/pass-my-password.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/01/pass-my-password.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-1812262322606886151</guid><pubDate>Thu, 15 Jan 2009 02:18:00 +0000</pubDate><atom:updated>2009-02-02T01:04:47.707+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">tech news</category><title>40,000 and counting...</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href=""&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 95px; height: 123px;" src="http://tbn2.google.com/images?q=tbn:UUkmYqBK_DkqSM:http://www.straitstimes.com/STI/STIMEDIA/image/20081022/front-pjmoonshot23.jpg" target="_blank" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The Rs &lt;span style="font-weight: bold; font-style: italic;"&gt;386-crore&lt;/span&gt; Indian Moon mission, Chandrayaan-1, which completes a flawless 100 days around January 30 has transmitted more than &lt;span style="font-weight: bold; font-style: italic;"&gt;40,000&lt;/span&gt; images of different types since its launch on &lt;span style="font-weight: bold; font-style: italic;"&gt;October 22, 2008&lt;/span&gt;, which many in ISRO believe is quite a record compared to the lunar flights of other nations.&lt;br /&gt;&lt;br /&gt;ISRO officials estimated that if more than 40,000 images have been transmitted by Chandrayaan's cameras in 75 days, it worked out to nearly 535 images being sent daily. They are first transmitted to &lt;span style="font-weight: bold; font-style: italic;"&gt;Indian Deep space Network at Byalalu&lt;/span&gt; near Bangalore, from where they are flashed to ISRO's telemetry, tracking and command network at Bangalore.&lt;br /&gt;&lt;br /&gt;On November 26, the indigenous &lt;a style="font-style: italic;" href="http://www.isro.org/chandrayaan/htmls/tmc.htm"&gt;Terrain Mapping Camera&lt;/a&gt;, &lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href=""&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 350px; height: 292px;" src="http://www.isro.org/chandrayaan/images/tmc11.jpg" target="_blank" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;which was first activated on October 29, 2008, took shots of peaks along craters.&lt;br /&gt;&lt;br /&gt;Buoyed by the success of Chandrayaan-1, ISRO is now planning a more ambitious lunar venture around 2020 after the &lt;span style="font-weight: bold; font-style: italic;"&gt;Chandrayaan-2 in 2012&lt;/span&gt;: a manned mission. This was stated by none other than the man behind India's maiden lunar mission, Mylswamy Annadurai, Chandrayaan-1's project director, while speaking to TOI recently.&lt;br /&gt;&lt;br /&gt;Annadurai said around 2015, ISRO is embarking on a manned mission to the low earth orbit, which is 2000 km above the Earth. "An Indian on the Moon is, therefore, certainly the next logical step and ISRO is definitely considering it,'' he said.&lt;br /&gt;&lt;br /&gt;They cited the case of China and Japan which are working on a manned mission to the Moon around 2020 apart from the US. "Keeping this in view can India lag behind in this human race to the Moon?'' a space expert from the Tata Institute of Fundamental Research requesting anonymity asked.&lt;br /&gt;&lt;br /&gt;With regards to Chandrayaan-1, a meeting of all the principal investigators of the different scientific experiments is being held in Bangalore on January 29 to review the preliminary results.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-1812262322606886151?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/d02ZHdlv88k/40000-and-counting.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/01/40000-and-counting.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-3358456434874532709</guid><pubDate>Wed, 14 Jan 2009 02:23:00 +0000</pubDate><atom:updated>2009-02-01T23:55:15.206+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">movies n music</category><title>Slumdog Millionaire..the success saga</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://extracine.com/wp-content/uploads/2008/08/slumdog_millionaire.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 300px; height: 450px;" src="http://extracine.com/wp-content/uploads/2008/08/slumdog_millionaire.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The talk of the town is "Slumdog Millionaire" the Bollywood-English movie,which recently bagged not just one or two but 4 Golden Globe awards and made India proud.So how many of you know that the story of the film germinated in the north Indian town of Allahabad!&lt;br /&gt;The film was inspired by the novel "&lt;span style="font-weight: bold; font-style: italic;"&gt;Q &amp;amp; A&lt;/span&gt;" by &lt;span style="font-weight: bold; font-style: italic;"&gt;Vikas Swarup&lt;/span&gt;,a diplomat,born and brought up in Allahabad.&lt;br /&gt;Swarup, an avid quizzer since his college days, toyed with the idea of writing a novel based on the hugely popular quiz show presented by Bollywood superstar Amitabh Bachchan during his holiday breaks from his day job as a diplomat. He, however, finally managed to write the novel "Q and A" only in the evenings in London over five years ago when he was posted there as counsellor at the Indian high commission.&lt;br /&gt;How did the idea of a novel based on a quiz show come to Swarup? He says,“It all started with a report I read in some newspaper about children living in slums using mobile phones and the Internet. That was quite a revelation. It showed that old class barriers were melting away and anyone can achieve anything.”&lt;br /&gt;No doubt the film has got all that it deserves,afterall 4 Golden Globe awards for a single film definitely speaks of the potential of the film.The film,unlike other reality-based films,goes truly into reality and shows the darker side of Mumbai,that everyone should be aware of..even the slum people.&lt;br /&gt;"Slumdog," which tells of a young Indian man looking for love and competing for money on a television game show, earned awards for director &lt;span style="font-weight: bold; font-style: italic;"&gt;Danny Boyle&lt;/span&gt;, screen writer &lt;span style="font-weight: bold; font-style: italic;"&gt;Simon Beaufoy&lt;/span&gt;, composer &lt;span style="font-weight: bold; font-style: italic;"&gt;A.R. Rahman&lt;/span&gt; for best musical score and for the best picture/drama as well.Earlier, Slumdog also bagged different awards, including the Boston Society of Film Critics Award, the British Independent Film award and the Chicago Film Critics Association Award.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.telegraph.co.uk/telegraph/multimedia/archive/01235/slumdog_millionair_1235419c.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 350px; height: 288px;" src="http://www.telegraph.co.uk/telegraph/multimedia/archive/01235/slumdog_millionair_1235419c.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;But I personally think that all that's needed to be talked about is the class-performance by &lt;span style="font-weight: bold; font-style: italic;"&gt;Dev Patel&lt;/span&gt;(Aamir Jamal),who just takes away all the attention with his expressions.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://file015a.bebo.com/14/large/2007/08/22/17/2072251217a5350257281l.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 350px; height: 380px;" src="http://file015a.bebo.com/14/large/2007/08/22/17/2072251217a5350257281l.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;London born Dev Patel, 18, whose success on the Hindi version of the quiz show turns him into a national sensation in India, is now one of the favourites    for the Oscar.Mr Patel, who lives with his family in Harrow, had no formal acting training    when he was cast in the film. Mr Patel, who    in the film is one question away from the £1 million prize when he is    accused of cheating, said: "My mum is still nagging me to make my bed.    My sister and I annoy each other. It's just when I go to work I get treated    as an adult."&lt;br /&gt;A.R.Rehman,after quite a few flops last year in Indan films,came back with a bang!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-3358456434874532709?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/-kmjVQ4UyoY/slumdog-millionairethe-success-saga.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/01/slumdog-millionairethe-success-saga.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-1543450568705012309</guid><pubDate>Wed, 07 Jan 2009 11:42:00 +0000</pubDate><atom:updated>2009-02-02T01:04:47.708+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">tech news</category><title>Me on Vacation</title><description>&lt;strong&gt;&lt;strong&gt;&lt;span style="font-size:180%;"&gt;Having a &lt;span style="color:#ff0000;"&gt;KIT-KAT&lt;/span&gt; break... Will be back on &lt;span style="color:#33cc00;"&gt;12th Jan&lt;/span&gt;...&lt;br /&gt;BTW a very &lt;span style="color:#3366ff;"&gt;HAPPY NEW YEAR&lt;/span&gt; to all...&lt;br /&gt;Await for more interesting posts this year ahead...&lt;/span&gt;&lt;/strong&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="font-size:180%;"&gt;                       &lt;a href="http://www.smileycentral.com/?partner=ZSzeb001_ZSman000" target="_blank"&gt;&lt;img alt="2009 hat" src="http://smileys.smileycentral.com/cat/8/8_6_46.gif" border="0" /&gt;&lt;/a&gt; &lt;a href="http://www.smileycentral.com/?partner=ZSzeb001_ZSman000" target="_blank"&gt;&lt;img alt="2009 drink" src="http://smileys.smileycentral.com/cat/8/8_6_44.gif" border="0" /&gt;&lt;/a&gt; &lt;a href="http://www.smileycentral.com/?partner=ZSzeb001_ZSman000" target="_blank"&gt;&lt;img alt="Light Menorah" src="http://smileys.smileycentral.com/cat/8/8_7_11.gif" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://smiley.smileycentral.com/download/index.jhtml?partner=ZSzeb095_ZSman000&amp;amp;utm_id=7923" target="_blank"&gt;&lt;img src="http://www.smileycentral.com/sig.jsp?pc=ZSzeb095&amp;amp;pp=ZSman000" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-1543450568705012309?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/Jmt0JJ_Cbjs/me-on-vacation.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/01/me-on-vacation.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-238101506191503144</guid><pubDate>Sat, 03 Jan 2009 01:22:00 +0000</pubDate><atom:updated>2009-02-02T01:04:47.708+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">tech news</category><title>Apple's new "iGloves" for Touch Screens</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href=""&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 230px; height: 320px;" src="http://i.i.com.com/cnwk.1d/i/bto/20061212/iglove_230x320.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span id="ctl00_MainContent_lblBody"&gt;Apple can cause a bit of a controversy at times, but it certainly is not short on creative business ideas.  Though it sometimes doesn't give the customers what they want, it does give them a number of unusual yet beautiful products.&lt;br /&gt;&lt;br /&gt;Here comes from Apple,the solution an innovative stuff to get hold on an iPhone in winter.Apple has filed a patent for several typesof gloves that could allow users to operate its multi-touch devices while wearing gloves in the winter.  The item, sure to be a hot “iPeripheral” in cold weather states, could drop as early as sometime this year.&lt;/span&gt;Outdoor-gear company &lt;span style="font-weight: bold; font-style: italic;"&gt;Marmot&lt;/span&gt; has released the &lt;a class="external-link" href="http://www.uncrate.com/men/gear/outdoor/iglove-007701.php"&gt;iGlove&lt;/a&gt;, a $35 solution to cold-weather click wheel woes. The thumb and forefinger on each glove come with tips that the click wheel of an iPod will pick up, thus eliminating the need to remove a glove whenever the volume, playlist, or artist merits adjustment.&lt;br /&gt;&lt;span id="ctl00_MainContent_lblBody"&gt;&lt;br /&gt;Anyone who has used touch screens on Apple's iPhone or iPod touch, or have used other touch devices such as the Blackberry Storm or the LG Chocolate phone likely have discovered that the devices do not accept input from hands with gloves.  This is because the touch input actually relies on electric impulses from the users fingers.&lt;br /&gt;&lt;br /&gt;With the immense popularity of the iPhone, &lt;a href="http://www.dailytech.com/Meet+Americas+New+Bestselling+Phone+The+iPhone/article13400.htm" title="Meet America's New Bestselling Phone: The iPhone "&gt;America's best selling phone&lt;/a&gt;, companies like Dots Gloves, The North Face, and Freehands have all hit the market with solutions, many of which cut away the fingertips of the gloves or offer removable glove fingertips, to allow for touch screen use.&lt;br /&gt;&lt;br /&gt;Apple, however, in a recently filed patent application looks to allow the users to keep the gloves on their fingertips.  It outlines several different design possibilities.  The first is a dual shell approach where the inner shell receives the signal and transmits it to an outer conductive shell on the gloves' fingertips.  Another method has a thin inner conducting shell, with a removable cap outer shell.  Finally a third method, similar to the second, has an elastic ring at the fingertip, which pushes away the outer shell when pressure is applied, revealing the inner conductive shell.&lt;br /&gt;&lt;/span&gt;&lt;div class="postBody"&gt;  &lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-238101506191503144?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/n0gWNhPuR2E/apple-shows-love-to-glove-developing.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2009/01/apple-shows-love-to-glove-developing.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-3546685718404777715</guid><pubDate>Wed, 31 Dec 2008 01:02:00 +0000</pubDate><atom:updated>2009-02-02T01:04:47.708+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">tech news</category><title>Innovative Bicycle Parking in Japan</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_4CU5jQFFZGw/SVrJdVBZvII/AAAAAAAAAB8/p8szd1yQbLo/s1600-h/3115982383_78f1b28b38.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 300px; height: 303px;" src="http://3.bp.blogspot.com/_4CU5jQFFZGw/SVrJdVBZvII/AAAAAAAAAB8/p8szd1yQbLo/s320/3115982383_78f1b28b38.jpg" alt="" id="BLOGGER_PHOTO_ID_5285758618369113218" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span id="ctl00_MainContent_lblBody"&gt;&lt;p style="margin-bottom: 12pt;"&gt;We all know the significance of a Bicycle in our daily life.Conditions make car use expensive and condition of our streets make them less convenient. Finding a place to park your vehicle close to home can involve large monthly fees, and you will be charged a fee every time you use the national highway system.You park in a wrong place and your vehicle is gone!&lt;/p&gt;  &lt;p style="margin-bottom: 12pt;"&gt;In response to the need for a better way to park bicycles &lt;a href="http://www.giken.com/int/st/" rel="nofollow" target="_blank"&gt;Giken&lt;/a&gt;(a construction solution company in Japan) has developed a multi-tiered storage facility that takes in your bicycle at an automated kiosk and stores it in an &lt;span style="font-weight: bold; font-style: italic;"&gt;underground rotating parking system&lt;/span&gt;. &lt;a href="http://www.fastcompany.com/blog/saabira-chaudhuri/itinerant-mind/japans-high-tech-solution-bike-clutter" rel="nofollow" target="_blank"&gt;According to &lt;em&gt;FastCompany&lt;/em&gt;, the service costs 2,600 Yen ($29 USD) per month.&lt;/a&gt;&lt;/p&gt; &lt;p style="margin-bottom: 12pt;"&gt;Cost wise, the service is about the same as a traditional parking system, but it's a more organised way of parking. Normally you would need to walk in to the parking facility and find your bicycle among the hundreds of identical bikes. The space savings are also considerable when compared to a traditional bicycle parking area.Now u just need to take your bicycle in front of the system and it does all the rest for you!!&lt;/p&gt;&lt;p style="margin-bottom: 12pt;"&gt;Check out the system in action here:    &lt;span style="font-weight: bold;"&gt;Kasai Underground Station,Tokyo&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;/span&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/T7uJm3O1Z-Y&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/T7uJm3O1Z-Y&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-3546685718404777715?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/QhTeczMulW4/innovative-bicycle-parking-in-japan.html</link><author>noreply@blogger.com (Gaurav R)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_4CU5jQFFZGw/SVrJdVBZvII/AAAAAAAAAB8/p8szd1yQbLo/s72-c/3115982383_78f1b28b38.jpg" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2008/12/innovative-bicycle-parking-in-japan.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-1744109020069078377</guid><pubDate>Mon, 22 Dec 2008 13:31:00 +0000</pubDate><atom:updated>2009-02-01T23:57:40.887+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">jargon</category><title>What do you mean by RSS??</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/100px-Feed-icon.svg.png"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 100px; height: 100px;" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/43/Feed-icon.svg/100px-Feed-icon.svg.png" alt="" border="0" /&gt;&lt;/a&gt;This logo is quite omnipresent in the web..Do u wonder what's this and what does it indicate??Then read on...&lt;br /&gt;&lt;br /&gt;It's the offial RSS logo.Now what the hell does that mean??Read on further..&lt;br /&gt;&lt;br /&gt;&lt;b&gt;RSS (Really Simple Syndication)&lt;/b&gt; is a family of &lt;a href="http://en.wikipedia.org/wiki/Web_feed" title="Web feed"&gt;Web feed&lt;/a&gt; formats used to publish frequently updated works—such as &lt;a href="http://en.wikipedia.org/wiki/Blog" title="Blog"&gt;blog&lt;/a&gt; entries, news headlines, audio, and video—in a standardized format. An RSS document (which is called a "feed", "web feed",or "channel") includes full or summarized text, plus &lt;a href="http://en.wikipedia.org/wiki/Metadata" title="Metadata"&gt;metadata&lt;/a&gt; such as publishing dates and authorship. Web feeds benefit publishers by letting them syndicate content automatically. They benefit readers who want to subscribe to timely updates from favored websites or to aggregate feeds from many sites into one place. RSS feeds can be read using &lt;a href="http://en.wikipedia.org/wiki/Software" title="Software" class="mw-redirect"&gt;software&lt;/a&gt; called an "RSS reader", "feed reader", or "&lt;a href="http://en.wikipedia.org/wiki/Aggregator" title="Aggregator"&gt;aggregator&lt;/a&gt;", which can be &lt;a href="http://en.wikipedia.org/wiki/Web_application" title="Web application"&gt;web-based&lt;/a&gt; or &lt;a href="http://en.wikipedia.org/wiki/Application_software" title="Application software"&gt;desktop-based&lt;/a&gt;. A standardized &lt;a style="font-weight: bold; font-style: italic;" href="http://en.wikipedia.org/wiki/XML" title="XML"&gt;XML&lt;/a&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;(Xtensible Mark-up Language)&lt;/span&gt; file format allows the information to be published once and viewed by many different programs. The user subscribes to a feed by entering the feed's &lt;a style="font-weight: bold; font-style: italic;" href="http://en.wikipedia.org/wiki/URI" title="URI" class="mw-redirect"&gt;URI(Uniform Resource Identifier)&lt;/a&gt; (often referred to informally as a &lt;span style="font-weight: bold; font-style: italic;"&gt;"&lt;/span&gt;&lt;a style="font-weight: bold; font-style: italic;" href="http://en.wikipedia.org/wiki/URL" title="URL" class="mw-redirect"&gt;URL&lt;/a&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;"(Uniform Resource Locater)&lt;/span&gt;, although &lt;a href="http://en.wikipedia.org/wiki/URI#Technical_view" title="URI" class="mw-redirect"&gt;technically&lt;/a&gt;, those two terms are &lt;a href="http://en.wikipedia.org/wiki/URI#Relationship_to_URL_and_URN" title="URI" class="mw-redirect"&gt;not exactly synonymous&lt;/a&gt;) into the reader or by clicking an RSS icon in a browser that initiates the subscription process. The RSS reader checks the user's subscribed feeds regularly for new work, downloads any updates that it finds, and provides a &lt;a href="http://en.wikipedia.org/wiki/User_interface" title="User interface"&gt;user interface&lt;/a&gt; to monitor and read the feeds.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Check this video for better understanding coz a video is better than a 1000 words..&lt;/span&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/0klgLsSxGsU&amp;amp;hl=en&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/0klgLsSxGsU&amp;amp;hl=en&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-1744109020069078377?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/75F6o3Tz-4Q/what-do-you-mean-by-rss.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2008/12/what-do-you-mean-by-rss.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7610315269249515041.post-12258424331974301</guid><pubDate>Wed, 17 Dec 2008 01:44:00 +0000</pubDate><atom:updated>2009-02-02T01:04:47.708+05:30</atom:updated><category domain="http://www.blogger.com/atom/ns#">tech news</category><title>Palm Bets Big on Nova</title><description>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 252px; height: 188px;" src="http://images.macnn.com/esta/content/0808/palmtreopro.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span id="ctl00_MainContent_lblBody"&gt;&lt;p&gt;It wasn't so long ago that Palm was one of the biggest companies in the smartphone and PDA market. When the traditional PDA died out as one of the hot gadgets to have, Palm took a few blows to the head. When other companies jumped into the smartphone market with products superior to Palm, it took even more blows.&lt;/p&gt; &lt;p&gt;Today Palm is seeing its profits shrink and its products lose popularity to newcomers like the Apple iPhone, which now &lt;a href="http://www.dailytech.com/IPhone+Grabs+166+of+Global+Smartphone+Market/article13582.htm" target="_blank"&gt;holds over 16% of the smartphone market&lt;/a&gt;. Palm hasn’t given up and has announced that its big news for &lt;a href="http://en.wikipedia.org/wiki/Consumer_Electronics_Show"&gt;CES&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 142px; height: 90px;" src="http://upload.wikimedia.org/wikipedia/en/2/2c/CES_Logo.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;(Consumer Electronic Show) 2009 will be a new operating system it calls Nova.&lt;/p&gt; &lt;p&gt;Little is known about Nova at this point with the veil of secrecy that Palm was wrapped around its operating system. What is known is that Palm doesn’t want to get into a slugging match with either BlackBerry or Apple with Nova. What Palm wants is an operating system that is flexible and supports a wide range of digital consumers.&lt;/p&gt;  &lt;p&gt;Some sources say that Nova is an attempt to make an operating system that is smarter about you. &lt;span style="font-weight: bold; font-style: italic;"&gt;An example of what Nova may be able to do&lt;/span&gt;, according to these sources, is look at your calendar and see you have a trip planned. Then the day before the trip automatically send you a message with things like weather conditions at the location.&lt;/p&gt; &lt;p&gt;Many wonder if the smartphone market will welcome an additional operating system to the fold. Developers are already running full-tilt to produce Apps for the iPhone along with programs for the BlackBerry and Google's new Android devices.&lt;/p&gt; &lt;p&gt;One developer named Jeff Holden with Pelago, a company building applications for the iPhone told &lt;em&gt;BusinessWeek&lt;/em&gt;, "If they can't show me a large, active audience, I'm not going to be interested. At this point in the game, you're toast unless you have something completely unbelievable." &lt;/p&gt; &lt;p&gt;The smartphone world will have to wait until CES in a few weeks to see if Nova is unbelievable or if Palm will quickly disappear under the force of better competition.&lt;/p&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7610315269249515041-12258424331974301?l=ggauravr.blogspot.com'/&gt;&lt;/div&gt;</description><link>http://feedproxy.google.com/~r/grsblog/~3/hc31VYQaUzo/palm-bets-big-on-nova.html</link><author>noreply@blogger.com (Gaurav R)</author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://ggauravr.blogspot.com/2008/12/palm-bets-big-on-nova.html</feedburner:origLink></item></channel></rss>
