An ‘Electric’ Bill

I actually got zapped when i held the electricity bill for the month. It was not just 100 bucks more, nor was it twice. It was bloody 4 times the monthly average.

Don’t believe me? Let me just put it into perspective -

powerconsumption1 1023x508 An Electric Bill

icon sad An Electric Bill i just dont know where i went wrong … Oh great god of Al Gore, please forgive me ..

Update – 19th July 2009

Epilogue :  Got the bill corrected. The jackass from BESCOM, read 691 as 891 and billed me for that. BESCOM officials where really helpful to get the bill annulled and issue me a new bill without any delay. Thanks BESCOM dept. at Belandur and Kudlu Gate icon smile An Electric Bill

iPod Touch Headset Test

overview hero 20090224 iPod Touch Headset Test

(pic. courtesy © 2009 Apple Inc.)

Almost a month and a half back, i bought a new 2nd Gen. 8GB iPod Touch. Well i have to say that its one handy device and i look like a star (or atleast i feel so), given the fact that i mostly come in contact with people whose knowledge of technology is as good as my knowledge of politics.

On the internet you’ll find all sorts of tests that people do on the unsuspecting iPod, iPod Touch, iPhone etc. But did you really care to test the headset. No! none of them really did any of that. I’m into QA (quality assurance) and though my testing of the iPod headset wont do me any good. Also any expenses involved has to be from my account. No one will ever ever fund something like what i did…

Disclaimer: This is a seasoned experienced tester. Experiments like this can leave you broke. Please do not attempt this at home.

Cost of a brand new iPod headset – Rs 1’600/-

I didnt care to buy a new one. I just used the one that they shipped with the iPod.

Steps :

  1. Place the headset in a shirt pocket, preferrably with a button on top, so that the test-material a.k.a headset doesnt drop off
  2. Soak the shirt in a half a bucket of water, with 2 spoons of detergent ( Yes!!!)
  3. Wait for 12hrs
  4. Take the shirt (with the headset in its pocket) and dump it into a washing machine along with other clothes and do a dirt-run.
  5. Wait 1hr
  6. Pretend that you forgot about the clothes and the headset in the washing machine and wait for 1 more hour
  7. Take the clothes, put them to dry

Now, take the headset out, wipe it clean, give it CPR, plug it into the iPod and play ….

IT WORKS !!! icon biggrin iPod Touch Headset Test and here it is ladies and gentlemen, the headset that made it through, resting on my laptop

image 048 300x225 iPod Touch Headset Test

What is DataPower and Why DataPower?

Straight from the IBM site, this is the definition of DataPower -

IBM® WebSphere® DataPower® SOA Appliances are purpose-built, easy-to-deploy network devices that simplify, help secure, and accelerate your XML and Web services deployments while extending your SOA infrastructure.

Lets stop with that and talk a little bit about SOA, the current architecture and how DataPower fits in.

The middleware infrastructure of an enterprise need to support XML and Web Services, since its emergence and popularity. This meant that the ESB or enterprise service bus had to support the emerging technology. This was proving to be an problem because of -

  1. Traditional middleware installation has increased installation and maintenance costs
  2. Operational costs involved in supporting the new data format (XML) and the existing formats (flatfile, cobol copybook etc)
  3. Security – New forms of attack on the infrastructure

[1]DataPower SOA appliances address these three challenges with the creation of specialized, purpose-built, consumable SOA appliances that redefine the boundaries of middleware. As the “hardware ESB,” DataPower SOA appliances are an increasingly important part of the IBM ESB family.

As mentioned earlier DataPower is an appliance. So why exactly do we need an appliance what can it do?. Lets looks a typical infrastructure  – (this is not how it is but helps to explain the situation icon biggrin What is DataPower and Why DataPower? )

Continue reading

“Tweet This” for Blogger Blogs

I had migrated out of blogger in 2007. Reasons for which i’m not quite sure of. One thing that attracted me in WordPress is the availablity of plugins and the ease with which i was able to work with the php code. So when i had to do a ‘tweet this’ link for each post on my blog all i had to do was write this at the right place -

    <a href="http://twitter.com/home?status=Now reading <?php the_permalink(); ?>" target="_blank">
        <img src="http://jerrymannel.com/blog/wp-content/themes/SIM4.0/images/s-to-twit.jpg"
        style="border:none;">
    </a>

So yesterday, i was lazing around in the evening after a visit to the local library, one of my friends called. She was a smart-enough-techie for a business student. The only chick i knew who owned a Mac (i was so ready to dump all my girl-friends for her, coz she had a Mac. But her boy-friend owns an Audi so she ruled me out. 150cc Pulsar DTSi doest really stand a chance against an Audi). She had she blog up on blogger. Her problem how to get a ‘Tweet This’ link for each and every post on her blog.

I just dropped everything i was doing (nothing much infact) and got down to crack the problem. And this is how its done.

First get the full code for the .blogspot.com site that you have by navigating to Layout -> Edit HTML page. Check the “Expand Widget Templates” and copy the content of text area and back it up.

Next check the code that you have in had and make sure that its not the Classic Theme code. Just scroll and see you dont come across anything like <$BlogItemXXXXXXXXX$> in it.

Just like WordPress, blogger also loops and adds the blog entry(the simplest logic). So find a tag like <b:includable id=’post’ var=’post’>. This is the start of the section that will genrate the post-title, post-content, date-of-publishing, labels, etc. and similar miscellaneous information.

Now to add a “Tweet This” link to the each post use this code -

    <a expr:href='&quot;http://twitter.com/home?status=Now Reading -&quot; +
    data:post.title + &quot; &quot; + data:post.url' target="_new">
        Tweet This
    </a>

Depending up on where you are going to add that piece of code, you might have to add the necessary tags and define the properties. For eg. if you want the “Tweet this” link to be like the way its there at – http://jerryreghunadh.blogspot.com/ – this is the code that you need to add at the footer section :

    <div class='post-footer-line post-footer-line-2'>
        <span class='post-labels'>
            <a expr:href='&quot;http://twitter.com/home?status=Now Reading -&quot; +
            data:post.title + &quot; &quot; + data:post.url' target="_new">
                Tweet This
            </a>
        </span>
    </div>

Thats it. I guess this fixes the problem for you too icon smile Tweet This for Blogger Blogs

 Tweet This for Blogger Blogs