<?xml version="1.0" encoding="UTF-8"?>
<feed xml:lang="en-US" xmlns="http://www.w3.org/2005/Atom">
  <title>AJAYA - Home</title>
  <id>tag:www.ajay.ws,2010:mephisto/</id>
  <generator uri="http://mephistoblog.com" version="0.8.0">Mephisto Drax</generator>
  <link href="http://www.ajay.ws/feed/atom.xml" rel="self" type="application/atom+xml"/>
  <link href="http://www.ajay.ws/" rel="alternate" type="text/html"/>
  <updated>2010-02-17T22:09:26Z</updated>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2010-02-08:6880</id>
    <published>2010-02-08T19:47:00Z</published>
    <updated>2010-02-17T22:09:26Z</updated>
    <link href="http://www.ajay.ws/2010/2/8/zero-rupee-bill" rel="alternate" type="text/html"/>
    <title>Zero Rupee Bill</title>
<content type="html">
            
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2009-07-28:6391</id>
    <published>2009-07-28T00:12:00Z</published>
    <updated>2009-07-28T00:13:23Z</updated>
    <link href="http://www.ajay.ws/2009/7/28/our-very-own-blue-planet-run-foundation" rel="alternate" type="text/html"/>
    <title>Our very own Blue Planet Run Foundation</title>
<content type="html">
            






          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2009-07-15:6360</id>
    <published>2009-07-15T23:10:00Z</published>
    <updated>2009-07-22T18:11:27Z</updated>
    <link href="http://www.ajay.ws/2009/7/15/only-in-india-2" rel="alternate" type="text/html"/>
    <title>Only In India</title>
<content type="html">
            &lt;br /&gt;&lt;br /&gt;Update : Jul 15, 2009

&lt;br /&gt;
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2009-07-10:6353</id>
    <published>2009-07-10T20:40:00Z</published>
    <updated>2009-07-10T21:00:06Z</updated>
    <link href="http://www.ajay.ws/2009/7/10/install-a-rpm-in-home-directory-as-non-root" rel="alternate" type="text/html"/>
    <title>Install a rpm in home directory as non-root</title>
<content type="html">
            &lt;p&gt;Do you ever need to install a rpm package however don't have permission to do it as root.  You can install the rpm in your personal home folder as long as all the pre-requisites are met.&lt;/p&gt;

&lt;p&gt;Here is how.&lt;/p&gt;

&lt;h2&gt;Step 1. Intialize your own private rpm db&lt;/h2&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;rpm --initdb --root /home/username/local --dbpath /home/username/local/lib/rpm&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;h2&gt;Step 2. See what files are in the rpm and where they will be installed by default.  Relocate the path to your rpm root directory.&lt;/h2&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;rpm -qlp package.rpm&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;p&gt;This will list all the files in the rpm.  If they all start with /usr, we can just use /home/username/local  as the new path as shown below.&lt;/p&gt;

&lt;h2&gt;Step 3. See if all dependent rpm met?&lt;/h2&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;rpm -ivh package.rpm&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;p&gt;This will fail as you don't have permission to install.  However if doesn't complain about dependent files then you are good.  Other install the dependent rpms first.&lt;/p&gt;

&lt;h2&gt;Step 4. Install the rpm&lt;/h2&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;1&lt;tt&gt;
&lt;/tt&gt;2&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;rpm --root /home/username/local --dbpath /home/username/local/lib/rpm \&lt;tt&gt;
&lt;/tt&gt; --relocate /usr=/home/username/local --nodeps -ivh package.rpm&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;p&gt;You have to add the flag --nodeps as the dependent rpms are in the system rpm database but not in your own.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2009-06-23:6321</id>
    <published>2009-06-23T23:56:00Z</published>
    <updated>2009-06-24T00:00:51Z</updated>
    <link href="http://www.ajay.ws/2009/6/23/disable-body-onload-with-a-simple-greasemonkey-script" rel="alternate" type="text/html"/>
    <title>disable body onload with a simple GreaseMonkey Script</title>
<content type="html">
            &lt;p&gt;I needed to disable a site from executing body onload event.  Onload code actually opened the print dialog box and closed the window when the print dialog is closed.  However I needed to see how the page looks like in the browser without actually printing.&lt;/p&gt;

