jump to navigation

Howto change UltraEdit font style in column mode February 8, 2008

Posted by supriyatna in All, Howto.
2 comments

I love to try to change the default font style on UltraEdit text editor to Consolas the new font style from Windows Vista/Office 2003, currently i used UltraEdit 12 -or- 13. Simple! I just go through menu View>Set Font… and i can get exactly what i want. But wait… when i tried switch to column mode the font style will change back to the Courier New, event i tried to set using View>Set Font…(in column mode) there’s not help, the font style in column mode still using Courier New.

I have tried to find in menu Advance>Configuration…, but there is no lucky. Ok, if you got the same problem as me, don’t worry i have found the solution to change of font style in column mode.

Manually you should open uedit32.INI (UltraEdit Configuration file) at %USERPROFILE%\Application Data\IDMComp\UltraEdit\uedit32.INI, goto [FixedFont] section (you can use search command or CTRL+F), and change the font type at FaceName= entry from FaceName=Courier New into FaceName=Consolas.

Save you changes, re-start UltraEdit and try to edit in column mode, you will find the font style in both normal and column mode is now become Consolas.

Samsung MP3 Player – YP-U3 January 18, 2008

Posted by supriyatna in All, Supriyatna's.
1 comment so far

ypu3b.jpg
Terima kasih untuk Prudential – Danamon, atas iuran tahunan gratis dan Samsung MP3 Player YP-U3 nya.

Yang gratisan dimana-mana emang enak :D

How to switch back Yahoo! Mail to classic version November 2, 2007

Posted by supriyatna in All, Email, Howto, Internet, Yahoo.
2 comments

New Yahoo! Mail is look nice but it’s very slow accessing from my internet connection. Actually you can still switch back to use classic version of Yahoo! Mail. Yes, there is link “Mail Classic” on left upper side of your mail under your Yahoo ID.

But i don’t want to switch back, i just want see in Classic version. So, I use another way to open Yahoo! Mail with classic version without “switch back to Mail classic”, just put this link “http://us.mg2.mail.yahoo.com/ym/login?ymv=0” to address bar of your browser (or bookmark that URL for simple access).

If i want use New version of Yahoo! Mail, just type http://mail.yahoo.com and i got New interface of Yahoo! Email.

Howto Install FTP server (vsftpd) on linux September 19, 2007

Posted by supriyatna in All, Howto, Internet, Linux.
4 comments

Berikut adalah step-by-step untuk menginstall FTP server pada linux, pada contoh ini saya menggunakan vsftpd pada Fedora Core 1. Caranya tidak sulit atau mungkin bisa dikatakan sangat mudah.

Siapkan package binary (.rpm) vsftpd-<versi_number>.i386.rpm

File ini bisa didapatkan pada disk #2 (Fedora Core 1) atau dapat juga mendownload dari internet.

Lanjutkan dengan menginstall menggunakan command rpm -Uvh (Upgrade, Verbose, hash)

