Friday, November 5, 2010

TATA DOCOMO INTERNET

Hi,

I just started using the tata docomo internet on my laptop through my nokia phone. Its just amazing. Never thought that a MSP could provide net connection for such cheap rates with great speed.

I am serious, the speed that i experience is no less then a broadband connection, moreover the GPRS plans that it has are really very affordable.

Currently i am using that internet connection only while writing this blog, and not only this blog, along with this i am signed into gmail with a fully loaded msngr, facebook with chat and some other dynamic websites.

I recommend using this internet if you want to get connected anytime anywhere or you have bandwidth issues with your current ISP.


Disclaimer : This is in no way promotion of tata docomo, its solely a personal opinion. I used it and felt like sharing with the community and hence i am doing that.

Njoy...;)

Thursday, November 4, 2010

Jailbreak iPod Touch 2G and iPhone 3G with iOS 4.0

Updated your ipod touch 2nd to the new and free iOS 4.0 promising new and unique features for your ipod just to find out that they are not supported on your device??

I can understand the agitation that you might be undergoing, i also had the same kinda feeling before i jailbroke my ipod.

Its just fantastic and easy too.

Home screen wallpaper, multitasking, battery percentage, etc are all now available for your ipod.

What you need to do is just follow these simple steps.

This jailbreak is also applicable for iPhone 3G

1.Download iOS 4 for your version of iPhone or iPod touch. Download it from here

2. Update your device to the latest firmware using iTunes.
3. Start Redsn0w 0.9.5b5-3, which can be downloaded from links given below.
4. Browse the original iOS 4 firmware file and proceed.


5. Select "install cydia" and click "next".


6. Plug in your device, make sure that it is switched off after you plug it in. If its not switched off then hold down the "power" button for a few seconds after you plug in your device until the "switch off" slider comes up on screen. slide to switch off. Now your device is plugged in and switched off.Click "next".

7. Now follow the steps as written in the screen that appears. Be swift in doing that.


8. Now the application will take care of the jailbreak, you relax, your work is done here.
After a while you'll see that your device reboots and is jailbroken.

Njoy ;)

Wednesday, August 11, 2010

Currency with the new Rupees symbol


Hey folks have a look at this coin, it is one of the first coins to hit the market possessing the new symbol of INR. ;)


Thursday, July 15, 2010

The New Indian Rupee Symbol


The Indian Rupee joins the league of the Dollars and Euros after all by having its own symbol as its identity for the world.

As you see, this is the new INR Symbol. This symbol was a result of a competition proposed by the Govt. of India on 5th March 2009, though after a long time since then, the Govt finally gave its verdict on 15th July 2010, as to what would be the new symbol for the Indian currency, and this was chosen.

This symbol has a lot to tell then what it shows, the new symbol is a blend of the Devanagari ‘र’ and the Roman capital ‘R’ without the stem. The parallel lines at the top(with white space between them) make an allusion to the tricolor Indian flag.

This symbol will be officially be included in the unicode and would be available in the text editors shortly like the Dollar and the Euro symbols.

It has given me one more reason to be proud about my country.

Jai Hind.

Sunday, July 4, 2010

Creating A iTunes App Store Account Without A Credit Card

In India many of us dont own credit cards and hence its difficult for us to register a itunes account in order to download apps from the App Store on our iPods and iPhones.
But there is a solution, you CAN create a app store account WITHOUT a credit card as well. :)

Here are the steps you need to follow,

1. Change the country/language by clicking at the bottom of the main iTunes page according to what is applicable.
2. If your country has a iTunes store then you will have to click the App Store tab at the top of the iTunes store, if not goto step 3 directly.
3. Now goto the Top Free Apps, you NEED to purchase a Free App for this to work, so it is very important.
4. Once you click on the "free" button near the app that you chose, a "Sign In" form will pop up, click on the "create new account" button.
5. Click continue.
6. Read and agree to the "iTunes Store Terms and Conditions".
7. Click continue.
8. Enter the details asked for, viz. your email address, password, security question, etc and click continue.
9. Now the Payment Method window will open, which will ask you to select a credit card type, but now it will have a option of "NONE" as well which wasnt present when you tried earlier. Select that option.
10. Fill in other details like Name and Address and stuff. click continue when you are done.
11. "Verify Your Account" screen will come. click "done".
12. Check for a mail from itunes in the email address you provided for opening the account.
13. There will be a verification link in the mail, click on that link to verify your email address.
14. Upon clicking that link you will see a "Congratulations" screen. Click "done" and you will be taken to the home page of iTunes App Store.
15. Your account is successfully created.
Njoy ;)

Thursday, July 1, 2010

Creating Bootable USB for Windows 7

Requirements
-- USB Flash Drive (>=4Gb)
-- Windows 7 iso
-- Computer with windows 7/vista

Steps to be followed;
1. Format Your USB Flash Drive
perform these steps in the command prompt of the windows.
a. plug in your flash drive.
b. Run Command Prompt as Administrator (start > All programs > Accessories > Command prompt), right click and select "run as administrator"
c. Type the following, this will give you the Flash drive no.
diskpart
list disk
number of your usb drive will be listed, assuming it to be disk 1,
d. Format the drive using the following cmd. (put the drive no. found in step c instead of "1" here.)
select disk 1
clean
create partition primary
select partition 1
active
format fs=NTFS
assign
exit

now your usb drive is formatted.
2. Making USB Bootable
1. insert windows 7 bootable disk(if using a disk).
2. change the path of cmd prompt to the directory containing the windows 7 boot directory.
d:
cd d:\win7\boot
3. now type in the following commands
bootsect /nt60 h: ("h" is the label of the usb drive)
4. close the cmd prompt. Our work here is done.

3. Copying the windows content into the usb drive.
copy all the windows 7 files and folders and paste them into the flash drive.
4. Set BIOS to boot using USB.
start the BIOS of your computer(by pressing the mentioned key when the machine starts up), and change the boot order such that USB comes at the first location.

And now restart your machine after plugging in the usb drive and install windows 7. :)

Java DB Connectivity

Class.forName(“sun.jdbc.odbc.JdbcOdbcDriver”);
String dataSourceName = “connectjava”; //user defined variable
String dbURL = “jdbc:odbc:” + dataSourceName;
con = DriverManager.getConnection(dbURL, “root”,”root”);
Statement s = con.createStatement();
s.execute(“insert into JAVA.test values(‘”+no+”‘,’”+name+”‘)”);
ResultSet rs1=s.executeQuery(“select * from JAVA.test”);