Wednesday, April 15, 2009

WM 6.5 for Treo 750

About two weeks ago, I had a chance to injecting Windows Mobile 6.5 (cooked ROM) to my old phone Palm Treo 750v :) Although it says that the specification of Palm Treo 750v is not qualified for this new OS from Microsoft, I just can't hold on to the temptation to see much more new features offered by it.

After a short time of trial, I decided to go back to Windows Mobile 6.1 (also a cooked ROM). It is not that I don't like WM 6.5, but it's more that this cooked ROM doesn't fit well to Palm device. It just lost all the simplicity and features that Palm devices have (I feel it when using my Palm Treo with WM 5.0, WM 6.0 and now WM 6.1). The major problem is I cannot use my Palm Treo without stylus on WM 6.5, I have to pull out my stylus everytime. That's never happened on WM 5.0 to 6.1 :D

Honestly, new Home UI, hexagon-like (without grid line) Program list, and excited feeling that my old gadget was able injected with this brand new OS is so great! Of course I'm still waiting that this cooked ROM will be available to be compatible with Palm device especially Palm Treo 750 :D Can't wait!

*For references and download this cooked ROM, you can go here

Saturday, January 24, 2009

Basic Cisco Router settings for LC connection

Here is how-to configure (most) Cisco Routers for Leased-Line connection:
> enable
# configure terminal
# interface Serial 0/0
# description [write description for current interface] => usually "Connected to ISP"
# ip address [IP] [subnet mask]
# no shutdown => enable current interface

# interface FastEthernet 0/0
# description [write description for current interface] => usually "Connected to LAN"
# ip address [IP] [subnet mask]
# no shutdown => enable current interface
# exit

# ip name-server [DNS1] [DNS2] .. [DNS 5] => up to 5 DNS
# ip route [destination network] [subnet mask] [host]
# exit

after that, you can check your configuration by typing this command:
# show running-config

don't forget to save it:
# write

and it's done! :-)

Friday, January 16, 2009

setting Gmail di Versamail

Saya coba buatkan guide sederhana dengan sedikit screenshot:

1. Di dalam VersaMail, klik Accounts -> Accounts Setup











2. Beri nama apa saja, pilih Other untuk mail service dan protocol: POP








3. masukkan username (lengkap dengan @gmail.com) anda: [username]@gmail.com dan password anda









4. masukkan email address dan parameter pop-smtp







5. klik Advanced dan masukkan setting untuk incoming server, port: 995 dan hanya option ‘Use Secure Connection (SSL)’ saja







6. Lalu next, dan masukkan setting untuk outgoing server, port: 587 (saya setting beberapa versamail, kebanyakan bias jalan di port 587 ini) dan kedua buah option diberi checkmark semua, lalu masukkan username: [username]@gmail.com







Itu saja settingan Gmail di VersaMail. Selamat mencoba, semoga berhasil!

Sunday, January 4, 2009

vi - powerful text editor

It's been a while since I learned to use linux. One tools that I used many times is text editor, since I'm contributing in internal server development for monitoring link connection to customers. And for that purpose, I'm choosing VI

The reason is this application is light, simple and include in most, if not all, linux distribution. And below are several key command that use almost all the time:

i - insert
a - apend
o - open new line
x - delete character on cursor
dd - delete entire line
p - put line that has beed deleted, after current line
P - insert line, before current line
u - undo
dw - delete word beneath cursor

R - replace text
r - replace single character
~ - change text uppercase <-> lowercase

G - to the end of file
10G - to line 10 of file
w - to beginning next word
b - to beginning current word
0 - to beginning current line
$ - to end of the line
Ctrl-F - one screen forward
Ctrl-B - one screen back
/ - search forward
? - search backward

:e[file] - edit new file
:r[file] - include content
:! - running shell command
:R! - running shell command & paste
:[x,y]s/pattern/replacement/flags - using regular expression (explanation on wikipedia)