<?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:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;DEQAR3Yyfyp7ImA9WhRQEU0.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698</id><updated>2011-12-05T09:32:26.897-08:00</updated><category term="songs" /><category term="drawing" /><category term="orkut" /><category term="internet explorer" /><category term="ajax" /><category term="tips and tricks" /><category term="security" /><category term="programming" /><category term="engine" /><category term="search engine" /><category term="community" /><category term="games" /><category term="business intelligence" /><category term="active content" /><category term="mechanical" /><category term="chrome" /><category term="windows 7" /><category term="life" /><category term="firefox" /><category term="downloads of the day" /><category term="nlp twitter" /><category term="certification" /><category term="iphone" /><category term="social networking" /><category term="blogger" /><category term="windows xp" /><category term="websites" /><category term="food" /><category term="software" /><category term="browser" /><category term="mechanics" /><category term="web service" /><category term="internet" /><category term="ie7" /><category term="online course" /><category term="prashant2228" /><category term="windows" /><category term="mp3" /><category term="fun" /><category term="gmail" /><category term="hardware" /><category term="science" /><category term="google" /><category term="web design" /><category term="arunachal" /><title>Prashant2228</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://blog.prashant2228.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>160</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/prashant2228/pmXS" /><feedburner:info uri="prashant2228/pmxs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;CUAGSHc4eyp7ImA9Wx9RFEQ.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-1355912088410881885</id><published>2010-12-16T02:00:00.000-08:00</published><updated>2010-12-16T02:02:09.933-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-12-16T02:02:09.933-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="nlp twitter" /><title>Twitter Sentiment Analysis</title><content type="html">So I have started gaining some interest in Social&amp;nbsp;Analytics and&amp;nbsp;&lt;a href="http://en.wikipedia.org/wiki/Natural_language_processing"&gt;NLP&lt;/a&gt;. One of the major questions that social analytics answers is &lt;em&gt;How are my product(s)/Company performing or percieved among end users&lt;/em&gt;. This brings us to Sentiment Analysis which means determining the tone of the user i.e. whether he is accolading or bitching. &lt;a href="http://twitter.com/"&gt;Twitter&lt;/a&gt; arguably is the biggest platform where most of the users express their opinions about a certain company/product/service etc. What follows below is a quick and dirty way to analyse sentiment (tone) of tweets for any specific term.&lt;br /&gt;
&lt;br /&gt;
1. I love &lt;a href="http://www.python.org/"&gt;python&lt;/a&gt;. If you don't have it, &lt;a href="http://www.python.org/download/"&gt;get it&lt;/a&gt;. Its awesomely &lt;a href="http://diveintopython.org/"&gt;easy to learn&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
2. Get twitter data. I've used the &lt;a href="http://search.twitter.com/"&gt;normal search&lt;/a&gt; and some &lt;a href="http://www.crummy.com/software/BeautifulSoup/"&gt;BeautifulSoup&lt;/a&gt; parsing. Better way will be to use &lt;a href="http://apiwiki.twitter.com/"&gt;API with OAuth&lt;/a&gt;.&lt;br /&gt;
&lt;pre&gt;import urllib,urllib2,BeautifulSoup
from BeautifulSoup import BeautifulSoup
from HTMLParser import HTMLParser
import time
class MLStripper(HTMLParser): 
    def __init__(self): 
        self.reset() 
        self.fed = [] 
    def handle_data(self, d): 
        self.fed.append(d) 
    def get_data(self): 
        return ''.join(self.fed)

q="iphone"  
html=urllib.urlopen("http://search.twitter.com/search?q="+q).read()
soup=BeautifulSoup(html)
text_file=open("tw_"+q+"_"+str(time.time())+".txt", "w")
for msg in soup.findAll("span",{"class":"msgtxt en"}):
 s=MLStripper()
 s.feed(str(msg))
 text_file.write(s.get_data()+"\r\n\r\n") 
text_file.close()&lt;/pre&gt;&lt;br /&gt;
3. Open the above file and mark each tweet as good (Y)&amp;nbsp;or bad (N) manually based on the content. The more data you mark, the better will be the accuracy of the model which will be trained in next step.&lt;br /&gt;
&lt;pre&gt;Iphone is awesome,Y
Iphone sucks, big time for me,N
Just bought Iphone 4, its feels really nice resting in my bare hands,Y
&lt;/pre&gt;&lt;br /&gt;
4. Download and install &lt;a href="http://www.nltk.org/"&gt;NLTK&lt;/a&gt; python package. Train the Naive Bayes classifier model with the tweets you just marked in above step.&lt;br /&gt;
&lt;pre&gt;import nltk.classify.util
from nltk.classify import NaiveBayesClassifier
def word_feats(words):
 return dict([(word,True) for word in words]) 
f=open("tw_iphone_23423423.txt")
trainfeats=[]
while True:
 line=f.readline()
 print line[:len(line)-3]
 print line[len(line)-2:]
 trainfeats.append((word_feats(line[:len(line)-3].split(' ')),line[len(line)-2:len(line)-1]))
 if not line:
  break  
