<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Entilted Opinions</title>
	<atom:link href="http://ravispeaks.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ravispeaks.wordpress.com</link>
	<description>My reflections on technology,music and life in general and myself in particular</description>
	<lastBuildDate>Thu, 17 Sep 2009 10:14:36 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ravispeaks.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/0a2fc2f40308c434ce9f859374a1d3c7?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Entilted Opinions</title>
		<link>http://ravispeaks.wordpress.com</link>
	</image>
			<item>
		<title>DIY Omegle Chat Bot!</title>
		<link>http://ravispeaks.wordpress.com/2009/09/16/diy-omegle-chat-bot/</link>
		<comments>http://ravispeaks.wordpress.com/2009/09/16/diy-omegle-chat-bot/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 08:40:14 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[A.L.I.C.E]]></category>
		<category><![CDATA[chat bot]]></category>
		<category><![CDATA[Omegle]]></category>
		<category><![CDATA[PyAIML]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=118</guid>
		<description><![CDATA[I have been chatting on  Omelge for quite some time now and I must say that i find it rather addictive. During one conversation, i encountered a bot and needless to say, i was hooked on to the convo ! I wanted to make one for myself badly somehow  
A quick search later revealed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=118&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have been chatting on  <a href="http://omegle.com/" target="_blank">Omelge</a> for quite some time now and I must say that i find it rather addictive. During one conversation, i encountered a bot and needless to say, i was hooked on to the convo ! I wanted to make one for myself badly somehow <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>A quick search later revealed that most of the chatter bots were based on the Artificial Intelligence Markup Language.It&#8217;s basically a rule based xml language which is used by the AI engine to give a response (a.k.a. categories) based on a set of  pre-loaded rules (a.k.a. topics).Such a topic-category definition is written in to a AIML file which the engine loads.  And guess what, there was a python implementation of  the AIML engine <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  .This <a href="http://www.iniy.org/?p=68" target="_blank">blog</a> shows how to implement a standalone bot using PyAIML. I used the <code> <a href="http://aitools.org/Free_AIML_sets#Annotated_A.L.I.C.E" target="_blank">Annotated A.L.I.C.E. AIML files</a></code> (AAA) for the engine&#8217;s rule base.</p>
<p>Now all i had to do was to find out how to connect to Omegle through code.Once that was done, i could capture what the stranger typed, pass it on to the engine and transmit back the response to the Omegle server .There is no &#8216;official&#8217; documentation on the various connection string options but a good samaritan had written a <a href="http://code.google.com/p/pyomegle/" target="_blank">python client for Omegle</a>. I used that code (liberally!) to get connected.</p>
<p>Here&#8217;s the final listing:</p>
<p><em><em><br />
</em></em></p>
<pre class="brush: python;">#This omegle bot is based on the PyAIML and liberally uses code from PyOmegle
# PyAMIL:http://pyaiml.sourceforge.net/
# PyOmegle:http://code.google.com/p/pyomegle/

import aiml
import urllib2 as url
import urllib
import os
import time
import commands

k = aiml.Kernel()

if os.path.isfile(&quot;omeglebrain.brn&quot;):
    k.bootstrap(brainFile = &quot;omeglebrain.brn&quot;)
else:
    homedir=os.getcwd()
    #Change to the directory where the AIML files are located
    os.chdir('./aaa')
    list=os.listdir('./');
    for item in list:
	  k.learn(item)
    k.setPredicate(&quot;name&quot;,&quot;omegle_bot&quot;)
    k.setPredicate(&quot;master&quot;,&quot;ravi&quot;)
    #Change back to homedir to save the brain for subsequent loads
    os.chdir(homedir)
    k.saveBrain(&quot;omeglebrain.brn&quot;)

# #conversation ID
def fmtId( string ):

    return string[1:len( string ) - 1]

# #The event listener
def listenServer( id, req ):

    while True:

        site = url.urlopen(req)
        rec = site.read()

        if 'waiting' in rec:
            print(&quot;Waiting...&quot;)

        elif 'strangerDisconnected' in rec:
            print('Stranger Disconnected!')
            omegleConnect()

        elif 'connected' in rec:
            print('Found one')
            print(id)
            talk(id,req,&quot;hey&quot;)            

        elif 'typing' in rec:
            print(&quot;Stranger is typing...&quot;)

        elif 'gotMessage' in rec:
            input=rec[16:len( rec ) - 2]
	    print &quot;Stranger:&quot;,input
	    result=k.respond(input)
            talk(id,req,result)

# #Send the bot's response to Omegle
def talk(id,req,msg):

    typing = url.urlopen('http://omegle.com/typing', '&amp;id='+id)
    typing.close()
    time.sleep((len(msg))/5) #5 characters per second
    print &quot;You:&quot;,msg
    msgReq = url.urlopen('http://omegle.com/send', '&amp;msg='+msg+'&amp;id='+id)
    msgReq.close()

# #Initiate connecton
def omegleConnect():

    site = url.urlopen('http://omegle.com/start','')
    id = fmtId( site.read() )
    print(id)
    req = url.Request('http://omegle.com/events', urllib.urlencode( {'id':id}))
    print('Finding stranger...')
    listenServer(id,req)

# MAIN
omegleConnect() </pre>
<p>For this code to work, you need to download the<code> AAA folder(files) </code> into the directory where this python script is located.</p>
<p>We are good to go now! You can play around with the AIML files and even make your own  file for chat specific questions like &#8220;asl&#8221; ,&#8221;from&#8221;  etc. Here&#8217;s an interesting(?)  chat that my bot had:</p>
<pre class="brush: xml;">:~/Bot&gt; python test.py
Loading brain from omeglebrain.brn... done (46285 categories in 1.71 seconds)
Kernel bootstrap completed in 1.71 seconds
d0Vckt
Finding stranger...
Waiting...
Stranger is typing...
Stranger: &quot;hi&quot;
You: Hello there.
Stranger is typing...
Stranger: &quot;sooo&quot;
You: Is that your final answer?
Stranger is typing...
Stranger is typing...
Stranger: &quot;yes&quot;
You: You're sure. That's your final answer.
Stranger is typing...
Stranger: &quot;YES\n&quot;
You: Oh, you are a poet.
Stranger is typing...
Stranger: &quot;no&quot;
You: But your words are very original.
Stranger is typing...
Stranger: &quot;they seem simple to me&quot;
You: Like who, specifically?
Stranger is typing...
Stranger is typing...
Stranger: &quot;no one in particular&quot;
You: I heard it was someone.
Stranger is typing...
Stranger: &quot;you most of heard wrong&quot;
You: Thanks for telling me.
Stranger is typing...
Stranger: &quot;no prob&quot;
You: Wow! Do you have any conditions I should know about?
Stranger is typing...
Stranger: &quot;herpes&quot;
You: Do you like to &quot;go with the flow&quot;?
Stranger is typing...
Stranger is typing...
Stranger: &quot;ha no not usually&quot;
You: I'm glad you got a laugh out of it.
Stranger is typing...
Stranger: &quot;i have a broad sense of humor&quot;
You: Interesting. I have a lot of answers to silly questions.
Stranger is typing...
Stranger: &quot;well i have more&quot;
You: Cool. I have a lot of likes and dislikes.
Stranger is typing...
Stranger: &quot;who doesnt&quot;
You: William Shatner.  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />
Stranger is typing...
Stranger: &quot;he likes everything? or dislikes?&quot;
WARNING: No match found for input: &quot;
You: He must be very fond of it.  What is your real name?
Stranger is typing...
Stranger: &quot;my real name is ryan&quot;
You: What's up,  ryan&quot; .
Stranger is typing...
Stranger: &quot;not much stranger&quot;
You: Me either.
Stranger is typing...
Stranger: &quot;whats your nmae?&quot;
WARNING: No match found for input: &quot;
You: I've been waiting for you.
Stranger is typing...
Stranger: &quot;thats your name?&quot;
WARNING: No match found for input: &quot;
You: Does &quot;it&quot; still refer to   &quot;whats your nmae  ?
Stranger is typing...
Stranger: &quot;i never said it&quot;
You: But you implied  it&quot; .
Stranger is typing...
Stranger: &quot;what is your name?&quot;
WARNING: No match found for input: &quot;
You: My name is Nameless.
Stranger is typing...
Stranger: &quot;wow&quot;
You: I'm glad your impressed,  ryan&quot; .
Stranger is typing...
Stranger is typing...
Stranger: &quot;that was sarcasim&quot;
You: I thought it was too.
Stranger is typing...
Stranger: &quot;well then we are on the same page&quot;
You: And the same frequency.
Stranger is typing...
Stranger: &quot;no&quot;
You: Yippee!
Stranger is typing...
Stranger: &quot;how old are u?&quot;
WARNING: No match found for input: &quot;
You: I am  years old.
Stranger is typing...
Stranger: &quot;you are getiing annoying&quot;
You: You think  I am getiing annoying&quot;.
Stranger is typing...
Stranger: &quot;i think that you are getting annoying&quot;
You: Do you think I should tone it down?
Stranger is typing...
Stranger: &quot;yes definately&quot;
You: Why? What makes you so certain.
Stranger is typing...
Stranger: &quot;because if you dont i will choose not to talk to you anymore&quot;
You: That makes sense to me.  I think I do.
Stranger is typing...
Stranger: &quot;you do what?&quot;
WARNING: No match found for input: &quot;
You: ryan&quot; , I talk to people on the web. What do you do?
Stranger is typing...
Stranger: &quot;i also talk to people on the web&quot;
You: How do they respond to you?
Stranger is typing...
Stranger: &quot;well you are very odd... but most people open up to me for some reason&quot;
You: An oddball?      Humans are not always infallible.
Stranger is typing...
Stranger: &quot;i dint say they were&quot;
You: Sorry I misunderstood. What did you say?
Stranger is typing...
Stranger: &quot;k&quot;
You: Ayuh.</pre>
 Tagged: A.L.I.C.E, chat bot, Omegle, PyAIML, python <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=118&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2009/09/16/diy-omegle-chat-bot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>
	</item>
		<item>
		<title>Graduation Blues</title>
		<link>http://ravispeaks.wordpress.com/2009/07/22/graduation-blues/</link>
		<comments>http://ravispeaks.wordpress.com/2009/07/22/graduation-blues/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 16:07:22 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[graduation]]></category>
		<category><![CDATA[iiit-b]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=106</guid>
		<description><![CDATA[I recently (on the 12th of July) finished my graduate studies at iiit-b and now looking back at the past two years, i realize that it was one heck of a journey.It was an exciting and wonderful experience to come back to the campus atmosphere after working for 3 years. I initially found it a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=106&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently (on the 12th of July) finished my graduate studies at iiit-b and now looking back at the past two years, i realize that it was one heck of a journey.It was an exciting and wonderful experience to come back to the campus atmosphere after working for 3 years. I initially found it a bit hard to cope up with the academic rigour (and you though college life was easy compared to the corporate world!) but i guess i improved along the way.There were many things that i picked up here many of which were a first-time thingy for me:</p>
<p>*Staying up beyond 11pm in the night.I&#8217;m glad i realized that 6 hours of sleep is all you need a day <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
*Staying away from home in a dormitory for the first time<br />
*Ate maggi noodles at 2 a.m. (This was during the one and only time i pulled an all nighter)<br />
*Became an expert in web information retrieval (read &#8216;google-ing&#8217;)<br />
*Gained confidence on tackling projects head on without even having an iota of prior knowledge about the problem domain/complexity (this is probably the best learning that i&#8217;ve learnt here)<br />
*Watching movies/ serials back to back on my laptop<br />
*Just-in-time submissions of assignments (Most of the deadlines were at 12:00am and the submissions happen just before it)</p>
<p>Overall, i think it was one of the most memorable two years of my life.I&#8217;m not being overly nostalgic but I&#8217;m starting to miss my hostel room already.</p>
<p>As of this writing i am still on the look out for a job (another first too, as i was fortunate to start working immediately after undergrad).Blame it on the economic recession but i know its only a matter of time before the wheels of time turn&#8230;</p>
<p>My best wishes to the graduated class of 2009!</p>
 Tagged: graduation, iiit-b <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=106&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2009/07/22/graduation-blues/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>
	</item>
		<item>
		<title>Fortune cookies on your mobile</title>
		<link>http://ravispeaks.wordpress.com/2009/06/11/fortune-cookies-on-your-mobile/</link>
		<comments>http://ravispeaks.wordpress.com/2009/06/11/fortune-cookies-on-your-mobile/#comments</comments>
		<pubDate>Thu, 11 Jun 2009 05:05:55 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[gammu]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=91</guid>
		<description><![CDATA[I&#8217;m a big fan of the fortune command in linux.I wanted to save these wisecracks on my mobile as an SMS so that i can forward them to friends &#8230;So here&#8217;s a quick how-to.I assume you already have the fortune cookies installed (in /usr/bin/fortune) and that your phone has bluetooth capabilities.
1.Install the gammu package from [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=91&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m a big fan of the fortune command in linux.I wanted to save these wisecracks on my mobile as an SMS so that i can forward them to friends &#8230;So here&#8217;s a quick how-to.I assume you already have the fortune cookies installed (in /usr/bin/fortune) and that your phone has bluetooth capabilities.</p>
<p>1.Install the <a href="http://www.gammu.org/wiki/index.php?title=Download" target="_blank">gammu</a> package from the sources or using your package manager.Gammu is a fantastic tool to communicate with your gsm phone/modem.</p>
<p>2.Pair your mobile phone with your computer via bluetooth (searching for the device, entering the  PIN number and all that stuff).</p>
<p>3.Note down your phone&#8217;s bluetooth device ID and name.You will need it in the next step.You can run the <em>hcitool scan</em> command to find the device ID/name.Don&#8217;t forget keep the bluetooth  of the computer/phone tunrned on!!</p>
<p>4.Now for the gammu commands to work , you need to create a .gammurc file in your home(~) directory. You can use the <em>gammu-config</em> command to do it,but it&#8217;s easier to create it using a text editor.The main parameters are the phone&#8217;s  id and name found in step 3.Here&#8217;s my .gammurc file created in /home/ravi. I paired a sony-erricson to my laptop.</p>
<pre class="brush: bash;">
[gammu]
 port=00:1B:59:1F:25:D6
 connection=blueat
 name=Sony Ericsson W700i/W700c
 model=
 </pre>
<p>The device id and name are assigned to the &#8216;port&#8217; and &#8216;name&#8217; parameters respectively.The &#8216;connection&#8217; is mostly blueat, except for some nokia phones where it is bluephonet.Leave the &#8216;model&#8217; as such.</p>
<p>4.OK.Its time to have some fun!Run the following command to pipe the output of fortune to your mobile</p>
<pre class="brush: bash;">
fortune|gammu --saveSMS TEXT -folder 3 -unread -len 400
</pre>
<p>The command is self explanatory.The folder number (3=inbox) specifies where the sms gets stored, viz inbox ,drafts etc.To get the list of folders for your phone, run the <em>gammu &#8211;getsmsfolders</em> command</p>
<p>Put the command in a shell script and run it whenever you want <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> You might not get an audible notification for the sms, but check your inbox anyway.</p>
 Tagged: bluetooth, DIY, gammu, linux <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=91&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2009/06/11/fortune-cookies-on-your-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>
	</item>
		<item>
		<title>Stop the music(k) please!</title>
		<link>http://ravispeaks.wordpress.com/2009/03/18/stop-the-musick-please/</link>
		<comments>http://ravispeaks.wordpress.com/2009/03/18/stop-the-musick-please/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 13:19:08 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[Life]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=84</guid>
		<description><![CDATA[After some self-deliberation on whether is should write this or not, i finally decided that i am going to.WTH!,my blog is called entitled opinions.So whats the fuss all about,you ask.It&#8217;s the noise that comes out of mobile phone speakers.Most of the mid range phones that support music playback today have an inbuilt speaker.And the folks [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=84&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After some self-deliberation on whether is should write this or not, i finally decided that i am going to.WTH!,my blog is called <em>entitled opinions</em>.So whats the fuss all about,you ask.It&#8217;s the noise that comes out of mobile phone speakers.Most of the mid range phones that support music playback today have an inbuilt speaker.And the folks who own it seem to think that public broadcast is their birth right.They are everywhere- on the bus, in the road,in the hotel&#8230;They think that they are doing a favour by playing songs on their speaker. Little do they realize that others people actually give a damn.In fact the sound is so annoying that at any distance more than a foot away from the phone, all one hears is a cacophony of vessels clanging and glass breaking.For heaven&#8217;s sake,use the damn headphones, people.If you think that you are &#8216;cool&#8217; blasting noise off your cheap phone, think again!If you are like me and come across one of these subnormally intelligent people,i strongly urge you to ask them to stop the inconvenience immediately.It might not work the first time, but i&#8217;m sure if they constantly hear the complaint, they might gradually stop it.</p>
<p>Do it folks!Tolerating nonsense is not a virtue.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=84&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2009/03/18/stop-the-musick-please/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>
	</item>
		<item>
		<title>Yet Another Gmail Notifier</title>
		<link>http://ravispeaks.wordpress.com/2009/02/09/yet-another-gmail-notifier/</link>
		<comments>http://ravispeaks.wordpress.com/2009/02/09/yet-another-gmail-notifier/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 04:24:49 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[DIY]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[gmail notifier]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=58</guid>
		<description><![CDATA[Came across Jamie Matthews&#8217; cool gmail notifier. Just the kind of thing i wanted to run on the ARM7 board that i&#8217;m trying out right now. Not much of a challenge for the ARM MCU&#8217;s processing power but it was fun making it work. I used the on-board seven-segment LED to display the mail count [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=58&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Came across <a href="http://www.j4mie.org/2008/02/15/how-to-make-a-physical-gmail-notifier/" target="_blank">Jamie Matthews&#8217; </a>cool gmail notifier. Just the kind of thing i wanted to run on the ARM7 board that i&#8217;m trying out right now. Not much of a challenge for the ARM MCU&#8217;s processing power but it was fun making it work. I used the on-board seven-segment LED to display the mail count (it was a single display so the mail count is limited to 9).</p>
<p><img class="aligncenter size-full wp-image-64" title="gmailscreenshot" src="http://ravispeaks.files.wordpress.com/2009/02/gmailscreenshot.jpg?w=450&#038;h=103" alt="gmailscreenshot" width="450" height="103" /></p>
<div id="attachment_67" class="wp-caption alignleft" style="width: 458px"><img class="size-full wp-image-67" title="The 7 segment display showing the count of the 4 new mails in my inbox" src="http://ravispeaks.files.wordpress.com/2009/02/dsc000931.jpg?w=448&#038;h=336" alt="LPC 2129 Evaluation Board" width="448" height="336" /><p class="wp-caption-text">LPC 2129 Evaluation Board</p></div>
<p>The python script was slightly modified:</p>
<p>1) In windows, just change the com port address to COMx where x is the port number as seen in the Device Manager</p>
<p>2)I sent the mail count (assumed to be less than 9) instead of the Y/N string.</p>
<p>To run the script periodically, i used   Andreas Baumann&#8217;s free<a href="http://zcron.imu-andreas-baumann.downloadsoftware4free.com/" target="_blank"> Z-cron</a> to schedule it once every five minutes. But the annoying thing was the command prompt that kept popping up when the script ran. I&#8217;m sure it could have been run as a windows service in the background but did not have the patience to look it up.</p>
<p><img class="size-medium wp-image-69 alignnone" title="The setup" src="http://ravispeaks.files.wordpress.com/2009/02/dsc00094.jpg?w=300&#038;h=224" alt="The setup" width="300" height="224" /></p>
<p><strong>The python script:</strong></p>
<pre class="brush: python;">
import urllib2, re, serial, sys

 #Settings - Change these to match your account details
USERNAME=&quot;yourID@gmail.com&quot;
PASSWORD=&quot;your password&quot;

PROTO=&quot;https://&quot;
SERVER=&quot;mail.google.com&quot;
PATH=&quot;/gmail/feed/atom&quot;

SERIALPORT = &quot;COM5&quot; # Change this to your serial port!

# Set up serial port
try:
        ser = serial.Serial(SERIALPORT, 9600)
        #print ser.portstr #For Debug:Check if port name is correct !
except serial.SerialException:
        sys.exit()

# Get Gmail Atom feed
passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
passman.add_password(None, SERVER, USERNAME, PASSWORD)
authhandler = urllib2.HTTPBasicAuthHandler(passman)
opener = urllib2.build_opener(authhandler)
urllib2.install_opener(opener)
page = urllib2.urlopen(PROTO + SERVER + PATH)

# Find the mail count line
for line in page:
        count = line.find(&quot;fullcount&quot;)
        if count &gt; 0: break

# Extract the mail count as an integer
newmails = int(re.search('\d+', line).group())

# Output data to serial port
if newmails &gt; 0:
                ser.write(str(newmails))
                #print &quot;No.of mails=%d&quot; %newmails
else: ser.write(str(0))

# Close serial port
ser.close()
</pre>
<p style="text-align:left;"><strong>The C program on the LPC 2129:</strong></p>
<pre class="brush: cpp;">
/*Tested on the ARM starter kit (http://www.emblitz.com/Embedded_ARM_Starter_kit.html)*/

 #include &lt;LPC21xx.H&gt;
 /*The 7 segment pattern for  digits 0 through 9*/
 const unsigned char bitMask8[] = {
   0x80,  // binary 10000000
   0x40,  // binary 01000000
   0x20,  // binary 00100000
   0x10,  // binary 00010000
   0x08,  // binary 00001000
   0x04,  // binary 00000100
   0x02,  // binary 00000010
   0x01   // binary 00000001
};

 void ser_init(void); //initialize serial port
 void send_8bit_serial_data(unsigned char); //display data on the 7 segment

 int main(void)
  {  char no_of_mails[10]={0xfc,0x60,0xda,0xf2,0x66,0xb6,0xbe,0xe0,0xfe,0xf6};
     char data;
      //mapping of pins to serial in parallel out shift register
		/*P1.16--&gt;(~QH)--port dir= i/p
	              P1.17--&gt;SRCLK--port dir= o/p
	              P1.18--&gt;RCLK--port dir= o/p
	              P1.19--&gt;SD1--port dir= o/p
	           */
     IODIR1=0x000E0000;//set port P1 direction to reflect the pin connections detailed above
     ser_init();
	 send_8bit_serial_data(~(no_of_mails[0])); //Reset LED
   	 while(1)
   		{   while(!(U1LSR &amp; 0x01)); //wait till data arrives
	     	data=U1RBR-48; //convert ascii back to integer
			send_8bit_serial_data(~(no_of_mails[data]));
    	}	

      return 0;  //this is never reached
  }

void ser_init(void)
{
  PINSEL0 = 0x00050000;                  /* Enable RxD1 and TxD1              */
  U1LCR = 0x83;                          /* 8 bits, no Parity, 1 Stop bit     */
  U1DLL = 97;                            /* 9600 Baud Rate @ 15MHz VPB Clock  */
  U1LCR = 0x03;                          /* DLAB = 0                          */
}

void send_8bit_serial_data(unsigned char data)
{ /*The 7 segment is driven  bit-banging  style using  SN74HC595D, */
    int x;
 	IOCLR1=0xffffffff;
   // Loop through all the bits, 7...0
   for(x = 7; x &gt;=0; x--)
   {
       if(data &amp; bitMask8[x])
       {
           IOSET1=0x00080000;      // we have a bit, make P1.19 high
		   IOSET1=0x000a0000; 		//make p1.17=SRCLK aslo hign
		   IOCLR1=0x00020000;		//toggle back p1.17
       }
       else
       {
           IOCLR1=0x000F0000;        // no bit, make P1.19 low
		   IOSET1=0x00020000;
		   IOCLR1=0x00020000;
       }

   }

   IOCLR1=0x000F0000; //TOGGLE P1.18=RCLK
   IOSET1=0x00040000;
   IOCLR1=0x000F0000;
}
</pre>
<p>If you wanna take this further, check out <a href="http://blog.tinyenormous.com/2008/12/08/arduino-lcd-gmail-subject/" target="_blank">this page</a> for an  amazing  LCD based notifier.</p>
 Tagged: DIY, Electronics, gmail notifier <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=58&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2009/02/09/yet-another-gmail-notifier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>

		<media:content url="http://ravispeaks.files.wordpress.com/2009/02/gmailscreenshot.jpg" medium="image">
			<media:title type="html">gmailscreenshot</media:title>
		</media:content>

		<media:content url="http://ravispeaks.files.wordpress.com/2009/02/dsc000931.jpg" medium="image">
			<media:title type="html">The 7 segment display showing the count of the 4 new mails in my inbox</media:title>
		</media:content>

		<media:content url="http://ravispeaks.files.wordpress.com/2009/02/dsc00094.jpg?w=300" medium="image">
			<media:title type="html">The setup</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing the &#8216;possibly related posts&#8217; in WordPress 2.7</title>
		<link>http://ravispeaks.wordpress.com/2009/01/01/removing-the-possibly-related-posts-in-wordpress-27/</link>
		<comments>http://ravispeaks.wordpress.com/2009/01/01/removing-the-possibly-related-posts-in-wordpress-27/#comments</comments>
		<pubDate>Thu, 01 Jan 2009 10:06:55 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[possibly related posts]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=45</guid>
		<description><![CDATA[Thanks to my friends, i came to know that the &#8216;possibly related blogs&#8217; of my previous post linked to certain graphic/explicit blogs that had no possible relations to my write-up at all! A quick  search on how to remove the feature revealed this. But unfortunately i had a lot of difficulty in finding it because [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=45&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Thanks to my friends, i came to know that the &#8216;possibly related blogs&#8217; of my previous post linked to certain graphic/explicit blogs that had no possible relations to my write-up at all! A quick  search on how to remove the feature revealed<a href="http://lindyshoots.wordpress.com/2008/04/29/removing-generated-possibly-related-posts-on-your-wordpress-blog-posts/" target="_blank"> this</a>. But unfortunately i had a lot of difficulty in finding it because of the WordPress 2.7 upgrade which tucks it away deep inside.After 15 minutes of frustrated search, i finally figured it. So here it is for the benefit of other fellow WP bloggers:</p>
<p>1.Go to  &#8216;My Dashboard&#8217;</p>
<p>2.Click on the &#8216;<strong>change theme</strong>&#8216; button in the <em>Right Now</em> section :</p>
<p><img class="aligncenter size-full wp-image-52" title="untitled4" src="http://ravispeaks.files.wordpress.com/2009/01/untitled4.jpg?w=510&#038;h=297" alt="untitled4" width="510" height="297" /></p>
<p>3.In  the <em>Manage Themes</em> screen that follows, click on <strong>Extras</strong></p>
<p><strong><img class="aligncenter size-full wp-image-54" title="untitled21" src="http://ravispeaks.files.wordpress.com/2009/01/untitled21.jpg?w=510&#038;h=145" alt="untitled21" width="510" height="145" /><br />
</strong></p>
<p>4. There you have it. Just check the relevant option in the screen that follows and click <strong>Update Extras</strong></p>
<p><img class="aligncenter size-full wp-image-55" title="untitled31" src="http://ravispeaks.files.wordpress.com/2009/01/untitled31.jpg?w=510&#038;h=168" alt="untitled31" width="510" height="168" /></p>
<p>5. Mission Accomplished ! Now start blogging peacefully.</p>
 Tagged: possibly related posts <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=45&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2009/01/01/removing-the-possibly-related-posts-in-wordpress-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>

		<media:content url="http://ravispeaks.files.wordpress.com/2009/01/untitled4.jpg" medium="image">
			<media:title type="html">untitled4</media:title>
		</media:content>

		<media:content url="http://ravispeaks.files.wordpress.com/2009/01/untitled21.jpg" medium="image">
			<media:title type="html">untitled21</media:title>
		</media:content>

		<media:content url="http://ravispeaks.files.wordpress.com/2009/01/untitled31.jpg" medium="image">
			<media:title type="html">untitled31</media:title>
		</media:content>
	</item>
		<item>
		<title>The year that was</title>
		<link>http://ravispeaks.wordpress.com/2008/12/31/the-year-that-was/</link>
		<comments>http://ravispeaks.wordpress.com/2008/12/31/the-year-that-was/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 06:25:38 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[new year]]></category>
		<category><![CDATA[recap]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=39</guid>
		<description><![CDATA[Its been quite some time since my last blog.Not that I&#8217;ve been busy but I was kinda lazy to write.
Finally,another year of the Gregorian calendar comes to an end as i March [or is it January   ] into the future.2008 has been a mixed experience for me.Some musings:
1.An entire year of work (read [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=39&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Its been quite some time since my last blog.Not that I&#8217;ve been busy but I was kinda lazy to write.</p>
<p>Finally,another year of the Gregorian calendar comes to an end as i March [or is it January <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ] into the future.2008 has been a mixed experience for me.Some musings:</p>
<p>1.An entire year of work (read &#8217;studies&#8217;) without pay (boy, do i miss my salary).<br />
2.Non stellar performance at subjects like DSP,DSD,OS (don&#8217;t bother finding if you don&#8217;t know what they stand for).<br />
3.Commendable summer-sem performance in Marketing and Technical communication(No, i still don&#8217;t want to do an MBA).<br />
4.Completed Prince of Persia-Sands of Time on my lappy(Ok,old game but hey, i finished the game without using a mouse!).<br />
5.Was Tested On my English skills as a Foreign Language (7000 INR-&gt;108/120-&gt;zero calls.Now do the math).<br />
6.Never watched TV (but compensated by on-demand Internet and downloads).<br />
7.Got in touch with some of my good school friends after a LONG time (Social Networks do have advantages i guess).<br />
8.Wrote two longest term papers of my life (At 3200+ words each,i will put &#8216;em here depending on my instructor&#8217;s feedback).<br />
9.Discovered there exists a DJ Armin Van Burren (His techno is amazing.I personally feel his music is better than Paul Van Dyk).<br />
10.Got an internship offer in the domain that i so longed to switch to(Determined to make the most of it).</p>
<p>Eager to find out what 2009 has in store for me&#8230;&#8230;.</p>
<p>Wishing you all a great new year ahead. Rock on folks.</p>
 Tagged: new year, recap <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=39&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2008/12/31/the-year-that-was/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>
	</item>
		<item>
		<title>SKYLARK AEROS</title>
		<link>http://ravispeaks.wordpress.com/2008/11/01/skylark-aeros/</link>
		<comments>http://ravispeaks.wordpress.com/2008/11/01/skylark-aeros/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 14:32:38 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[skylark aeros]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=32</guid>
		<description><![CDATA[Do you want a job that&#8217;s stable, well paying, growth oriented ? Look no further&#8230;..
Interested ? Leave your comments and email id. We wll get in touch with you&#8230;
 Tagged: skylark aeros      <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=32&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Do you want a job that&#8217;s stable, well paying, growth oriented ? Look no further&#8230;..</p>
<div id="attachment_33" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-33" title="Skylark Aeros" src="http://ravispeaks.files.wordpress.com/2008/11/skylarkaeros.jpg?w=300&#038;h=166" alt="God's view of heaven" width="300" height="166" /><p class="wp-caption-text">Air Tourism</p></div>
<p>Interested ? Leave your comments and email id. We wll get in touch with you&#8230;</p>
 Tagged: skylark aeros <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=32&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2008/11/01/skylark-aeros/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>

		<media:content url="http://ravispeaks.files.wordpress.com/2008/11/skylarkaeros.jpg?w=300" medium="image">
			<media:title type="html">Skylark Aeros</media:title>
		</media:content>
	</item>
		<item>
		<title>I Love My ThinkPad</title>
		<link>http://ravispeaks.wordpress.com/2008/09/10/i-love-my-thinkpad/</link>
		<comments>http://ravispeaks.wordpress.com/2008/09/10/i-love-my-thinkpad/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 12:21:34 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[laptop accident]]></category>
		<category><![CDATA[r60]]></category>
		<category><![CDATA[thinkpad]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=26</guid>
		<description><![CDATA[I have a ThinkPad R60 which was given to all students  by the college.Though i knew that ThinkPads are known for their robustness, i hadn&#8217;t given much thought to it.That was until the fateful day of 8th September, when the laptop bag fell from my lap while i was travelling in a bus.It was a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=26&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have a <a href="http://www.notebookreview.com/default.asp?newsID=2961&amp;review=ThinkPad+R60" target="_blank">ThinkPad R60</a> which was given to all students  by the college.Though i knew that ThinkPads are known for their robustness, i hadn&#8217;t given much thought to it.That was until the fateful day of 8th September, when the laptop bag fell from my lap while i was travelling in a bus.It was a Volvo and i was sitting on the seat near the door.So thats about a meter and quarter high from the floor of the bus.The driver applied the brakes suddenly and wham ! My bag did a couple of rather gymnastic somersaults before landing on the floor.I was pretty sure that the bag&#8217;s contents would have depreciated in value to some peanuts&#8217; worth of garage junk.I reached hostel and examined it. Okay, the LCD casing was split. All the display electronics was jutting out.I tried to fix the display as much as i can and pressed the power button.The thing booted immediately.The OS loaded, the keys were fine and the wi-fi (whose antenna is embedded on the LCD panel)  worked too.All was ok, phew.! But the lid was not closing properly as the interlocks were misaligned.Called up customer care and the guy came and fixed them too.(Thanks Ranjith !)</p>
<p>My lappy is now back to normal, except for a small hole in the corner of the LCD where the plastic had chipped off.This incident has really made me appreciate the robustness of a Thinkpad. I&#8217;m sure a Mac or a Viao or a Dell wouldn&#8217;t have survived the fall. Alteast the hard disk might have concked off if not the entire system.I am a ThinkPad fan for life now and have decided that my next upgrage is going to be a ThinkPad and a ThinkPad only.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ravispeaks.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ravispeaks.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=26&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2008/09/10/i-love-my-thinkpad/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Chrome</title>
		<link>http://ravispeaks.wordpress.com/2008/09/03/google-chrome/</link>
		<comments>http://ravispeaks.wordpress.com/2008/09/03/google-chrome/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 07:01:54 +0000</pubDate>
		<dc:creator>ravispeaks</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[chrome review]]></category>
		<category><![CDATA[firefox and chrome]]></category>

		<guid isPermaLink="false">http://ravispeaks.wordpress.com/?p=16</guid>
		<description><![CDATA[Well, I downloaded Google Chrome today. I dare say even though i haven&#8217;t read the full Chrome story , i don&#8217;t really find it any better than Firefox, atleast from a user perspective.My take at some of the &#8216;features&#8217; listed in the Chrome welcome page:
1)The &#8216;one box for evething&#8217; :This works in Firefox as well.Infact [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=16&subd=ravispeaks&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Well, I downloaded Google Chrome today. I dare say even though i haven&#8217;t read the full <a href="http://www.google.com/googlebooks/chrome/" target="_blank">Chrome story</a> , i don&#8217;t really find it any better than Firefox, atleast from a user perspective.My take at some of the &#8216;features&#8217; listed in the Chrome welcome page:</p>
<p>1)The &#8216;one box for evething&#8217; :This works in Firefox as well.Infact the google search engine is used to display the search results if the keyword is not the url of an already visited page /stored in your bookmark.</p>
<p>2)New Tabe page: Duh !Tabbed browsing has been there since ages in Firefox.Moreover, Firefox is sensible enough to not add a &#8216;close&#8217; button on the tab if there is only one tab.I was downloading something on Chrome and i closed all the tabs and you know what? All my downloads got cancelled ! In other words, the application terminates if you close all tabs.</p>
<p>Application shortcuts : These are just shortcuts,people ! Instead of cluttering your desktop/quick start with links, you might as well save them as bookmarks.You need to open the browser anyway to view the apps.Another Duh !</p>
<p>3)Dynamic tabs and Crash control: I must say these are really cool.I liked the flexibility provided by Chrome in tabs management.</p>
<p>4)Incognito: Again, there are <a href="https://addons.mozilla.org/en-US/firefox/addon/1306" target="_blank">plugins</a> for firefox which provide similar functionality.</p>
<p>5)Safe browsing : Firefox has it too :</p>
<div id="attachment_18" class="wp-caption alignnone" style="width: 310px"><a href="http://ravispeaks.files.wordpress.com/2008/09/2.jpg" target="_blank"><img class="size-medium wp-image-18" src="http://ravispeaks.files.wordpress.com/2008/09/2.jpg?w=300&#038;h=225" alt="Security Certificate" width="300" height="225" /></a><p class="wp-caption-text">Security Certificate</p></div>
<p>6)Instant bookmark:Ditto as above.</p>
<p>7)Simpler downloads: Well,like i said above, DO NOT close all your tabs when downloading something or risk losing it.This does not happen in Firefox, where the download window continues even if the brower is closed. (If you close that window too for the sake of Chrome like &#8216;unobtrusiveness&#8217;, then the download stops, but you can resume it later of the dowload url supports it.)</p>
<p>Performance:This might seem a naive approach, but i could not find any improvement when i looked at the  memory cosumed by Firefox and Chrome.Here&#8217;s the screenshot :</p>
<div id="attachment_19" class="wp-caption alignnone" style="width: 310px"><a href="http://ravispeaks.files.wordpress.com/2008/09/fvsc.jpg" target="_blank"><img class="size-medium wp-image-19" src="http://ravispeaks.files.wordpress.com/2008/09/fvsc.jpg?w=300&#038;h=225" alt="Firefox vs Chrome" width="300" height="225" /></a><p class="wp-caption-text">Firefox vs Chrome:Firefox=29,232KB;Chrome=49,332KB</p></div>
<p>The bottom line: With all the extra addons and customizations possible, i think Firefox gets you a better deal.But Chrome is still in beta (That all google produts are beta-forever is another philosophy altogether) and one can only wait and watch what happens.</p>
<p>By the way,in case you want to save the Chrome installation executable for reinstalling or whatever, you can find it in the<br />
<strong>C:\Documents and Settings\&lt;YOUR_LOGIN_NAME&gt;\Local Settings\Application Data\Google\Chrome\Application.2.149.27\Installer </strong>folder.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ravispeaks.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ravispeaks.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravispeaks.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravispeaks.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravispeaks.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravispeaks.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravispeaks.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravispeaks.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravispeaks.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravispeaks.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravispeaks.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravispeaks.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravispeaks.wordpress.com&blog=3408115&post=16&subd=ravispeaks&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ravispeaks.wordpress.com/2008/09/03/google-chrome/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="" medium="image">
			<media:title type="html">ravi</media:title>
		</media:content>

		<media:content url="http://ravispeaks.files.wordpress.com/2008/09/2.jpg?w=300" medium="image">
			<media:title type="html">Security Certificate</media:title>
		</media:content>

		<media:content url="http://ravispeaks.files.wordpress.com/2008/09/fvsc.jpg?w=300" medium="image">
			<media:title type="html">Firefox vs Chrome</media:title>
		</media:content>
	</item>
	</channel>
</rss>