&lt;p&gt;Greasemonkey came to rescue.  I just created a very simple script and added&lt;/p&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;document.body.setAttribute(&lt;span class=&quot;s&quot;&gt;&lt;span class=&quot;dl&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;onload&lt;/span&gt;&lt;span class=&quot;dl&quot;&gt;'&lt;/span&gt;&lt;/span&gt;,&lt;span class=&quot;s&quot;&gt;&lt;span class=&quot;dl&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;dl&quot;&gt;'&lt;/span&gt;&lt;/span&gt;); &lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;p&gt;Hope this helps somebody out there.&lt;/p&gt;

&lt;p&gt;References:
&lt;a href=&quot;http://groups.google.com/group/greasemonkey-users/browse_frm/thread/5256996efb793d2c/d0be8c439bba8689?lnk=gst&amp;amp;q=onload#d0be8c439bba8689&quot;&gt;Google Group Discussion&lt;/a&gt;&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2009-01-28:5823</id>
    <published>2009-01-28T00:30:00Z</published>
    <updated>2009-01-28T00:40:04Z</updated>
    <category term="General"/>
    <link href="http://www.ajay.ws/2009/1/28/copy-split-large-directory-on-to-multiple-disks-mac-os-x" rel="alternate" type="text/html"/>
    <title>Copy, Split Large Directory on to Multiple Disks | Mac OS X</title>
<content type="html">
            &lt;p&gt;If you need to backup or copy a huge directory to multiple disks then this might be useful to you. I am on Mac OS X Leopard.&lt;/p&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;1&lt;tt&gt;
&lt;/tt&gt;2&lt;tt&gt;
&lt;/tt&gt;3&lt;tt&gt;
&lt;/tt&gt;4&lt;tt&gt;
&lt;/tt&gt;&lt;strong&gt;5&lt;/strong&gt;&lt;tt&gt;
&lt;/tt&gt;6&lt;tt&gt;
&lt;/tt&gt;7&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;c&quot;&gt;# Create a image of the folder. &lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;hdiutil create -o &lt;span class=&quot;co&quot;&gt;Image&lt;/span&gt;.dmg -format &lt;span class=&quot;co&quot;&gt;UDRO&lt;/span&gt; -srcfolder &lt;span class=&quot;co&quot;&gt;SourceFolder&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;c&quot;&gt;# Segment the image into multiple segments.&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;hdiutil segment -o &lt;span class=&quot;co&quot;&gt;Image&lt;/span&gt;.&lt;span class=&quot;co&quot;&gt;Segment&lt;/span&gt;.dmg  -segmentSize &lt;span class=&quot;fl&quot;&gt;4.7&lt;/span&gt;g &lt;span class=&quot;co&quot;&gt;Image&lt;/span&gt;.dmg&lt;tt&gt;
&lt;/tt&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;p&gt;The above command would split the Image.dmg into multiple segments of Size 4.7GB.  The first one would be named Image.Segment.dmg and the rest would be Image.Segment.001.dmg and so on.  Burn them to individual disks as you like.  To mount the images, mount(double click) the first segment.  Mac would do the rest.&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2009-01-18:5787</id>
    <published>2009-01-18T21:41:00Z</published>
    <updated>2009-01-18T21:54:30Z</updated>
    <category term="General"/>
    <link href="http://www.ajay.ws/2009/1/18/new-law-in-india-where-police-can-t-arrest" rel="alternate" type="text/html"/>
    <title>New Law in India where Police can't arrest</title>
<content type="html">
            &lt;p&gt;I just heard this.  There is a new law going around in India where Police can't arrest a person if the offense carries a penalty of upto 7 yr jail term.  I would be honest to say that I don't know much about this law or don't know what is the motivation behind this.  But this sounds really bad on first read.&lt;/p&gt;

&lt;p&gt;In India, attempt to commit culpable homicide, robbery, attempt to suicide, kidnapping, voluntarily causing grievous hurt, cheating, outraging a woman's modesty and death caused by negligence ( source times of India) are all offenses for which this law would apply and the police can't arrest.   &lt;/p&gt;