Yang artinya install jika package tersebut belum terinstall atau upgrade jika versi dari package yang sudah terinstall berada berada di bawah dari package binary yang akan kita install, dan tampilkan installasi process ke console/screen/monitor dan tampilkan progress dari installasi process dalam bentuk hash (#).

# rpm -Uvh /home/dede/download/vsftpd-1.2.0-5.i386.rpm

Edit/modifikasi configuration file vsftpd.conf

# vi/etc/vsftpd/vsftpd.conf

Berikut adalah contoh dari configuration file yang saya gunakan, dimana saya mematikan fungsi anonymous user (anonymous_enable=NO), dan membatasi maximum 10 client connection (max_clients=10) dengan masing-masing per-IP address hanya diperbolehkan 2 connection (max_per_ip=2). Dan setiap user yang login melalui ftp hanya dapat melihat file/directory dari user home mereka sendiri (chroot_local_user=YES) dan tidak dapat mem-browse/mengakses folder lain.

# start vsftpd.conf
write_enable=YES
local_umask=022
dirmessage_enable=YES
xferlog_enable=YES
connect_from_port_20=YES
xferlog_std_format=YES
pam_service_name=vsftpd
userlist_enable=YES
#enable for standalone mode
listen=YES
tcp_wrappers=YES
# dede+
#anonymous_enable=YES
local_enable=YES
max_clients=10
max_per_ip=2
chroot_local_user=YES
ftpd_banner=Welcom to linuxserver FTP service.
#<EOF> end of file vsftpd.conf

Menjalankan service vsftpd

Setelah mengedit configuration file, ftp server siap untuk dijalankan yaitu dengan menggunakan command:

# service vsftpd start

atau dapat juga dengan menjalankan script berikut:

# /etc/init.d/vsftpd start

Automatic startup vsftpd service everytime server restart

Selanjutnya adalah meng-configure agar service FTP server dapat automatic jalan setiap kali server restart, yaitu dengan mencheck terlebih dahulu dengan menggunakan chkconfig masing-masing bilai dari run level 0 – 6

# chkconfig --list vsftpd
vsftpd 0:off 1:off 2:off 3:off 4:off 5:off 6:off

Terlihat run level 0 – 6 dalam keadaan off, untuk itu jalan kan perintah berikut sehingga run level 2, 3, 4, 5 di set menjadi on.

# chkconfig vsftpd on
# chkconfig --list vsftpd
vsftpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off

Testing connection to FTP server

Nah, sekarang saatnya kita mencoba apakah server ftp sudah siap digunakan, kita dapat mencoba dengan connect ke FTP server yang baru saja kita buat dengan menggunakan ftp client, untuk contoh saya menggunakan standard ftp client dari Windows XP Professional lewat command console.

C:>ftp linuxserver
Connected to linuxserver.
220 Welcom to linuxserver FTP service.
User (linuxserver:(none)): dede
331 Please specify the password.
Password:
230 Login successful.
ftp> ls -al
200 PORT command successful. Consider using PASV.
150 Here comes the directory listing.
drwx------ 4 502  502  4096 Sep 19 08:03 .
drwx------ 4 502  502  4096 Sep 19 08:03 ..
-rw-r--r-- 1 502  502    24 Sep 19 06:50 .bash_logout
-rw-r--r-- 1 502  502   191 Sep 19 06:50 .bash_profile
-rw-r--r-- 1 502  502   124 Sep 19 06:50 .bashrc
-rw-r--r-- 1 502  502   120 Sep 19 06:50 .gtkrc
drwxr-xr-x 3 502  502  4096 Sep 19 06:50 .kde
drwxr-xr-x 3 502  502  4096 Sep 19 09:17 personal
226 Directory send OK.
ftp: 512 bytes received in 0.00Seconds 512000.00Kbytes/sec.
ftp>

Free Wallpaper from Vista’s photographer July 4, 2007

Posted by supriyatna in All, Download, Wallpaper, Windows.
3 comments

Hamad Darwish's photoSaat kita berbicara mengenai wallpaper, maka kita akan terbayang akan photo-photo yang natural dan artistik. Contohnya, pada Windows XP yang muncul pertama kali dalam kepala saya adalah pemandangan dengan langit biru dan padang rumput yang hijau, bliss itulah nama wallpapernya. Selain bliss kita dapat menemukan wallpaper lainnya seperti stonehenge, azul, tulips, autumn dan lain-lain.

Kini pada Windows Vista koleksi dari wallpapernya-pun tidak kalah artistiknya, saya tidak pernah berpikir siapa photographer-nya dan alangkah beruntungnya orang yang tersebut karena hasil karyanya dapat dilihat oleh banyak orang diseluruh belahan dunia. Nah ternyata salah satu photographer yang beruntung itu ternyata seorang kuwait berumur 24 tahun dan bekerja di departement kesehatan, Hamad Darwish namanya. Walaupun cukup banyak jepretan yang dihasilkan dengan menggunakan Canon 20D Digital SLR (8.2MP) namun hanya beberapa photo saja yang akan dimasukan kedalam kumpulan Vista wallpaper oleh Microsoft MSX Design.

Tentu saja gambar-gambar yang sudah dibeli oleh Microsoft, sepenuhnya menjadi hak milik Microsoft, namun ternyata walapun tidak semua gambar dibeli oleh Microsoft bukan berarti photo-photo tersebut tidak bagus. Photo yang tidak dibeli oleh Microsoft pun ternyata tidak kalah bagusnya, nah mungkin anda ingin mendownloadnya untuk dijadikan koleksi wallpaper pada Windows anda?, silahkan download dari hamaddarwish.com.

Berbicara mengenai wallpaper, saya -berdasarkan urutan- menyukai bliss, Windows XP dan stonehenge, sedangkan untuk Vista Wallpaper saya belum mempunyai karena belum menggunakan OS ini, bahkan sekarang saya memilih untuk tidak menggunakan wallpaper pada desktop :D . Nah bagaimana dengan anda, wallpaper apa yang jadi favorite anda?

Keberhasilan adalah bonus dari usaha dan kerja keras anda

Link lainnya