Mantyhose

Pantyhose for Men….. Sounds interesting???
Visit http://www.e-mancipate.net/
Let’s see when we could see this in stores in India :D

Categories: Fun 

Lambroghini Drink

Last weekend I went to a pub here (In Bangalore). Boozed a llittle.

Two things to think about

  1. A unique drink that I had, Lambroghini. Lambroghini was a special drink served with flames. Had to sip the liquor from the flames while the liquid was on file.
  2. When returning from the restroom, the waiter told me that I had broke-in into a Ladies Room. Unfortunately no lady was there.
Categories: Fun  Tags: alcohol 

ZippoBlu Butane Gas Ligher

I received my ZippoBlu Butane Gas Lighter yesterday. And today, I’m using it.

I had ordered it through eBay. Initially I was worried about the delivery of the item as it might get damaged during shipping to India. But the seller (123khaly)is awesome. He did a good packing before the shipping and the lighter reached safely to me. Keep in mind that the gas cannot be shipped because it is flammable. These are international regulations. So I inquired with Zippo India if they have imported Butane Gas or not. Unfortunately they haven’t. This got me disappointed. It was like I have a Plasma TV with no Cable connection. So I moved down to M.G Road, Bangalore and was able to find Chinese Butane Gas. While Zippo doesn’t recommend non-Zippo Butane, I didn’t have a choice.

[Read More]
Categories: General Fun  Tags: zippo 

Mobiking Revisited

It has been around 5 yrs when I suffered a broken collar bone in a road accident on my bike.

My take since then had been to avoid biking in Indian City Roads. But I finally gave up on it because I realised how much I really missed avoiding it.

So here I am, back to biking.

I wanted to start up again with a bike which would be:

  • Steady on the roads.
  • Would definitely have a sporty look.
  • Would be Mr. Unshakable and Mr. Reliable

Amongst the Indian bikes in the market today, the best I could find to my requirements was the Bajaj Pulsar 200 DTS-i.

[Read More]
Categories: General Fun 

Lost my piece

So Finally I got a haircut.

Before

Now

Categories: Fun 

Creative Destructivity

Creative Destructivity by Raghavendra Buddi

Categories: Fun 

Pythonic Addiction

#!/usr/bin/env python  
  
def files(root):  
    for path, folders, files in os.walk(root):  
        for file in files:  
            yield path, file  
  
  
def find_match(repository): # aka walk_tree_copy()  
    for path, file in files(repository):  
        if file.endswith ('html') or file.endswith ('htm') or file.endswith ('HTML') or file.endswith ('HTM'):  
        #if file.endswith ('html.gz') or file.endswith ('htm.gz') or file.endswith ('HTML.gz') or file.endswith ('HTM.gz'):  
            try:  
                os.environ['__TEMP__VAL'] = file  
                os.chdir(path) # We need to chdir so that gzip can see the file in the cwd  
                os.system('gzip $__TEMP__VAL')  
                sys.stdout.write("%s/%s has been gzipped\n" % (path, file))  
            except IOError:  
                sys.stdout.write("Aieeeee.... I got some error with %s!\n\n" % (file))  
            continue  
            #return True  
    return False  
  
  
def main():  
    REPOSITORY = raw_input("Please enter a path to look for the files to zip.\nHit Return Key if you want the default path i.e. \"/home/rrs/My_Documents/My Books\"")  
  
    if REPOSITORY == '':  
        REPOSITORY = "/home/rrs/My_Documents/My Books/"  
  
    find_match(REPOSITORY)  
  
if __name__ == '__main__':  
    import os, sys, shutil  
    main() 
Categories: Fun Programming 

MacInDell

Just how would it look if Mac were to come with Dell laptops.

The screenshot might give some picture.

Categories: Debian-Pages Fun Computing 

Python Fun

Just think what all this small piece of code can do

while x <= 100:
… temp = urllib2.urlopen(address+prefix+str(x)+suffix)
… data = open(prefix+str(x)+suffix, ‘wb’ )
… data.write(temp.read())
… data.close()
… temp.close()
… x +=1

Categories: Fun Programming