&lt;p&gt;I think Police in India are a clueless and corrupt bunch.  But cutting the criminals a slack no matter what is the reason is insane.  Just look at Oakland.  When crime occurs our Mayor Ron Dellum blames everybody except the criminals.  What else would justify random violence during a protest of police brutality ( which I think sucks and the officer should be hold accountable).  That also during second time around when everybody was expecting it and were prepared to deal with it.&lt;/p&gt;

&lt;p&gt;Wow...  Please somebody educate me!!!!!!!!!&lt;/p&gt;
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2009-01-17:5784</id>
    <published>2009-01-17T20:25:00Z</published>
    <updated>2009-01-17T20:26:48Z</updated>
    <category term="General"/>
    <link href="http://www.ajay.ws/2009/1/17/this-is-funny" rel="alternate" type="text/html"/>
    <title>This is funny | Great Moments in Presidential Speeches</title>
<content type="html">
            
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2009-01-12:5757</id>
    <published>2009-01-12T14:55:00Z</published>
    <updated>2009-01-13T06:44:55Z</updated>
    <category term="Rails"/>
    <link href="http://www.ajay.ws/2009/1/12/validate-before_destroy" rel="alternate" type="text/html"/>
    <title>validate before_destroy</title>
<content type="html">
            &lt;p&gt;Recently I had to look at various options to do proper validation before destroying a model.  Rails doesn't have a validate_before_destroy callback but it does have &lt;a href=&quot;http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html#M001881&quot;&gt;before_destroy&lt;/a&gt;.  &lt;/p&gt;

&lt;p&gt;We could implement a simple validation before destroy two ways:&lt;/p&gt;

&lt;h2&gt;Option 1: Implement the callback before_destroy in the model class itself.&lt;/h2&gt;

&lt;p&gt;Implement the method before_destroy in the model code itself. &lt;/p&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;1&lt;tt&gt;
&lt;/tt&gt;2&lt;tt&gt;
&lt;/tt&gt;3&lt;tt&gt;
&lt;/tt&gt;4&lt;tt&gt;
&lt;/tt&gt;&lt;strong&gt;5&lt;/strong&gt;&lt;tt&gt;
&lt;/tt&gt;6&lt;tt&gt;
&lt;/tt&gt;7&lt;tt&gt;
&lt;/tt&gt;8&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;r&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;cl&quot;&gt;Organization&lt;/span&gt; &amp;lt; &lt;span class=&quot;co&quot;&gt;ActiveRecord&lt;/span&gt;::&lt;span class=&quot;co&quot;&gt;Base&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;  &lt;span class=&quot;r&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;fu&quot;&gt;before_destroy&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;     &lt;span class=&quot;c&quot;&gt;# Do your thing&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;     &lt;span class=&quot;c&quot;&gt;# Return true or false&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;     &lt;span class=&quot;pc&quot;&gt;self&lt;/span&gt;.expired?&lt;tt&gt;
&lt;/tt&gt;  &lt;span class=&quot;r&quot;&gt;end&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;r&quot;&gt;end&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;p&gt;From the rails documentation&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;Callbacks are generally run in the order they are defined, with the exception of callbacks defined as methods on the model, which are called last. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;So with that said, any associations that are defined in the model would be destroyed before model.destroy call is aborted and there no way of going back.&lt;/p&gt;

&lt;h2&gt;Option 2: Register the callback before_destroy at the top of the method&lt;/h2&gt;

