me,myself,english and programming..

Archive for February, 2010

My first post from BlackBerry

Sunday, February 21st, 2010

Testing first blog post using BlackBerry with bbMetaBlog. You can download it here .

p/s: This post has been edited by blogdesk since I’m having problem editing it using bbMetaBlog.

How to export VCF file to BlackBerry

Friday, February 19th, 2010

VCF or vCard file is a file format standard for electronic business card. Below are the way how I used to export it to my BlackBerry.

1. Combine all the vcf file into one file. If you are in windows environment you can use below command. Make sure your working directory is correct.

type * > all_contacts.vcf

2. Download and install ABC Amber vCard converter. This software can convert vcf file to ipd file which is recognized by BlackBerry. Click BlackBerry icon to convert the selected contact.

abcConverter

(more…)

My First Hello World in BlackBerry

Tuesday, February 16th, 2010

After following some of the BlackBerry developer tutorials here and here, I finally manage to run my first BlackBerry application. It’s cool. ;)

Here is my BlackBerry screenshot taken by CaptureIt

Capture19 20 23

Why develop for BlackBerry ??

whyBB

How to change SVN URL in Eclipse

Monday, February 8th, 2010

For whatever reason, sometimes you will need to change your SVN URL. Perhaps you need to place the server to a new building and change the ip address. After the changes, you cannot commit to that server using your eclipse.

To solve the problem, you can relocate your SVN server and change to the new URL. Look at the image below and you will know that it’s very easy

Open up SVN Repositories perspective in eclipse.

SVN Relocate

(more…)

window.onload() in IE and FF

Sunday, February 7th, 2010

For my team members.

The following works under both IE and FF:

window.onload = function() {
alert(0);
}

Happy coding,

-Just me-