classifier=NaiveBayesClassifier.train(trainfeats)&lt;/pre&gt;&lt;br /&gt;
5. We are done. Test the model on any random text/tweet.&lt;br /&gt;
&lt;pre&gt;&amp;gt;&amp;gt;&amp;gt; classifier.classify(word_feat("I like my iphone. It's awesome"))
'Y'
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-1355912088410881885?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/qug-o4z6i7Vz9lAvYm5dx4mn7SU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qug-o4z6i7Vz9lAvYm5dx4mn7SU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/qug-o4z6i7Vz9lAvYm5dx4mn7SU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/qug-o4z6i7Vz9lAvYm5dx4mn7SU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/ZI6ZD8vSP48" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/1355912088410881885/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=1355912088410881885" title="3 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/1355912088410881885?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/1355912088410881885?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/ZI6ZD8vSP48/twitter-sentiment-analysis.html" title="Twitter Sentiment Analysis" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>3</thr:total><feedburner:origLink>http://blog.prashant2228.com/2010/12/twitter-sentiment-analysis.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE8DRHk8fCp7ImA9WxFbF0U.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-6325438501574472656</id><published>2010-01-10T07:42:00.000-08:00</published><updated>2010-07-10T11:34:35.774-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-10T11:34:35.774-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="windows 7" /><title>Polar clock gadget fo windows 7</title><content type="html">&lt;a href="http://blog.pixelbreaker.com/polarclock"&gt;PixelBreaker&lt;/a&gt; has an amazing polar clock. My first thought: that could look uber-cool on my win 7 desktop as a gadget. There was none available on the internets though. So, here’s the one that I put together : &lt;a href="http://dev.prashant2228.com/files/PolarClock.gadget"&gt;PolarClock.gadget&lt;/a&gt; . A quirk: an error box on initial launch, just click “dismiss all” and you are set&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-6325438501574472656?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/r5TesZZ950V7HadVndzosUYk1Ok/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/r5TesZZ950V7HadVndzosUYk1Ok/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/r5TesZZ950V7HadVndzosUYk1Ok/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/r5TesZZ950V7HadVndzosUYk1Ok/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/RCgnm1vQxYc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/6325438501574472656/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=6325438501574472656" title="12 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/6325438501574472656?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/6325438501574472656?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/RCgnm1vQxYc/polar-clock-gadget-fo-windows-7.html" title="Polar clock gadget fo windows 7" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>12</thr:total><feedburner:origLink>http://blog.prashant2228.com/2010/01/polar-clock-gadget-fo-windows-7.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkAGRXk-eSp7ImA9WxJRE0U.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-4856575531358186522</id><published>2009-05-15T04:58:00.001-07:00</published><updated>2009-05-15T04:58:44.751-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-05-15T04:58:44.751-07:00</app:edited><title>Hello world again</title><content type="html">&lt;!-- Converted from text/rtf format --&gt;  &lt;P&gt;&lt;FONT SIZE=2 FACE="Arial"&gt;Hello world,&lt;/FONT&gt; &lt;/P&gt;  &lt;P&gt;&lt;FONT SIZE=2 FACE="Arial"&gt;How are you doing these dayz ? This is one of my favorite zunk posts. Do you like it ? No Yes ? If you don't, good... you are normal. Go outside, do bird watching, life is beautiful. If you reading this blog, you are missing life. Yes you are.&lt;/FONT&gt;&lt;/P&gt;  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-4856575531358186522?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/234K2awu31Ghs87zCLNXbWmfBmU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/234K2awu31Ghs87zCLNXbWmfBmU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/234K2awu31Ghs87zCLNXbWmfBmU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/234K2awu31Ghs87zCLNXbWmfBmU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/o7mP_XdsZnY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/4856575531358186522/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=4856575531358186522" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/4856575531358186522?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/4856575531358186522?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/o7mP_XdsZnY/hello-world-again.html" title="Hello world again" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2009/05/hello-world-again.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE4HQ3Y8fCp7ImA9WxFbF0U.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-3747528624836297558</id><published>2009-02-02T09:57:00.000-08:00</published><updated>2010-07-10T11:35:32.874-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-10T11:35:32.874-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="fun" /><title>rogue dance .... he he</title><content type="html">&lt;div style="MARGIN: 0px auto 10px; TEXT-ALIGN: center"&gt;&lt;a href="http://4.bp.blogspot.com/_7AglQxSRYBs/SYc0T8fjbXI/AAAAAAAAA9I/mHNFHCh-odE/s1600-h/masti.JPG"&gt;&lt;img alt="" src="http://4.bp.blogspot.com/_7AglQxSRYBs/SYc0T8fjbXI/AAAAAAAAA9I/mHNFHCh-odE/s320/masti.JPG" border="0" /&gt;&lt;/a&gt; &lt;/div&gt;&lt;div style='clear:both; text-align:CENTER'&gt;&lt;a href='http://picasa.google.com/blogger/' target='ext'&gt;&lt;img src='http://photos1.blogger.com/pbp.gif' alt='Posted by Picasa' style='border: 0px none ; padding: 0px; background: transparent none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial;' align='middle' border='0' /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-3747528624836297558?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/A7TxPHtY2r1y4kYCjdo7sBwxMX8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/A7TxPHtY2r1y4kYCjdo7sBwxMX8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/A7TxPHtY2r1y4kYCjdo7sBwxMX8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/A7TxPHtY2r1y4kYCjdo7sBwxMX8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/T3NaztU4akI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/3747528624836297558/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=3747528624836297558" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/3747528624836297558?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/3747528624836297558?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/T3NaztU4akI/rogue-dance-he-he.html" title="rogue dance .... he he" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_7AglQxSRYBs/SYc0T8fjbXI/AAAAAAAAA9I/mHNFHCh-odE/s72-c/masti.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2009/02/rogue-dance-he-he.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MGRHo8eCp7ImA9WxVSFkQ.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-5862464361537203088</id><published>2009-01-11T08:29:00.000-08:00</published><updated>2009-01-11T08:30:25.470-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-11T08:30:25.470-08:00</app:edited><title>iMac geeks</title><content type="html">&lt;p class="mobile-photo"&gt;&lt;a href="http://1.bp.blogspot.com/_7AglQxSRYBs/SWoeofJfDeI/AAAAAAAAAoo/PbahJG-xzKA/s1600-h/photo-725473.jpg"&gt;&lt;img src="http://1.bp.blogspot.com/_7AglQxSRYBs/SWoeofJfDeI/AAAAAAAAAoo/PbahJG-xzKA/s320/photo-725473.jpg"  border="0" alt="" id="BLOGGER_PHOTO_ID_5290074393204952546" /&gt;&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/4971894943685694698-5862464361537203088?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/X_OhUn3oT4or9EmTyrPH9Mw3TgI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/X_OhUn3oT4or9EmTyrPH9Mw3TgI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/X_OhUn3oT4or9EmTyrPH9Mw3TgI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/X_OhUn3oT4or9EmTyrPH9Mw3TgI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/hrdTzcHTsWY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/5862464361537203088/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=5862464361537203088" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/5862464361537203088?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/5862464361537203088?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/hrdTzcHTsWY/imac-geeks.html" title="iMac geeks" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_7AglQxSRYBs/SWoeofJfDeI/AAAAAAAAAoo/PbahJG-xzKA/s72-c/photo-725473.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2009/01/imac-geeks.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0IHSXs5cCp7ImA9WxVSE0g.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-5049970007150608212</id><published>2009-01-07T12:18:00.001-08:00</published><updated>2009-01-07T12:18:58.528-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-07T12:18:58.528-08:00</app:edited><title /><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;h4&gt;applying thought&lt;/h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/bae92b22-0a07-4b42-a4f1-6ecc4746f925_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;p&gt;scratching my head&lt;/p&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-5049970007150608212?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/NbF6oTARbZ1ui-4-xw9NCcbiEp8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NbF6oTARbZ1ui-4-xw9NCcbiEp8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/NbF6oTARbZ1ui-4-xw9NCcbiEp8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NbF6oTARbZ1ui-4-xw9NCcbiEp8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/LMzqzpm6yjY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/5049970007150608212/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=5049970007150608212" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/5049970007150608212?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/5049970007150608212?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/LMzqzpm6yjY/applying-thought-scratching-my-head.html" title="" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2009/01/applying-thought-scratching-my-head.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUQMSX4_eyp7ImA9WxVTGE0.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-7056553648871859128</id><published>2009-01-01T01:35:00.000-08:00</published><updated>2009-01-01T01:49:48.043-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-01T01:49:48.043-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="arunachal" /><title>arunachal.prashant2228.com</title><content type="html">Those of you who know me personally might also be knowing that I grew up in Arunachal Pradesh and am very passionate about it. Internet penetration is very very shallow in this eastern himalayan region, making it an ultra-slow news region.&lt;br /&gt;&lt;br /&gt;It would be nice if all the news or blogs related to arunachal pradesh becomes accessible from single webpage.&lt;br /&gt;&lt;br /&gt;Enter &lt;a href="http://arunachal.prashant2228.com"&gt;http://arunachal.prashant2228.com&lt;/a&gt; . Created using a combination of yahoo pipes and google appengine. Here, you can view the news, blogs, images &amp;amp; videos in reverse chronological order.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-7056553648871859128?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/tStd6IWt5uv-g0pPNR64fgy5w6k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tStd6IWt5uv-g0pPNR64fgy5w6k/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/tStd6IWt5uv-g0pPNR64fgy5w6k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tStd6IWt5uv-g0pPNR64fgy5w6k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/ZBwn5ENKHNM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/7056553648871859128/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=7056553648871859128" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/7056553648871859128?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/7056553648871859128?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/ZBwn5ENKHNM/arunachalprashant2228com.html" title="arunachal.prashant2228.com" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2009/01/arunachalprashant2228com.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUIGRn0-fip7ImA9WxVTF0g.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-8862356557403757132</id><published>2008-12-31T11:19:00.000-08:00</published><updated>2008-12-31T11:58:47.356-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-31T11:58:47.356-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="iphone" /><title>Things I'm doing with my Iphone</title><content type="html">Its been just 3 days since iPocketed the iphone, still iAm in a postition to prepare a list of things iDo with it. To widen the capabilities iInstalled wifi at home as India do not have a 3G (or any high speed mobile internet) connection.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1. First and foremost is fun with people. Blaming on the steep price(around $700), very few people in india own iphone, none in my 30 people team at office. Fun were the moments when I demoed them how to control a drunkard, how easy it is to drive, how to smoke in a smoke free zone... and of course.... how to regain the lost art of flute playing.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;2. Controlling my windows xp computer, playing with the new remote control for pc.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3. Watching youtube , posting twits, checking friendfeed, searching interwebz through voice, converting noice into music, emails.... and of course traditional internet browsing.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;4. Playing n++ number of games.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I was rich, but now have to make my piece with sukhi roti and dal. Looking for some free eatable app at appstore .....&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-8862356557403757132?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/pWuN58XTDUVQpoxXQ64RMtO2meI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pWuN58XTDUVQpoxXQ64RMtO2meI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/pWuN58XTDUVQpoxXQ64RMtO2meI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/pWuN58XTDUVQpoxXQ64RMtO2meI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/fA80qft7-bc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/8862356557403757132/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=8862356557403757132" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/8862356557403757132?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/8862356557403757132?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/fA80qft7-bc/things-im-doing-with-my-iphone.html" title="Things I'm doing with my Iphone" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2008/12/things-im-doing-with-my-iphone.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE4MQHY6eCp7ImA9WxFbF0U.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-3620535079253607973</id><published>2008-12-20T02:53:00.000-08:00</published><updated>2010-07-10T11:36:21.810-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-10T11:36:21.810-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="food" /><title>Some great food @Metro@Bangalore</title><content type="html">Mostly so because didn't had good Momos in a long time, and just got an opportunity to gobble up as much as I can. Going with the name, ambience was set like some metro train with waiters in smarty caps.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_7AglQxSRYBs/SUzRxxWHkxI/AAAAAAAAAnI/Wmm8fuNdboI/s1600-h/Image607.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_7AglQxSRYBs/SUzRxxWHkxI/AAAAAAAAAnI/Wmm8fuNdboI/s320/Image607.jpg" alt="" id="BLOGGER_PHOTO_ID_5281827115988652818" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;u&gt;Buffet Items @300 INR:&lt;/u&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Chickens 3-4 dishes&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Soups, Momos, Chats , Salads...&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;All regulars (rice , naans, biryani etc..)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Desserts (pastries, rasgulla, truffles etc..)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Veg Items ( din't even looked at :D)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Liquors  (costs extra)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Location:&lt;/u&gt; &lt;span style="font-style: italic;"&gt;3rd Floor, Total Mall, Madiwala&lt;/span&gt;&lt;span style="font-style: italic;"&gt;, Bangalore&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-3620535079253607973?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/aNyViNGULD0D4TY-qFCz3HzFIXo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aNyViNGULD0D4TY-qFCz3HzFIXo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/aNyViNGULD0D4TY-qFCz3HzFIXo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aNyViNGULD0D4TY-qFCz3HzFIXo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/epVizige7Mo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/3620535079253607973/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=3620535079253607973" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/3620535079253607973?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/3620535079253607973?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/epVizige7Mo/some-great-food-metrobangalore.html" title="Some great food @Metro@Bangalore" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_7AglQxSRYBs/SUzRxxWHkxI/AAAAAAAAAnI/Wmm8fuNdboI/s72-c/Image607.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2008/12/some-great-food-metrobangalore.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DE4DQXwzcCp7ImA9WxFbF0U.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-3271252119788525121</id><published>2008-09-27T12:10:00.000-07:00</published><updated>2010-07-10T11:36:10.288-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-10T11:36:10.288-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="programming" /><title>ChucK - Audio Programmming</title><content type="html">Found an easy way to create music - &lt;a href="http://chuck.cs.princeton.edu/"&gt;ChucK&lt;/a&gt;. It's an Strongly-timed, Concurrent, and On-the-fly audio programming language.&lt;br /&gt;&lt;br /&gt;Now this might be able to help me out in creating some sensical music. I'd never been able to handle any musical instruments, ahh well except that &lt;a href="http://images.google.com/images?hl=en&amp;amp;q=bansuri"&gt;bamboo flute&lt;/a&gt; that I used to rock up well.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-3271252119788525121?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/XH_Febu7gZ6biliqzdGMjC6OM4U/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XH_Febu7gZ6biliqzdGMjC6OM4U/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/XH_Febu7gZ6biliqzdGMjC6OM4U/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XH_Febu7gZ6biliqzdGMjC6OM4U/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/qBYD1aRWqIQ" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/3271252119788525121/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=3271252119788525121" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/3271252119788525121?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/3271252119788525121?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/qBYD1aRWqIQ/chuck-audio-programmming.html" title="ChucK - Audio Programmming" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2008/09/chuck-audio-programmming.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkUCQHc4eyp7ImA9WxRSGUk.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-7967401756313962303</id><published>2008-09-20T13:45:00.000-07:00</published><updated>2008-09-20T13:57:41.933-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-20T13:57:41.933-07:00</app:edited><title>Arguments ??</title><content type="html">&lt;span style="font-weight: bold;"&gt;Arguments do not exist&lt;/span&gt;. This statement is valid only if you consider it "as is" - an universal truth. You cannot ask "why" or "how" for there would be no *argument(s)* to support it. Not at all. Because you can answer to "why" or "how" only through arguments and if arguments do not exist your every *argument* is just some sound waves or some strange combination of alphabetical diagrams.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-7967401756313962303?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fjevNlm9LWkMplSu_wxQmaV_nLk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fjevNlm9LWkMplSu_wxQmaV_nLk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fjevNlm9LWkMplSu_wxQmaV_nLk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fjevNlm9LWkMplSu_wxQmaV_nLk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/M0BdE1CBNKs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/7967401756313962303/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=7967401756313962303" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/7967401756313962303?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/7967401756313962303?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/M0BdE1CBNKs/arguments.html" title="Arguments ??" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2008/09/arguments.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MGRXw9fCp7ImA9WxRTFEk.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-243107990021950902</id><published>2008-09-02T12:48:00.000-07:00</published><updated>2008-09-03T06:43:44.264-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-03T06:43:44.264-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="chrome" /><title>Google Chrome</title><content type="html">Got all excited when saw the url &lt;a href="http://www.google.com/chrome"&gt;http://google.com/chrome&lt;/a&gt; becoming active, and within nano-seconds clicked the download. I've been watching this url whole day since the &lt;a href="http://blogoscoped.com/archive/2008-09-01-n47.html"&gt;announcement&lt;/a&gt; that Chrome is gonna released today.&lt;br /&gt;&lt;br /&gt;Downloaded the installer and ran it, seems its downloading the real stuff now. The first installer was just a hook to download the real file.&lt;br /&gt;&lt;br /&gt;OK. Download is done. Now installing ...&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_7AglQxSRYBs/SL2aoWTphLI/AAAAAAAAAlU/WScpiQmcqYQ/s1600-h/installing.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://2.bp.blogspot.com/_7AglQxSRYBs/SL2aoWTphLI/AAAAAAAAAlU/WScpiQmcqYQ/s320/installing.JPG" alt="" id="BLOGGER_PHOTO_ID_5241515559302562994" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_7AglQxSRYBs/SL2bQcWifZI/AAAAAAAAAlc/IdOhx88j9hI/s1600-h/installed.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_7AglQxSRYBs/SL2bQcWifZI/AAAAAAAAAlc/IdOhx88j9hI/s320/installed.JPG" alt="" id="BLOGGER_PHOTO_ID_5241516248120065426" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Installation done ! Lets click the magic "Start Google Chrome" button now. Oops... it wants my firefox to close so that it can import settings. Lets do it.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Oh myyyyyyyyyy... It such a nifty-kitty cute thing. I am now typing this blog post in CHROME.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_7AglQxSRYBs/SL2cv7Zs_HI/AAAAAAAAAlk/egHaoUGzGeQ/s1600-h/chrome.PNG"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_7AglQxSRYBs/SL2cv7Zs_HI/AAAAAAAAAlk/egHaoUGzGeQ/s320/chrome.PNG" border="0" alt="" id="BLOGGER_PHOTO_ID_5241517888542407794" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;Testing.....&lt;/div&gt;&lt;div&gt;1. Incognito: niceee &lt;/div&gt;&lt;div&gt;2. OmniBar: Searches not only history and bookmarks, but also the web.&lt;/div&gt;&lt;div&gt;3. Developer: Out of the box javascript debugging and a firebug like tool.&lt;/div&gt;&lt;div&gt;4. Task Manager with special "&lt;span class="Apple-style-span" style="font-weight: bold;"&gt;Stats for nerds&lt;/span&gt;" option. Google really does care about u.&lt;/div&gt;&lt;div&gt;5. Great job creating shortcuts for websites.&lt;/div&gt;&lt;div&gt;6. Can't see the search bar.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Overall rating 8/10. Awesome design. The slick look gives an appearacne of a faster and light-weight tool. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;However, with ubiquity around I'm not sure about switching. But hell ya... I will go all CHROMEeee for whole this week.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-243107990021950902?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/WyrI7MtfZ3LmA-S6K-6AgeiS03M/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WyrI7MtfZ3LmA-S6K-6AgeiS03M/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/WyrI7MtfZ3LmA-S6K-6AgeiS03M/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WyrI7MtfZ3LmA-S6K-6AgeiS03M/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/PBz7H_3-3WI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/243107990021950902/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=243107990021950902" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/243107990021950902?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/243107990021950902?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/PBz7H_3-3WI/google-chrome.html" title="Google Chrome" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_7AglQxSRYBs/SL2aoWTphLI/AAAAAAAAAlU/WScpiQmcqYQ/s72-c/installing.JPG" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2008/09/google-chrome.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUcFRn86eSp7ImA9WxFbF0U.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-2527011252094474577</id><published>2008-05-24T11:27:00.000-07:00</published><updated>2010-07-10T11:36:57.111-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-10T11:36:57.111-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="fun" /><title>Snaps from London Trip</title><content type="html">&lt;embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="455" height="300" flashvars="host=picasaweb.google.com&amp;RGB=0x000000&amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fprashant.nit%2Falbumid%2F5204012194742977281%3Fkind%3Dphoto%26alt%3Drss" pluginspage="http://www.macromedia.com/go/getflashplayer"&gt;&lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-2527011252094474577?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/vD3-iXbyrwIKQiaDMISqsFIVdvs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vD3-iXbyrwIKQiaDMISqsFIVdvs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/vD3-iXbyrwIKQiaDMISqsFIVdvs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vD3-iXbyrwIKQiaDMISqsFIVdvs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/86_hi1t3DL0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/2527011252094474577/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=2527011252094474577" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/2527011252094474577?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/2527011252094474577?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/86_hi1t3DL0/snaps-from-london-trip.html" title="Snaps from London Trip" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2008/05/snaps-from-london-trip.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUcFRn86eyp7ImA9WxFbF0U.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-1117835946911444088</id><published>2008-04-25T15:57:00.000-07:00</published><updated>2010-07-10T11:36:57.113-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-07-10T11:36:57.113-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="fun" /><title>Its 4:25 am</title><content type="html">And I feel like writing something. Today I will discuss on whether it is possible to write without using your mind. To start with, as soon as I decided that I will write my mind starts running searching for topic. Then I say whats the need of topic, just write anything. Ok then I start writing anything. No need to care about topic, no need to care about if somebody will ever read this post. If there is no need to care about anything, then why am I still thinking.&lt;br /&gt;&lt;br /&gt;Ok..... so finally I came to the conclusion that I should stop writing here now until it gets dead bore. Huh... but I will write.&lt;br /&gt;&lt;br /&gt;baby baby... mama mama.... yes papa... la aall sosdopa lasdifjakdl  ldsoadsijfakdf..... jowhsdjnfwiiujefhkjsf&lt;br /&gt;&lt;br /&gt;fdkjfaskdhfuiwe,f..adsfsfd sdfsdfasdfjoijewjhpsodflejiosfsfanpwoejfw...... sljfow...sajfieij-39 fsdkfs;aa..... wow am really a good writer.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-1117835946911444088?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/VzTeU0JE49y_G4yAAnZDsccunwI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VzTeU0JE49y_G4yAAnZDsccunwI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/VzTeU0JE49y_G4yAAnZDsccunwI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/VzTeU0JE49y_G4yAAnZDsccunwI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/Hj7xpOBI8a4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/1117835946911444088/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=1117835946911444088" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/1117835946911444088?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/1117835946911444088?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/Hj7xpOBI8a4/its-425-am.html" title="Its 4:25 am" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2008/04/its-425-am.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MGSXs9eyp7ImA9WxZbE0o.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-5857703177218515541</id><published>2008-04-16T11:29:00.000-07:00</published><updated>2008-04-16T11:43:48.563-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-04-16T11:43:48.563-07:00</app:edited><title>FriendFeed</title><content type="html">A few days back finally joined &lt;a href="http://friendfeed.com/"&gt;FriendFeed&lt;/a&gt; after I could not contain anymore the &lt;a href="http://blogsearch.google.com/blogsearch?hl=en&amp;amp;q=friendfeed&amp;amp;btnG=Search+Blogs"&gt;rave reviews&lt;/a&gt; of it on blogosphere. Well, initially had only one friend , &lt;a href="http://friendfeed.com/scobleizer"&gt;Scoble&lt;/a&gt;. And the updates from this single blogger were really HUGE, though most of them were just twits.&lt;br /&gt;&lt;br /&gt;Today thought of importing my real life friends and therefore added there emails. As expected I got only 3 names that were already on FriendFeed, and even to them never met personally. It sometimes kills to have such a non-techy(aka *idiots*) friend circle. But I love to see the updates of real life Friends. I really got excited when Orkut(a big social thing in India) included "updates from friends" feature, it really is a great way to know that your friends are alive and active. 100s of updates from Scoble doesn't really give 10% of joy that I get when seeing the updates from my *real life* friends. Though the updates from Scoble are far more beneficial for me.&lt;br /&gt;&lt;br /&gt;Lets see how many of my guys join this through my automated email to them. Here's to hoping getting my friends on FriendFeed.&lt;br /&gt;&lt;br /&gt;Just in case anybody wants to follow me : &lt;a href="http://friendfeed.com/prashant2228"&gt;http://friendfeed.com/prashant2228&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-5857703177218515541?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/BaAogteTni-knly518UAezX6Wng/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BaAogteTni-knly518UAezX6Wng/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/BaAogteTni-knly518UAezX6Wng/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BaAogteTni-knly518UAezX6Wng/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/ZQrfUHEdGt0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/5857703177218515541/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=5857703177218515541" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/5857703177218515541?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/5857703177218515541?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/ZQrfUHEdGt0/friendfeed.html" title="FriendFeed" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2008/04/friendfeed.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8NRXw_eyp7ImA9WxZbEUk.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-1416419461797305758</id><published>2008-04-13T20:07:00.000-07:00</published><updated>2008-04-13T20:31:34.243-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-04-13T20:31:34.243-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="prashant2228" /><title>Prashant2228</title><content type="html">So, this is a weird name *&lt;a href="http://www.google.co.in/search?hl=en&amp;amp;q=prashant2228&amp;amp;btnG=Search&amp;amp;meta="&gt;Prashant2228&lt;/a&gt;*. Well it is. It kind of started when there were days I clicked on "Check Availability" every 5th time to get a username that was available. I felt a need to come up with something really unique. But apparently I didn't gave it much time as its obvious that I did found something unique but forgot the coolness factor.  Just got my name appended with my college scholar number. Ever since than never really got an opportunity to ponder over unique names to match the availability.&lt;br /&gt;&lt;br /&gt;And today removed the last stumbling block by registering  &lt;a href="http://www.prashant2228.com"&gt;prashant2228.com&lt;/a&gt;, well you know just in case I get famous and before someone tries to register it. Also added &lt;a href="http://www.google.com/a/"&gt;Google Apps&lt;/a&gt; to it.&lt;br /&gt;&lt;br /&gt;And also started a blog at &lt;a href="http://www.blogger.com"&gt;Bloggers&lt;/a&gt; with the obvious name &lt;a href="http://prashant2228.blogspot.com"&gt;prashant2228.blogspot.com&lt;/a&gt;. Though I had a blog by that name earlier where I used to write some techno stuff, I got it renamed to &lt;a href="http://prashant2228-old.blogspot.com"&gt;prashant2228-old.blogspot.com&lt;/a&gt;. I did posted very regularly and religiously on that blog but lost interest after few months. And fairly enough  its quite possible that I may loose interest this time as well. Well, we will see.&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-1416419461797305758?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/EracMIzxxVC-abl2GPuLmurSRKc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/EracMIzxxVC-abl2GPuLmurSRKc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/EracMIzxxVC-abl2GPuLmurSRKc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/EracMIzxxVC-abl2GPuLmurSRKc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/2BcXJa9tT4I" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/1416419461797305758/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=1416419461797305758" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/1416419461797305758?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/1416419461797305758?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/2BcXJa9tT4I/prashant2228.html" title="Prashant2228" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2008/04/prashant2228.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cBSHk6cSp7ImA9WxRTFEg.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-7990168060177941147</id><published>2007-01-10T00:28:00.000-08:00</published><updated>2008-09-03T07:10:59.719-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-03T07:10:59.719-07:00</app:edited><title>I am back</title><content type="html">This blog went on a break at the yearend. I took a break from writing logs in order to celebrate something called life before I could get up used by by it. I realized I was turning more like a bot -- searching for content over the net and bragging about it all for nothing but getting some Google money.&lt;br /&gt;&lt;br /&gt;So hereinafter, no google ads, no reproduction of news, only pure opinions and therefore setting up the highest frequency of postings record is not my aim. Or rather I should say "Mere eXperiences".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-7990168060177941147?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/KUa5Z_OthgcAiDwGk-tPIFTwHwA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KUa5Z_OthgcAiDwGk-tPIFTwHwA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/KUa5Z_OthgcAiDwGk-tPIFTwHwA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/KUa5Z_OthgcAiDwGk-tPIFTwHwA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/h2g8RYxKvuU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/7990168060177941147/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=7990168060177941147" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/7990168060177941147?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/7990168060177941147?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/h2g8RYxKvuU/i-am-back.html" title="I am back" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>1</thr:total><feedburner:origLink>http://blog.prashant2228.com/2007/01/i-am-back.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIFQnw_fSp7ImA9WxRbF0o.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-2071490911404865698</id><published>2006-12-28T03:31:00.000-08:00</published><updated>2008-12-08T14:48:33.245-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-08T14:48:33.245-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="websites" /><title>10x10 -- Thats 100</title><content type="html">&lt;a href="http://2.bp.blogspot.com/_7AglQxSRYBs/RZOvpZ9blYI/AAAAAAAAAFg/WxRu1RmTjS8/s1600-h/ten.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5013543936071538050" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_7AglQxSRYBs/RZOvpZ9blYI/AAAAAAAAAFg/WxRu1RmTjS8/s320/ten.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;a href="http://www.tenbyten.org"&gt;TenByTen&lt;/a&gt; has been around now for more than two years. When it was released two years back there were not many professionals to give it a good competition, Digg was still in inception and Slashdot was not much known. In what followed in the next two years, zillions of news services surfaced, and TenByTen got lost somewhere in the ocean. Had it not accidently been rediscovered today it would have converted to fossils after remaining years inside the ocean. &lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;Even after two years with so many news services around the interface still looked sleek and browsing through the flash based interface looked painless. The greatest drawback is that it draws news from only three sources (Reuters, BBC and NYT) nevertheless it is still worth giving a try. You can browse through the news of every month,day and hour starting 2004. The site more looks like kinda demo how a news service works.&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;a href="http://www.tenbyten.org"&gt;Link : TenByTen&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-2071490911404865698?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/agswBZ1ncOMdTmdf6cgAWkwcSBQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/agswBZ1ncOMdTmdf6cgAWkwcSBQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/agswBZ1ncOMdTmdf6cgAWkwcSBQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/agswBZ1ncOMdTmdf6cgAWkwcSBQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/aIwA-fdBcZ8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/2071490911404865698/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=2071490911404865698" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/2071490911404865698?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/2071490911404865698?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/aIwA-fdBcZ8/10x10-thats-100.html" title="10x10 -- Thats 100" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_7AglQxSRYBs/RZOvpZ9blYI/AAAAAAAAAFg/WxRu1RmTjS8/s72-c/ten.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2006/12/10x10-thats-100.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cBSHk6cSp7ImA9WxRTFEg.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-646235871829619103</id><published>2006-12-27T07:43:00.000-08:00</published><updated>2008-09-03T07:10:59.719-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-03T07:10:59.719-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="web service" /><category scheme="http://www.blogger.com/atom/ns#" term="websites" /><title>TailRank Tale</title><content type="html">&lt;div style="text-align: justify;"&gt;&lt;a href="http://www.tailrank.com"&gt;Tailrank&lt;/a&gt; is a news aggregator which has been around for a little now. The service marks the quality of a news story by the number of times the story has been blogged or linked. The stories are aggregated from various sources much like &lt;a href="http://www.digg.com"&gt;Digg&lt;/a&gt;. But unlike Digg which sometimes suffer from worthless Diggs, the Tailrank system looks more robust as someone will take the pain of blogging or linking something only when its worthwhile. And with the rise of bloggers at exponential rate in every field its obvious that a good story will receive a lot of links.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Features that can make a difference&lt;br /&gt;&lt;br /&gt;1. Recently added video category populated with videos from various video sharing services (mostly youtubes) which are selected on the basis of number of links or embeds. (TailRank Video)&lt;br /&gt;&lt;br /&gt;2. Providing deep tracking for a story with the "track this thread", to get depth and breadth of a story.&lt;br /&gt;&lt;br /&gt;3. Easy access to news by date. For 21st dec news -- "http://tailrank.com/2006-12-21".&lt;br /&gt;&lt;br /&gt;4. Import service from other aggregators (bloglines, newsgator). Manual uploading of OPML files. (&lt;a href="http://tailrank.com/import"&gt;Tailrank import&lt;/a&gt;)&lt;br /&gt;&lt;br /&gt;5. Allowing for embedding Tailrank on your blog with fully customizable CSS.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-646235871829619103?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/NyGOuWdZL1YrgtU_F9pqzQaM36U/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NyGOuWdZL1YrgtU_F9pqzQaM36U/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/NyGOuWdZL1YrgtU_F9pqzQaM36U/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/NyGOuWdZL1YrgtU_F9pqzQaM36U/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/wU35EAW8F5c" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/646235871829619103/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=646235871829619103" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/646235871829619103?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/646235871829619103?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/wU35EAW8F5c/tailrank-tale.html" title="TailRank Tale" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2006/12/tailrank-tale.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cBSHk6cSp7ImA9WxRTFEg.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-569568702776253927</id><published>2006-12-26T21:41:00.000-08:00</published><updated>2008-09-03T07:10:59.719-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-03T07:10:59.719-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mechanical" /><title>Geek Guns</title><content type="html">&lt;div align="justify"&gt;&lt;a href="http://www.techeblog.com/index.php/tech-gadget/top-5-high-tech-guns"&gt;Here is a compilation&lt;/a&gt; of high-tech electronically controlled guns with video demos of all in action. In case you are interested in discovering guns right there in your office see previous post "&lt;a href="http://prashant2228.blogspot.com/2006/12/discover-guns-in-your-office.html"&gt;Discover Guns in Your Office&lt;/a&gt;".&lt;/div&gt;&lt;br /&gt;&lt;object width="390" height="318"&gt;&lt;br /&gt;&lt;br /&gt;&lt;param name="movie" value="http://www.dailymotion.com/swf/326UGP5y5fYUz38gs"&gt;&lt;/param&gt;&lt;br /&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.dailymotion.com/swf/326UGP5y5fYUz38gs" type="application/x-shockwave-flash" width="390" height="318" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;object width="390" height="350"&gt;&lt;br /&gt;&lt;br /&gt;&lt;param name="movie" value="http://www.youtube.com/v/67OYIk1woiI"&gt;&lt;/param&gt;&lt;br /&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/67OYIk1woiI" type="application/x-shockwave-flash" wmode="transparent" width="390" height="350"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-569568702776253927?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/GAxZqmBqRmA-L97jvmJzYC5Y8Dc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GAxZqmBqRmA-L97jvmJzYC5Y8Dc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/GAxZqmBqRmA-L97jvmJzYC5Y8Dc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GAxZqmBqRmA-L97jvmJzYC5Y8Dc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/vV2yPeE8Ex0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/569568702776253927/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=569568702776253927" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/569568702776253927?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/569568702776253927?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/vV2yPeE8Ex0/geek-guns.html" title="Geek Guns" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2006/12/geek-guns.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIFQno6cSp7ImA9WxRbF0o.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-4735292302924022317</id><published>2006-12-26T21:29:00.000-08:00</published><updated>2008-12-08T14:48:33.419-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-08T14:48:33.419-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="life" /><title>Spider on Drugs</title><content type="html">&lt;div align="justify"&gt;These are the snaps of the webs build by spiders who were fed on drug-dosed flies. Spiders under the influence of drugs move in haphazard way to weave those irregular waves. So, moral of the story is don't drink and drive.&lt;/div&gt;&lt;div align="justify"&gt; &lt;/div&gt;&lt;br /&gt;&lt;a href="http://www.cannabis.net/weblife.html"&gt;&lt;img id="BLOGGER_PHOTO_ID_5013076244197774706" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_7AglQxSRYBs/RZIGSJ9blXI/AAAAAAAAAFU/EACH89AHWpk/s320/webs.jpg" border="0" /&gt;&lt;/a&gt; &lt;a href="http://www.cannabis.net/weblife.html"&gt;Link : Spider on Drugs&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-4735292302924022317?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2janA4RwHdavyrpsGsm575lcT7g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2janA4RwHdavyrpsGsm575lcT7g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2janA4RwHdavyrpsGsm575lcT7g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2janA4RwHdavyrpsGsm575lcT7g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/GaN2G27FIco" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/4735292302924022317/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=4735292302924022317" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/4735292302924022317?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/4735292302924022317?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/GaN2G27FIco/spider-on-drugs.html" title="Spider on Drugs" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_7AglQxSRYBs/RZIGSJ9blXI/AAAAAAAAAFU/EACH89AHWpk/s72-c/webs.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2006/12/spider-on-drugs.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cBSHk6cSp7ImA9WxRTFEg.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-9048446768467851640</id><published>2006-12-26T07:26:00.000-08:00</published><updated>2008-09-03T07:10:59.719-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-03T07:10:59.719-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="life" /><title>Foot in Mouth Awards 2OO6</title><content type="html">&lt;div style="text-align: justify;"&gt;&lt;a href="http://www.wired.com/news/technology/0,72320-0.html?tw=wn_index_3"&gt;Wired news&lt;/a&gt; disclosed a series of lamest technological quotes  made in 2006 and topping the list as the report points out is the obvious, the President Bush about making comments about Google when asked on a television interview.&lt;br /&gt;&lt;/div&gt;The words of wisdom went like this:&lt;br /&gt;&lt;strong style="font-weight: normal;"&gt;&lt;blockquote&gt;"One of the things I've learned on the Google is to pull up maps. It's very interesting to see -- I've forgotten the name of the program -- but you get the satellite, and you can -- like, I kinda like to look at the ranch. It reminds me of where I wanna be sometimes."&lt;/blockquote&gt;&lt;br /&gt;&lt;a href="http://www.wired.com/news/technology/0,72320-0.html?tw=wn_index_3"&gt;Link : Foot in Mouth Awards 2006&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;If that made you think that the world's really went crazy in 2006, heres something to make you feel better and make  your perspective a little positive : &lt;a href="http://boardofwisdom.com/"&gt;The Best Quotes&lt;/a&gt;&lt;br /&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-9048446768467851640?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5_59yM_Vhvbv4MiIvCqJDsF2Zfw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5_59yM_Vhvbv4MiIvCqJDsF2Zfw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/5_59yM_Vhvbv4MiIvCqJDsF2Zfw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5_59yM_Vhvbv4MiIvCqJDsF2Zfw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/DbB8BIQU9Gk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/9048446768467851640/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=9048446768467851640" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/9048446768467851640?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/9048446768467851640?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/DbB8BIQU9Gk/foot-in-mouth-awards-2oo6.html" title="Foot in Mouth Awards 2OO6" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2006/12/foot-in-mouth-awards-2oo6.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cBSHk5eCp7ImA9WxRTFEg.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-4251453272750686865</id><published>2006-12-26T06:57:00.000-08:00</published><updated>2008-09-03T07:10:59.720-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-03T07:10:59.720-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="life" /><title>Britain's stupidest call centre customers</title><content type="html">&lt;div style="text-align: justify;"&gt;Now heres something amusing. &lt;a href="http://mirror.co.uk"&gt;Mirror&lt;/a&gt; is running &lt;a href="http://www.mirror.co.uk/news/tm_headline=help--i-m-an-idiot-&amp;method=full&amp;amp;objectid=18328274&amp;siteid=94762-name_page.html"&gt;an article&lt;/a&gt; on the idiotic calls received by call centers from customers in Britain. Say it the stupidity of call center customers or the shrewdness of call center employees that these calls got recorded.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;A few favorites:&lt;br /&gt;&lt;p style="color: rgb(255, 0, 0);" class="add-linkout" align="left"&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;p style="color: rgb(255, 0, 0);" class="add-linkout" align="left"&gt;Customer: "I've been ringing 0700 2300 for two days and can't get through to enquiries, can you help?"&lt;/p&gt;&lt;p style="color: rgb(255, 0, 0);" class="add-linkout" align="left"&gt;Operator: "Where did you get that number from, sir?"&lt;/p&gt;&lt;p style="color: rgb(255, 0, 0);" class="add-linkout" align="left"&gt;Customer: "It was on the door to the travel centre".&lt;/p&gt;&lt;p style="color: rgb(255, 0, 0);" class="add-linkout" align="left"&gt;Operator: "They're our opening hours".&lt;/p&gt;&lt;p style="color: rgb(0, 102, 0);" class="add-linkout" align="left"&gt;Caller: "Can you give me the telephone number for Jack?"&lt;/p&gt;&lt;p style="color: rgb(0, 102, 0);" class="add-linkout" align="left"&gt;Operator: I'm sorry, sir, I don't understand who you are talking about".&lt;/p&gt;&lt;p style="color: rgb(0, 102, 0);" class="add-linkout" align="left"&gt;Caller: "In the user guide it clearly states I need to unplug the fax machine from the wall socket and telephone Jack before cleaning. Can you give me his number?"&lt;/p&gt;&lt;p style="color: rgb(0, 102, 0);" class="add-linkout" align="left"&gt;Operator: "I think you mean the telephone point on the wall".&lt;/p&gt;&lt;p style="color: rgb(102, 0, 0);" class="add-linkout" align="left"&gt;Tech Support: "Did you get a pop-up menu?"&lt;/p&gt;&lt;p style="color: rgb(102, 0, 0);" class="add-linkout" align="left"&gt;Customer: "No" .&lt;/p&gt;&lt;p style="color: rgb(102, 0, 0);" class="add-linkout" align="left"&gt;Tech Support: "OK. Right-Click again. Do you see a pop-up menu?"&lt;/p&gt;&lt;p style="color: rgb(102, 0, 0);" class="add-linkout" align="left"&gt;Customer: "No" .&lt;/p&gt;&lt;p style="color: rgb(102, 0, 0);" class="add-linkout" align="left"&gt;Tech Support: "OK. Can you tell me what you have done up until this point?"&lt;/p&gt;&lt;p style="color: rgb(102, 0, 0);" class="add-linkout" align="left"&gt;Customer: "Sure. You told me to write 'click' and I wrote 'click'".&lt;/p&gt;&lt;/blockquote&gt;&lt;p style="color: rgb(102, 0, 0);" class="add-linkout" align="left"&gt;&lt;/p&gt;&lt;p class="add-linkout" align="left"&gt;More such stories on &lt;a href="http://groups.google.com/group/uk.rec.gardening/msg/d4d8dc9c9685b23e"&gt;this Google group&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-4251453272750686865?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/UhB_3783juFIJZDxHoRdPd1JASk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/UhB_3783juFIJZDxHoRdPd1JASk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/UhB_3783juFIJZDxHoRdPd1JASk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/UhB_3783juFIJZDxHoRdPd1JASk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/phXAafxA3S8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/4251453272750686865/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=4251453272750686865" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/4251453272750686865?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/4251453272750686865?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/phXAafxA3S8/britain-stupidest-call-centre-customers.html" title="Britain&amp;#39;s stupidest call centre customers" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2006/12/britain-stupidest-call-centre-customers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEIFQng6cCp7ImA9WxRbF0o.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-1288294892904422180</id><published>2006-12-26T06:29:00.000-08:00</published><updated>2008-12-08T14:48:33.618-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-08T14:48:33.618-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="life" /><title>The Mathematician Sculpture</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_7AglQxSRYBs/RZE9Wp9blWI/AAAAAAAAAFI/dmhoTEndS1A/s1600-h/sculpt.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://1.bp.blogspot.com/_7AglQxSRYBs/RZE9Wp9blWI/AAAAAAAAAFI/dmhoTEndS1A/s320/sculpt.jpg" alt="" id="BLOGGER_PHOTO_ID_5012855319670003042" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;This mathematician works hard to bring some coherence to lost art of sculpture with maths and science. Bathsheba Grossman, a mathematics graduate from Yale University went on to pursue higher studies in sculpture to nurture her interest. She did a lot of exhibitions and presently earn a living by selling her creations over &lt;a href="http://www.bathsheba.com/"&gt;this site&lt;/a&gt;.  She creates metallic models of complex mathematical structures by making use of latest technologies available around in the field besides her enormous capability to imagine complex 3D shapes. Most of her metallic creations are done by 3D metal printing methods. She uses modeling tools like &lt;a href="http://www.rhino3d.com/"&gt;Rhinoceros&lt;/a&gt;, &lt;a href="http://www.microscribe.com/" target="new"&gt;Microscribe digitizing arm&lt;/a&gt;, 3D printing machines from &lt;a href="http://www.exone.com/" target="new"&gt;Ex One&lt;/a&gt; etc.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Heres a  functionalitywise list of tools she use:&lt;br /&gt;&lt;table border="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt; &lt;td&gt;&lt;p&gt; &lt;a href="http://www.bathsheba.com/artist/links.html#software"&gt;Software&lt;/a&gt;&lt;/p&gt;&lt;p&gt; &lt;a href="http://www.bathsheba.com/artist/links.html#render"&gt;Rendering&lt;/a&gt;&lt;/p&gt;&lt;p&gt; &lt;a href="http://www.bathsheba.com/artist/links.html#3dprint"&gt;3D Printing Services&lt;/a&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;/td&gt; &lt;td valign="top"&gt;&lt;p&gt; &lt;a href="http://www.bathsheba.com/artist/links.html#rp"&gt;Rapid Prototyping Resources&lt;/a&gt;&lt;/p&gt;&lt;p&gt; &lt;a href="http://www.bathsheba.com/artist/links.html#art"&gt;Sculpture Sources&lt;/a&gt;&lt;/p&gt;&lt;p&gt; &lt;a href="http://www.bathsheba.com/artist/links.html#glass"&gt;Laser Glass&lt;/a&gt;&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;/td&gt; &lt;td valign="top"&gt;&lt;p&gt; &lt;a href="http://www.bathsheba.com/artist/links.html#artmath"&gt;Art &amp; Geometry&lt;/a&gt;&lt;/p&gt;&lt;p&gt; &lt;a href="http://www.bathsheba.com/artist/links.html#artists"&gt;Artists&lt;/a&gt; &lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-1288294892904422180?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/c3PRsIqIDKssvXagUDJfvfeBr3c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/c3PRsIqIDKssvXagUDJfvfeBr3c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/c3PRsIqIDKssvXagUDJfvfeBr3c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/c3PRsIqIDKssvXagUDJfvfeBr3c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/6bWGAO1Pg3s" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/1288294892904422180/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=1288294892904422180" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/1288294892904422180?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/1288294892904422180?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/6bWGAO1Pg3s/mathematician-sculpture.html" title="The Mathematician Sculpture" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_7AglQxSRYBs/RZE9Wp9blWI/AAAAAAAAAFI/dmhoTEndS1A/s72-c/sculpt.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2006/12/mathematician-sculpture.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0cBSHk5eCp7ImA9WxRTFEg.&quot;"><id>tag:blogger.com,1999:blog-4971894943685694698.post-883717346635518570</id><published>2006-12-25T23:18:00.000-08:00</published><updated>2008-09-03T07:10:59.720-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-09-03T07:10:59.720-07:00</app:edited><title>Tech of the Year</title><content type="html">&lt;div align="justify"&gt;Year 2006 definitely has been an year of technology while innovativeness being its essence. Going by the &lt;a href="http://news.bbc.co.uk/2/hi/technology/6199303.stm"&gt;report of BBC&lt;/a&gt; on best tech of the year it seems the Nintendo's Wii wins the battle single handedly. At the time of writing it got 57 % of votes competing against PS3, HD projector and Parallels software.&lt;/div&gt;&lt;br /&gt;The report apart from above mentioned gadgets talks about Apple's MacBook, Mac with Intel Chip, XBox.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://wii.nintendo.com/"&gt;Wii Tech of the Year&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4971894943685694698-883717346635518570?l=blog.prashant2228.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/inKa2q_wUuTRt7O82cBOGKD9s3w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/inKa2q_wUuTRt7O82cBOGKD9s3w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/inKa2q_wUuTRt7O82cBOGKD9s3w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/inKa2q_wUuTRt7O82cBOGKD9s3w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/prashant2228/pmXS/~4/R0kKUdp_S_8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.prashant2228.com/feeds/883717346635518570/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=4971894943685694698&amp;postID=883717346635518570" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/883717346635518570?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/4971894943685694698/posts/default/883717346635518570?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/prashant2228/pmXS/~3/R0kKUdp_S_8/tech-of-year.html" title="Tech of the Year" /><author><name>Prashant Kr Singh</name><uri>http://www.blogger.com/profile/01765978716126306540</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="24" src="http://bp2.blogger.com/_7AglQxSRYBs/SALQcWIdYRI/AAAAAAAAARM/brr91QlOGw4/S220/blueeye.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://blog.prashant2228.com/2006/12/tech-of-year.html</feedburner:origLink></entry></feed>