&lt;p&gt;In your model code declare at the top&lt;/p&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;1&lt;tt&gt;
&lt;/tt&gt;2&lt;tt&gt;
&lt;/tt&gt;3&lt;tt&gt;
&lt;/tt&gt;4&lt;tt&gt;
&lt;/tt&gt;&lt;strong&gt;5&lt;/strong&gt;&lt;tt&gt;
&lt;/tt&gt;6&lt;tt&gt;
&lt;/tt&gt;7&lt;tt&gt;
&lt;/tt&gt;8&lt;tt&gt;
&lt;/tt&gt;9&lt;tt&gt;
&lt;/tt&gt;&lt;strong&gt;10&lt;/strong&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;r&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;cl&quot;&gt;Organization&lt;/span&gt; &amp;lt; &lt;span class=&quot;co&quot;&gt;ActiveRecord&lt;/span&gt;::&lt;span class=&quot;co&quot;&gt;Base&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;  before_destroy &lt;span class=&quot;sy&quot;&gt;:okToDelete&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;  protected&lt;tt&gt;
&lt;/tt&gt;  &lt;span class=&quot;r&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;fu&quot;&gt;okToDelete&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;     &lt;span class=&quot;c&quot;&gt;# Do your thing&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;     &lt;span class=&quot;c&quot;&gt;# Return true or false&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;     &lt;span class=&quot;pc&quot;&gt;self&lt;/span&gt;.expired?&lt;tt&gt;
&lt;/tt&gt;  &lt;span class=&quot;r&quot;&gt;end&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;r&quot;&gt;end&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;p&gt;In this case, if you define the callback at the very top of the model class (before any other association declaration), then rails makes sure to call this callback first and aborts the destroy call.&lt;/p&gt;

&lt;p&gt;You can also pass a block to the callback to keep it simple.&lt;/p&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;1&lt;tt&gt;
&lt;/tt&gt;2&lt;tt&gt;
&lt;/tt&gt;3&lt;tt&gt;
&lt;/tt&gt;4&lt;tt&gt;
&lt;/tt&gt;&lt;strong&gt;5&lt;/strong&gt;&lt;tt&gt;
&lt;/tt&gt;6&lt;tt&gt;
&lt;/tt&gt;7&lt;tt&gt;
&lt;/tt&gt;8&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;r&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;cl&quot;&gt;Organization&lt;/span&gt; &amp;lt; &lt;span class=&quot;co&quot;&gt;ActiveRecord&lt;/span&gt;::&lt;span class=&quot;co&quot;&gt;Base&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;  before_destroy &lt;span class=&quot;r&quot;&gt;do&lt;/span&gt; |r|&lt;tt&gt;
&lt;/tt&gt;     &lt;span class=&quot;c&quot;&gt;# Do your thing&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;     &lt;span class=&quot;c&quot;&gt;# Return true or false&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;     r.expired?&lt;tt&gt;
&lt;/tt&gt;  &lt;span class=&quot;r&quot;&gt;end&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;r&quot;&gt;end&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;

&lt;p&gt;or even less&lt;/p&gt;

&lt;table class=&quot;CodeRay&quot;&gt;&lt;tr&gt;
  &lt;td title=&quot;click to toggle&quot; class=&quot;line_numbers&quot;&gt;&lt;pre&gt;1&lt;tt&gt;
&lt;/tt&gt;2&lt;tt&gt;
&lt;/tt&gt;3&lt;tt&gt;
&lt;/tt&gt;4&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
  &lt;td class=&quot;code&quot;&gt;&lt;pre&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;r&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;cl&quot;&gt;Organization&lt;/span&gt; &amp;lt; &lt;span class=&quot;co&quot;&gt;ActiveRecord&lt;/span&gt;::&lt;span class=&quot;co&quot;&gt;Base&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;  before_destroy {|r| r.expired?}&lt;tt&gt;
&lt;/tt&gt;&lt;span class=&quot;r&quot;&gt;end&lt;/span&gt;&lt;tt&gt;
&lt;/tt&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;/tr&gt;&lt;/table&gt;
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2008-10-05:5756</id>
    <published>2008-10-05T04:31:00Z</published>
    <updated>2008-10-05T04:36:21Z</updated>
    <link href="http://www.ajay.ws/2008/10/5/apple-genius-bar-real-genius-works" rel="alternate" type="text/html"/>
    <title>Apple Genius Bar | Real Genius | Works</title>
<content type="html">
            Recently my son pull a key out of my MBPro and that broke it.  I was worried whether I need to replace the keyboard with an expensive replacement part.  However I took it to the local Apple store and the guy there replaced the broken piece with one from a old keyboard in the shop.   It worked like a magic and I didn't have to explain what happen in the first place.   Simple and works.  I am impressed.   Now think if the same happened to and you have a Compaq, Dell or any other laptop out there.  Thinking about calling support??
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2008-09-30:5749</id>
    <published>2008-09-30T03:43:00Z</published>
    <updated>2008-09-30T03:44:43Z</updated>
    <link href="http://www.ajay.ws/2008/9/30/palin-what-fareed-zakaria-had-to-say" rel="alternate" type="text/html"/>
    <title>Palin | What Fareed Zakaria Had to Say?</title>
