<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CkcDRHgzfCp7ImA9WxBVGU8.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703</id><updated>2010-02-23T15:44:35.684+05:30</updated><title>TicTechToc</title><subtitle type="html">Technology | Tips | Tricks</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://tictechtoc.shashikant.in/" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>15</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/TicTechToc" /><feedburner:info uri="tictechtoc" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>TicTechToc</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><entry gd:etag="W/&quot;AkAMR3g6eCp7ImA9WxBWEU4.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-734121121724296921</id><published>2010-01-31T09:18:00.020+05:30</published><updated>2010-02-03T00:56:26.610+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-02-03T00:56:26.610+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="autohotkey" /><category scheme="http://www.blogger.com/atom/ns#" term="script" /><title>AutoHotKey: Open a New Command Prompt from Explorer</title><content type="html">&lt;span class="fullpost"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;This is a small &lt;a href="http://www.autohotkey.com/"&gt;AutoHotKey&lt;/a&gt; script that opens a command prompt window at the same location as the folder you are browsing in Windows Explore.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class="fullpost"&gt;[&lt;b&gt;BONUS&lt;/b&gt;: Open the explorer with current directory from command prompt]&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Simply hit the &lt;b&gt;Ctrl+Alt+H&lt;/b&gt; shortcut key sequence&lt;span class="fullpost"&gt; while the explorer or the command prompt is in focus.&lt;/span&gt;&lt;br /&gt;
Here is the code to register the shortcut:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;; Opens a command prompt with the current folder 
; when you press Ctrl+Alt+H in Explorer
; or the command prompt

