Tuesday, November 23, 2010

Ho To Enable Background Color , CSS Sprite Image in Print Out - IE and Firefox

Recently, i just came across an issue with my IE and Firefox browser.
Which ever page i tried to print from these browsers, the CSS (colors, Images, styles, etc) are not coming in the print out.
So i was wondering what could be the issue. 
I know we have to specify media="all" for style sheet, but even after specifying it in the link tag, it is not printing it properly.

Later i realized (after an hour) that there is a settings in both the browsers to enable the background Color and Image in printing.
This is very Simple, i am totally not aware of this. So i just want to share with you so that it will be useful for some of you(I wish i can save your time)

For Firefox 3.6 : 
    File -- Page Setup -- Format & Options - Print Background(colors & Images)

For IE 6:
  Tools -- Internet Options -- Advanced --"Settings List" -- "Printing" section -- Print Background Colors and Images

Wednesday, March 3, 2010

My First Private Sky Trip

Its been a long time dream for me to do this..Atlast i made it... thanks to one of my fiend caption Prabhu Mohan(Pilot) who made the day ...
We took this flight from Monarch, Addition, Dallas,TX. Really good one. We had a nice trip.
Too many communication during our fly... It is very hard to understand their communication language(you have to study min 8 months).
Autopilot mode did not worked properly in this flight, but over all it is a good flight.

We had a smooth takeoff and landing. We went up to Jones Field, Bonham airport from Addition.

Thursday, February 18, 2010

The $300 Million Button

Recently i came to know about this article.... very interesting... 


How Changing a Button Increased a Site's Annual Revenues by $300 Million
It's hard to imagine a form that could be simpler: two fields, two buttons, and one link. Yet, it turns out this form was preventing customers from purchasing products from a major e-commerce site, to the tune of $300,000,000 a year. What was even worse: the designers of the site had no clue there was even a problem.
...
The $300,000,000 Fix
The designers fixed the problem simply. They took away the Register button. In its place, they put a Continue button with a simple message: "You do not need to create an account to make purchases on our site. Simply click Continue to proceed to checkout. To make your future purchases even faster, you can create an account during checkout."

Tuesday, February 16, 2010

Water Vs Gatorade

Nice to know ......

Before you go to sleep, always drink a glass of water or two in order to make you fall asleep faster and wake up in a more refreshed mood. On the other hand, drinking soda contains caffeine which makes you stay awake. Drink water before you go to bed, it's better for you and you'll have a better night's sleep.

You may have known of people that say Gatorade is a lot healthier than water. While in some ways they may be correct, they do not realize how much sugar Gatorade contains. Gatorade is made to make your body become energy-charged, and help you with physical work outs and sports training. Gatorade is not made to be consumed all the time and could actually make you gain weight over time. Drinking water does not contain sugar.


iPad Killer.....ADAM. The First

Best competitor for Apple iPad... from INDIA.... 
Notion Ink introducing new Tablet PC namely "ADAM" 
ADAM with Android OS. 

10 inch transflective LCD 
180 degree Swivel Camera 
Backside Track Pad... etc 

http://www.notionink.in/adamoverview.php 
Really love it....

Tuesday, February 2, 2010

Python in Android - Android Scripting Environment(ASE)

Today i came know that there is a Python Android Scripting environment  that does amazing thing in few line.
Actually python is the only language which is having single line of code for hello world :).
Even in android Python does the magical programing in few lines.

An example via Matt Cutts -- "here's a barcode scanner written in six lines of Python code:

  import android
droid
= android.Android()
code
= droid.scanBarcode()
isbn
= int(code['result']['SCAN_RESULT'])
url
= "http://books.google.com?q=%d" % isbn
droid
.startActivity('android.intent.action.VIEW', url)

How easy it is...!!!. It is tempting me to go and buy a Android phone asap...and try my python programing skill in Android industry.