<content type="html">
            Fareed Zakaria! In my view one of the smartest guy out there.  He says this about Palin.

Embedded video from &lt;a href=&quot;http://www.cnn.com/video&quot;&gt;CNN Video&lt;/a&gt;
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2008-09-04:5545</id>
    <published>2008-09-04T20:33:00Z</published>
    <updated>2008-09-04T20:36:30Z</updated>
    <link href="http://www.ajay.ws/2008/9/4/quadrillion-dollar-i-can-t-even-spell-it" rel="alternate" type="text/html"/>
    <title>Quadtrillion dollar!! I can't even spell it.</title>
<content type="html">
            Check here &lt;br /&gt;

&lt;a href=&quot;http://bigpicture.typepad.com/comments/2008/09/can-you-break-a.html&quot;&gt; http://bigpicture.typepad.com/comments/2008/09/can-you-break-a.html &lt;/a&gt; &lt;br /&gt;


          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2008-08-27:5385</id>
    <published>2008-08-27T00:33:00Z</published>
    <updated>2008-08-27T00:34:44Z</updated>
    <category term="General"/>
    <link href="http://www.ajay.ws/2008/8/27/recall-petition-of-oakland-mayor-ron-dellum" rel="alternate" type="text/html"/>
    <title>Recall Petition of Oakland Mayor Ron Dellum.</title>
<content type="html">
            Go ahead.   Make your own decision.

&lt;a href=&quot;http://www.petitiononline.com/510911/petition.html&quot;&gt;http://www.petitiononline.com/510911/petition.html&lt;/a&gt;
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2008-08-27:5384</id>
    <published>2008-08-27T00:29:00Z</published>
    <updated>2009-07-15T23:07:09Z</updated>
    <category term="General"/>
    <link href="http://www.ajay.ws/2008/8/27/only-in-india" rel="alternate" type="text/html"/>
    <title>Only in India</title>
<content type="html">
            The image says it all 


&lt;br /&gt;
Check out what it is at &lt;a href=&quot;http://www.hindustantimes.com/PhotoGallery/Photos_Storypage.aspx?category=August262008Day%20in%20pics&quot;&gt;Here&lt;/a&gt;

&lt;br /&gt;&lt;br /&gt;Update : Jul 2, 2009


&lt;br /&gt;

&lt;br /&gt;&lt;br /&gt;Update : Jul 15, 2009

&lt;br /&gt;
          </content>  </entry>
  <entry xml:base="http://www.ajay.ws/">
    <author>
      <name>ajaya</name>
    </author>
    <id>tag:www.ajay.ws,2008-06-12:4841</id>
    <published>2008-06-12T06:09:00Z</published>
    <updated>2008-06-12T06:20:20Z</updated>
    <category term="indian"/>
    <link href="http://www.ajay.ws/2008/6/12/avoid-trueroots-if-you-planning-to-call-india" rel="alternate" type="text/html"/>
    <title>Avoid trueroots if you planning to call India</title>
<content type="html">
            &lt;p&gt;
I wanted vent here.   VSNL or &lt;a href=&quot;trueroots.us&quot;&gt;trueroots&lt;/a&gt; or TATA or whatever the f**k they call themselves recently launched their service in US to call india.  They are a bunch of copy cats for sure of airtel call home offering which doubled the calling card amount during their launch promotion.
&lt;/p&gt;
&lt;p&gt;
However, after I signed up &amp; paid, when I try to call India, the 800 number said my account is blocked.  Then I called customer service and I was told that my account has been terminated.  &lt;b&gt; The reason, my email address doesn't match my first initial &amp; last name.  This must be the stupidest reason I have ever heard.&lt;/b&gt;  These guys need an excuse to cancel the account ( donnow why ) &amp; found the most lame reason to do this. 
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;Avoid them at any cost.&lt;/b&gt;
&lt;/p&gt;
          </content>  </entry>
</feed>
