<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-9247231</id><updated>2025-09-27T08:07:21.948+05:30</updated><category term="me"/><category term="technology"/><category term="Tips"/><category term="Blogger"/><category term="philosophical"/><category term="programming"/><category term="funny"/><category term="irony"/><category term="src.web"/><category term="Festivals"/><category term="Game"/><category term="Google"/><category term="Mobile"/><category term="inspirational"/><category term="poem"/><category term="College"/><category term="Quiz"/><category term="Travel"/><title type='text'>BloggeD</title><subtitle type='html'>Thoughts &lt;-&gt; Words &lt;-&gt; Concepts &lt;-&gt; Problems &lt;-&gt; Solutions &lt;-&gt; Blogs :D :D</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>25</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-9247231.post-624519229584325620</id><published>2009-02-05T15:17:00.003+05:30</published><updated>2009-02-06T03:21:09.031+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger"/><category scheme="http://www.blogger.com/atom/ns#" term="programming"/><category scheme="http://www.blogger.com/atom/ns#" term="technology"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Understanding Blogger Template - 3</title><content type='html'>The blogger template is a xhtml document which is rendered based on variables. These tutorials aims at helping to understand the blogger template and hence to experiment, learn and change it. Blogger template has mainly three types of variables one which controls the flow of the code, one which pulls data from the databases behind and the third are expressions. This variables are then distinguished with the help of following xml namespaces. &lt;br /&gt;&lt;p/&gt;&lt;br /&gt;This is third in the series of the three tutorial for Blogger Template and deals mainly with the explanation of the expr: namespace and understanding its usage. The other tuts are:&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/01/understanding-blogger-template-1.html&quot;&gt;Blogger Template Explanation - Sections, widgets, includables, includes. b: namespace&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/01/understanding-blogger-template-2.html&quot;&gt;Blogger Template Explanation - Data access. data: namespace elements.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/02/understanding-blogger-template-3.html&quot;&gt;Blogger Template Explanation - How to use expr: namespace - customize links.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;Expr namespace is simple but its usage is very important. Expr is basically used in conjuction with data tags. For making the blogger engine aware that the xml tag attributes coming next are having data tags in them and have to be parsed. Whenever there is a tag say anchor tag, you will have attributes like href and in that case you want the href link created dynamically with help of some data say data:post.url then you will have to use href as expr:href.&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;&lt;br /&gt;Simple implementation of expr:href in the title includable. &lt;br /&gt;&lt;/h4&gt;&lt;br /&gt;This includable is the title section of your blog. Check the usage of expr:href with the anchor tag.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;b:includable id=&#39;title&#39;&amp;gt;&lt;br /&gt; &amp;lt;b:if cond=&#39;data:blog.url == data:blog.homepageUrl&#39;&amp;gt;&lt;br /&gt;  &amp;lt;data:title/&amp;gt;&lt;br /&gt;  &amp;lt;b:else/&amp;gt;&lt;br /&gt;  &amp;lt;a expr:href=&#39;data:blog.homepageUrl&#39;&amp;gt;&amp;lt;data:title/&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt; &amp;lt;/b:if&amp;gt;&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;See this code below for understanding the implementaion of expr:src and over other such tags. It is being used for parsing the data tags in image img tag attributes.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;a expr:href=&#39;data:blog.homepageUrl&#39; style=&#39;display: block&#39;&amp;gt;&lt;br /&gt; &amp;lt;img &lt;br /&gt;  expr:alt=&#39;data:title&#39; &lt;br /&gt;  expr:height=&#39;data:height&#39; &lt;br /&gt;  expr:id=&#39;data:widget.instanceId&#39;&lt;br /&gt;  expr:src=&#39;data:sourceUrl&#39; &lt;br /&gt;  expr:width=&#39;data:width&#39; &lt;br /&gt;  style=&#39;display: block&#39;&lt;br /&gt; /&amp;gt;&lt;br /&gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;As you can see how expr tag is applied to the attributes selectively. Wherever data was to be used expr is applied and in style where data tag is not required the expr is ommitted. Therefore the expr namespace variables are all the attributes which might have some data namespace variable inserted in it.  So use expr for data tags used in any attribute values like expr:title, expr:id, expr:onClick and so on. These attributes can be for any xml tag. I have seen it in anchor a, image img, span, div, select, input, button etc., so pretty much everything.&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;&lt;br /&gt;Example Social Bookmark StumbleUpon button for Blogger.&lt;br /&gt;&lt;/h4&gt;&lt;br /&gt;This code listing below explains how to insert stumble upon button for blogger. Although it serves as an example on how to do this but my main focus here is on the usage of quotes. So check how the single and double quotes are used in expr:href for creating and using the url to submit and/or thumbs up the specific post correctly. It generally does not matter that you are using single or double quotes, but when your attribute has to use both of them single quotes decide the attribute opening and closing and double quotes are understood as part of attribute.&lt;br /&gt;&lt;br /&gt;Blogger uses single quotes for attribute values, and double quotes within, so change your code as necessary. Within the attribute value, if there are extra single or double quotes as part of the original code, e.g. Javascript, you need to escape them. Also check that the ampersand &#39;&amp;amp;&#39; is converted to &#39;&amp;amp;amp;&#39;. So you might have to create your url in this way. Check more on the stumble upon post url on their site StumbleUpon http://www.stumbleupon.com Widgets and button section.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;a &lt;br /&gt; rel=&amp;quot;nofollow&amp;quot; &lt;br /&gt; target=&amp;quot;_blank&amp;quot; &lt;br /&gt; expr:href=&#39;&amp;quot;http://www.stumbleupon.com/submit?url=&amp;quot; + data:post.url + &amp;quot;&amp;amp;amp;title=&amp;quot; + data:post.title&#39; &lt;br /&gt; title=&amp;quot;StumbleUpon&amp;quot;&amp;gt;&lt;br /&gt; &amp;lt;img &lt;br /&gt;  src=&amp;quot;../stumbleupon.png&amp;quot; &lt;br /&gt;  title=&amp;quot;StumbleUpon&amp;quot; &lt;br /&gt;  alt=&amp;quot;StumbleUpon&amp;quot; &lt;br /&gt;  class=&amp;quot;sociable-hovers&amp;quot;&lt;br /&gt; /&amp;gt;&lt;br /&gt;&amp;lt;/a&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt; &lt;br /&gt;Example Social Bookmark - Add Digg to Blogger&lt;br /&gt;&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;Again although the below code listing is an example of Adding Digg to Blogger template, my focus here is on the escaping done while using javascript. Check how data:post.url is used while inserting it in the javascript variable digg_url. You can use this code to display a counter of diggs done for your post in a neat compact manner on your blog. Check out the digg documentation of this on the http://www.digg.com tools section.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt; digg_url = &amp;amp;#39;&amp;lt;data:post.url/&amp;gt;&amp;amp;#39;;&lt;br /&gt; digg_skin = &#39;compact&#39;;&lt;br /&gt; digg_window = &#39;new&#39;;&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script src=&amp;quot;http://digg.com/tools/diggthis.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt; &lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;So as you saw proper escaping of quotes is done above. Although this is not direct example of the expr: tag usage as javascript onclick or anyother such event is not used here. But you got the logic right? But if you didn&#39;t check this code listing displaying the button to add comments. This is generally found in the footer section of your post and its obviously customisable :).&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;div class=&#39;post-footer-line post-footer-line-3&#39;&amp;gt;&lt;br /&gt; &amp;lt;span class=&#39;post-comment-link&#39;&amp;gt;&lt;br /&gt;  &amp;lt;b:if cond=&#39;data:blog.pageType != &amp;amp;quot;item&amp;amp;quot;&#39;&amp;gt;&lt;br /&gt;   &amp;lt;b:if cond=&#39;data:post.allowComments&#39;&amp;gt;&lt;br /&gt;    &amp;lt;a &lt;br /&gt;     class=&#39;comment-link&#39; &lt;br /&gt;     expr:href=&#39;data:post.addCommentUrl&#39; &lt;br /&gt;     expr:onclick=&#39;data:post.addCommentOnclick&#39;&amp;gt;&lt;br /&gt;      &amp;lt;b:if cond=&#39;data:post.numComments == 1&#39;&amp;gt;&lt;br /&gt;       1 &amp;lt;data:top.commentLabel/&amp;gt;&lt;br /&gt;      &amp;lt;b:else/&amp;gt;&lt;br /&gt;       &amp;lt;data:post.numComments/&amp;gt; &amp;lt;data:top.commentLabelPlural/&amp;gt;&lt;br /&gt;      &amp;lt;/b:if&amp;gt;&lt;br /&gt;    &amp;lt;/a&amp;gt;&lt;br /&gt;   &amp;lt;/b:if&amp;gt;&lt;br /&gt;  &amp;lt;/b:if&amp;gt;&lt;br /&gt; &amp;lt;/span&amp;gt; &lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;The data:post.addCommentOnclick generates appropriate javascript based on your blog setting for example a popup window or comment post page. And data:post.addCommentUrl will generate the url pointing to the comments for the post. &lt;br /&gt;&lt;br /&gt;This comes to the end of the three tutorials which I was intending to write on the blogger template. But If you want anything else to be added in this tutorial series let me know and I will do it.&lt;br /&gt;&lt;br /&gt;If you have done anything interesting with the blogger template create a back-link to it in this tutorial. Please share you comments about the things discussed and add information that you feel will benefit others. Thanks for reading.</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/624519229584325620/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/624519229584325620?isPopup=true' title='20 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/624519229584325620'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/624519229584325620'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2009/02/understanding-blogger-template-3.html' title='Understanding Blogger Template - 3'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>20</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-2974609010925963602</id><published>2009-01-26T20:11:00.002+05:30</published><updated>2009-02-06T03:23:27.683+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger"/><category scheme="http://www.blogger.com/atom/ns#" term="programming"/><category scheme="http://www.blogger.com/atom/ns#" term="technology"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Understanding the Blogger Template - 2</title><content type='html'>The blogger template is a xhtml document which is rendered based on variables. These tutorials aims at helping to understand the blogger template and hence to experiment, learn and change it. Blogger template has mainly three types of variables one which controls the flow of the code, one which pulls data from the databases behind and the third are expressions. This variables are then distinguished with the help of following xml namespaces. &lt;br /&gt;&lt;p/&gt;&lt;br /&gt;This is second in the series of the three tutorial for Blogger Template and deals mainly with the explanation of the data: namespace and understanding how to access its vars.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/01/understanding-blogger-template-1.html&quot;&gt;Blogger Template Explanation - Sections, widgets, includables, includes. b: namespace&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/01/understanding-blogger-template-2.html&quot;&gt;Blogger Template Explanation - Data access. data: namespace elements.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/02/understanding-blogger-template-3.html&quot;&gt;Blogger Template Explanation - How to use expr: namespace - customize links.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;Data namespace contains the most important tags as this is the way you access your data. Maybe I would write a separate blog for this one, but the basics are here. The namespace is basically a way to identify and maintain uniqueness in when large number of elements are present. The expression for identifying a element uniquely in xml documents is as in [namespace-identifier]:[the-tag]. The data here is the namespace identifier and have further unique elements. A namespace basically helps in identifying or giving a variable unqiue name.&lt;br /&gt;&lt;br /&gt;There are many types of data variables. Some of them are available globally. By globally I mean they can be accessed anywhere whereas the certain tags/identifiers can only be accessed from certain widgets. That is how it works. &lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;The Globally available data in Blogger template&lt;/h4&gt;&lt;br /&gt;This data is available everywhere in your page. So use it wherever you like. These are referenced as part of the &quot;blog&quot; data, i.e., to be used as blog.title for referring for the title of the blog. Don&#39;t forget to include the namespace data in the begining. This code listing will explain the usage.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[The blog&#39;s title.]--&amp;gt;&lt;br /&gt;&amp;lt;data:blog.title/&amp;gt; &lt;br /&gt;&lt;br /&gt;&amp;lt;!--[&lt;br /&gt;The type of the current page. One of &#39;item&#39;, &#39;archive&#39;, or &#39;index&#39;.&lt;br /&gt;This var is quite useful for selectively showing content on &lt;br /&gt;different type of pages. Put an if and check if its index page or &lt;br /&gt;item page and then display selective content&lt;br /&gt;]--&amp;gt;&lt;br /&gt;&amp;lt;data:blog.pageType/&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--  [The URL of the current page.]  --&amp;gt;&lt;br /&gt;&amp;lt;data:blog.url/&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--  [The homepage of the blog.]  --&amp;gt;&lt;br /&gt;&amp;lt;data:blog.homepageUrl/&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[&lt;br /&gt;The title of the current page. This is often the blog title, &lt;br /&gt;but may contain additional information on archive or post pages.&lt;br /&gt;]--&amp;gt;&lt;br /&gt;&amp;lt;data:blog.pageTitle/&amp;gt; &lt;br /&gt;&lt;br /&gt;&amp;lt;!--  [The encoding to use for the blog, e.g. UTF-8.]  --&amp;gt;&lt;br /&gt;&amp;lt;data:blog.encoding/&amp;gt; &lt;br /&gt;&lt;br /&gt;&amp;lt;!--[&lt;br /&gt;Either &amp;quot;ltr&amp;quot; or &amp;quot;rtl&amp;quot; for left-to-right &lt;br /&gt;and right-to-left languages, respectively.&lt;br /&gt;]--&amp;gt;&lt;br /&gt;&amp;lt;data:blog.languageDirection/&amp;gt; &lt;br /&gt;&lt;br /&gt;&amp;lt;!--  [The autodiscovery feed links for the page header.]  --&amp;gt;&lt;br /&gt;&amp;lt;data:blog.feedLinks/&amp;gt; &lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Apart from the data available globally there is data specific to specific widget types. Following is the list of widget types. For each of this widget there are different tags available and locally for each one.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;Page Header&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Blog Archives&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Profile&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Text / HTML / JavaScript&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Feed&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Picture&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Labels&lt;/li&gt;&lt;br /&gt; &lt;li&gt;List&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Link List&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Logo&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Blog Posts&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Page Header widgets in Blogger template&lt;/h4&gt;&lt;br /&gt;This is basically used in the header section of your blog entry. Where the title and the description of the blog is given. This widget is a very simple one and has only two types of data variables for access. Note these don&#39;t require the usage as blog.identifier as in case of globally available data. This can be referenced directly in the Page Header type widget.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;!--[The blog&#39;s title. ]--&amp;gt;&lt;br /&gt;&amp;lt;data:title/&amp;gt; &lt;br /&gt;&lt;br /&gt;&amp;lt;!-- [ The blog&#39;s description. ]--&amp;gt;&lt;br /&gt;&amp;lt;data:description/&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Blog Archives in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;There are three types of display formats of blog archives- Menu, Flat and Hierarchy. If you&#39;re designing a new version, it&#39;s easiest to use &#39;FLAT&#39; as the style, and then manipulate the rest of the data as desired. The key data are title, style and data . Data containing: the name of the archive duration; url of the posts; and post-counts in the duration.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;title &lt;/b&gt; The title of the widget.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;style &lt;/b&gt; One of &#39;MENU&#39;, &#39;FLAT&#39;, or &#39;HIERARCHY&#39;.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;data &lt;/b&gt; A list of each archive unit, each of which contains:&lt;/li&gt;&lt;br /&gt; &lt;ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;name: &lt;/i&gt;The name of this archive interval or period.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;url: &lt;/i&gt;The link to the page containing posts from this interval.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;post-count: &lt;/i&gt;How many posts there are in this interval.&lt;/li&gt;&lt;br /&gt; &lt;/ol&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;Usage: Check the includable for flat. This can then be included as include in the main includable for display.&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[ Simple usage of title ]--&amp;gt;&lt;br /&gt;&amp;lt;b:if cond=&#39;data:title&#39;&amp;gt;&lt;br /&gt; &amp;lt;h2&amp;gt;&amp;lt;data:title/&amp;gt;&amp;lt;/h2&amp;gt;&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[ For a includable flat type ]--&amp;gt;&lt;br /&gt;&amp;lt;b:includable id=&#39;flat&#39; var=&#39;data&#39;&amp;gt;&lt;br /&gt; &amp;lt;ul&amp;gt;&lt;br /&gt;  &amp;lt;b:loop values=&#39;data:data&#39; var=&#39;i&#39;&amp;gt;&lt;br /&gt;   &amp;lt;li class=&#39;archivedate&#39;&amp;gt;&lt;br /&gt;    &amp;lt;a expr:href=&#39;data:i.url&#39;&amp;gt;&lt;br /&gt;     &amp;lt;data:i.name/&amp;gt;&lt;br /&gt;    &amp;lt;/a&amp;gt;&lt;br /&gt;    (&amp;lt;data:i.post-count/&amp;gt;)&lt;br /&gt;   &amp;lt;/li&amp;gt;&lt;br /&gt;  &amp;lt;/b:loop&amp;gt;&lt;br /&gt; &amp;lt;/ul&amp;gt;&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Profile Widget in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;This is the profile of the author. There can be one author of a blog or maybe the blog has a team of authors. For a blog with a single author, the profile widget contains the following information. &lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;title&lt;/b&gt; The title of the widget. &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;userUrl&lt;/b&gt; The author&#39;s profile URL. &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;location&lt;/b&gt; The location from the author&#39;s profile.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;aboutme&lt;/b&gt; The &quot;About Me&quot; information from the profile.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;displayname&lt;/b&gt; The author&#39;s display name.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;photo&lt;/b&gt; The user&#39;s profile photo, made up of the following:&lt;/li&gt;&lt;br /&gt; &lt;ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;url: &lt;/i&gt;The photo URL.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;width: &lt;/i&gt;The photo&#39;s width, in pixels.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;height: &lt;/i&gt;The photo&#39;s height, in pixels.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;alt: &lt;/i&gt;The &quot;alt&quot; text for the photo.&lt;/li&gt;&lt;br /&gt; &lt;/ol&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;Team blog widgets contain less information compare to single blog widgets. The tags are:&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;title: &lt;/b&gt; The title of the widget.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;authors: &lt;/b&gt; The list of all authors, each of which contains the following:&lt;/li&gt;&lt;br /&gt; &lt;ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;displayname: &lt;/i&gt;The author&#39;s display name.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;userURL: &lt;/i&gt;The author&#39;s profile URL.&lt;/li&gt;&lt;br /&gt; &lt;/ol&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;If you want to design your template to handle both single- and multiple-author blogs, you can use the data:team variable to distinguish between the two cases as shown below.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;b:if cond=&#39;data:team==&amp;quot;true&amp;quot;&#39;&amp;gt; &lt;br /&gt; &amp;lt;!--[display multiple authors] --&amp;gt;&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Text / HTML / JavaScript Widget in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;HTML / Javascript and Text widgets are very simple widgets and contain only two data elements.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;title: &lt;/b&gt;The widget&#39;s title.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;content: &lt;/b&gt;The content of the widget.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;Usage of title and content is similar in all widgets (refer Archives code usage above).&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Feed Widget in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;Feed widget like any other widget has tags for accessing its own information and along with that has feedData. This feedData contains all items in the feed. items being like title, published date, author, summary etc. So basically this feedData is a set of data. You may now have remembered the loop tag (check the previous tut in the series), we have to use that to access each item from the set of items.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;title: &lt;/b&gt;The widget&#39;s title.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;feedUrl: &lt;/b&gt;The URL of the feed.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;feedData: &lt;/b&gt;The items in the feed, each of which contains:&lt;/li&gt;&lt;br /&gt; &lt;ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;title: &lt;/i&gt;the item title.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;str_published: &lt;/i&gt;When the item was published (nicely formatted in blog&#39;s timezone).&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;published: &lt;/i&gt;When the item was published (in seconds since epoch).&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;str_updated: &lt;/i&gt;When the item was last updated (nicely formatted in blog&#39;s timezone).&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;updated: &lt;/i&gt;When the item was last updated (in seconds since epoch).&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;author: &lt;/i&gt;The item&#39;s author.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;summary: &lt;/i&gt;A snippet from the item, if available.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;alternate: &lt;/i&gt;Where to get more information about this item, which contains:&lt;/li&gt;&lt;br /&gt;  &lt;ol&gt;&lt;br /&gt;   &lt;li&gt;href: The permalink of this item.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;type: The content-type of this item.&lt;/li&gt;&lt;br /&gt;  &lt;/ol&gt;&lt;br /&gt; &lt;/ol&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Picture Widget in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;A picture widget contains a single image, and provides all the relevant data for that image.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;title: &lt;/b&gt;The title of the widget.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;sourceUrl: &lt;/b&gt;The URL of the image.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;width: &lt;/b&gt;The image&#39;s width, in pixels.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;height: &lt;/b&gt;The image&#39;s height, in pixels.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;caption: &lt;/b&gt;The image caption.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Labels Widget in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;The labels widget includes a list of all labels that are in use on the blog.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;title: &lt;/b&gt;The widget title.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;labels: &lt;/b&gt;The list of labels, each of which contains:&lt;/li&gt;&lt;br /&gt; &lt;ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;name: &lt;/i&gt;The text of the label.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;count: &lt;/i&gt;How many posts have this label.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;url: &lt;/i&gt;A link to a page displaying posts with this label.&lt;/li&gt;&lt;br /&gt; &lt;/ol&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;    &lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;List Widget in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;The simplest form of a list. Each item is just a single piece of text, without any different types of data within it.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;title: &lt;/b&gt;The widget title.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;items: &lt;/b&gt;The list of items.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;Usage: Similar to link list below.&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Link List Widget in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;A slightly fancier list, where each item has two parts to it: the text and the link.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;title: &lt;/b&gt;The widget title.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;links: &lt;/b&gt;The list of links, each of which contains:&lt;/li&gt;&lt;br /&gt; &lt;ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;name: &lt;/i&gt;The link&#39;s text.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;target: &lt;/i&gt;The link&#39;s URL.&lt;/li&gt;&lt;br /&gt; &lt;/ol&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;Usage: &lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[Check the complete implementaion of the linklist widget. ]--&amp;gt;&lt;br /&gt;&amp;lt;b:widget id=&#39;LinkList1&#39; locked=&#39;false&#39; title=&#39;More Blogs&#39; type=&#39;LinkList&#39;&amp;gt;&lt;br /&gt; &amp;lt;b:includable id=&#39;main&#39;&amp;gt;&lt;br /&gt;  &amp;lt;b:if cond=&#39;data:title&#39;&amp;gt;&lt;br /&gt;   &amp;lt;h2&amp;gt;&amp;lt;data:title/&amp;gt;&amp;lt;/h2&amp;gt;&lt;br /&gt;  &amp;lt;/b:if&amp;gt;&lt;br /&gt;  &amp;lt;div class=&#39;widget-content&#39;&amp;gt;&lt;br /&gt;   &amp;lt;ul&amp;gt;&lt;br /&gt;    &amp;lt;b:loop values=&#39;data:links&#39; var=&#39;link&#39;&amp;gt;&lt;br /&gt;     &amp;lt;li&amp;gt;&lt;br /&gt;      &amp;lt;a expr:href=&#39;data:link.target&#39;&amp;gt;&lt;br /&gt;       &amp;lt;data:link.name/&amp;gt;&lt;br /&gt;      &amp;lt;/a&amp;gt;&lt;br /&gt;     &amp;lt;/li&amp;gt;&lt;br /&gt;    &amp;lt;/b:loop&amp;gt;&lt;br /&gt;   &amp;lt;/ul&amp;gt;&lt;br /&gt;   &amp;lt;b:include name=&#39;quickedit&#39;/&amp;gt;&lt;br /&gt;  &amp;lt;/div&amp;gt;&lt;br /&gt; &amp;lt;/b:includable&amp;gt;&lt;br /&gt;&amp;lt;/b:widget&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Logo in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;It doesn&#39;t get any simpler than this one. Just one piece of data here.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;fullButton: &lt;/b&gt;The URL of the Blogger button you&#39;ve selected.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;Blog Post Widget in Blogger template&lt;/h4&gt;&lt;br /&gt;&lt;br /&gt;This is the central part of any blog, and the most complex. You should definitely consider simply making modifications to one of the default templates before writing a blog posts widget from scratch. But however you want to do it, here&#39;s all the data available in this widget.&lt;br /&gt;&lt;OL&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;feedLinks: &lt;/b&gt;A list of feeds for this page. On the main page, this will contain the main blog feeds; on item pages, this will also contain comments feeds. The blog post widget has a includable created as feedlinks, which in turn uses another includable feedlinksbody. Each item in this list contains the following:&lt;/li&gt;&lt;br /&gt; &lt;ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;url: &lt;/i&gt;The feed URL.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;name: &lt;/i&gt;The feed name (i.e. &#39;Posts&#39; or &#39;Comments&#39;).&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;feedType: &lt;/i&gt;The type of feed (Atom or RSS).&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;mimeType: &lt;/i&gt;The mime type of the feed. &lt;/li&gt;&lt;br /&gt; &lt;/ol&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;olderPageUrl: &lt;/b&gt;If there are older posts than the ones on the current page, this is a URL to those posts. Context-sensitive for page type. (Not all pages will have this link. use if)&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;olderPageTitle: &lt;/b&gt;Title of the link to the older page of posts.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;newerPageUrl: &lt;/b&gt;The newer equivalent of olderPageUrl.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;newerPageTitle: &lt;/b&gt;The newer equivalent of olderPageTitle.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;commentLabel: &lt;/b&gt;The phrase to use to show the number of comments, e.g. &quot;comments.&quot;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;authorLabel: &lt;/b&gt;The phrase to use to indicate who wrote the post, e.g. &quot;posted by.&quot;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;timestampLabel: &lt;/b&gt;The phrase to use to indicate when the post was written, e.g. &quot;posted at.&quot;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;postLabelsLabel: &lt;/b&gt;Phrase to introduce the list of post labels, e.g. &quot;labels for this post.&quot;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;backlinksLabel: &lt;/b&gt;Phrase to describe backlinks to this post, e.g. &quot;links to this post.&quot;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;b&gt;posts: &lt;/b&gt;A list of all posts for this page. Each post contains the following:&lt;/li&gt;&lt;br /&gt; &lt;ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;dateHeader: &lt;/i&gt;The date of this post, only present if this is the first post in the list that was posted on this day.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;id: &lt;/i&gt;The numeric post ID.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;title: &lt;/i&gt;The post&#39;s title.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;body: &lt;/i&gt;The content of the post.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;author: &lt;/i&gt;The display name of the post author.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;url: &lt;/i&gt;The permalink of this post.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;timestamp: &lt;/i&gt;The post&#39;s timestamp. Unlike dateHeader, this exists for every post.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;labels: &lt;/i&gt;The list of the post&#39;s labels. Each label contains the following:&lt;/li&gt;&lt;br /&gt;        &lt;ol&gt;&lt;br /&gt;   &lt;li&gt;name: The label text.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;url: The URL of the page that lists all posts in this blog with this label.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;isLast: True or false. Whether this label is the last one in the list (useful for placing commas). &lt;/li&gt;&lt;br /&gt;  &lt;/ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;allowComments: &lt;/i&gt;&#39;True&#39; if this post allows comments.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;numComments: &lt;/i&gt;The number of comments on this post.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;showBacklinks: &lt;/i&gt;Whether to show backlinks for this post.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;numBacklinks: &lt;/i&gt;Number of backlinks for this post.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;addCommentUrl: &lt;/i&gt;The URL of the &#39;add a comment&#39; form for this post.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;emailPostUrl: &lt;/i&gt;The URL of the &#39;email this post&#39; form for this post.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;editUrl: &lt;/i&gt;The URL of the edit form for this post.&lt;/li&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;feedLinks: &lt;/i&gt;A list of feeds specific to this post. (This is different from the overall blog feedLinks, as it may contain a feed for the post&#39;s comments, for instance.) Each contains the following:&lt;/li&gt;&lt;br /&gt;  &lt;ol&gt; &lt;br /&gt;   &lt;li&gt;url: The feed URL.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;name: The feed name (e.g. &#39;Posts&#39; or &#39;Comments&#39;).&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;feedType: The type of feed (Atom or RSS).&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;mimeType: The mime type of the feed. &lt;/li&gt;&lt;br /&gt;  &lt;/ol&gt;&lt;br /&gt;  &lt;li&gt;&lt;i&gt;comments: &lt;/i&gt;A list of all comments for this post (on item pages only). Each contains the following:&lt;/li&gt;&lt;br /&gt;  &lt;ol&gt; &lt;br /&gt;   &lt;li&gt;id: The numeric ID of the comment.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;body: The body of the comment.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;timestamp: The time the comment was created.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;author: The display name of the comment&#39;s author, or &#39;Anonymous&#39;.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;authorUrl: URL of the comment author&#39;s profile, if the comment is not anonymous.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;deleteUrl: The URL for deleting this comment.&lt;/li&gt;&lt;br /&gt;   &lt;li&gt;isDeleted: Whether this comment has been deleted. (The text of deleted comments is replaced with a placeholder.)&lt;/li&gt;&lt;br /&gt;  &lt;/ol&gt;&lt;br /&gt; &lt;/ol&gt;&lt;br /&gt;&lt;/ol&gt; &lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;!-- [Using feedlinks ]--&amp;gt;&lt;br /&gt;&amp;lt;!-- [feedlinks for the blog can be used displayed using the elements in this way. ]--&amp;gt;&lt;br /&gt;&amp;lt;data:feedlinks.url/&amp;gt;&lt;br /&gt;&amp;lt;!-- [whereas feedlinks for a post which include e.g. comments can be shown this way. ]--&amp;gt;&lt;br /&gt;&amp;lt;data:post.feedlinks.url/&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!--[&lt;br /&gt;if inside a includable and a var is assigned to it while using the include &lt;br /&gt;then use it in this manner&lt;br /&gt;]--&amp;gt;&lt;br /&gt;&amp;lt;b:include data=&#39;post.feedLinks&#39; name=&#39;feedLinksBody&#39;/&amp;gt;&lt;br /&gt;&amp;lt;b:includable id=&#39;feedLinksBody&#39; var=&#39;links&#39;&amp;gt;&lt;br /&gt; &amp;lt;b:loop values=&#39;data:links&#39; var=&#39;f&#39;&amp;gt;&lt;br /&gt;  &amp;lt;a class=&#39;feed-link&#39; expr:href=&#39;data:f.url&#39; expr:type=&#39;data:f.mimeType&#39;&amp;gt;&lt;br /&gt;   &amp;lt;data:f.name/&amp;gt; (&amp;lt;data:f.feedType/&amp;gt;)&lt;br /&gt;  &amp;lt;/a&amp;gt;&lt;br /&gt; &amp;lt;/b:loop&amp;gt;&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;So from the above list the data elements which are in the main list can be accesed directly like in case of blog feedlinks above. The sub-lists to the main can be accessed using the dot operator i.e., similar to object oriented programming where the [classNameVar].[objectVar] gives you access to the object variable of a class. So to access variables deeper in the list keep using dot operators.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;!--[&lt;br /&gt;For accessing the comment id you will have to use either the &lt;br /&gt;includable method shown previously or use this one.&lt;br /&gt;]--&amp;gt;&lt;br /&gt;&amp;lt;data:post.comments.id/&amp;gt;&lt;br /&gt;&amp;lt;!-- [but you should use includable as they are cool :) ]--&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Sometimes when you try to use this data elements directly it gives error. Either your widget / section won&#39;t work or something like that would happen. One of the reasons is that you can&#39;t use this expressions directly. You have to use the expression namespace which I have introduced you in the previous tutorial. As the tutorail on data namespace has already got to big. I will continue the expr:[vars] namespace in the next tutorial. Althought I guess that won&#39;t be this big :).&lt;br /&gt;&lt;p/&gt;&lt;br /&gt;I have tried to explain a lot of things here. But if you want or have a better explanation add it up in comments. If you have any doubts put them here would answer them if I know :). Let me know thy feedback.</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/2974609010925963602/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/2974609010925963602?isPopup=true' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/2974609010925963602'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/2974609010925963602'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2009/01/understanding-blogger-template-2.html' title='Understanding the Blogger Template - 2'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-3936168317671055595</id><published>2009-01-24T02:01:00.002+05:30</published><updated>2009-02-06T03:27:15.082+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger"/><category scheme="http://www.blogger.com/atom/ns#" term="programming"/><category scheme="http://www.blogger.com/atom/ns#" term="technology"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Understanding the blogger template - 1</title><content type='html'>The blogger template is a xhtml document which is rendered based on variables. These tutorials aims at helping to understand the blogger template and hence to experiment, learn and change it. Blogger template has mainly three types of variables one which controls the flow of the code, one which pulls data from the databases behind and the third are expressions. This variables are then distinguished with the help of following xml namespaces. This one is the first in series of three tutorials.&lt;br /&gt;&lt;br /&gt;This tutorial will mainly concenterate on the template basics and the b:namespace. The index for all tuts:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/01/understanding-blogger-template-1.html&quot;&gt;Blogger Template Explanation - Sections, widgets, includables, includes. b: namespace&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/01/understanding-blogger-template-2.html&quot;&gt;Blogger Template Explanation - Data access. data: namespace elements.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/02/understanding-blogger-template-3.html&quot;&gt;Blogger Template Explanation - How to use expr: namespace - customize links.&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Before you start experimenting with your blogger template I will suggest you do two things. Create a sandbox blog which you should delete once you are done experimenting, so that the url is free for some other poor blogger. Now Download the current template of your blog i.e., you should backup both your widgets and the template file itself. You can search for how to do this on google or wait until I write one tutorial on that :). &lt;br /&gt;&lt;br /&gt;To understand/experiment with your blogger template I will suggest don&#39;t do it on your blogger &quot;Edit HTML&quot; page. Use the template that you downloaded with some advanced text editor. I would recomment Notepad++ but you can use whatever you like to understand your blogger template.&lt;br /&gt;&lt;br /&gt;The blogger template is a xhtml document based on http://www.w3.org/1999/xhtml specification. The following namespaces are used in the blogger template:&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;html&lt;br /&gt; xmlns  = &#39;http://www.w3.org/1999/xhtml&#39; &lt;br /&gt; xmlns:b  = &#39;http://www.google.com/2005/gml/b&#39; &lt;br /&gt; xmlns:data = &#39;http://www.google.com/2005/gml/data&#39; &lt;br /&gt; xmlns:expr = &#39;http://www.google.com/2005/gml/expr&#39; &lt;br /&gt;&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;These namespaces will be used throughout the xml document to fetch and display data. So this tutorial is going to explain mainly the variables in the &#39;b&#39; namespace. The variables in this namespace mainly control the layout and control flow of the template. This helps in placing the elements on your blog at certain location and if-else conditions as well as loops. More about the namespaces later.&lt;br /&gt;&lt;br /&gt;The template is mainly divided in sections. This sections will include widgets. Widgets will have includables. includables are useless unless you use it by using the include tag. &lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt; The Section Tag. &lt;/h4&gt;&lt;br /&gt;Section tag determines the division of your blogger layout. The section cannot contain any code directly. Only widgets are to be inserted inside it. Following is the format and attributes are supported by the section tag. &lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;b:section [attribs] &amp;gt;&lt;br /&gt;&amp;lt;/b:section&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;id &lt;/b&gt;(Required) A name identifying the section must be unique. This id can be used to identify the section after the blogger rendering is done. These section tags will show up as div tags having the same id.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;class &lt;/b&gt;(Optional) Common class names are &#39;navbar,&#39; &#39;header,&#39; &#39;main,&#39; &#39;sidebar,&#39; and &#39;footer.&#39; If you switch templates later, these names help Blogger determine how best to transfer over your content. However, you can use different names, if you like. You can use them to stylize your content.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;maxwidgets &lt;/b&gt;(Optional) The maximum number of widgets to allow in this section. If you don&#39;t specify a limit, there won&#39;t be one.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;showaddelement&lt;/b&gt;(Optional) Can be &#39;yes&#39; or &#39;no,&#39; with &#39;yes&#39; as the default. This determines whether the Page Elements tab will show the &#39;Add a Page Element&#39; link in this section.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;growth &lt;/b&gt;(Optional) Can be &#39;horizontal&#39; or &#39;vertical,&#39; with &#39;vertical&#39; as the default. This determines whether widgets within this section are arranged side-by-side or stacked.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt; The Widget Tag.&lt;/h4&gt;&lt;br /&gt;Widget Tags are included inside section tags. There are two ways of viewing the html code on the &quot;Edit HTML&quot; page. One is simple form which gets displayed by default. The other is by using the &quot;Expand Widgets&quot; checkbox. In the simple form the widgets are included inside the sections with the single tag format i.e., opening and closing tag in one.&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;!--Simple form.--&amp;gt;&lt;br /&gt;&amp;lt;b:widget [attribs] /&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!-- Expanded form. --&amp;gt;&lt;br /&gt;&amp;lt;b:widget [attribs] &amp;gt;&lt;br /&gt;&amp;lt;/b:widget&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;A widget may have the following attributes:&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;id &lt;/b&gt;(Required) May contain letters and numbers only, and each widget ID in your template should be unique. A widget&#39;s ID cannot be changed without deleting the widget and creating a new one. Similar to the section tag&#39;s id, widget tags also get converted to div tags having the id same as used here.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;type: &lt;/b&gt;(Required) Indicates what kind of a widget it is, and &lt;i&gt; should &lt;/i&gt;be one of the valid widget types listed below.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;locked: &lt;/b&gt;(Optional) Can be &#39;yes&#39; or &#39;no,&#39; with &#39;no&#39; as the default. A locked widget cannot be moved or deleted from the Page Elements tab.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;title: &lt;/b&gt;(Optional) A display title for the widget. If none is specified, a default title such as &#39;List1&#39; will be used.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;pageType: &lt;/b&gt; (Optional) Can be &#39;all,&#39; &#39;archive,&#39; &#39;main,&#39; or &#39;item,&#39; with &#39;all&#39; as the default. The widget will display only on the designated pages of your blog. (All widgets display on the Page Elements tab, regardless of thier pageType.)&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;The widget types that can be specified are: BlogArchive, Blog, Feed, Header, HTML, SingleImage, LinkList, List, Logo, BlogProfile, Navbar, VideoBar, NewsBar.&lt;br /&gt;&lt;br /&gt;The widget in simple form will just show you the placement of the widget. But if you need to edit the widget itself, then switch to the advanced form i.e., Expanded widgets.&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;The includables Tag.&lt;/h4&gt;&lt;br /&gt;A widget is a collection of includables and typically a main includable. Includables as their name suggests are piece of code that can be put together to avoid repetetion. This includable then can be included in one more places. Apart from removing repetition the includables also help in understanding the structure of the widget. Includable tag is also part of b namespace. So it will have the tag in this manner.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;b:includable id=&#39;[some-unique-id]&#39; [attribs] &amp;gt;&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;The includable tag has the following attributes:&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;id: &lt;/b&gt;(Required) A unique identifier made up of letters and numbers. Note: a widget must contain atleast a single  includable and the id for that must be main.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;var: &lt;/b&gt;(Optional) An identifier made up of letters and numbers, for referencing data within this section. The data will be referenced similar to the namespace i.e., if var=&#39;a&#39; is used then the title in data can be referred as a:title.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;The include Tag.&lt;/h4&gt;&lt;br /&gt;The includable created above needs to be included in the widget for that we use the include tag. If your widget is having only a single includable then in that case the id of that includable should be main and for that a separate include is not required. That single includable will be included by default. The include tag contains two attribs mainly name refers to the id of the includable and data refers to var of includable. The includable tag is self closed and another closing tag is not required. The format is as shown.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;b:include name=&#39;[the-includable-name]&#39; data=&#39;[the-expression-for-var]&#39;/&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;The attributes name and data:&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;name: &lt;/b&gt;(Required) This name will be pointing to the includable which is to be included. There should be a includable with the id as this name.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;b&gt;data: &lt;/b&gt;(Optional) Like a parameter is passed to function this data is passed to includable. It is a peice of data to pass on to the includable section. This will become the value of the var attribute in the includable.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;We can have any name for includable but it must be unique for that widget. This includable can then be included in one or more places in the widget using the include tag. &lt;br /&gt;Next lets discuss two more tags from the &quot;b&quot; namespace. They are if / else and the loop.&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;The if / else Tag.&lt;/h4&gt;&lt;br /&gt;The if/else tag is displayed as shown.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;!-- Only if--&amp;gt;&lt;br /&gt;&amp;lt;b:if cond=&#39;[some condn check]&#39;&amp;gt;&lt;br /&gt; [Then do this]&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!-- both if and else--&amp;gt;&lt;br /&gt;&amp;lt;b:if cond=&#39;[some cond check]&#39;&amp;gt;&lt;br /&gt; &amp;lt;!--  [Then do this]  --&amp;gt;&lt;br /&gt;&amp;lt;b:else/&amp;gt;&lt;br /&gt; &amp;lt;!--  [else do this]  --&amp;gt;&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;From the code above the working of if and else would be quite clear. One thing to note is that the else tag is a self closing one. To understand the condition see the following examples.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;!-- to check a boolean variable. --&amp;gt;&lt;br /&gt;&amp;lt;b:if cond=&#39;data:useImage&#39;&amp;gt; &lt;br /&gt; &amp;lt;!--  [execute if the header for your blog is image instead of text]  --&amp;gt;&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!-- to compare equivalence of two values--&amp;gt;&lt;br /&gt;&amp;lt;b:if cond=&#39;data:blog.pageType == &amp;quot;item&amp;quot;&#39;&amp;gt; &lt;br /&gt; &amp;lt;!--  [True if the current page is an item page (post page).]  --&amp;gt;&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!-- to compare non-equivalence --&amp;gt;&lt;br /&gt;&amp;lt;b:if cond=&#39;data:displayname != &amp;quot;Fred&amp;quot;&#39;&amp;gt; &lt;br /&gt; &amp;lt;!--  [True if this is not Fred&#39;s display name.]  --&amp;gt;&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!-- comparing greater than, less than--&amp;gt;&lt;br /&gt;&amp;lt;b:if cond=&#39;data:post.numComments &amp;gt; 1&#39;&amp;gt; &lt;br /&gt; &amp;lt;!--  [True if the current post has more than one comment.]  --&amp;gt;&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;They say for any language if you know to control the flow you are done with the basics. So for completing the basics of blogger template we need to learn about if-else and a looping feature. One done One to Go. So lets discuss the loop feature now.&lt;br /&gt;&lt;br /&gt;&lt;h4 class=&#39;posth4&#39;&gt;The Loop Tag.&lt;/h4&gt;&lt;br /&gt;This is also part of &quot;b&quot; namespace. It behaves as any loop should i.e., for every element in some set of elements you can do something. For e.g., In a set of comments display each comment. If you are looking for customizing your comments display you may have to look into this loop. The usage will be more clear once you have a look at the syntax.&lt;br /&gt;&lt;br /&gt;&lt;pre name=&#39;postedCode&#39; class=&#39;xml&#39;&gt;&lt;br /&gt;&amp;lt;b:loop var=&#39;some-identifying-var&#39; values=&#39;set-of-something&#39;&amp;gt;&lt;br /&gt; &amp;lt;!--  [For every var in the values i.e., for every data in the set of data do something here]  --&amp;gt;&lt;br /&gt;&amp;lt;/b:loop&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Now we are done with the basics, but one important thing remains - Displaying your data. Obviously you just dont want to have a beautiful page without any data. You need to display some data. For that we will have to learn about the data namespace.&lt;br /&gt;&lt;br /&gt;Therefore data namespace contains the most important variables and if I mention it all in here it would be too cluttered. I will write a separate article on that. And as you must know you learn more experimenting then reading. So get your coffees ready and start experimenting with the code.&lt;br /&gt;&lt;br /&gt;You are more than welcome to add more help in the comments. Also if you want or have a better explanation add it up in comments. If you have any doubts put them here. I  would answer them if I know :).</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/3936168317671055595/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/3936168317671055595?isPopup=true' title='17 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/3936168317671055595'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/3936168317671055595'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2009/01/understanding-blogger-template-1.html' title='Understanding the blogger template - 1'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>17</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-7839803061145888664</id><published>2009-01-10T18:15:00.010+05:30</published><updated>2009-01-10T19:59:06.329+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="me"/><category scheme="http://www.blogger.com/atom/ns#" term="Mobile"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Prevent Mobile Loss</title><content type='html'>&lt;h3&gt;Found my love my mobile&lt;/h3&gt;&lt;br /&gt;As I have mentioned earlier in the post &lt;a href=&quot;http://thoughtsomething.blogspot.com/2008/11/she-broke-up-with-me.html&quot;&gt;&quot;She broke up with me&quot; my love, my mobile was lost&lt;/a&gt; in an auto rickshaw while commuting to office. Thanks to the prayers I &amp;amp; you made I am back again with her :).  We did meet again. The breakup didn&#39;t last long. Hope it doesn&#39;t ever happen again.&lt;br /&gt;&lt;br /&gt;The burning question that everybody is asking me now:&lt;br /&gt;&lt;h3&gt; How to get lost / stolen mobile back? &lt;/h3&gt;When you search the net for lost mobile you will find thousands of links and pages, but very few posts from people who recovered it.&lt;br /&gt;&lt;br /&gt;One of the reason I got mobile back is because I was very well prepared that this crisis might occur. Other reasons are chance and luck, which are beyond our control but the following things should be taken care of.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;First:&lt;/b&gt; When you buy a mobile, keep your bills safe. Don&#39;t throw them away. Make sure your Bills are duly stamped and should contain your name, manufacturer name, model name and Product / Serial Number  of your mobile. Keep all the manuals warranty etc that come along they are helpful although not for recovery.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Second:&lt;/b&gt; Take a note of your IMEI ( International Mobile Equipment Identity ) number. Its usually found printed on the phone under the battery along with the serial number. It is a unique number assigned to each mobile equipment. This number is unique to the device and has no relation to the &lt;a href=&quot;http://en.wikipedia.org/wiki/Subscriber_Identity_Module&quot;&gt;SIM (Subscriber Identity Module)&lt;/a&gt; which stores the IMSI (International Mobile Subscriber Identity) and hence to sevice provider. It was introduced mainly to control mobile thefts. The logic used for tracking is as follows. Whenever a mobile connects to a GSM networks (IMEI is only for &lt;a href=&quot;http://en.wikipedia.org/wiki/GSM&quot;&gt;GSM networks&lt;/a&gt;) along with the SIM number and other information the mobile also transfers the IMEI number to identify itself as a valid device.&lt;br /&gt;Now when a mobile is stolen or is to be tracked as who is using it, a alert can be placed on the IMEI number. The next time the number comes on the network it is identified as a invalid device and the alert is triggered on it with all the details i.e., the phone number / sim number etc, from where the person&#39;s address who is using the SIM etc can be found. A point to note here is that although most of the countries follow this standard and have laws implementing IMEI number for mobile devices, some countries although, like Singapore etc don&#39;t have such laws and there are devices without IMEI number. There are even techniques to remove/tamper the IMEI number of mobile equipments. But this techniques are against the law in many countries and require high skill and understanding. Its basically like a hack and proficient people can do it. More on IMEI number here.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Third:&lt;/b&gt; Although this wont help you find your mobile but will help you mitigate the loss, get an insurance on it. In many countries getting an insurance is a general practice while buying mobile. If your device is costly why not take it.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Fourth:&lt;/b&gt; Try and get a backup of all your data i.e., keep synchronising your device with your laptop or whatever. The activesync on windows mobile takes care of backing up your contacts, calendar appointments, E-mail, Tasks, Notes, Favourites, some files and other media. You can use some other Sync softwares which can keep your storage / memory card in sync. Make an habit of connecting your device to laptop (bluetooth sync is hasselfree).&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Fifth:&lt;/b&gt; There are software which can be installed on the devices supporting multimedia i.e., having PC connectivity installed with OS as Windows Mobile, Symbian, Palm OS etc. There are only a few of these software which I am going to tell you about. These software are again a kind of hack and tampering done to track SIM card change. The logic of this software is simple. There is predefined configurable mobile number stored on your device (like in the mobile registry) which will be notified by a SMS, being sent in the background with the information like the new SIM number and mobile number inserted. Some more sophisticated softwares also insert the GPS coordinates of the mobile when sending the SMS, provided your device had GPS installed on it. So you can find out the person yourself who did this to you. You may find some free software look for them. This point may not be applicable to many of you and I admit its a bit geeky.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Sixth:&lt;/b&gt; Take Care Period.&lt;br /&gt;&lt;br /&gt;Well I took care of most of the above points but I could not install these software on my device because of the performance tweak I did a few days before losing it. When I was talking about the performance tweak in the last post I was talking about this. The tweak basically was that I had formated my Windows mobile 6.0 and installed windows mobile 6.1 and along with that changed my IPL and SPL ( more of it on someother day if interested get started &lt;a href=&quot;http://forum.xda-developers.com/&quot;&gt;here&lt;/a&gt;). It freed a lot of locked memory on my device. So basically after doing it I did not install these software and the next day the mobile was lost.&lt;br /&gt;&lt;br /&gt;Its basically like a stitch in time saves nine. So any precaution that you can take is good. With this all done you might not even lose your mobile. And if you lose it chances are that you will be back with your love as I am.&lt;br /&gt;&lt;br /&gt;continued in...&lt;br /&gt;&lt;h3&gt;So now how to &lt;a href=&quot;http://thoughtsomething.blogspot.com/2009/01/lost-mobile-recovery.html&quot;&gt;Recover Lost mobile&lt;/a&gt;?&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;.</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/7839803061145888664/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/7839803061145888664?isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/7839803061145888664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/7839803061145888664'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2009/01/prevent-mobile-loss.html' title='Prevent Mobile Loss'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-4333026856241854092</id><published>2008-11-30T21:13:00.010+05:30</published><updated>2009-01-20T06:56:28.680+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Game"/><category scheme="http://www.blogger.com/atom/ns#" term="Quiz"/><category scheme="http://www.blogger.com/atom/ns#" term="Travel"/><title type='text'>Traveler IQ Quiz Game</title><content type='html'>So how nicely do you know the world you live in?&lt;br /&gt;&lt;br /&gt;OK... Did you ever wish that you live your job or whatever you do and go for a trip around the world. Get into the exquisite hotels around the world. From East to West, From North to South.&lt;br /&gt;&lt;br /&gt;Well Fella ! before that lets check how much you about the world. Turn on your imagination and bring the world map in front of you. Then try and imagine these places.&lt;br /&gt;&lt;br /&gt;1. Grand Canyon - USA&lt;br /&gt;2. Great Barrier Reaf - Australia&lt;br /&gt;3. Florida - USA&lt;br /&gt;4. The South Island - New Zealand&lt;br /&gt;5. Cape Town - South Africa&lt;br /&gt;6. Golden Temple - India&lt;br /&gt;7. Las Vegas - USA&lt;br /&gt;8. Sydney - Australia&lt;br /&gt;9. New York - USA&lt;br /&gt;10. Taj Mahal - India&lt;br /&gt;11. Canadian Rockies - Canada&lt;br /&gt;12. Uluru - Australia&lt;br /&gt;13. Chichen Itza -Mexico&lt;br /&gt;14. Macchu Pichu - Peru&lt;br /&gt;15. Niagara Falls - Canada/USA&lt;br /&gt;16. Petra - Jordan&lt;br /&gt;17. The Pyramids - Egypt&lt;br /&gt;18. Venice - Italy&lt;br /&gt;19. Maldives - Maldives&lt;br /&gt;20. Great Wall - China&lt;br /&gt;21. Victoria Falls - Zambia/Zimbabwe&lt;br /&gt;22. Hongkong - Hongkong&lt;br /&gt;23. Yosemite National Park - USA&lt;br /&gt;24. Hawaii - USA&lt;br /&gt;25. Auckland - New Zealand&lt;br /&gt;26. Iguassu Falls - Argentina/Brazil&lt;br /&gt;27. Paris - France&lt;br /&gt;28. Alaska - USA&lt;br /&gt;29. Angkor Wat - Cambodia&lt;br /&gt;30. Himalayas - India/Nepal/Tibet&lt;br /&gt;31. Rio de Janerio - Brazil&lt;br /&gt;32. Masai Mara - Kenya&lt;br /&gt;33. Galapagos Island - Ecuador&lt;br /&gt;34. Luxor - Egypt&lt;br /&gt;35. Rome - Italy&lt;br /&gt;36. San Fransisco - USA&lt;br /&gt;37. Barcelona - Spain&lt;br /&gt;38. Dubai - Arab Emirates&lt;br /&gt;39. Singapore - Singapore&lt;br /&gt;40. La Digue - Seychelles&lt;br /&gt;&lt;br /&gt;So how many could you picture, How many could you locate? Well, for most of you when you were thinking of a world trip you were imagining of those luxury hotels, historic places, exotic beaches, and what not.&lt;br /&gt;&lt;br /&gt;Meaning you must have forgotten the aim of this blog. To test and challenge your IQ. Let me help your imagination and take you to a wonderful Game/Quiz by TravelPod. This will brush up your GK and IQ and get you ready for that trip.&lt;br /&gt;&lt;br /&gt;So here is the link for &lt;strong&gt;&lt;a href=&quot;http://www.travelpod.com/traveler-iq/game1&quot;&gt;The Traveler IQ Challenge™&lt;/a&gt;.&lt;/strong&gt; This game is also embedded below.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight:bold;font-style:italic;&quot;&gt;If you face any display problem please play at the link given above.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;margin: 0px; padding: 0px; text-align: center; overflow:auto; display:block;font-family: tahoma,verdana,arial,sans-serif; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);&quot;&gt;&lt;embed src=&quot;http://tiq.travelpod.com/bin/flash/container.swf&quot; quality=&quot;high&quot; bgcolor=&quot;#000000&quot; name=&quot;TravelerIQ&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;opaque&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; allowscriptaccess=&quot;always&quot; flashvars=&quot;gamexml=http://tiq.travelpod.com/cgi-bin/witw?SessionID=00-traveleriq-game1&amp;amp;gameswf=http://tiq.travelpod.com/bin/flash/witw-00.swf&amp;amp;lang=en&quot; width=&quot;625&quot; align=&quot;middle&quot; height=&quot;500&quot;/&gt;&lt;/embed&gt;&lt;!-- Use of this widget is subject to the terms stated here: http://www.travelpod.com/cgi-bin/help.pl?tweb_helpID=widget_terms --&gt;&lt;div style=&quot;text-align: right; width: 625px; font-family: tahoma,verdana,arial,sans-serif; font-size: 10px; color: rgb(255, 255, 255); background-color: rgb(0, 0, 0);&quot;&gt;&lt;br /&gt;This Traveler IQ challenge compares your geographical knowledge against the World&#39;s Original &lt;a href=&quot;http://www.travelpod.com/&quot;&gt;&lt;span style=&quot;color: rgb(255, 255, 0);&quot;&gt;Travel diary&lt;/span&gt;&lt;/a&gt;&#39;s other 3,372,655 travelers who have taken this challenge as of Sunday, November 30, 2008 at 03:44PM GMT. (TravelPod is a &lt;a href=&quot;http://www.tripadvisor.com/&quot;&gt;&lt;span style=&quot;color: rgb(255, 255, 0);&quot;&gt;TripAdvisor&lt;/span&gt;&lt;/a&gt; Media Network member)&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Checkout &lt;a href=&quot;http://wikipedia.org/&quot;&gt;wikipedia&lt;/a&gt; for the places you know, you know but can&#39;t remember :). So when you have completed the challenge and got your Map IQ high, You can start packing your travel bags. Until then Happy Quizzing.</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/4333026856241854092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/4333026856241854092?isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/4333026856241854092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/4333026856241854092'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/11/traveler-iq-quiz-game.html' title='Traveler IQ Quiz Game'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-8942354173689424612</id><published>2008-11-29T13:00:00.001+05:30</published><updated>2009-01-20T07:02:27.747+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger"/><category scheme="http://www.blogger.com/atom/ns#" term="programming"/><category scheme="http://www.blogger.com/atom/ns#" term="technology"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>Display HTML / JavaScript code in Blogger - How to</title><content type='html'>In my last post about &lt;a href=&quot;http://thoughtsomething.blogspot.com/2008/11/how-to-add-digg-to-blogger-explained.html&quot;&gt;How to add Digg to Blogger&lt;/a&gt; I was struggling with how to display html code on my page. Showing code in those beautiful boxes without disturbing the layout / indenting was easy but tricky. You need to know css / html and that the Blogger does not support unescaped code. Also to maintain consistency among all this boxes, is another issue. So here is what I did.&lt;br /&gt;&lt;br /&gt;Lets have a look first at the box I am talking about.&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSWAfkFzqg_fH89_n5H7mvoCaXeOsCNcS_NdRIdo2xdRET3MRc8kSNBlTQ3PJCbQea-RGVZSgO2aAxgPbjq_Wb9k3p-6lEKBAHUrfE_Iw-FurgxCHcjB-l6qO-cg0M_FQe6qyu/s1600-h/Code+Display.JPG&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 400px; height: 158px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSWAfkFzqg_fH89_n5H7mvoCaXeOsCNcS_NdRIdo2xdRET3MRc8kSNBlTQ3PJCbQea-RGVZSgO2aAxgPbjq_Wb9k3p-6lEKBAHUrfE_Iw-FurgxCHcjB-l6qO-cg0M_FQe6qyu/s400/Code+Display.JPG&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5273993473550854370&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;So the question remains, how to get it?&lt;br /&gt;&lt;br /&gt;Easy... just follow this steps.&lt;br /&gt;&lt;br /&gt;As blogger wont take html code as it is... meaning you will need to convert it into escaped code. For that get the code you need to any text editor. Then replace all the &amp;lt; signs with &amp;amp;lt; and all &amp;gt; signs with &amp;amp;gt;. Now copy this escapped code to your blog. There is another easy way to do it. Go to this site -&gt; &lt;a href=&quot;http://www.dan.co.jp/cases/javascript/encode_entities.html&quot;&gt;Text -&amp;gt; HTML Entities Encoder&lt;/a&gt;. There are two boxes, copy your code into first box. The escaped code will be generated in the next one. Easy isn&#39;t it.&lt;br /&gt;&lt;br /&gt;Now how to add those boxes. There are a lot of ways to do it. I will show you the one that I used. First we will make a css class in our blogger template. Use this for &lt;a href=&quot;http://thoughtsomething.blogspot.com/2008/11/how-to-add-digg-to-blogger-explained.html&quot;&gt;Basics of Blogger  template&lt;/a&gt;. In the css section add this code.&lt;br /&gt;&lt;br /&gt;&lt;pre class=&quot;postCode&quot;&gt;&lt;br /&gt;.postCode{&lt;br /&gt; background:lightyellow none repeat scroll 0 0;&lt;br /&gt; border:1px inset orange;&lt;br /&gt; height:150px;&lt;br /&gt; margin:10px;&lt;br /&gt; overflow:auto;&lt;br /&gt; padding:6px;&lt;br /&gt; text-align:left;&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;You can change the background/border colors height etc to match your needs. Now, we will use this class with a &amp;lt;PRE&amp;gt; tag to format our code in those boxes. So enclose your escapped code in this manner.&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&amp;lt;pre class=&quot;postCode&quot;&amp;gt;&lt;br /&gt;YOUR CODE&lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Tadaa! You are done.</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/8942354173689424612/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/8942354173689424612?isPopup=true' title='14 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/8942354173689424612'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/8942354173689424612'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/11/display-html-javascript-code-in-blogger.html' title='Display HTML / JavaScript code in Blogger - How to'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSWAfkFzqg_fH89_n5H7mvoCaXeOsCNcS_NdRIdo2xdRET3MRc8kSNBlTQ3PJCbQea-RGVZSgO2aAxgPbjq_Wb9k3p-6lEKBAHUrfE_Iw-FurgxCHcjB-l6qO-cg0M_FQe6qyu/s72-c/Code+Display.JPG" height="72" width="72"/><thr:total>14</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-7013317816618462419</id><published>2008-11-28T00:15:00.005+05:30</published><updated>2009-01-20T07:02:27.747+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Blogger"/><category scheme="http://www.blogger.com/atom/ns#" term="programming"/><category scheme="http://www.blogger.com/atom/ns#" term="technology"/><category scheme="http://www.blogger.com/atom/ns#" term="Tips"/><title type='text'>How to add Digg to Blogger - Explained.</title><content type='html'>Well last day I was trying to add Digg to blogger. I was experimenting on how to add a Digg button on my blog. The digg button should use the auto-generated link of blogger as the digg_url for digging and submitting it for the first time.&lt;br /&gt;&lt;br /&gt;After experimenting with my Blog template I came across this way to do it.&lt;br /&gt;&lt;br /&gt;Things you should require/know :-&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li/&gt;A Digg Account (optional)&lt;br /&gt;&lt;li/&gt;A Blogger Account&lt;br /&gt;&lt;li/&gt;Basics of XML/HTML/CSS/Java Script&lt;br /&gt;&lt;li/&gt;Ctrl+C / Ctrl+V :)&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;First login into your blogger account. Go to the Layout tab and click on Edit HTML.&lt;br /&gt;&lt;br /&gt;If you want you can make a backup of your existing template by clicking on &quot;Download full template&quot; [ If your confident skip this step ]&lt;br /&gt;&lt;br /&gt;&lt;B&gt;Understanding the Blogger Template&lt;/B&gt;&lt;br /&gt;The basic structure of template has various sections defined. At top there are some variables defined. Which can be changed to change the color layout etc of the Blog.&lt;br /&gt;After the variables the CSS definitions are given. You can edit the different classes to change the blog to your taste.&lt;br /&gt;&lt;br /&gt;Now in the body tag you will find all the sections and div defined. Complete blog lies in the outer-wrapper div. And in it you will have the header-wrapper then content-wrapper and lastly footer-wrapper. The content-wrapper will contain the main and the sidebar wrappers.&lt;br /&gt;&lt;br /&gt;In them you will have &amp;lt;b:section&amp;gt; and &amp;lt;b:widget&amp;gt; tags defined. So this basic template tells all the widgets that are placed on your page and their position as per the wrappers. &lt;br /&gt;&lt;br /&gt;Example code:&lt;br /&gt;&lt;pre class=&quot;postCode&quot;&gt;&lt;br /&gt;&amp;lt;div id=&#39;main-wrapper&#39;&amp;gt;&lt;br /&gt;    &amp;lt;b:section class=&#39;main&#39; id=&#39;main&#39; showaddelement=&#39;no&#39;&amp;gt;&lt;br /&gt;        &amp;lt;b:widget id=&#39;Blog1&#39; locked=&#39;true&#39; title=&#39;Blog Posts&#39; type=&#39;Blog&#39;/&amp;gt;&lt;br /&gt;    &amp;lt;/b:section&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;div id=&#39;sidebar-wrapper&#39;&amp;gt;&lt;br /&gt;    &amp;lt;b:section class=&#39;sidebar&#39; id=&#39;sidebar&#39; preferred=&#39;yes&#39;&amp;gt;&lt;br /&gt;        &amp;lt;b:widget id=&#39;BlogArchive1&#39; locked=&#39;false&#39; title=&#39;Blog Archive&#39; type=&#39;BlogArchive&#39;/&amp;gt;&lt;br /&gt;        &amp;lt;b:widget id=&#39;HTML1&#39; locked=&#39;false&#39; title=&#39;&#39; type=&#39;HTML&#39;/&amp;gt;&lt;br /&gt;        &amp;lt;b:widget id=&#39;Label1&#39; locked=&#39;false&#39; title=&#39;Labels&#39; type=&#39;Label&#39;/&amp;gt;&lt;br /&gt;    &amp;lt;/b:section&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Now the widget tag... i.e., &amp;lt;b:widgets&amp;gt;&lt;br /&gt;This above basic template just gives you a method for understanding the layout, But to understand how to put the automated url Digg button you will have to understand the code in this widget. So go ahead and click the checkbox marked as &quot;Expand Widget Templates&quot;. This will expand the &amp;lt;b:widgets&amp;gt; tags and show you how the widget is implemented in it.&lt;br /&gt;&lt;br /&gt;Each widget when expanded will have many includables &amp;lt;b:includable&amp;gt;. Each of this includable will have an id.&lt;br /&gt;Example code:&lt;br /&gt;&lt;pre class=&quot;postCode&quot;&gt;&lt;br /&gt;&amp;lt;b:includable id=&#39;flat&#39; var=&#39;data&#39;&amp;gt;&lt;br /&gt;  &amp;lt;ul&amp;gt;&lt;br /&gt;    &amp;lt;b:loop values=&#39;data:data&#39; var=&#39;i&#39;&amp;gt;&lt;br /&gt;      &amp;lt;li class=&#39;archivedate&#39;&amp;gt;&lt;br /&gt;        &amp;lt;a expr:href=&#39;data:i.url&#39;&amp;gt;&amp;lt;data:i.name/&amp;gt;&amp;lt;/a&amp;gt; (&amp;lt;data:i.post-count/&amp;gt;)&lt;br /&gt;      &amp;lt;/li&amp;gt;&lt;br /&gt;    &amp;lt;/b:loop&amp;gt;&lt;br /&gt;  &amp;lt;/ul&amp;gt;&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;br /&gt;&amp;lt;b:includable id=&#39;menu&#39; var=&#39;data&#39;&amp;gt;&lt;br /&gt;  &amp;lt;select expr:id=&#39;data:widget.instanceId + &amp;amp;quot;_ArchiveMenu&amp;amp;quot;&#39;&amp;gt;&lt;br /&gt;    &amp;lt;option value=&#39;&#39;&amp;gt;&amp;lt;data:title/&amp;gt;&amp;lt;/option&amp;gt;&lt;br /&gt;    &amp;lt;b:loop values=&#39;data:data&#39; var=&#39;i&#39;&amp;gt;&lt;br /&gt;      &amp;lt;option expr:value=&#39;data:i.url&#39;&amp;gt;&amp;lt;data:i.name/&amp;gt; (&amp;lt;data:i.post-count/&amp;gt;)&amp;lt;/option&amp;gt;&lt;br /&gt;    &amp;lt;/b:loop&amp;gt;&lt;br /&gt;  &amp;lt;/select&amp;gt;&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;So as seen in this code there are two includables. we are interested in the includables having the id as post i.e.,&lt;br /&gt;&amp;lt;b:includable id=&#39;post&#39; var=&#39;post&#39;&amp;gt;&lt;br /&gt;&lt;br /&gt;So then in this includable we need to add our digg code. This blogger template defines and provides access to its data object. For e.g., &amp;lt;data:post.url/&amp;gt; signifies the url of the Blog post. It is the permalink of each blog entry. The digg widget button provided by Digg needs the post url. So this will generate it automatically for us. Now the code that I have used on to show the digg button is pasted in the includable as shown. You can place it and style it as you like.&lt;br /&gt;&lt;br /&gt;Basically you will need to copy from the Digg Box start comment to Dig Box End comment. Copy and paste it in your blog and enjoy the easy Digg Button.&lt;br /&gt;&lt;pre class=&quot;postCode&quot;&gt;&lt;br /&gt;&amp;lt;b:includable id=&#39;post&#39; var=&#39;post&#39;&amp;gt;&lt;br /&gt;  &amp;lt;div class=&#39;post hentry&#39;&amp;gt;&lt;br /&gt;    &amp;lt;a expr:name=&#39;data:post.id&#39;/&amp;gt;&lt;br /&gt;    &amp;lt;b:if cond=&#39;data:post.title&#39;&amp;gt;&lt;br /&gt;      &amp;lt;h3 class=&#39;post-title entry-title&#39;&amp;gt;&lt;br /&gt;     &amp;lt;b:if cond=&#39;data:post.link&#39;&amp;gt;&lt;br /&gt;       &amp;lt;a expr:href=&#39;data:post.link&#39;&amp;gt;&amp;lt;data:post.title/&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;     &amp;lt;b:else/&amp;gt;&lt;br /&gt;        &amp;lt;b:if cond=&#39;data:post.url&#39;&amp;gt;&lt;br /&gt;          &amp;lt;a expr:href=&#39;data:post.url&#39;&amp;gt;&amp;lt;data:post.title/&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;        &amp;lt;b:else/&amp;gt;&lt;br /&gt;          &amp;lt;data:post.title/&amp;gt;&lt;br /&gt;        &amp;lt;/b:if&amp;gt;&lt;br /&gt;     &amp;lt;/b:if&amp;gt;&lt;br /&gt;      &amp;lt;/h3&amp;gt;&lt;br /&gt;    &amp;lt;/b:if&amp;gt;&lt;br /&gt;    &amp;lt;!--- ==== Digg Box Code by J start ==== --&amp;gt;&lt;br /&gt;    &amp;lt;div class=&#39;diggBox&#39; style=&#39;margin: 4px; float: right;&#39;&amp;gt;&lt;br /&gt;        &amp;lt;script type=&#39;text/javascript&#39;&amp;gt;&lt;br /&gt;        digg_url = &amp;amp;#39;&amp;lt;data:post.url/&amp;gt;&amp;amp;#39;;&lt;br /&gt;        &amp;lt;/script&amp;gt;&lt;br /&gt;        &amp;lt;script src=&#39;http://digg.com/tools/diggthis.js&#39; type=&#39;text/javascript&#39;/&amp;gt;&lt;br /&gt;    &amp;lt;/div&amp;gt;&lt;br /&gt;    &amp;lt;!-- == Digg Box code end ===--&amp;gt;&lt;br /&gt;    &amp;lt;div class=&#39;post-header-line-1&#39;/&amp;gt;&lt;br /&gt;&lt;br /&gt;    &amp;lt;div class=&#39;post-body entry-content&#39;&amp;gt;&lt;br /&gt;      &amp;lt;data:post.body/&amp;gt;&lt;br /&gt;      &amp;lt;div style=&#39;clear: both;&#39;/&amp;gt; &amp;lt;!-- clear for photos floats --&amp;gt;&lt;br /&gt;    &amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt; &amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/b:includable&amp;gt;&lt;br /&gt;&lt;/pre&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/7013317816618462419/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/7013317816618462419?isPopup=true' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/7013317816618462419'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/7013317816618462419'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/11/how-to-add-digg-to-blogger-explained.html' title='How to add Digg to Blogger - Explained.'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-390323043733006344</id><published>2008-11-24T21:24:00.004+05:30</published><updated>2009-01-20T06:56:02.205+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="irony"/><category scheme="http://www.blogger.com/atom/ns#" term="me"/><category scheme="http://www.blogger.com/atom/ns#" term="Mobile"/><title type='text'>She broke up with Me !</title><content type='html'>So they say, every love comes to an end. Or does it?&lt;br /&gt;&lt;br /&gt;I thought otherwise until it happened to me. Or did it?&lt;br /&gt;&lt;br /&gt;Is it the end of the relationship? Or is it just a breakup and we will meet again. I hope we do.&lt;br /&gt;&lt;br /&gt;We had a year long relationship. One Year and 7 days to be precise. Its the time when I came to this city in south. We had a really good time together for like 3-4 months  then I kind of didn&#39;t pay that much attention, got busy with other stuff. But for the few weeks I had only my beautiful Elf in mind. The relationship was back strong. I was too happy with her for the few days. It was kind of a performance tweak. And then this huge blow, suddenly without even saying a good bye :(.&lt;br /&gt;&lt;br /&gt;What happened? What went wrong?&lt;br /&gt;&lt;br /&gt;Some might say that I cheated but thats not the thing. I paid equal attention to both of them, &lt;span style=&quot;font-style: italic;&quot;&gt;Gharwali and Baharwali&lt;/span&gt;. And I am sure they both knew that too. They had a great ActiveSync partnership working between them. I guess losing a baharwali is more difficult.&lt;br /&gt;&lt;br /&gt;Well thats how they(my friends) say... my lappy T42 is my Gharwali for enjoying at home, and P3450 my Baharwali for outdoors. Yes, my HTC Touch P3450 codename Elf has left me, or I can say the Big Bastard world came between us.&lt;br /&gt;&lt;br /&gt;So let me tell you the story, So that I dont have to tell it over and over again.&lt;br /&gt;&lt;br /&gt;It happened today, the cloudy weather outside made a way into my life. I as usual woke up late and started for my office. On the way I found an auto and the guy asking 20 Rs extra on the metered fare. I argued and got it settled to 10 Rs. extra. Well everything was usual daily routine until  now. When I got down at office, while taking out  my wallet I kept the Elf on my bag beside me. Then there was this problem of change of 100Rs. I came out and asked a colleague who was passing by. He gave me the money I gave it to the Auto driver and took the bag and left. I pulled the bag from the handle without looking so he mobile dropped over there. I went upstairs and realised, started calling the number nobody picked it, then somebody started rejecting the call and then switched it off.  Well I and you kinda knew this was going to happen.&lt;br /&gt;&lt;br /&gt;Well rest you know what I had to do, called customer care barred outgoing calls. Went to customer care office got a duplicate SIM card. Went to police station with the IMEI number filed the complaint.&lt;br /&gt;&lt;br /&gt;Now I seriously hope that the good guys of the Police Dept find  her out. Otherwise, I am stuck here with a company provided Nokia 1100, Oh my god !!&lt;br /&gt;&lt;br /&gt;Well for those who dont know &lt;a href=&quot;http://en.wikipedia.org/wiki/HTC_Touch&quot;&gt;HTC Touch&lt;/a&gt; product code name is ELF. If properly tweaked she runs like hell :). Wish the breakup gets over and we are back together. Hope you add a prayer for me.</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/390323043733006344/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/390323043733006344?isPopup=true' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/390323043733006344'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/390323043733006344'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/11/she-broke-up-with-me.html' title='She broke up with Me !'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-6857840120495044659</id><published>2008-08-21T02:47:00.003+05:30</published><updated>2008-08-21T02:55:40.137+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="inspirational"/><category scheme="http://www.blogger.com/atom/ns#" term="me"/><category scheme="http://www.blogger.com/atom/ns#" term="philosophical"/><category scheme="http://www.blogger.com/atom/ns#" term="poem"/><title type='text'>Gun Powder</title><content type='html'>When I try to sleep&lt;br /&gt;I wish I rather weep.&lt;br /&gt;Wash away with tears,&lt;br /&gt;My sorrows and fears.&lt;br /&gt;&lt;br /&gt;Once the heart of Gold&lt;br /&gt;is now so cold.&lt;br /&gt;What glowed like fire.&lt;br /&gt;smells like burnt tire.&lt;br /&gt;&lt;br /&gt;With the passing tide&lt;br /&gt;Am I more dead inside?&lt;br /&gt;Is this it?&lt;br /&gt;No, Somewhere in the ashes&lt;br /&gt;Something is lit.&lt;br /&gt;&lt;br /&gt;Only the fuse has burnt...&lt;br /&gt;and left is the Gun Powder.</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/6857840120495044659/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/6857840120495044659?isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/6857840120495044659'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/6857840120495044659'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/08/gun-powder.html' title='Gun Powder'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-4992918417140464498</id><published>2008-05-25T18:13:00.003+05:30</published><updated>2009-01-20T06:57:05.344+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="College"/><category scheme="http://www.blogger.com/atom/ns#" term="Festivals"/><category scheme="http://www.blogger.com/atom/ns#" term="me"/><title type='text'>Happy Graduation Day</title><content type='html'>Some of you may have remembered and some forgotten.&lt;br /&gt;That today is the fated day when we all graduated out of IITG. It&#39;s been one year guys.&lt;br /&gt;&lt;br /&gt;Happy Graduation Day, The first anniversary.&lt;br /&gt;&lt;br /&gt;So its time to enjoy :) or is it?&lt;br /&gt;&lt;br /&gt;Today is the time when you can stand and look back at the year past and think&lt;br /&gt;&quot;kya khoya kya paya maine&quot;&lt;br /&gt;&lt;p&gt;It&#39;s hard to believe it&#39;s been that long.&lt;/p&gt; &lt;p&gt;Time flies, I guess specially when you are in the real world, the challenges and learning, the life long process goes even faster when you are out of college and facing the real life. So much so that its here and you don&#39;t know, and you&#39;re amazed you wonder and think about the sweet memories of friends which were your family.&lt;/p&gt;   &lt;p&gt;Many things have changed.&lt;br /&gt;&lt;/p&gt; Some got promoted,&lt;br /&gt;Some got new jobs,&lt;br /&gt;Some starting ventures,&lt;br /&gt;Some got married,&lt;br /&gt;Some are getting married,&lt;br /&gt;Some are happy and content,&lt;br /&gt;Some are sad and frustrated,&lt;br /&gt;Some climbing the stairs,&lt;br /&gt;Some taking a slide down,&lt;br /&gt;Some winning the game called life,&lt;br /&gt;Some trying to win it,&lt;br /&gt;&lt;br /&gt;Although its just one year,&lt;br /&gt;But its a milestone,&lt;br /&gt;And you will reach many milestones in this journey called life.&lt;br /&gt;But always take out some time&lt;br /&gt;-to say&lt;br /&gt;-to wish&lt;br /&gt;-to congratulate&lt;br /&gt;-to share a loving shoulder&lt;br /&gt;with the friends you made and will treasure your whole life.&lt;br /&gt;&lt;br /&gt;Remember you are not alone. Friends are always there.&lt;br /&gt;To all my dear friends  - I wish to say that - &quot;I Love You&quot; :) . My life would be hell without you.&lt;br /&gt;&lt;br /&gt;You may be physically with me or not. But I wish our paths get crossed many times even if we cant be together. I wish to write too much but you would probably thinking &quot;aur kitna lamba hai&quot;. So will conclude.&lt;br /&gt;&lt;p&gt;I will conclude with saying that on all fronts, things are going not to well but not too bad too. And the anniversary of my graduation seems like a good moment to stop, and Thank God for everything.&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/4992918417140464498/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/4992918417140464498?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/4992918417140464498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/4992918417140464498'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/05/happy-graduation-day.html' title='Happy Graduation Day'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-1186837444529466700</id><published>2008-05-04T02:21:00.003+05:30</published><updated>2008-05-04T02:52:28.363+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="irony"/><category scheme="http://www.blogger.com/atom/ns#" term="me"/><category scheme="http://www.blogger.com/atom/ns#" term="philosophical"/><title type='text'>Why I sleep late?</title><content type='html'>My usual routines includes sleeping late. Recently, Apart from some reasons which I knew, I found one more cause which would have made me sleep late although subconsciously. The reason is that when I lay on my bed and try to sleep. I leave my mind to relax and that&#39;s when it starts wandering in the overcrowded empty space.&lt;br /&gt;&lt;br /&gt;It feels like there is some hollow space filled with a lot of dreams and aspirations. Every night either I revisit one of that old aspiration or I create a new one. While lying in the bed just before sleep I think of doing things which I want to do; of things which I have to do; of things that I can&#39;t do; and of things that I couldn&#39;t do.&lt;br /&gt;&lt;br /&gt;Sometimes I plan really big things, sometimes small. But there are mere few which I have brought into action. When I think about the reasons for it I find probably its because I am more of a thinker than a doer. And maybe because as once said by one of my close friend that &quot;My entropy is high&quot;. I usually cant stand with one thing for too long (it feels like I am wasting my time and proceeding in the wrong direction so I chose another and finally dissatisfaction). Another reason maybe is I want to do a lot of things and all I have is such a small life with even less time for myself and even lesser time to work on one of them with full devotion and then I shall not forget to mention the wide range of  moods that I have. So a match of a mood to a todo action is even lesser. For example right now I am in an introspective mood with a touch of distressing thoughts.&lt;br /&gt;&lt;br /&gt;I don&#39;t do much physical work in my daily routine and therefore getting tired is unusual. All that feel tired in my body are my eyes and my hands after clicking the mouse and hitting the keyboard all day long. So falling to bed and sleeping in an instant is a privilege which I don&#39;t have.  So to avoid  long session of  distressing thoughts and  rolling restlessly  on the bed  and then thinking of writing a blog about it  and finally getting frustrated  over the whole stupid thing. I sleep late by keeping myself engaged in hitting the keyboard and clicking the mouse.&lt;br /&gt;&lt;br /&gt;Don&#39;t know how long this is going to last.  I think there are many others wondering the same for themselves.</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/1186837444529466700/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/1186837444529466700?isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/1186837444529466700'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/1186837444529466700'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/05/why-i-sleep-late.html' title='Why I sleep late?'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-600348990857750785</id><published>2008-05-04T02:17:00.001+05:30</published><updated>2008-11-27T20:41:37.325+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="inspirational"/><category scheme="http://www.blogger.com/atom/ns#" term="src.web"/><title type='text'>A story worth reading.</title><content type='html'>&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;It  was a long time ago. I was young and bright, bold and idealistic. I was in the  final year of my master&#39;s course in computer science at the Indian Institute of  Science [IISc] in Bangalore, then known as the Tata Institute. Life was full of  fun and joy. I did not know what helplessness or injustice meant.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;It  was probably the April of 1974. Bangalore was getting warm and red gulmohars were  blooming at the IISc campus. I was the only girl in my postgraduate department  and was staying at the ladies hostel. Other girls were pursuing research in different  departments of science. I was looking forward to going abroad to complete a doctorate  in computer science. I had been offered scholarships from universities in US.  I had not thought of taking up a job in India.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;One  day, while on the way to my hostel from our lecture-hall complex, I saw an advertisement  on the notice board. It was a standard job-requirement notice from the famous  automobile company Telco [now Tata Motors]. It stated that the company required  young, bright engineers, hardworking and with an excellent academic background,  etc. &lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;At the bottom was a small line:  &quot;Lady candidates need not apply.&quot; I read it and was very upset. For  the first time in my life I was up against gender discrimination.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;Though  I was not keen on taking up a job, I saw this as a challenge. I had done extremely  well in academics, better than most of my male peers. Little did I know then that  in real life academic excellence is not enough to be successful.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;After  reading the notice I went fuming to my room. I decided to inform the topmost person  in Telco&#39;s management about the injustice the company was perpetrating. I got  a postcard and started to write, but there was a problem: I did not know who headed  Telco. I thought it must be one of the Tatas. I knew JRD Tata was the head of  the Tata Group; I had seen his pictures in newspapers (actually, Sumant Moolgaokar  was the company&#39;s chairman then).&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;I took  the card, addressed it to JRD and started writing. To this day I remember clearly  what I wrote. &quot;The great Tatas have always been pioneers. They are the people  who started the basic infrastructure industries in India, such as iron and steel,  chemicals, textiles and locomotives. They have cared for higher education in India  since 1900 and they were responsible for the establishment of the Indian Institute  of Science. Fortunately, I study there. But I am surprised how a company such  as Telco is discriminating on the basis of gender.&quot;&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;I  posted the letter and forgot about it. Less than 10 days later, I received a telegram  stating that I had to appear for an interview at Telco&#39;s Pune facility at the  company&#39;s expense. &lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;I was taken aback  by the telegram. My hostel mates told me I should use the opportunity to go to  Pune free of cost — and buy them the famous Pune saris for cheap! I collected  Rs 30 each from everyone who wanted a sari. When I look back, I feel like laughing  at the reasons for my going, but back then they seemed good enough to make the  trip.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;It was my first visit to Pune and  I immediately fell in love with the city. To this day it remains dear to me. I  feel as much at home in Pune as I do in Hubli, my hometown. The place changed  my life in so many ways. &lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;As directed,  I went to Telco&#39;s Pimpri office for the interview. There were six people on the  panel and I realised then that this was serious business. &quot;This is the girl  who wrote to JRD,&quot; I heard somebody whisper as soon as I entered the room.  By then I knew for sure that I would not get the job. That realisation abolished  all fears from my mind, so I was rather cool while the interview was being conducted.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;Even  before the interview started, I reckoned the panel was biased, so I told them,  rather impolitely, &quot;I hope this is only a technical interview.&quot; They  were taken aback by my rudeness, and even today I am ashamed about my attitude.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;The  panel asked me technical questions and I answered all of them. Then an elderly  gentleman with an affectionate voice told me, &quot;Do you know why we said lady  candidates need not apply? The reason is that we have never employed any ladies  on the shop floor. This is not a co-ed college; this is a factory. When it comes  to academics, you are a first ranker throughout. We appreciate that, but people  like you should work in research laboratories.&quot;&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;I  was a young girl from small-town Hubli. My world had been a limited place. I did  not know the ways of large corporate houses and their difficulties, so I answered,  &quot;But you must start somewhere, otherwise no woman will ever be able to work  in your factories.&quot;&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;Finally, after  a long interview, I was told I had been successful. So this was what the future  had in store for me. Never had I thought I would take up a job in Pune. That city  changed my life in many ways. I met a shy young man from Karnataka there, we became  good friends and we got married.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;It was  only after joining Telco that I realised who JRD was: the uncrowned king of Indian  industry. Now I was scared, but I did not get to meet him till I was transferred  to Bombay. One day I had to show some reports to Mr Moolgaokar, our chairman,  who we all knew as SM. I was in his office on the first floor of Bombay House  [the Tata headquarters] when, suddenly, JRD walked in. That was the first time  I saw &#39;appro JRD&#39;. Appro means &#39;our&#39; in Gujarati. That was the affectionate term  by which people at Bombay House called him. &lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;I  was feeling very nervous, remembering my postcard episode. SM introduced me nicely,  &quot;Jeh (that&#39;s what his close associates called him), this young woman is an  engineer and that too a postgraduate. She is the first woman to work on the Telco  shop floor.&quot; JRD looked at me. I was praying he would not ask me any questions  about my interview (or the postcard that preceded it). Thankfully, he didn&#39;t.  Instead he remarked. &quot;It is nice that girls are getting into engineering  in our country. By the way, what is your name?&quot; &quot;When I joined Telco  I was Sudha Kulkarni, Sir,&quot; I replied. &quot;Now I am Sudha Murty.&quot;  He smiled that kindly smile and started a discussion with SM. As for me, I almost  ran out of the room.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;After that I used  to see JRD on and off. He was the Tata Group chairman and I was merely an engineer.  There was nothing that we had in common. I was in awe of him. &lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;One  day I was waiting for Murthy, my husband, to pick me up after office hours. To  my surprise I saw JRD standing next to me. I did not know how to react. Yet again  I started worrying about that postcard. Looking back, I realise JRD had forgotten  about it. It must have been a small incident for him, but not so for me.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;&quot;Young  lady, why are you here?&quot; he asked. &quot;Office time is over.&quot; I said,  &quot;Sir, I&#39;m waiting for my husband to come and pick me up.&quot; JRD said,  &quot;It is getting dark and there&#39;s no one in the corridor. I&#39;ll wait with you  till your husband comes.&quot; I was quite used to waiting for Murthy, but having  JRD waiting alongside made me extremely uncomfortable. &lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;I  was nervous. Out of the corner of my eye I looked at him. He wore a simple white  pant and shirt. He was old, yet his face was glowing. There wasn&#39;t any air of  superiority about him. I was thinking, &quot;Look at this person. He is a chairman,  a well-respected man in our country and he is waiting for the sake of an ordinary  employee.&quot; &lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;Then I saw Murthy and  I rushed out. JRD called and said, &quot;Young lady, tell your husband never to  make his wife wait again.&quot;&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;In 1982  I had to resign from my job at Telco. I was reluctant to go, but I really did  not have a choice. I was coming down the steps of Bombay House after wrapping  up my final settlement when I saw JRD coming up. He was absorbed in thought. I  wanted to say goodbye to him so I stopped. He saw me and paused. &lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;Gently,  he said, &quot;So what are you doing, Mrs Kulkarni? (That was the way he always  addressed me.) &quot;Sir, I am leaving Telco.&quot; &quot;Where are you going?&quot;  he asked. &quot;Pune, sir. My husband is starting a company called Infosys and  I&#39;m shifting to Pune.&quot; &quot;Oh! And what you will do when you are successful?&quot;  &quot;Sir, I don&#39;t know whether we will be successful.&quot; &quot;Never start  with diffidence,&quot; he advised me. &quot;Always start with confidence. When  you are successful you must give back to society. Society gives us so much; we  must reciprocate. I wish you all the best.&quot;&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;Then  JRD continued walking up the stairs. I stood there for what seemed like a millennium.  That was the last time I saw him alive.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;Many  years later I met Ratan Tata in the same Bombay office, occupying the chair JRD  once did. I told him of my many sweet memories of working with Telco. Later, he  wrote to me, &quot;It was nice listening about Jeh from you. The sad part is that  he&#39;s not alive to see you today.&quot;&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;I  consider JRD a great man because, despite being an extremely busy person, he valued  one postcard written by a young girl seeking justice. He must have received thousands  of letters every day. He could have thrown mine away, but he didn&#39;t do that. He  respected the intentions of that unknown girl, who had neither influence nor money,  and gave her an opportunity in his company. He did not merely give her a job;  he changed her life and mindset forever.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;Close  to 50 per cent of the students in today&#39;s engineering colleges are girls. And  there are women on the shop floor in many industry segments. I see these changes  and I think of JRD. If at all time stops and asks me what I want from life, I  would say I wish JRD were alive today to see how the company we started has grown.  He would have enjoyed it wholeheartedly.&lt;/p&gt;&lt;p class=&quot;main_txt_grey&quot; align=&quot;left&quot;&gt;My  love and respect for the House of Tatas remains undiminished by the passage of  time. I always looked up to JRD. I saw him as a role model - for his simplicity,  his generosity, his kindness and the care he took of his employees. Those blue  eyes always reminded me of the sky; they had the same vastness and munificence.&lt;/p&gt;&lt;i&gt;&lt;b&gt;*&lt;/b&gt;Sudha  Murty is the chairperson of the Infosys Foundation. She is involved in a number  of social development initiatives and is also a widely published writer.&lt;/i&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/600348990857750785/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/600348990857750785?isPopup=true' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/600348990857750785'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/600348990857750785'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/05/story-worth-reading.html' title='A story worth reading.'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-2725557120589180270</id><published>2008-04-01T20:22:00.000+05:30</published><updated>2008-11-27T20:42:00.356+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="irony"/><category scheme="http://www.blogger.com/atom/ns#" term="src.web"/><title type='text'>The Tale of a Date</title><content type='html'>&lt;p style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;    She is my first and the only love till this point. Her name is Nivedita, a software engineer by profession. She is turning twenty-four shortly and she is undoubtedly the most beautiful girl on earth. I made it a point to share my feelings today with her, hoping this letter would do it all. I have not written any letters in my life till now, and this is perhaps the first time I pen down my thoughts and expectations for the person I love the most on earth.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;    It&#39;s been four years since we met each other and a strong bond has grown between us through these years. I was unaware of her love for a long time. In fact, I hadn&#39;t spoken a word with her till about a year I had seen her for the first time. It was in one long journey in train, I understood her love for me. It happened a year ago. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;It was a trip from Kanyakumari to Chennai in Kanyakumari Express. We had passed Vizhupuram and it was 3 am in the morning. I thought I was the only one who was awake in the whole compartment in that early hour. But to my surprise, she was also awake. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;I didn&#39;t know then that it was for me she had got up that early. Hardly had she seemed to move her sight away from me. She smiled at me very often and every time I encountered that cute smile, I started eagerly awaiting the next battle with her smile and shining eyes. Her smile had everything in it, the story of unbelievable affection, care and what not.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;From that moment, till now, I too have loved her to a great extent. We have never exchanged words about the love we have towards each other, but words are too less to reflect the amount of affection and love we share. I have always thought that the love would remain throughout our life and it happened to be the same till three months back.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;Vivek had come into my life three months back. In fact I myself had waited his arrival for quite a long time, but from the moment he arrived, he has been the worst enemy in my life. Nivedita and he had grown close over times, and the fraction of time she spent with me got lowered to a great extent. Even the latest Sensex fall would be less compared to the fall in her affection for me.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;I have wondered how it could suddenly happen, after near to four long years of understanding and love amidst us. At times, I have felt like killing that guy Vivek, but I have not had that much strength or braveness to do that. Still, what can he do? He did no mistake to his part, except for being born charming, cute and fair.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;Two days before when I saw her, she was feeding food for him and I was hurt to the core on seeing the incident. My anger had boiled down to tears, and I broke. It took almost close to three hours for me stop crying, I felt I had cried more than how much I would have cried when I was born.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;I have been trying to understand where it all went wrong, but to my fortune, till now, I haven&#39;t been able spot it out. Once for all, I decided to tell all my feelings to her, no matter how she is going to deal with it. I have heard my dad saying a lot of times &#39;Something is better than nothing!&#39; and I made up my mind to do &#39;something&#39;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;I fixed today to be the &#39;DATE&#39; for throwing open in front of her the &#39;TALE&#39; of my pure love for her. I don&#39;t know whether I will get a positive response from her, but I pray God that only the best happens.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;Trrrrriinnnnnnggggg…&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; My school bell has rung. The lunch break is over. My &#39;UKG&#39; classmates would be ready to welcome me with the same cute smile as ever. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;I hope my &#39;MOTHER&#39; Nivedita will be alright, understands me and shares some time with me also, apart from that she spends with my three months old rascal &#39;BROTHER&#39; Vivek.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;See you after a break!!!&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: justify; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: right; text-indent: 0.5in;&quot; align=&quot;right&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;With Love,&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style=&quot;text-align: right; text-indent: 0.5in;&quot; align=&quot;right&quot;&gt;&lt;span style=&quot;font-family:Trebuchet MS;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size: 10pt;&quot;&gt;Deepak UKG&lt;span style=&quot;color:navy;&quot;&gt;&lt;span style=&quot;color: navy;&quot;&gt;-B&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style=&quot;text-align: right; text-indent: 0.5in;&quot; align=&quot;right&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;P.S. you know what&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: right; text-indent: 0.5in;&quot; align=&quot;right&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style=&quot;text-align: right; text-indent: 0.5in;&quot; align=&quot;right&quot;&gt;&lt;span style=&quot;font-size:78%;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left; text-indent: 0.5in;&quot;&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;font-size:78%;&quot;&gt;...source internet...&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/2725557120589180270/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/2725557120589180270?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/2725557120589180270'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/2725557120589180270'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/04/tale-of-date.html' title='The Tale of a Date'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-3107722982195048802</id><published>2008-04-01T14:33:00.003+05:30</published><updated>2008-04-01T14:57:17.699+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="funny"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><category scheme="http://www.blogger.com/atom/ns#" term="technology"/><title type='text'>Google Again</title><content type='html'>Google has done it again,&lt;br /&gt;they have started yet another service.&lt;br /&gt;&lt;br /&gt;An invitation for adventure.&lt;br /&gt;&lt;br /&gt;This is the need of hour, not just an adventure. The earth that we live upon has been manned all around. All places that are inhabitable are occupied, and those which aren&#39;t are made habitable. So to grow further we will need to move out. Move out of mother earth. This is going to be facilitated by Google.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;The Project, Virgle.&lt;/span&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.google.com/virgle/images/logo.gif&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 110px; height: 91px;&quot; src=&quot;http://www.google.com/virgle/images/logo.gif&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Starting in 2014, Virgin founder Richard Branson and Google co-founders Larry Page and Sergey Brin will be leading hundreds of users on one of the grandest adventures in human history: Project Virgle, the first permanent human colony on Mars.&lt;br /&gt;&lt;br /&gt;Ever yearned to journey to the stars?&lt;br /&gt;&lt;br /&gt;So here it is &lt;a href=&quot;http://www.google.com/virgle/index.html&quot;&gt;Virgle&lt;/a&gt; &lt;span style=&quot;font-size:78%;&quot;&gt;http://www.google.com/virgle/index.html&lt;br /&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;br /&gt;So apply for the trip. Best of Luck.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;P.S. Happy April Fool&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/3107722982195048802/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/3107722982195048802?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/3107722982195048802'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/3107722982195048802'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/04/google-again.html' title='Google Again'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-97742255777164546</id><published>2008-03-31T15:26:00.002+05:30</published><updated>2008-11-27T20:42:14.134+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="technology"/><title type='text'>AlterTunes</title><content type='html'>My friend Abhinav (apna jhantu) has been working on a part time self employed work(though no money till now). :)&lt;br /&gt;&lt;br /&gt;He is developing a website which has been reached a beta release stage. I invite you all readers to have a look at this site.&lt;br /&gt;&lt;br /&gt;It&#39;s called AlterTunes&lt;br /&gt;&lt;br /&gt;Altertheater is a unique music search and recommendation system developed by Altertunes, keeping in mind the interest of music lovers over internet.&lt;br /&gt;&lt;br /&gt;Altertheater makes music search easy and efficient.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Access to over a 1000 Artists and about 50,000 Songs from 150 different genres.&lt;/li&gt;&lt;li&gt;Make new friends having similar taste in music, listen to their playlists and share your playlists.&lt;/li&gt;&lt;li&gt;Get relevant Videos, Images, Lyrics and Guitar Tabs for all songs with a single click.&lt;/li&gt;&lt;/ul&gt;Sign UP is free. Have a look at &lt;a href=&quot;http://altertunes.com/index.php&quot;&gt;altertunes&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I hope you are going to like it.</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/97742255777164546/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/97742255777164546?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/97742255777164546'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/97742255777164546'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2008/03/altertunes.html' title='AlterTunes'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-8396637909670734668</id><published>2007-11-08T18:20:00.000+05:30</published><updated>2007-11-08T19:42:55.737+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Festivals"/><category scheme="http://www.blogger.com/atom/ns#" term="me"/><category scheme="http://www.blogger.com/atom/ns#" term="philosophical"/><title type='text'>Happy Diwali</title><content type='html'>Well my diwali was not as bad as  i expected. Although I was alone most part of the day. As i mentioned earlier couldn&#39;t go home and all friends went apart from a few, and to add up to it those here had offices today. Well its bad for them but for me too.&lt;br /&gt;&lt;br /&gt;So alone... but it helped me. Sitting in my room away from everything made me introspect, retrospect and many other spects ;) It was then that i thought about things which we never think about. The significance of friends and family, significance of festivals. What are festivals?  What is their purpose? Do the origins of these festivals really matter today? What makes as happy during this periods? Why is it time to celebrate? Why its not fun celebrating alone? and so on...&lt;br /&gt;&lt;br /&gt;Thought a lot... But who cares about that?&lt;br /&gt;You would be probably bored reading this already. Its fresh in my mind but i too will soon forget. But what will remain will be the conclusions and the learnings from them.&lt;br /&gt;&lt;br /&gt;Anyways Enough gibberish for today&lt;br /&gt;Just Enjoy the festival&lt;br /&gt;&lt;br /&gt;After all this Diwali and the thought process brought me memories, Sweet and Lovely memories. They were enough to make me happy this time.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; color: rgb(102, 51, 0);font-size:180%;&quot; &gt;Happy Diwali&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/8396637909670734668/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/8396637909670734668?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/8396637909670734668'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/8396637909670734668'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/11/happy-diwali.html' title='Happy Diwali'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-8164041697059382322</id><published>2007-11-03T12:43:00.000+05:30</published><updated>2007-11-07T18:18:24.631+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="irony"/><category scheme="http://www.blogger.com/atom/ns#" term="me"/><title type='text'>Lonely</title><content type='html'>&lt;div align=&quot;center&quot;&gt;Lonely,So lonely&lt;br /&gt;So lonely, (so lonely),&lt;br /&gt;Mr. Lonely,&lt;br /&gt;So lonely So lonely, so lonely, (so lonely), Mr. Lonely&lt;br /&gt;Lonely I&#39;m Mr Lonely,&lt;br /&gt;I have nobody,&lt;br /&gt;For my own&lt;br /&gt;I&#39;m so lonely, I&#39;m Mr. Lonely&lt;br /&gt;I have nobody, For my own&lt;br /&gt;I&#39;m so lonely&lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;center&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;a style=&quot;left: 338px ! important; top: 15px ! important;&quot; title=&quot;Click here to block this object with Adblock Plus&quot; class=&quot;abp-objtab-05434759055312544 visible ontop&quot; href=&quot;http://www.youtube.com/v/khZmokVF7H4&quot;&gt;&lt;/a&gt;&lt;a style=&quot;left: 338px ! important; top: 15px ! important;&quot; title=&quot;Click here to block this object with Adblock Plus&quot; class=&quot;abp-objtab-05434759055312544 visible ontop&quot; href=&quot;http://www.youtube.com/v/khZmokVF7H4&quot;&gt;&lt;/a&gt;&lt;a style=&quot;left: 338px ! important; top: 15px ! important;&quot; title=&quot;Click here to block this object with Adblock Plus&quot; class=&quot;abp-objtab-05434759055312544 visible ontop&quot; href=&quot;http://www.youtube.com/v/khZmokVF7H4&quot;&gt;&lt;/a&gt;&lt;a style=&quot;left: 338px ! important; top: 15px ! important;&quot; title=&quot;Click here to block this object with Adblock Plus&quot; class=&quot;abp-objtab-05434759055312544 visible ontop&quot; href=&quot;http://www.youtube.com/v/khZmokVF7H4&quot;&gt;&lt;/a&gt;&lt;object height=&quot;355&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/khZmokVF7H4&quot;&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;embed src=&quot;http://www.youtube.com/v/khZmokVF7H4&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; height=&quot;355&quot; width=&quot;425&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align=&quot;left&quot;&gt;It seems this Diwali I am going to sing this song all alone and so lonely...&lt;/div&gt;Won&#39;t be able to go home...&lt;br /&gt;Everyone&#39;s going and I will be stuck here...&lt;div align=&quot;left&quot;&gt; &lt;/div&gt;and will be singing So lonely...&lt;br /&gt;&lt;div align=&quot;left&quot;&gt;I will be lonely amidst the crowd...&lt;/div&gt;So lonely...&lt;br /&gt;&lt;div align=&quot;left&quot;&gt; &lt;/div&gt;&lt;br /&gt;&lt;div align=&quot;left&quot;&gt;Going to miss my family &amp;amp; friends...&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/8164041697059382322/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/8164041697059382322?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/8164041697059382322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/8164041697059382322'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/11/lonely.html' title='Lonely'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-4802140195306929097</id><published>2007-10-22T15:10:00.000+05:30</published><updated>2008-11-27T20:39:23.886+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="funny"/><category scheme="http://www.blogger.com/atom/ns#" term="philosophical"/><category scheme="http://www.blogger.com/atom/ns#" term="src.web"/><title type='text'>Interesting Conversation</title><content type='html'>Conversation between Friends:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;fr1---hello&lt;br /&gt;fr2---hi&lt;br /&gt;&lt;br /&gt;fr1---hey h r u???&lt;br /&gt;fr2---m fine!!! Wht abt u???&lt;br /&gt;&lt;br /&gt;fr1---m fine too&lt;br /&gt;fr2---cool&lt;br /&gt;&lt;br /&gt;fr1---so howz life???&lt;br /&gt;fr2--gud&lt;br /&gt;&lt;br /&gt;fr1--hmmmm&lt;br /&gt;&lt;br /&gt;fr1--aur batao? ( passing the ball to the other side)&lt;br /&gt;fr2--hmmm everything as usual&lt;br /&gt;&lt;br /&gt;fr2--so wht else???&lt;br /&gt;fr1--nothing much&lt;br /&gt;&lt;br /&gt;fr2--ok&lt;br /&gt;fr2--aur batao? ( passing the ball to the other side)&lt;br /&gt;&lt;br /&gt;And it goes on like this untill they give up&lt;br /&gt;&lt;br /&gt;Are u also having such conversation with ur frnds, then u r&lt;br /&gt;also&lt;br /&gt;suffering from &quot;aur batao syndrome&quot; It means ur life is all screwed up&lt;br /&gt;following the usual monotonous routine.&lt;br /&gt;&lt;br /&gt;Probably u need a change in ur life something which is&lt;br /&gt;exciting,something which is adventurous, something which really makes u&lt;br /&gt;feel gud&lt;br /&gt;&lt;br /&gt;Correct????&lt;br /&gt;&lt;br /&gt;yeh sab to thik hai ab&lt;br /&gt;&lt;br /&gt;AUR BATAO&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:78%;&quot;&gt;...source internet...&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/4802140195306929097/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/4802140195306929097?isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/4802140195306929097'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/4802140195306929097'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/10/intresting-conversation.html' title='Interesting Conversation'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-3596751467743902304</id><published>2007-09-27T17:50:00.000+05:30</published><updated>2007-09-27T18:42:40.733+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><title type='text'>Happy Birthday Google</title><content type='html'>its about google again... Why? B&#39;coz its a special day.&lt;br /&gt;&lt;br /&gt;My Favorite Search Engine has his Birthday today...&lt;br /&gt;&lt;br /&gt;Google has been a life savior during exams...&lt;br /&gt;Google has been a fun bringer when I was bored...&lt;br /&gt;Google has been a lovely search engine for my never-ending curiosity...&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-family: georgia; color: rgb(51, 51, 255);font-size:130%;&quot; &gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Happy Birthday Google&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;9th Birthday&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.google.com/logos/9th_birthday.gif&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;http://www.google.com/logos/9th_birthday.gif&quot; alt=&quot;Google&#39;s 9th Birthday&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;8th Birthday&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.google.com/logos/8th_birthday.gif&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;http://www.google.com/logos/8th_birthday.gif&quot; alt=&quot;Google&#39;s 8th Birthday&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;7th Birthday&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.google.com/logos/7th_birthday.gif&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;http://www.google.com/logos/7th_birthday.gif&quot; alt=&quot;Google&#39;s 7th Birthday&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;6th Birthday&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.google.com/logos/6th_birthday.gif&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;http://www.google.com/logos/6th_birthday.gif&quot; alt=&quot;Google&#39;s 6th Birthday&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;5th Birthday&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.google.com/logos/5th_birthday.gif&quot;&gt;&lt;img style=&quot;margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;&quot; src=&quot;http://www.google.com/logos/5th_birthday.gif&quot; alt=&quot;Google&#39;s 5th Birthday&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;4th Birthday&lt;br /&gt;&lt;a style=&quot;font-family: arial;&quot; onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.google.com/logos/4th_birthday.gif&quot;&gt;&lt;img style=&quot;cursor: pointer;&quot; src=&quot;http://www.google.com/logos/4th_birthday.gif&quot; alt=&quot;Google&#39;s 4th Birthday&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/3596751467743902304/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/3596751467743902304?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/3596751467743902304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/3596751467743902304'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/09/happy-birthday-google.html' title='Happy Birthday Google'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-6206837003584524178</id><published>2007-09-12T12:50:00.000+05:30</published><updated>2007-10-22T12:59:44.863+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Game"/><title type='text'>Jelly Battle</title><content type='html'>A single player/multi player game.&lt;br /&gt;&lt;br /&gt;Loved playing it...&lt;br /&gt;My time pass when there is no work...&lt;br /&gt;&lt;br /&gt;Try your hands on it.&lt;br /&gt;There is also some logitech product discount after winning this game, for all the discount seekers.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.jellybattle.com/&quot;&gt;http://www.jellybattle.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Find more &lt;a href=&quot;http://thoughtsomething.blogspot.com/search/label/Game&quot;&gt;Free Games&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Will bring you more games soon...</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/6206837003584524178/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/6206837003584524178?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/6206837003584524178'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/6206837003584524178'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/09/jelly-battle.html' title='Jelly Battle'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-6529483549502834893</id><published>2007-09-05T17:28:00.000+05:30</published><updated>2007-09-05T17:41:39.035+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="philosophical"/><title type='text'>Sigmund Freud&#39;s Priorities</title><content type='html'>Another interesting one...&lt;br /&gt;&lt;br /&gt;Five things are happening in your house at the same  time. In which&lt;br /&gt;sequence would you solve them?&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;The  telephone is ringing!&lt;/li&gt;&lt;li&gt;The baby is crying!&lt;/li&gt;&lt;li&gt;Someone&#39;s knocking or calling you from the front door!&lt;/li&gt;&lt;li&gt;You hung the clothes out to dry and it is beginning to rain!&lt;/li&gt;&lt;li&gt;You left the tap on in the kitchen and the water is overflowing!&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;In which sequence  would you solve these problems? Write the sequence&lt;br /&gt;and check below how your  decisions were made.&lt;br /&gt;&lt;br /&gt;BUT BE HONEST, THE FINDINGS ARE  EXCITING.&lt;br /&gt;&lt;br /&gt;First write YOUR sequence from 1 to 5 then scroll below and  read&lt;br /&gt;after!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;  Answer:&lt;/span&gt;&lt;br /&gt;&lt;blockquote&gt;  Every  individual point represents something in your life.&lt;br /&gt;On the list you can see  which meaning every point has:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Telephone represents  Work&lt;/li&gt;&lt;li&gt;Baby represents Family&lt;/li&gt;&lt;li&gt;Door represents Friends&lt;/li&gt;&lt;li&gt;Clothes represent  Money&lt;/li&gt;&lt;li&gt;Tap represents Sex&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;Your chosen sequence  determines the priorities in your life.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now....did you turn off  the tap first ?&lt;/blockquote&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/6529483549502834893/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/6529483549502834893?isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/6529483549502834893'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/6529483549502834893'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/09/sigmund-freuds-priorities.html' title='Sigmund Freud&#39;s Priorities'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-49836371214530226</id><published>2007-04-30T20:40:00.000+05:30</published><updated>2008-11-27T20:43:22.145+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="funny"/><category scheme="http://www.blogger.com/atom/ns#" term="src.web"/><title type='text'>The Lion</title><content type='html'>Q. How to catch a lion&lt;br /&gt;&lt;br /&gt;Following are the new methods generated after intensive research. Some are useful some very useful.&lt;br /&gt;&lt;br /&gt;Newton&#39;s Method:&lt;br /&gt;Let, the lion catch you. For every action there is equal and opposite reaction. Implies you caught lion&lt;br /&gt;&lt;br /&gt;Einstein Method:&lt;br /&gt;Run in the direction opposite to that of the lion.Due to higher relative velocity,the lion will also run faster and will get tired soon. Now you can trap it easily.&lt;br /&gt;&lt;br /&gt;Schrodinger Method:&lt;br /&gt;At any given moment, there is a positive probability that lion to be in the cage. So set the trap, sit down and wait.&lt;br /&gt;&lt;br /&gt;Inverse Transformation Method:&lt;br /&gt;We place a spherical cage in the forest and enter it. Perform an inverse transformation with respect to lion. Lion is in and we are out.&lt;br /&gt;&lt;br /&gt;Thermodynamic Procedure:&lt;br /&gt;We construct a semi-permeable membrane which allows everything to pass it except lions. Then sweep the entire forest with it.&lt;br /&gt;&lt;br /&gt;Integration Differential Method:&lt;br /&gt;Integrate the forest over the entire area. The lion is some where in the result. So differentiate the result PARTIALLY w.r.t lion to trace out the lion&lt;br /&gt;&lt;br /&gt;Software Engineer Method:&lt;br /&gt;Catch a cat and claim that your testing has proven that its a Lion. If anyone comes back with issues tell that you will upgrade it to Lion.&lt;br /&gt;&lt;br /&gt;Indian Police Method:&lt;br /&gt;Catch any animal and interrogate it to accept that its a Lion.&lt;br /&gt;&lt;br /&gt;Frustrated !! Yes/No ??&lt;br /&gt;&lt;br /&gt;O.K. Now let’s kill the lion...&lt;br /&gt;&lt;br /&gt;Rajnikanth Method:&lt;br /&gt;Keep warning the lion that u may come and attack anytime. The lion will live in fear and die soon in fear itself.&lt;br /&gt;&lt;br /&gt;Ramarajan Method:&lt;br /&gt;Remove the make-up and put it over lion. The lion will die notwithstanding that heavy weight.&lt;br /&gt;&lt;br /&gt;Jayalalitha Method:&lt;br /&gt;Send Police commissioner Muthukaruppan around 2AM and kill it, while it&#39;s sleeping!&lt;br /&gt;&lt;br /&gt;Manirathnam Method (director):&lt;br /&gt;Make sure the lion does not get sun light and put the lion in a dark room with a single candle lighted. Keep murmuring something in its ears. The lion will be highly irritated and commit suicide.&lt;br /&gt;&lt;br /&gt;Karan Johar Method (director):&lt;br /&gt;Send a lioness into the forest. Our lion and lioness fall in love with each other. Send another lioness in to t he forest, followed by another lion. First lion loves the first lioness and the second lion loves the 2nd lioness. But 2nd lioness loves both lions. Now send another&lt;br /&gt;lioness (third) into the forest. You don&#39;t understand right... ok....read it after 15 yrs, then also u wont!&lt;br /&gt;&lt;br /&gt;Yash Chopra method (director):&lt;br /&gt;Take the lion to Australia or US... and kill it in a good scenic location.&lt;br /&gt;&lt;br /&gt;Govinda method:&lt;br /&gt;Continuously dance before the lion for 5 or 6 days.&lt;br /&gt;&lt;br /&gt;Rahul Dravid method:&lt;br /&gt;Ask the lion to bowl at u.U bat for 200 balls and score 1 run.&lt;br /&gt;&lt;br /&gt;Maneka Gandhi method:&lt;br /&gt;Save the lion from a danger and feed him with some vegetables continuously.&lt;br /&gt;&lt;br /&gt;George Bush method:&lt;br /&gt;Link the lion with OSAMA BIN LADEN and shoot him</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/49836371214530226/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/49836371214530226?isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/49836371214530226'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/49836371214530226'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/04/lion.html' title='The Lion'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-7477223953361492387</id><published>2007-04-01T19:55:00.000+05:30</published><updated>2009-01-20T06:59:53.091+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="funny"/><category scheme="http://www.blogger.com/atom/ns#" term="Google"/><title type='text'>Google Latest Techonlogies</title><content type='html'>Google has come up with some of what u say very intresting and unbelievable solutions as always. Hats off to Google. Have a look at what i am Blogging about.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/tisp/&quot;&gt;Google TiSP (BETA)&lt;/a&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihd9WRRnh8l6UwW98l7l426hs_ETQ55CG7KP3gW4a7qXCuR1u06oWr2P9WcmDBwXElL8hKigABChIXbOxjQGt1UvGPtqYtP8-uBzw8S9hIQ_8W_oHTMRf2mrrHJPraZQs4TTnQ/s1600-h/header2.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 150px; height: 58px;&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihd9WRRnh8l6UwW98l7l426hs_ETQ55CG7KP3gW4a7qXCuR1u06oWr2P9WcmDBwXElL8hKigABChIXbOxjQGt1UvGPtqYtP8-uBzw8S9hIQ_8W_oHTMRf2mrrHJPraZQs4TTnQ/s200/header2.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5051850988205476546&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Looking for a hi-fi wi-fi connection then here it is. It has a long way to reach other countries specially like India. This service is for Developed countries. But i know you would like to have a peek around. Google TiSP (BETA) is a fully functional, end-to-end system that provides in-home wireless access. Google says &quot;Want Wi-fi around? Just flush it down&quot;. Google offers professional and enterprise editions too.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/romance/&quot;&gt;Google Romance&lt;span style=&quot;&quot;&gt;™&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.google.com/romance/images/Romance_150x58.gif&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 150px; height: 58px;&quot; src=&quot;http://www.google.com/romance/images/Romance_150x58.gif&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;All out there searching for your destined one. Stop searching at wrong places and turn to Google.&lt;br /&gt;As always google has come up with a intresting solution for all. Soulmate Search&lt;span style=&quot;&quot;&gt;™ &lt;/span&gt;is the technology that i am talking about. So stop fooling yourself and turn to google for a chance to fool around ;). In words of google &quot;When you think about it, love is just another                   search problem. And we’ve thought about it. A lot. Google Romance&lt;span style=&quot;&quot;&gt;™ &lt;/span&gt;is                   our solution.&quot;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/googlegulp/&quot;&gt;&lt;span style=&quot;&quot;&gt;&lt;span style=&quot;&quot;&gt;Google Gulp (&lt;span style=&quot;&quot;&gt;BETA&lt;/span&gt;)™ with Auto-Drink™ (&lt;span style=&quot;&quot;&gt;LIMITED RELEASE&lt;/span&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.google.com/googlegulp/images/logo.gif&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 150px; height: 90px;&quot; src=&quot;http://www.google.com/googlegulp/images/logo.gif&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;A revolutionary new drink which gives you the cutting edge technology that google uses to organise information it&#39;s search engine comes across to. This same technology can be used by you all u have to do is Gulp the Google Gulp. Google Gulp is designed to maximize your surfing efficiency by making you more intelligent, and less thirsty.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/technology/pigeonrank.html&quot;&gt;Google Technology&lt;/a&gt;&lt;br /&gt;what is Google Technology of ranking pages that makes you love the search results. Have a quick overview of the technology and increase the level of trust u show in Google Search. The people at Google call it PigeonRank&lt;span style=&quot;;font-family:Arial,sans-serif;font-size:100%;&quot;  &gt;&lt;b&gt;™.&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/mentalplex/&quot;&gt;Google&#39;s MentalPlex&lt;span style=&quot;font-family:arial,sans-serif;&quot;&gt;&lt;sup&gt;TM&lt;/sup&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;This cool tool understands what u are looking for and searches that. All u have to do is look at the rotating disc. Google mentalplex helps u find what u are looking for very efficiently.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.google.com/jobs/lunar_job.html&quot;&gt;Google Job Opportunities&lt;/a&gt;&lt;br /&gt;Google has already created a big spot for itself in the history of this planet. Do u think u lost the chance of being in it. Do not look sad Google will give u chance to create history on Moon.&lt;br /&gt;All u have to do is Apply for the Job.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;color: rgb(102, 102, 102);&quot;&gt;This April Fool i made a fool of some of my friends, so did Google. In its attempt to make a fool of its users this year they had a &lt;a href=&quot;https://mail.google.com/mail/help/paper/index.html&quot;&gt;new idea&lt;/a&gt;.&lt;/span&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/7477223953361492387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/7477223953361492387?isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/7477223953361492387'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/7477223953361492387'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/04/google-latest-techonlogies.html' title='Google Latest Techonlogies'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEihd9WRRnh8l6UwW98l7l426hs_ETQ55CG7KP3gW4a7qXCuR1u06oWr2P9WcmDBwXElL8hKigABChIXbOxjQGt1UvGPtqYtP8-uBzw8S9hIQ_8W_oHTMRf2mrrHJPraZQs4TTnQ/s72-c/header2.jpg" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-8047791408732195573</id><published>2007-03-03T16:20:00.000+05:30</published><updated>2008-11-27T20:43:51.345+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Festivals"/><category scheme="http://www.blogger.com/atom/ns#" term="poem"/><title type='text'>Happy Holi</title><content type='html'>&lt;span style=&quot;font-family:arial;&quot;&gt;Holi is approaching...&lt;br /&gt;with nothing to do&lt;br /&gt;Thoght of writing a poem...&lt;br /&gt;wrote one in 5 min&lt;br /&gt;then thought of putting it here  :) ;)&lt;br /&gt;&lt;/span&gt;&lt;blockquote&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Dekho fir se holi aayi hai&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Sunahari satrangi chata chayi hai&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Aap ki jindagi bhi bhari rahe in rango se&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Dil ki ghahrayion se ek hi aawaj aayi hai&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Gubbare aur pichkari nahi chalate hum&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Kichad aur ando se nikala dum&lt;br /&gt;Kyunki chahe kuch bhi karo&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Bhawanaye wahi hai&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Ichhaye wahi hai&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Pyar wahi hai&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Deewane wahi hai&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Bas peeli Bhang mili thodi si thandayi hai&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-family:georgia;&quot; &gt;Dekho fir se holi aayi hai&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(204, 51, 204); font-weight: bold;font-size:180%;&quot; &gt;H&lt;/span&gt;&lt;span style=&quot;color: rgb(102, 51, 255); font-weight: bold;font-size:180%;&quot; &gt;a&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 204, 204); font-weight: bold;font-size:180%;&quot; &gt;p&lt;/span&gt;&lt;span style=&quot;color: rgb(51, 204, 0); font-weight: bold;font-size:180%;&quot; &gt;p&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 204, 0); font-weight: bold;font-size:180%;&quot; &gt;y &lt;/span&gt;&lt;span style=&quot;color: rgb(204, 153, 51); font-weight: bold;font-size:180%;&quot; &gt;H&lt;/span&gt;&lt;span style=&quot;color: rgb(255, 102, 0); font-weight: bold;font-size:180%;&quot; &gt;o&lt;/span&gt;&lt;span style=&quot;color: rgb(153, 0, 0); font-weight: bold;font-size:180%;&quot; &gt;l&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0); font-weight: bold;font-size:180%;&quot; &gt;i&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/blockquote&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/8047791408732195573/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/8047791408732195573?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/8047791408732195573'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/8047791408732195573'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/03/holi-is-approaching.html' title='Happy Holi'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9247231.post-7814920052376890644</id><published>2007-02-07T02:52:00.000+05:30</published><updated>2008-11-27T20:38:04.136+05:30</updated><category scheme="http://www.blogger.com/atom/ns#" term="Game"/><title type='text'>Monkey Kick</title><content type='html'>&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;I came across a &lt;a href=&quot;http://totebo.com/mko.php?c=qrosqBoissoErBorFBoUBopBsosErUoJSOIONbSmoussq&quot;&gt;kicking game&lt;/a&gt;&lt;br /&gt;Be the &lt;span style=&quot;font-weight: bold;&quot;&gt;monkey&lt;/span&gt; to kick the ball as far as possible :D&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Its all about the timing and angle.&lt;br /&gt;To know when to hit the ball is based on intution.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Can you kick as far as I can &lt;/span&gt;&lt;a href=&quot;http://totebo.com/mko.php?c=qrosqBoissoErBorFBoUBopBsosErUoJSOIONbSmoussq&quot;&gt;&lt;span&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;see my kick and then try yourself&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://thoughtsomething.blogspot.com/feeds/7814920052376890644/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/9247231/7814920052376890644?isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/7814920052376890644'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9247231/posts/default/7814920052376890644'/><link rel='alternate' type='text/html' href='http://thoughtsomething.blogspot.com/2007/02/monkey-kick.html' title='Monkey Kick'/><author><name>Bhavya Jain</name><uri>http://www.blogger.com/profile/02067212088493446666</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQcW9SocDg5OxpympfRVnmziYcLu8vVCXk5qcvM63PqQyTN6xfdiUT7O5MxZtrwsOfTH5UIF8sByOnM6JgD55okEDVKBzzusrvzQp_5PZUmb9QDdS_WdlPPkAcsjsWaw/s220/DSC00579_closeup.JPG'/></author><thr:total>0</thr:total></entry></feed>