^!h::
if WinActive("ahk_class CabinetWClass") 
or WinActive("ahk_class ExploreWClass")
{
 ClipSaved := ClipboardAll
 Send !d
 Sleep 10
 Send ^c
 Run, cmd /K "cd /D `"%clipboard%`""
 Clipboard := ClipSaved
 ClipSaved =
 return
}
else if WinActive("ahk_class ConsoleWindowClass") 
{
 Send ^c 
 Sleep 10
 Send explorer .{Enter}
 Sleep 10
 return
}
exit

&lt;/pre&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://dl.dropbox.com/u/625146/openCmd.ahk" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_MuDDQo3jIN0/S2U6vxD8pGI/AAAAAAAAC2c/aVsvACcQbJI/s1600/downloadScript.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div style="color: #666666;"&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span class="fullpost" style="font-size: small;"&gt;Inspired by &lt;a href="http://lifehacker.com/5306401/open-a-new-command-prompt-from-explorer-with-a-hotkey"&gt;this&lt;/a&gt;, with bug fixes.&lt;/span&gt;&lt;/div&gt;
&lt;span class="fullpost"&gt;

&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-734121121724296921?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/734121121724296921/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2010/01/autohotkey-open-new-command-prompt-from.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/734121121724296921?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/734121121724296921?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/ZZ23aW5i70I/autohotkey-open-new-command-prompt-from.html" title="AutoHotKey: Open a New Command Prompt from Explorer" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_MuDDQo3jIN0/S2U6vxD8pGI/AAAAAAAAC2c/aVsvACcQbJI/s72-c/downloadScript.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2010/01/autohotkey-open-new-command-prompt-from.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkIEQnc6cSp7ImA9WxBXGEU.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-1172637271896141228</id><published>2010-01-26T12:58:00.012+05:30</published><updated>2010-01-31T01:11:43.919+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-01-31T01:11:43.919+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="itunes" /><title>Convert your folders into Albums for iTunes</title><content type="html">Has it ever annoyed you when you drop a music folder into iTunes and all your files get scattered instead of becoming a single album. If yes, read ahead..&lt;br /&gt;
&lt;br /&gt;
iTunes is incapable of handling music files that are not &lt;a href="http://en.wikipedia.org/wiki/ID3"&gt;tagged&lt;/a&gt; properly. This annoyed me to the extend that I wrote this small tool that &lt;b&gt;converts your music folder into an album for iTunes.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;
&lt;b&gt;&lt;span style="font-size: small;"&gt;iFoAl - iTunes Folder to Album Convertor&lt;/span&gt;&lt;/b&gt;&lt;/blockquote&gt;
&lt;br /&gt;
Here is a screencast (less than a minute) that shows how it works:&lt;br /&gt;
&lt;br /&gt;
&lt;object height="405" width="500"&gt;&lt;param name="movie" value="http://www.youtube.com/v/nL98c_SVlTA&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1"&gt;





&lt;/param&gt;
&lt;param name="allowFullScreen" value="true"&gt;





&lt;/param&gt;
&lt;param name="allowscriptaccess" value="always"&gt;





&lt;/param&gt;
&lt;embed src="http://www.youtube.com/v/nL98c_SVlTA&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="405"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
Download iFoAl (~1 MB):&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://shashi-kant-code-dump.googlecode.com/files/iFoAl%20v0.3.exe" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" height="100" src="http://1.bp.blogspot.com/_MuDDQo3jIN0/S16TefygLbI/AAAAAAAAC1g/9BsDOM5AmF8/s200/Good.png" width="100" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;a href="http://shashi-kant-code-dump.googlecode.com/files/iFoAl%20v0.3.exe" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_MuDDQo3jIN0/S16UeDSawMI/AAAAAAAAC1k/zgdHcixdduA/s1600/downloadnow.png" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: black;"&gt;
&lt;span style="font-size: small;"&gt;You can also peek into the source here:&lt;a href="http://code.google.com/p/shashi-kant-code-dump/source/browse/#svn/trunk/iFoAl"&gt;&lt;br /&gt; http://code.google.com/p/shashi-kant-code-dump/source/browse/#svn/trunk/iFoAl&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;span style="color: #999999; font-size: small;"&gt;&lt;br /&gt;&lt;span style="color: black;"&gt;PS: iFoAl might crash if you don't have Microsoft .NET Framework installed. &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=333325FD-AE52-4E35-B531-508D977D32A6&amp;amp;displaylang=en"&gt;Download it here.&lt;/a&gt;&lt;/span&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=333325FD-AE52-4E35-B531-508D977D32A6&amp;amp;displaylang=en"&gt;&lt;/a&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-1172637271896141228?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/1172637271896141228/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2010/01/convert-your-folders-into-albums-for.html#comment-form" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/1172637271896141228?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/1172637271896141228?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/XFtnAXF1j6E/convert-your-folders-into-albums-for.html" title="Convert your folders into Albums for iTunes" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_MuDDQo3jIN0/S16TefygLbI/AAAAAAAAC1g/9BsDOM5AmF8/s72-c/Good.png" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">5</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2010/01/convert-your-folders-into-albums-for.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEcDSHk4fSp7ImA9WxNSGEs.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-3056395623569273426</id><published>2009-01-26T18:41:00.006+05:30</published><updated>2009-09-02T10:04:39.735+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-02T10:04:39.735+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="firefox" /><category scheme="http://www.blogger.com/atom/ns#" term="plugin" /><title>Can I read it later? … Sure</title><content type="html">&lt;p align="justify"&gt;Today I am going to talk about an incredibly useful Firefox plugin: &lt;strong&gt;&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/7661" target="_blank"&gt;Read It Later&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p align="justify"&gt;Ever stumbled over a site and thought - “Ahh.. this seems to be interesting, but maybe I'll read it sometime later”. The simplest thing to do then would be to just go ahead and bookmark it. A downside that I see to this approach is that, you might be working on multiple computers and the next thing you know you don’t even remember which browser it was. (People handling more than one computer at a time will get me).&lt;/p&gt; 
&lt;p align="justify"&gt;Read It Later is a wonderful plugin and not only bookmarks your favourite pages but also can be easily synced on multiple computers. &lt;/p&gt;    &lt;blockquote&gt;     &lt;p align="justify"&gt;Read It Later allows you to save pages of interest to read later. It eliminates cluttering of bookmarks with sites that are merely of a one-time interest.&lt;/p&gt;   &lt;/blockquote&gt;    &lt;p align="justify"&gt;&lt;/p&gt;    &lt;p&gt;The main features of the plugin: &lt;/p&gt;    &lt;blockquote&gt;     &lt;p&gt;Save multiple links on a page by turning on save mode (alt + M) &lt;/p&gt;      &lt;p&gt;Sort your reading list by date, site, tags, etc &lt;/p&gt;      &lt;p&gt;If you want to save the link for later reference, you have an option to save it to any of the popular bookmarking site. &lt;/p&gt;      &lt;p&gt;You can also save all opened tabs in Firefox in a single click. &lt;/p&gt;      &lt;p&gt;You can read the list from any computer using the RSS feed or viewing it at &lt;a href="http://readitlaterlist.com"&gt;http://readitlaterlist.com&lt;/a&gt; &lt;/p&gt;      &lt;p&gt;If all that was not enough, you can even save all these pages for &lt;strong&gt;offline viewing&lt;/strong&gt; in a single click. &lt;/p&gt;   &lt;/blockquote&gt;    &lt;p&gt;This video sums up pretty much everything: &lt;/p&gt;    &lt;div class="wlWriterEditableSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:4595e1ea-e4bf-418b-a940-74ef800b116b" style="padding-right: 0px; display: block; padding-left: 0px; float: none; padding-bottom: 0px; margin-left: auto; width: 425px; margin-right: auto; padding-top: 0px"&gt;&lt;div id="564022c9-f597-48ce-bfab-4788c62a8fbe" style="margin: 0px; padding: 0px; display: inline;"&gt;&lt;div&gt;&lt;a href="http://www.youtube.com/watch?v=mLNfsLpM8zo" target="_new"&gt;&lt;img src="http://lh6.ggpht.com/_MuDDQo3jIN0/SX22aoByY6I/AAAAAAAACdA/s2aDLoHMmJs/video8a576f29a222%5B4%5D.jpg?imgmax=800" style="border-style: none" galleryimg="no" onload="var downlevelDiv = document.getElementById('564022c9-f597-48ce-bfab-4788c62a8fbe'); downlevelDiv.innerHTML = &amp;quot;&amp;lt;div&amp;gt;&amp;lt;object width=\&amp;quot;425\&amp;quot; height=\&amp;quot;355\&amp;quot;&amp;gt;&amp;lt;param name=\&amp;quot;movie\&amp;quot; value=\&amp;quot;http://www.youtube.com/v/mLNfsLpM8zo&amp;amp;hl=en\&amp;quot;&amp;gt;&amp;lt;\/param&amp;gt;&amp;lt;embed src=\&amp;quot;http://www.youtube.com/v/mLNfsLpM8zo&amp;amp;hl=en\&amp;quot; type=\&amp;quot;application/x-shockwave-flash\&amp;quot; width=\&amp;quot;425\&amp;quot; height=\&amp;quot;355\&amp;quot;&amp;gt;&amp;lt;\/embed&amp;gt;&amp;lt;\/object&amp;gt;&amp;lt;\/div&amp;gt;&amp;quot;;" alt=""&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;    &lt;p&gt;Try out Read it Later - &lt;/p&gt;    &lt;p&gt;&lt;a href=" http://tinyurl.com/6fe87g" target="_blank"&gt;&lt;img src="http://readitlaterlist.com/i/logo.gif" /&gt;&lt;/a&gt; &lt;/p&gt;    &lt;p&gt;&amp;#160;&lt;a title="http://tinyurl.com/6fe87g" href="http://tinyurl.com/6fe87g"&gt;http://tinyurl.com/6fe87g&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-3056395623569273426?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/3056395623569273426/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2009/01/can-i-read-it-later-sure.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/3056395623569273426?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/3056395623569273426?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/DDuHZdzMUbo/can-i-read-it-later-sure.html" title="Can I read it later? … Sure" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2009/01/can-i-read-it-later-sure.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIDRXs9eip7ImA9WxRQGU8.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-2281688288795952767</id><published>2008-10-13T23:54:00.001+05:30</published><updated>2008-10-14T00:32:54.562+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-14T00:32:54.562+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="tip" /><category scheme="http://www.blogger.com/atom/ns#" term="gmail" /><category scheme="http://www.blogger.com/atom/ns#" term="gtalk" /><title>Turn Gtalk/Gmail into a simple Expense manager</title><content type="html">&lt;p align="justify"&gt;It has been really long that I have searched for an Expense Manager. My requirements were never very high. Just a simple place I could easily push my expenditures. And I always ended up using things which had lots and lots of functions or had a really a tiresome process of logging on. I ended up saving it in a text file on my desktop. The cons didn’t take time to show up. I couldn’t access the file at work, anybody poking around on my computer could see it or worst still- a simple disk crash and I would lose it. Now the requirements were clear – it had to be secure, on the web and had to be easily accessible – anytime and anywhere.&lt;/p&gt; &lt;span class="fullpost"&gt;   &lt;p&gt;To get started, all you need is a Gmail account and Gtalk installed on your computer. The first step is to add yourself on Gtalk. Even though you won’t see yourself online unlike Yahoo Messenger, you can find yourself by typing your id on the Gtalk search box. Now click your name as show below: &lt;/p&gt;    &lt;p&gt;&lt;a href="http://lh3.ggpht.com/kant.shashi.s/SPOSHxaU70I/AAAAAAAABqQ/FQB60wOjX3Y/s1600-h/gtalkMess%5B9%5D.png"&gt;&lt;img title="gtalkMess" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="144" alt="gtalkMess" src="http://lh6.ggpht.com/kant.shashi.s/SPOSJZAFKbI/AAAAAAAABqU/j3h0ZB-npZU/gtalkMess_thumb%5B7%5D.png?imgmax=800" width="331" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;Even though is shows that you have not accepted the invitation, you are ready to start. Every message you send here will be echoed back to you on the screen. The important thing here is that all these chat history are saved if you have enabled chat history. [&lt;em&gt;Go &lt;strong&gt;&lt;a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;amp;answer=29290" target="_blank"&gt;here&lt;/a&gt;&lt;/strong&gt; to learn how enable it&lt;/em&gt;]       &lt;br /&gt;If your chat history is enabled you can see these messages on your Gmail account under the chat link:&lt;/p&gt;    &lt;p&gt;&lt;a href="http://lh4.ggpht.com/kant.shashi.s/SPOSKW8PJaI/AAAAAAAABqY/HDz9c4m8Ej8/s1600-h/image%5B6%5D.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="41" alt="image" src="http://lh5.ggpht.com/kant.shashi.s/SPOSLHwtM6I/AAAAAAAABqc/CAEtQmstf38/image_thumb%5B4%5D.png?imgmax=800" width="361" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;    &lt;p&gt;Now we are going to use Gmail’s filter options to turn the chat window into an expense manager. Send a message like “&lt;font color="#0080ff"&gt;EXP: Pizza Hut: Rs 150&lt;/font&gt;” on the chat window to yourself. Open the chat history on Gmail to check this out:&lt;/p&gt;    &lt;p&gt;&lt;a href="http://lh4.ggpht.com/kant.shashi.s/SPOSMegb6QI/AAAAAAAABqg/PKQO5ddN28A/s1600-h/image%5B11%5D.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="96" alt="image" src="http://lh6.ggpht.com/kant.shashi.s/SPOSNagZp3I/AAAAAAAABqk/YeV66CgZrpc/image_thumb%5B7%5D.png?imgmax=800" width="349" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;    &lt;p&gt;Confirming this, we will now create a filter for these chat histories. First click on the “&lt;em&gt;Create Filter&lt;/em&gt;” link on the top of that screen. On the next window input the &lt;em&gt;&lt;strong&gt;From&lt;/strong&gt;&lt;/em&gt; and &lt;em&gt;&lt;strong&gt;To&lt;/strong&gt;&lt;/em&gt; as your own email id. &lt;em&gt;&lt;strong&gt;Subject&lt;/strong&gt;&lt;/em&gt; as “&lt;em&gt;Chat with XXX YYY&lt;/em&gt;” where &lt;em&gt;XXX YYY&lt;/em&gt; is your name in the subject of the chat history [&lt;em&gt;refer picture above&lt;/em&gt;]. And enter &lt;strong&gt;&lt;em&gt;Has the words&lt;/em&gt;&lt;/strong&gt; field as “EXP:”. &lt;em&gt;[remember EXP: from “&lt;font color="#0080ff"&gt;&lt;strong&gt;EXP:&lt;/strong&gt; Pizza: Rs 150&lt;/font&gt;”]. &lt;/em&gt;Click &lt;em&gt;Next Step&lt;/em&gt; button and apply a new label and name it as “&lt;strong&gt;Expenses&lt;/strong&gt;”. Click &lt;em&gt;Create Filter&lt;/em&gt; button. The above steps in picture:&lt;/p&gt;    &lt;p&gt;&lt;a href="http://lh3.ggpht.com/kant.shashi.s/SPOSOdiyyHI/AAAAAAAABqo/7kMY8OE9KbI/s1600-h/image%5B17%5D.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="203" alt="image" src="http://lh5.ggpht.com/kant.shashi.s/SPOSPiMvocI/AAAAAAAABqs/s1ulkcPu0UY/image_thumb%5B11%5D.png?imgmax=800" width="353" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;    &lt;p&gt;You are all done &lt;img alt="Applause" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/41.gif" /&gt; ! You can send all your expense accounts through your chat window. Just remember to use those keywords “&lt;strong&gt;EXP:&lt;/strong&gt;” in the messages you send.       &lt;br /&gt;To access all your expenses just click on &lt;em&gt;Expenses&lt;/em&gt; link under the &lt;em&gt;Labels&lt;/em&gt; OR the&lt;em&gt; Geek Way&lt;/em&gt; &lt;img alt="Nerd" src="http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/26.gif" /&gt;: Search for “&lt;em&gt;label:expenses&lt;/em&gt;” :&lt;/p&gt;    &lt;p&gt;&lt;a href="http://lh5.ggpht.com/kant.shashi.s/SPOSQ4DOAHI/AAAAAAAABqw/UosYSGHScJI/s1600-h/image%5B28%5D.png"&gt;&lt;img title="image" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="88" alt="image" src="http://lh3.ggpht.com/kant.shashi.s/SPOSRpfVBSI/AAAAAAAABq0/rBmNSNlJbww/image_thumb%5B18%5D.png?imgmax=800" width="305" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;    &lt;p&gt;&lt;/p&gt;    &lt;p&gt;There you have all your expenses kept safely at one place. And because you have your Gtalk is accessible everywhere, you can slip in those expenses easily without any prying eyes checking them out.&lt;/p&gt;    &lt;p&gt;     &lt;br /&gt;Try this out and do tell me how it worked out for you...&lt;/p&gt; &lt;/span&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-2281688288795952767?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/2281688288795952767/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/10/turn-gtalkgmail-into-simple-expense.html#comment-form" title="4 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/2281688288795952767?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/2281688288795952767?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/Hx57MZdibI8/turn-gtalkgmail-into-simple-expense.html" title="Turn Gtalk/Gmail into a simple Expense manager" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">4</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/10/turn-gtalkgmail-into-simple-expense.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0ANQXw4fip7ImA9WxRQFUo.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-8456225345769688740</id><published>2008-10-05T15:17:00.000+05:30</published><updated>2008-10-10T00:46:30.236+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-10T00:46:30.236+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="fun" /><title>Waste time in a Flash !!</title><content type="html">&lt;div align="justify"&gt;To tell the truth, I’ve never really been very impressed by flash based browser games. To keep it short and simple, they don’t seem to wet my appetite for the kind of graphics engine they provide or the amount of brain work you put in. They are mostly the play it and forget it kind. But this was about to change...&lt;/div&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;&lt;br /&gt;
&lt;div align="justify"&gt;A few days I came across a link on &lt;a href="http://www.reddit.com/" target="_blank"&gt;reddit&lt;/a&gt; that said &lt;i&gt;“Click here to waste 2 hours of your day immediately!”. &lt;/i&gt;I clicked. And that led me to a site called &lt;b&gt;&lt;a href="http://fantasticcontraption.com/" target="_blank"&gt;FantasticContraption.com&lt;/a&gt;&lt;/b&gt;. It took just one minute through the tutorial and believe me I actually wasted(read: enjoyed) &lt;b&gt;six&lt;/b&gt; hours of my day(Thank god, its was a Sunday). &lt;/div&gt;&lt;div align="justify"&gt;&lt;a href="http://lh5.ggpht.com/kant.shashi.s/SOiNP4p5DVI/AAAAAAAABlc/g-hiu2Os_rg/s1600-h/image%5B5%5D.png"&gt;&lt;img alt="image" border="0" height="188" src="http://lh6.ggpht.com/kant.shashi.s/SOiNRBEZXVI/AAAAAAAABlg/4gUKSWkj870/image_thumb%5B4%5D.png?imgmax=800" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="image" width="252" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;div align="justify"&gt;Now this site is an online flash-based physics puzzle. You have a few tools using which you make &lt;a href="http://draft.blogger.com/post-edit.g?blogID=7484718853800752703&amp;amp;postID=8456225345769688740#" title="A device or control that is very useful for a particular job"&gt;contraptions&lt;/a&gt; and achieve your goal. What amazed me most was the physics engine it was running on. It has taken care of gravity, friction, acceleration.. u name it. Also, you can save your designs and share it with others. You will find a link to the &lt;a href="http://fantasticcontraption.com/forum/" target="_blank"&gt;&lt;b&gt;forum&lt;/b&gt;&lt;/a&gt; on the top of the page. Here you can see all the contraptions people have been building. With every new design, you only see the possibilities are only endless.&lt;br /&gt;
Go ahead and check out &lt;b&gt;&lt;a href="http://fantasticcontraption.com/" target="_blank"&gt;FantasticContraption&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
And don’t forget to post your favorite contraptions here..     &lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;br /&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-8456225345769688740?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/8456225345769688740/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/10/waste-time-in-flash.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/8456225345769688740?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/8456225345769688740?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/y541r0zWtyo/waste-time-in-flash.html" title="Waste time in a Flash !!" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/10/waste-time-in-flash.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUIGRn09cCp7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-4277273072018455137</id><published>2008-09-24T16:28:00.000+05:30</published><updated>2008-10-12T06:35:27.368+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:35:27.368+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="gmail" /><title>Gmail for Geeks – Part I</title><content type="html">&lt;div align="justify"&gt;
&lt;b&gt;Gmail&lt;/b&gt; – the undisputed “big daddy” of email service provider, within&amp;nbsp; just four years of its release, has captured the email industry like none other. Reason for the enormous success ?? Well .. to start with an excellent spam protection, super customizable options, amazing integration with google-docs and..don’t need an adjective to praise this one – the user-interface.. And me being an avid Gmail supporter, this list might as well be endless.&lt;/div&gt;
&lt;div align="justify"&gt;
So, rather than straying on this point, lets see what all you &lt;b&gt;can&lt;/b&gt; &lt;b&gt;actually &lt;/b&gt;do with Gmail that would make you a power user, a &lt;b&gt;Gmail-Geek.&lt;/b&gt;&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;/div&gt;
&lt;span class="fullpost"&gt;
&lt;div align="justify"&gt;
&lt;span style="color: #ff8000; font-size: small;"&gt;&lt;b&gt;Tip#1&amp;nbsp; Now distribute your gmail id everywhere freely&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align="justify"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; Every time you register on a new site, you have to provide an email id for your registration. And most of the sites do require an authentic one to send over a verification mail. So, like most users we end up giving up our ids and getting spammed big times. &lt;/div&gt;
&lt;div align="justify"&gt;
&lt;i&gt;Solution ??&lt;/i&gt; Look no further, Gmail fights back. Gmail has this nice little feature wherein you can simply add a tag to your id and it still remains your id. Ex: Say &lt;a href="mailto:my.mail@gmail.com"&gt;my.mail@gmail.com&lt;/a&gt; is your id and you are registering on site say &lt;b&gt;newsite.com&lt;/b&gt;. When registering on this new site, simply punch in your email id as something like &lt;a href="mailto:my.mail+newsite@gmail.com"&gt;my.mail+newsite@gmail.com&lt;/a&gt; or &lt;a href="mailto:my.mail+XXXX@gmail.com"&gt;my.mail+XXXX@gmail.com&lt;/a&gt; where XXXX can be anything you want. Now when a mail from such a site arrives in your inbox,&amp;nbsp; it has the receiver’s address as &lt;a href="mailto:my.mail+XXXX@gmail.com"&gt;my.mail+XXXX@gmail.com&lt;/a&gt; where XXXX is what you had specified.&amp;nbsp;&amp;nbsp; &lt;/div&gt;
&lt;div align="justify"&gt;
&amp;nbsp;&lt;a href="http://lh3.ggpht.com/kant.shashi.s/SNp2LXnbC8I/AAAAAAAABkk/kRk0WSN13i0/s1600-h/image%5B33%5D.png"&gt;&lt;img alt="image" border="0" height="116" src="http://lh5.ggpht.com/kant.shashi.s/SNp2M1M_7WI/AAAAAAAABko/ErKwSiy_0uo/image_thumb%5B22%5D.png?imgmax=800" style="border-width: 0px; display: inline; margin-left: 0px; margin-right: 0px;" title="image" width="352" /&gt;&lt;/a&gt;&amp;nbsp; &lt;br /&gt;Now you can easily filter those messages that arrive now on this address(&lt;a href="mailto:my.mail+XXXX@gmail.com"&gt;my.mail+XXXX@gmail.com&lt;/a&gt;) by using the “&lt;b&gt;Filter messages like this&lt;/b&gt;” link under the &lt;b&gt;Reply&lt;/b&gt; menu as shown above. This will take you to the &lt;b&gt;Create Filter &lt;/b&gt;step where you can specify the “To” address as &lt;a href="mailto:my.mail+XXXX@gmail.com"&gt;my.mail+XXXX@gmail.com&lt;/a&gt; and press the N&lt;b&gt;ext Step&lt;/b&gt; and do whatever you want to do to such messages, ranging from deleting them to archiving them, marking them read or forwarding them to another address, on this dialog-box and click &lt;b&gt;Create Filter&lt;/b&gt;. And from now on, all mails to &lt;a href="mailto:my.mail+XXXX@gmail.com"&gt;my.mail+XXXX@gmail.com&lt;/a&gt; will be treated the way you told Gmail to treat it.&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;span style="color: #ff8000; font-size: small;"&gt;&lt;b&gt;Tip# 2&amp;nbsp; Log out of all gmail sessions in one click&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align="justify"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; Sometimes it does happen that you accidently keep your Gmail session logged in somewhere and remember only when you are too far to press the sign out link. Gmail has a nifty little feature that allows to not only logout of all your other concurrent sessions, it also allows you to see the Access Type (Browser, Mobile, etc), IP Address and Date/Time from where you had accessed Gmail previously(sort of history of accesses). You can find this information by clicking on the &lt;b&gt;Details &lt;/b&gt;link at the bottom of the Gmail screen, which looks like this:&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;a href="http://lh6.ggpht.com/kant.shashi.s/SNp2NuTZD8I/AAAAAAAABks/1mn6TJb_Y98/s1600-h/image%5B40%5D.png"&gt;&lt;img alt="image" border="0" height="20" src="http://lh5.ggpht.com/kant.shashi.s/SNp2Oj8EQHI/AAAAAAAABkw/osmsr7AEFxo/image_thumb%5B27%5D.png?imgmax=800" style="border-width: 0px; display: block; float: none; margin-left: auto; margin-right: auto;" title="image" width="244" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div align="justify"&gt;
Here you can find the button to &lt;b&gt;Sign out all other sessions.&lt;/b&gt; You can use&amp;nbsp; the information listed here to find out if there has been any&amp;nbsp; unauthorized access to your mail, etc&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;span style="color: #ff8000; font-size: small;"&gt;&lt;b&gt;Tip# 3&amp;nbsp; One Gmail id = multiple email accounts&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div align="justify"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; Ok, say you have an id – &lt;a href="mailto:my.email.id@gmail.com"&gt;my.email.id@gmail.com&lt;/a&gt; Now the thing with Gmail ids is that the dots actually aren’t there. &lt;i&gt;What ??&lt;/i&gt; Yes, that’s right. Those dots that you would have so meticulously placed in your ids(or maybe left out the dots completely), simply aren’t there. &lt;i&gt;So what does that imply ?&lt;/i&gt; That would mean, your actual id is &lt;a href="mailto:myemailid@gmail.com"&gt;&lt;b&gt;myemailid@gmail.com&lt;/b&gt;&lt;/a&gt; without any dots&amp;nbsp; and those dots can be placed anywhere in your id and it would still remain your id like &lt;a href="mailto:my.email.i.d@gmail.com"&gt;my.email.i.d@gmail.com&lt;/a&gt; and &lt;a href="mailto:my.emailid@gmail.com"&gt;my.emailid@gmail.com&lt;/a&gt; are all the same ids.&amp;nbsp; Gmail explains this behavior &lt;b&gt;&lt;a href="http://mail.google.com/support/bin/answer.py?hl=en&amp;amp;ctx=mail&amp;amp;answer=10313" target="_blank"&gt;here&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;/div&gt;
&lt;div align="justify"&gt;
This feature can come handy in filtering mails, just like tip# 1, but that’s only restricted to your imagination. &lt;/div&gt;
&lt;div align="justify"&gt;
&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;i&gt;To be continued..&lt;/i&gt;&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;b&gt;Would like to hear from you, how&lt;/b&gt; &lt;b&gt;you&lt;/b&gt; &lt;b&gt;play a geek on Gmail through your comments?&lt;/b&gt;&lt;/div&gt;
&lt;div align="justify"&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-4277273072018455137?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/4277273072018455137/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/09/gmail-for-geeks-part-i.html#comment-form" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/4277273072018455137?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/4277273072018455137?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/FzEZwPAWGX4/gmail-for-geeks-part-i.html" title="Gmail for Geeks – Part I" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">5</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/09/gmail-for-geeks-part-i.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkYFQnozeyp7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-5798565634991130385</id><published>2008-06-12T15:06:00.000+05:30</published><updated>2008-10-12T06:45:13.483+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:45:13.483+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="firefox" /><category scheme="http://www.blogger.com/atom/ns#" term="technology" /><title>Download Firefox 3 this tuesday</title><content type="html">&lt;div style="text-align: justify;"&gt;&lt;b id="f_b:3"&gt;Good news all you Firefox followers&lt;/b&gt;. The wait is over. We will finally have the first release of Firefox 3 (not a beta candidate) this very&lt;b id="f_b:4"&gt; Tuesday (&lt;/b&gt;&lt;st1:date id="f_b:5" year="2008" day="17" month="6"&gt;&lt;b id="f_b:6"&gt;17&lt;sup id="f_b:7"&gt;th&lt;/sup&gt; June, 2008&lt;/b&gt;&lt;/st1:date&gt;&lt;b id="f_b:8"&gt;).&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;
&lt;span class="fullpost"&gt;
&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;UPDATE&lt;/span&gt;:&lt;/span&gt; &lt;a style="font-weight: bold; color: rgb(255, 0, 0);" href="http://www.mozilla.com/en-US/firefox/?p=downloadday"&gt;Download Firefox 3&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_MuDDQo3jIN0/SFDu8zbc5TI/AAAAAAAABg8/2PYMAcKUp4Y/s1600-h/firefox3fz6.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp1.blogger.com/_MuDDQo3jIN0/SFDu8zbc5TI/AAAAAAAABg8/2PYMAcKUp4Y/s400/firefox3fz6.jpg" alt="" id="BLOGGER_PHOTO_ID_5210927497232573746" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b id="f_b:21"&gt;&lt;a id="f_b:22" href="http://www.spreadfirefox.com/en-US/worldrecord/" target="_blank"&gt;Pledge&lt;/a&gt;&lt;/b&gt; right away to download Firefox3 on tuesday and help set a &lt;span style="font-weight: bold;"&gt;Guinness World Record for the most software downloaded in 24 hours&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-5798565634991130385?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/5798565634991130385/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/06/download-firefox-3-this-tuesday.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/5798565634991130385?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/5798565634991130385?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/WliFEUjj_XI/download-firefox-3-this-tuesday.html" title="Download Firefox 3 this tuesday" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp1.blogger.com/_MuDDQo3jIN0/SFDu8zbc5TI/AAAAAAAABg8/2PYMAcKUp4Y/s72-c/firefox3fz6.jpg" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/06/download-firefox-3-this-tuesday.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkYMRno8eip7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-8503112385801968104</id><published>2008-06-07T22:59:00.000+05:30</published><updated>2008-10-12T06:46:27.472+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:46:27.472+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="openid" /><category scheme="http://www.blogger.com/atom/ns#" term="technology" /><title>Have you got yourself an OpenID yet ?</title><content type="html">&lt;div style="text-align: justify;"&gt;
Are you tired of creating a new account on every website you use? Do you avoid new websites because they come with yet another username and password?                                  &lt;/div&gt;
&lt;span class="fullpost"&gt;
&lt;div style="text-align: justify;"&gt;
&lt;blockquote style="color: black;"&gt;
&lt;span style="color: #663366;"&gt;OpenID eliminates the need for multiple usernames across different websites, simplifying your online experience. It is a free and opensource technology which is rapidly being adopted by big names like Google, Yahoo, AOL, etc&lt;/span&gt;&lt;br /&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;span style="color: #993300; font-style: italic; font-weight: bold;"&gt;Where do I get an OpenID?&lt;/span&gt; You might be in for a surprise to find out that you already own an OpenID. If you use any of the following services, you already have your own OpenID:&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;
&lt;img border="0" src="http://bp1.blogger.com/_MuDDQo3jIN0/SErXKyz-UNI/AAAAAAAABgU/aQEI9VmJtsw/s400/OpenIdProviders.gif" /&gt;&lt;br /&gt;
Once you have an account on any one of the above listed sites, you have the passport  (i.e an OpenID) to &lt;a href="https://www.myopenid.com/directory"&gt;&lt;span style="font-weight: bold;"&gt;hundreds&lt;/span&gt;&lt;/a&gt; of websites, without having to register again.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: #cc0000; font-size: 100%;"&gt;&lt;span style="color: black; font-style: italic; font-weight: bold;"&gt;&lt;span style="color: #993300;"&gt;How do I use  an OpenID?&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: black;"&gt;Lets try to understand this from a small example:&lt;/span&gt;&lt;span style="color: black; font-style: italic; font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;Say you have a blogger account with the blog address: &lt;span style="font-weight: bold;"&gt;http://blogname.&lt;span style="color: black;"&gt;blogspot.com&lt;/span&gt; &lt;/span&gt;Now  say you want to register on  new a site (say, &lt;span style="font-weight: bold;"&gt;www.newSite123.com&lt;/span&gt;)  , that happens to support  OpenID. Just paste your blog address on the space provided for registration (something like this):&lt;br /&gt;
&lt;br /&gt;
&lt;img border="0" src="http://bp2.blogger.com/_MuDDQo3jIN0/SErRhDtuz6I/AAAAAAAABgM/gGgEsnWYvLs/s400/openid_reg.gif" /&gt;&lt;br /&gt;
Now you will be redirected to your OpenID provider (in this case &lt;span style="font-weight: bold;"&gt;&lt;span style="color: #cc6600;"&gt;blogspot.com&lt;/span&gt;&lt;/span&gt;), where you will be asked for your blogspot's username and password. You will enter your &lt;span style="font-weight: bold;"&gt;&lt;span style="color: #cc6600;"&gt;blogspot.com&lt;span style="color: black;"&gt;'s&lt;/span&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style="color: black;"&gt;credentials.  And thats it, you are registered on the new site (&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;www.newSite123.com&lt;/span&gt;)&lt;span style="color: black;"&gt; without a new username or password.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;You may now ask: How do I login after registration to this &lt;/span&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;new site without an username&lt;/span&gt;? Well OpenID is the answer. You will use the &lt;span style="font-weight: bold;"&gt;same blog address&lt;/span&gt; you used to register, to login to this site again and again.&lt;br /&gt;
&lt;br /&gt;
Just watch out for this logo on the next site you visit to know whether the site is OpenID enabled or not:&lt;br /&gt;
&lt;img border="0" src="http://bp2.blogger.com/_MuDDQo3jIN0/SErLx2lDBrI/AAAAAAAABgE/lbwI9kbIYzE/s400/300px-OpenID_logo.svg.png" /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;So have you got yourself an &lt;span style="color: red;"&gt;OpenID&lt;/span&gt; yet?&lt;br /&gt;Keep commenting..&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-8503112385801968104?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/8503112385801968104/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/06/have-you-got-yourself-openid-yet.html#comment-form" title="2 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/8503112385801968104?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/8503112385801968104?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/vq5bPaYRuXA/have-you-got-yourself-openid-yet.html" title="Have you got yourself an OpenID yet ?" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp1.blogger.com/_MuDDQo3jIN0/SErXKyz-UNI/AAAAAAAABgU/aQEI9VmJtsw/s72-c/OpenIdProviders.gif" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">2</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/06/have-you-got-yourself-openid-yet.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkUCQX8yfyp7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-303113101466312652</id><published>2008-06-07T16:57:00.000+05:30</published><updated>2008-10-12T06:47:40.197+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:47:40.197+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="technology" /><category scheme="http://www.blogger.com/atom/ns#" term="news" /><category scheme="http://www.blogger.com/atom/ns#" term="gmail" /><title>Check out GMAIL's new experimental features</title><content type="html">&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;div style="text-align: justify;"&gt;
For all those Gmail lovers out there, this is good news. Gmail releases &lt;span style="font-weight: bold;"&gt;13 new&lt;/span&gt; experimental lab-features!  You can avail these features by Lab-enabling you Gmail account. For that go to &lt;span style="font-weight: bold;"&gt;Gmail&amp;gt;Settings&amp;gt;Lab&lt;/span&gt; and select all the new features you want to try out. ( Do check out the new game by gmail ;)
&lt;span class="fullpost"&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://bp0.blogger.com/_MuDDQo3jIN0/SEpzEj024QI/AAAAAAAABfs/GBKSQwm5v18/s1600-h/Clipboard01.gif" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5209102441181012226" src="http://bp0.blogger.com/_MuDDQo3jIN0/SEpzEj024QI/AAAAAAAABfs/GBKSQwm5v18/s400/Clipboard01.gif" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;br /&gt;
For the full story &lt;a href="http://lifehacker.com/395211/gmail-gets-13-experimental-new-features" target="_blank"&gt;&lt;span style="font-weight: bold;"&gt;click here&lt;/span&gt;&lt;/a&gt; [lifehacker.com]&lt;br /&gt;
&lt;br /&gt;
If these features seem to get annoying, you can always disable them the same way you enabled it. Or, you can use this:&lt;a href="http://mail.google.com/mail/?labs=0" target="_blank"&gt;&lt;span style="font-weight: bold;"&gt;http://mail.google.com/mail/?labs=0&lt;/span&gt;&lt;/a&gt; to get gmail free from these features temporarily.&lt;/div&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-303113101466312652?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/303113101466312652/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/06/check-out-gmail-new-experimental.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/303113101466312652?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/303113101466312652?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/LbXpFF9HaIc/check-out-gmail-new-experimental.html" title="Check out GMAIL&amp;#39;s new experimental features" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp0.blogger.com/_MuDDQo3jIN0/SEpzEj024QI/AAAAAAAABfs/GBKSQwm5v18/s72-c/Clipboard01.gif" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/06/check-out-gmail-new-experimental.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQAQn0-cCp7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-5828161710299132021</id><published>2008-06-01T01:28:00.000+05:30</published><updated>2008-10-12T06:49:03.358+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:49:03.358+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ICE number" /><category scheme="http://www.blogger.com/atom/ns#" term="technology" /><title>Always keep ICE in your mobile phones</title><content type="html">&lt;div class="MsoNormal" style="text-align: justify;"&gt;
I must admit this post might not fit very well into the technology ambience of this blog. In fact this might sound as simple as an idea that it might well be tagged as “&lt;b&gt;common sense&lt;/b&gt;”. But as &lt;a href="http://www.brainyquote.com/quotes/quotes/v/voltaire106180.html"&gt;Voltaire&lt;/a&gt; puts it: “Common sense is not so common”, please do take a moment off to read the remainder of this post as this can turn out to be a life-saver for you.  &lt;/div&gt;
&lt;span class="fullpost"&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;o:p&gt; &lt;/o:p&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
ICE stands for &lt;b&gt;In Case of Emergency&lt;/b&gt;. Shortly after the &lt;st1:city&gt;&lt;st1:place&gt;London&lt;/st1:place&gt;&lt;/st1:city&gt; blasts, mobile phone users were urged to enter a number in their mobile phone's memory under the name &lt;b&gt;ICE&lt;/b&gt;. The number would be of a person who is to be contacted in case there is an emergency, such as an accident, natural disaster or a terrorist attack. Emergency services would be able to find the number quickly and use it to contact a relative or friend.&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;o:p&gt; &lt;/o:p&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
ICE is the brainchild of Bob Brotchie, an East Anglian Ambulance service paramedic. Having an ICE contact in the mobile phone, Brotchie thought, could speed up the process if such a tragedy occurred again.&lt;/div&gt;
&lt;span style="color: red; font-size: 130%;"&gt;&lt;span style="font-weight: bold;"&gt;How to ICE up your phone:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div 40px="" align="center" com="" gif="" style="-moz-background-clip: -moz-initial; -moz-background-inline-policy: -moz-initial; -moz-background-origin: -moz-initial; background: rgb(255, 255, 204) none repeat scroll 0% 50%; border: 0.3px dashed rgb(51, 51, 51); padding: 8px; width: 90%;"&gt;
&lt;div style="text-align: justify;"&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;b&gt;&lt;span style="color: red;"&gt;Step-1&lt;/span&gt;&lt;br /&gt;CHOOSE&lt;/b&gt; a responsible person to be your &lt;b&gt;In Case of Emergency (ICE) Contact&lt;/b&gt;.  Record their contact information.&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;o:p&gt; &lt;/o:p&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;b&gt;&lt;span style="color: red;"&gt;Step-2&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;INFORM&lt;/b&gt; your &lt;b&gt;ICE&lt;/b&gt; Contact that you have chosen them as your designated contact and provide them with information that may affect your treatment. Remember &lt;b&gt;MAD&lt;/b&gt; or &lt;b&gt;“M” “A” “D&lt;/b&gt;”.&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;o:p&gt; &lt;/o:p&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-family: Symbol;"&gt;        &lt;/span&gt;&lt;b&gt;&lt;span style="color: #ff9900;"&gt;M&lt;/span&gt;edicines&lt;/b&gt; - List all current medications you are taking, including herbal and organic supplements because they can and do interact with some medications.&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-family: Symbol;"&gt;        &lt;/span&gt;&lt;b&gt;&lt;span style="color: #ff9900;"&gt;A&lt;/span&gt;llergies&lt;/b&gt; - List all known allergies, especially to medications, but also to foods.&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-family: Symbol;"&gt;        &lt;/span&gt;&lt;b&gt;&lt;span style="color: #ff9900;"&gt;D&lt;/span&gt;octors&lt;/b&gt; - Include the names and phone numbers of doctors or other medical providers responsible for your regular care.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;o:p&gt; &lt;/o:p&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;b&gt;&lt;span style="color: red;"&gt;Step-3&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
            &lt;b&gt;ADD&lt;/b&gt; this contact as a new entry, with their phone number, in your mobile phone address book under the heading “&lt;b&gt;ICE&lt;/b&gt;”.  Example:  &lt;b&gt;ICE-Krish&lt;/b&gt; or &lt;b&gt;ICE-Dad&lt;/b&gt;.&lt;br /&gt;Alternately, a person can list multiple emergency contacts as "&lt;b&gt;ICE1&lt;/b&gt;", "&lt;b&gt;ICE2&lt;/b&gt;", etc in order of priority whom to contact first.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;o:p&gt; &lt;/o:p&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="margin-left: 30pt; text-align: justify; text-indent: -0.25in;"&gt;
&lt;b&gt;&lt;span style="color: red;"&gt;Also note,&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;If &lt;b&gt;you are under 18&lt;/b&gt;, make sure your ICE partner is a parent or guardian authorized to make decision on your behalf - for example if you need a life or death operation.&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;In case &lt;b&gt;your preferred contact is deaf&lt;/b&gt;, then type &lt;b&gt;ICETEXT&lt;/b&gt; then the name of your contact before saving the number.&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
This will not take even five minutes, but imagine those vital seconds that it can save in times of crisis. Spread the word around and who knows you might be saving a life.&lt;br /&gt;&lt;br /&gt;Sources and sites:&lt;br /&gt;&lt;span style="font-size: 85%;"&gt;&lt;a href="http://www.cnn.com/2008/HEALTH/02/07/ep.if.i.die/index.html"&gt;&lt;/a&gt;&lt;a href="http://www.ice4safety.com/"&gt;http://www.ice4safety.com&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.cnn.com/2008/HEALTH/02/07/ep.if.i.die/index.html"&gt;&lt;/a&gt;&lt;a href="http://tinyurl.com/5xosgr"&gt;http://tinyurl.com/5xosgr&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;a href="http://www.cnn.com/2008/HEALTH/02/07/ep.if.i.die/index.html"&gt;&lt;span style="font-size: 85%;"&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 85%;"&gt;&lt;a href="http://www.icesticker.com/"&gt;http://www.icesticker.com&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.icecontact.com/"&gt;http://www.icecontact.com&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.cnn.com/2008/HEALTH/02/07/ep.if.i.die/index.html"&gt;http://www.cnn.com/2008/HEALTH/02/07/ep.if.i.die/index.html&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;a href="http://www.cnn.com/2008/HEALTH/02/07/ep.if.i.die/index.html"&gt;&lt;span style="font-size: 85%;"&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size: 85%;"&gt;&lt;a href=""&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-5828161710299132021?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/5828161710299132021/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/05/always-keep-ice-in-your-mobile-phones.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/5828161710299132021?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/5828161710299132021?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/EHZkJELwxDM/always-keep-ice-in-your-mobile-phones.html" title="Always keep ICE in your mobile phones" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/05/always-keep-ice-in-your-mobile-phones.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQMQHc9cCp7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-429258415421102163</id><published>2008-05-30T11:23:00.000+05:30</published><updated>2008-10-12T06:49:41.968+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:49:41.968+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="technology" /><category scheme="http://www.blogger.com/atom/ns#" term="less hard disk space" /><title>Why don’t I get 160 GB on a 160 GB Hard-Disk?</title><content type="html">&lt;div class="MsoNormal" style="text-align: center;"&gt;
&lt;span style="font-size: 100%;"&gt;&lt;b&gt;The hard-disk buy-realize-regret cycle.&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: left;"&gt;
&lt;/div&gt;
&lt;div 40px="" align="center" com="" gif="" style="-moz-background-clip: -moz-initial; -moz-background-inline-policy: -moz-initial; -moz-background-origin: -moz-initial; background: rgb(255, 255, 204) none repeat scroll 0% 50%; border: 0.3px dashed rgb(51, 51, 51); padding: 8px; width: 90%;"&gt;
&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;
Just bought a new 160 GB hard disk. Now I can store everything I ever wished - All the 100+ IMDB movies. No more popping in my burned DVDs for my favourite videos, they’ll all be on my hard disk…&lt;br /&gt;
&lt;br /&gt;
Connected the new disk, and yeah everything works fine just as promised. Great. I should partition the disk. Lets see 80 GB for movies, 40 GB for Music, 20 GB for Softwares and 20 GB for Windows system Drive (Popularly known as C drive).&lt;br /&gt;
80 + 40 + 20 + 20 = 160 GB … yeah this seems right.&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;
&lt;br /&gt;
Opened up the windows-disk-partitioner software, and hey what this!! The drive shows only &lt;b&gt;149 Gb &lt;/b&gt;space. Have I been cheated? Is it a 150 GB hard-disk? Has my windows gone mad?&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;span class="fullpost"&gt;
&lt;div style="text-align: justify;"&gt;
This must have happened to many of us. Yeah, you probably felt cheated. And if you found out why exactly this happened, &lt;b&gt;you will realize you really were cheated.&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
And if you ask someone about this problem. 7 out 10 people will tell you that system is using those GBs, or that is used by the File Allocation Table (FAT), or it is shared memory which is not visible from the OS, or something technical. After this, you have only one option – keep quiet and be satisfied with what you have been given.&lt;br /&gt;
&lt;br /&gt;
Well the reason for this mismatch in the promised and the delivered capacity is a “&lt;b&gt;marketing strategy&lt;/b&gt;” and nothing that technical as we might have expected. The hard-disk manufacturers have taken the definition of &lt;b&gt;1 Kilobyte as 1000 Bytes&lt;/b&gt; (to their own benefit). And the Operating System vendors take &lt;b&gt;1 Kilobyte as 1024 Bytes. &lt;/b&gt;Now when you bring home a 160GB Hard Disk, what you actually get is 149GB space on the disk! This is true for all storage devices, from hard-disks to CD-ROMs; from pen-drives to floppy disks. You will invariably loose bytes in any case.&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="font-weight: bold; text-align: justify;"&gt;
You can check out the capacity what you can expect from your disk here:&lt;/div&gt;
&lt;div style="font-weight: bold; text-align: center;"&gt;
&lt;a href="http://websitz.googlepages.com/hdd_calculate.html"&gt;Real Disk Space Calculator.&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
Earlier when the drives were on the lower half of gigabytes, this loss was hardly visible. But today when a Terabyte(1024GB) can be packed into a single drive, &lt;b&gt;you shouldn’t be surprised if you find some 30-40 GB of space missing !!&lt;/b&gt;&lt;br /&gt;&lt;o:p&gt;&lt;br /&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;div class="MsoNormal" style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;blockquote style="color: #990000; font-family: trebuchet ms;"&gt;
So if a 1024GB hard-disk costs around 15000 bucks. Then bucks/GB would be around 14.65 bucks. And if you get 40GB less space on it, you have paid some odd 600 bucks more !!&lt;/blockquote&gt;
&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;o:p&gt;&lt;/o:p&gt;I’m least interested in what might have caused this difference in standards but in the end it’s the consumers who suffer. What the consumer wants is consistency not false promises. So disk-manufacturers: “When you say 160GB you deliver exactly that not a byte less because we don’t pay a penny less”.&lt;br /&gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;br /&gt;
All this only&lt;o:p&gt;&lt;/o:p&gt; makes computing even more confusing for the average user and makes him feel as if he has been ripped off the quality and quantity he was promised. It’s high time - hard drive vendors, operating system builders to define what exactly a kilobyte is.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-429258415421102163?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/429258415421102163/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/05/why-dont-i-get-160-gb-on-160-gb-hard.html#comment-form" title="10 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/429258415421102163?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/429258415421102163?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/fI6piYG-3xc/why-dont-i-get-160-gb-on-160-gb-hard.html" title="Why don’t I get 160 GB on a 160 GB Hard-Disk?" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">10</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/05/why-dont-i-get-160-gb-on-160-gb-hard.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkMARHg-fCp7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-379751443067523923</id><published>2008-05-28T11:28:00.000+05:30</published><updated>2008-10-12T06:50:45.654+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:50:45.654+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="black google" /><category scheme="http://www.blogger.com/atom/ns#" term="technology" /><category scheme="http://www.blogger.com/atom/ns#" term="power saving" /><category scheme="http://www.blogger.com/atom/ns#" term="blackle" /><title>Black is Green ?</title><content type="html">&lt;div class="MsoNormal" style="margin-bottom: 12pt; text-align: justify;"&gt;
&lt;b&gt;"Black is Green?&lt;/b&gt;" Doesn't that sound like some topic for some hi-funda GD (Group Discussion)? No? But that's what &lt;a href="http://in.answers.yahoo.com/question/index?qid=20070923111028AApWq54"&gt;&lt;span style="font-weight: bold;"&gt;I got&lt;/span&gt;&lt;/a&gt; when I tried looking up for this term on the net. But let me warn you well in advance, I am neither good at pondering on such topics nor do I support the wastage of human neurons for such a cause.
&lt;span class="fullpost"&gt;
&lt;br /&gt;&lt;br /&gt;
Now, get ready to go on a journey. This journey is about a page, a web-page, which has changed the lives of millions, the life of internet itself.... Useless building up the suspense (I'm not good at that too :P). I'm taking about the world-wide-web famous &lt;a href="http://www.google.com/"&gt;www.google.com&lt;/a&gt;. Some time ago, the page was under an allegation (or should I say more of a social-ecological question) &lt;span style="font-weight: bold;"&gt;whether they should turn their background from white to black&lt;/span&gt;. WHY? Well it seems &lt;a href="http://ecoiron.blogspot.com/2007/01/black-google-would-save-3000-megawatts.html"&gt;someone found out that doing so would save a great deal of energy.&lt;/a&gt; Pretty impressive &lt;b&gt;find &lt;/b&gt;I should say. And what happened next was predictable. A lot of sites spurred up trying to model this find: &lt;a href="http://www.blackle.com/"&gt;www.blackle.com&lt;/a&gt;, &lt;a href="http://black-google.blogspot.com/"&gt;black-google.blogspot.com&lt;/a&gt; and &lt;a href="http://www.jabago.com/"&gt;www.jabago.com&lt;/a&gt; are a few in the list. Blackle even maintains a precise watt-hour counter of how much energy Blackle has actually saved. Nice. &lt;/div&gt;
&lt;div class="MsoNormal" style="margin-bottom: 12pt; text-align: justify;"&gt;
And then the quest for truth started. &lt;b&gt;&lt;a href="http://techlogg.com/index.php?option=com_content&amp;amp;task=view&amp;amp;id=360&amp;amp;Itemid=9"&gt;Someone&lt;/a&gt; &lt;/b&gt;took the initiative to actually measure the amount of energy required by both versions of google.com. Well the verdict was that sites like &lt;b&gt;blackle did save some energy but only on CRTs but on LCDs they actually showed an increase in power consumption.&lt;/b&gt; And with the increasing penetration on LCDs onto our desktops (not to mention laptops) this find actually backfired. Never saw that one coming. And again, what happens next. Google maintains its search page's background as white and a few others spring up to mock the black ones...&lt;a href="http://www.brightle.com/"&gt;www.brightle.com&lt;/a&gt; :).&lt;/div&gt;
&lt;div class="MsoNormal" style="margin-bottom: 12pt; text-align: justify;"&gt;
All the findings but in the end we did not save power. So, if you really are interested in turning your computer into a power saver some of these might help (and yes, they actually work :)&lt;/div&gt;
&lt;ul type="disc"&gt;
&lt;li class="MsoNormal" style="text-align: justify;"&gt;turn on the power management features. Virtually all      computers today have the ability to switch into low-power modes      automatically when they're idle; very few computers have this capability      enabled! &lt;a href="http://www.microsoft.com/windowsxp/using/setup/learnmore/russel_02march25.mspx"&gt;Here's      how&lt;/a&gt; to do it on computers running Windows XP.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul type="disc"&gt;
&lt;li class="MsoNormal" style="text-align: justify;"&gt;turn off your monitor and computer when you're not      using them. No, screensavers doesn’t help.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul type="disc"&gt;
&lt;li class="MsoNormal" style="text-align: justify;"&gt;turn down the brightness on your monitor&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="MsoNormal" style="margin-bottom: 12pt;"&gt;
&lt;span style="font-size: 130%; font-weight: bold;"&gt;So what do you do to save power? Comments welcomed...&lt;/span&gt;&lt;/div&gt;
&lt;div class="MsoNormal"&gt;
&lt;o:p&gt; &lt;/o:p&gt;&lt;/div&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-379751443067523923?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/379751443067523923/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/05/black-is-green.html#comment-form" title="8 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/379751443067523923?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/379751443067523923?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/fn0ETGL3t6Y/black-is-green.html" title="Black is Green ?" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">8</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/05/black-is-green.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkMNR30zeip7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-4259984820955305339</id><published>2008-05-27T18:26:00.000+05:30</published><updated>2008-10-12T06:51:36.382+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:51:36.382+05:30</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="firefox" /><category scheme="http://www.blogger.com/atom/ns#" term="technology" /><title>Speed up your Firefox experience.</title><content type="html">&lt;div style="text-align: justify;"&gt;
&lt;span style="font-family: verdana;"&gt;“&lt;/span&gt;&lt;span style="font-family: verdana; font-weight: bold;"&gt;Firefox, the web browser is here to stay&lt;/span&gt;&lt;span style="font-family: verdana;"&gt;”. If there is anyone to take up IE’s (for that matter any other web browser’s) cause on this statement, I would be rather glad have that discussion with you. But right now I’m not in a mood to do that. But owing to human’s (and specially technologist’s) adamant and undying nature to digest anything new, I'll redirect you to a few links that might help to change your opinion:&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span class="fullpost"&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span style="font-family: verdana;"&gt;&lt;a href="http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;amp;articleId=9005614"&gt;Firefox vs. IE vs. Opera vs. Safari&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana;"&gt;&lt;a href="http://itmanagement.earthweb.com/secu/article.php/3698606"&gt;Mozilla Firefox vs. Internet Explorer: Which is Safer?&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span style="font-family: verdana;"&gt;&lt;a href="http://websearch.about.com/od/internet101/a/firefoxfaq.htm"&gt;Why You Should Switch to Firefox&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;span style="font-family: verdana;"&gt;Ok, so you agree that Firefox is simply the best. Well I am just going to give you one more reason to support your loyalty for “the fastest browser in the world”. Now this particular hack works for people having a broadband connection.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-family: verdana;"&gt;Do the following to make your browsing even faster:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote style="font-family: verdana;"&gt;
&lt;span style="color: black; font-size: 180%; font-weight: bold;"&gt;1.&lt;/span&gt;&lt;span style="color: black;"&gt; Type "&lt;span style="font-weight: bold;"&gt;about:config&lt;/span&gt;" into the address bar and hit return. Scroll down and look for the following entries:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: left;"&gt;
&lt;span style="color: black; font-weight: bold;"&gt;network.http.pipelining&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: black; font-weight: bold;"&gt;network.http.proxy.pipelining&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: black; font-weight: bold;"&gt;network.http.pipelining.maxrequests&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;
&lt;a href="javascript:togglecomments('show001')" style="color: red; font-weight: bold; text-decoration: none;" title="Click here to Show/Hide"&gt;Show/Hide Image&lt;/a&gt;&lt;br /&gt;
&lt;div class="commenthidden" id="show001"&gt;
&lt;br /&gt;
&lt;a href="http://bp2.blogger.com/_MuDDQo3jIN0/SEVvo1koSJI/AAAAAAAABfA/A5PM6Q9rffg/s1600-h/1.gif" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5207691291490011282" src="http://bp2.blogger.com/_MuDDQo3jIN0/SEVvo1koSJI/AAAAAAAABfA/A5PM6Q9rffg/s320/1.gif" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;span style="color: black;"&gt;Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;span style="color: black; font-size: 180%;"&gt;&lt;span style="font-weight: bold;"&gt;2.&lt;/span&gt;&lt;/span&gt;&lt;span style="color: black;"&gt; Alter the entries as follows:&lt;/span&gt;&lt;br /&gt;
&lt;div style="text-align: left;"&gt;
&lt;span style="color: black;"&gt;Set "&lt;span style="font-weight: bold;"&gt;network.http.pipelining&lt;/span&gt;" to "&lt;span style="font-weight: bold;"&gt;true&lt;/span&gt;"&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: black;"&gt;Set "&lt;span style="font-weight: bold;"&gt;network.http.proxy.pipelining&lt;/span&gt;" to "&lt;span style="font-weight: bold;"&gt;true&lt;/span&gt;"&lt;/span&gt;&lt;br /&gt;
&lt;span style="color: black;"&gt;Set "&lt;span style="font-weight: bold;"&gt;network.http.pipelining.maxrequests&lt;/span&gt;" to some number like &lt;span style="font-weight: bold;"&gt;30&lt;/span&gt;. &lt;/span&gt;&lt;/div&gt;
&lt;span style="color: black;"&gt;This means it will make 30 requests at once.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href="javascript:togglecomments('show002')" style="color: red; font-weight: bold; text-decoration: none;" title="Click here to Show/Hide"&gt;Show/Hide Image&lt;/a&gt;&lt;br /&gt;
&lt;div class="commenthidden" id="show002"&gt;
&lt;br /&gt;
&lt;a href="http://bp1.blogger.com/_MuDDQo3jIN0/SEV0dlkoSKI/AAAAAAAABfI/4NRfac9_xC0/s1600-h/2.gif" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5207696595774621858" src="http://bp1.blogger.com/_MuDDQo3jIN0/SEV0dlkoSKI/AAAAAAAABfI/4NRfac9_xC0/s320/2.gif" style="cursor: pointer; display: block; margin: 0px auto 10px; text-align: center;" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: left;"&gt;
&lt;span style="color: black; font-size: 180%; font-weight: bold;"&gt;3.&lt;/span&gt;&lt;span style="color: black;"&gt; Lastly right-click anywhere and select &lt;span style="font-weight: bold;"&gt;New-&amp;gt;Integer&lt;/span&gt;. Name it "&lt;span style="font-weight: bold;"&gt;nglayout.initialpaint.delay&lt;/span&gt;" and set its value to "&lt;span style="font-weight: bold;"&gt;0&lt;/span&gt;"&lt;/span&gt;&lt;span style="color: black;"&gt;(Zero without quotes)&lt;/span&gt;&lt;span style="color: black;"&gt;.  This value is the amount of time the browser waits before it acts on information it recieves.&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;span style="color: black;"&gt;Close your browser and open it again. This should do the trick.&lt;/span&gt;&lt;/blockquote&gt;
&lt;span style="font-family: verdana; font-weight: bold;"&gt;Happy Browsing :)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-4259984820955305339?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://tictechtoc.shashikant.in/feeds/4259984820955305339/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://tictechtoc.shashikant.in/2008/05/speed-up-your-firefox-experience.html#comment-form" title="6 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/4259984820955305339?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/4259984820955305339?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/kE7anOHneHI/speed-up-your-firefox-experience.html" title="Speed up your Firefox experience." /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://bp2.blogger.com/_MuDDQo3jIN0/SEVvo1koSJI/AAAAAAAABfA/A5PM6Q9rffg/s72-c/1.gif" height="72" width="72" /><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">6</thr:total><feedburner:origLink>http://tictechtoc.shashikant.in/2008/05/speed-up-your-firefox-experience.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEEAQn0zcSp7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-2449001671534939297</id><published>2007-07-08T06:08:00.000+05:30</published><updated>2008-10-12T06:20:43.389+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:20:43.389+05:30</app:edited><title>Link List</title><content type="html">&lt;ul&gt;
&lt;li&gt;&lt;script src="http://feeds.delicious.com/v2/js/shashikants/for-blog?bullet=%C2%BB" type="text/javascript"&gt;
    
&lt;/script&gt;&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-2449001671534939297?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/2449001671534939297?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/2449001671534939297?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/N7IqHYqQOn8/link-list.html" title="Link List" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><feedburner:origLink>http://tictechtoc.shashikant.in/2007/07/link-list.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0IHRXs8fSp7ImA9WxRQF0o.&quot;"><id>tag:blogger.com,1999:blog-7484718853800752703.post-2871897556091362716</id><published>2007-07-08T05:54:00.000+05:30</published><updated>2008-10-12T06:02:14.575+05:30</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-12T06:02:14.575+05:30</app:edited><title>Contact Me</title><content type="html">&lt;iframe height='561px' width='100%' name='zoho-Contact_Me' frameborder='0' scrolling='auto' src='http://creator.zoho.com/kant.shashi.s/contact-form/form-embed/Contact_Me/zc_Header=false&amp;zc_SuccMsg=Thank you.&amp;zc_NextUrl=http://http://tictechtoc.shashikant.in&amp;zc_OpenUrlIn=parent'&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7484718853800752703-2871897556091362716?l=tictechtoc.shashikant.in' alt='' /&gt;&lt;/div&gt;</content><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/2871897556091362716?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/7484718853800752703/posts/default/2871897556091362716?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/TicTechToc/~3/HKimM-cKaHU/contact-me.html" title="Contact Me" /><author><name>Shashi Kant Sharma</name><uri>http://www.blogger.com/profile/10744742330187042898</uri><email>noreply@blogger.com</email><gd:extendedProperty name="OpenSocialUserId" value="15228444370426960746" /></author><feedburner:origLink>http://tictechtoc.shashikant.in/2007/07/contact-me.html</feedburner:origLink></entry></feed>
