Nice Translator is the fast, easy to use online translator designed with simplicity in mind...
fuhhh site ini banyak membantu aku .aku punye BI kan hancur berkecai so sbg solutionnye site nielah yg menjadi cikgu ku...kt sinilah aku akan mentranslatekn ayat2 dalam english to malay or sebaliknya..bahasa spain pon aku bole.ahhaaha
juz Add a translator..
select the language (malay) n press done..
then start typing and add translators . Nice Translator will do the restjom
Adakah anda pernah berada dalam situasi di mana facebook atau youtube umpamanya diblock.Di kolej atau di tempat kerja amnya situasi ini sering berlaku.Mase aku kt Kismec byk gak sites kena block.Dari domain ke file sampaila ke content filtering..
Sebagai solutionnya aku menggunakan Ultrasurf dan Freegate. mudah dan cepat..
Banyak solution lain yg boleh digunakan antaranya use proxy service site cam hidemyass.com, can’t bust me, or anonr.com....proxy terbaik yg pernah aku jumpa 4jeh.com
Boot from USB Drive, Mudah dipasang, saiz kecil dan look and feel is just tremendous. SLAX adalah sebuah bootable USB Linux yg mana memungkinkan aku untuk kemana aku pergi.Aku juga boleh menjalankan USB-borne Linux daripada sebarang komputer yang akan membolehkan aku untuk boot ke USB, langsung memberikan sebuah sistem operasi lengkap yang merangkumi semua yang aku butuhkan termasuk aplikasi, email, dan fail-fail peribadi.mmm seperti Linux yg lain SLAX juga amat penting bagiku disaat windows corrupt or error.haaaha.selamat fail aku sempat copy.its so simple and fast.
dapatkan SLAX disini..
get Slax and muat turun Slax For USB(TAR)
selepas itu extract file (7-zip) ke dalam pen drive.
2folder iaitu BOOT dan SLAX.
click folder BOOT pastu click bootinst(follow the instructions).
reboot and boot from usb.
Install windows xp mungkin melecehkan.Bayangkan dalam 1hari 3 4 pc.Lama lama naik jemu gak tunggu benda yg sama jew..
Jom extreme hack install xp in 10 mintues... 1.install seperti biasa boot from cdrom.. 2. bila copy part is over..system akan reboot.selepas reboot screen biru akan muncul. 3.tekan shift+f10..pas2 akan muncul command prompt.now tpe taskmgr (task manager akan muncul). 4.Goto Processes and find "setup.exe" right click on it and set the priority to highest. 5.Now wait n see (depends to system)
misalnya aku seorang juruteknik, menutup semua pc dalam makmal komputer mungkin melecehkan.Selalunya satu persatu pc dishut down dalam makmal.Bayangkan ada 100 misalnya or lebih.So mungkin kaedah menShut Down semua pc secara automatik adalah kaedah yg boleh diterima pakai... jom cmd
goto START >RUN - taip "CMD"
taipkan arahan > at 17:25 /every:m,t,w,th,f,s,su shutdown -f -s -c "Komputer Shut Down" -pada jam 5.25ptg setiap hari isnin, selasa, rabu,khamis, jumaat, sabtu, ahad pc akan ditutup dan semua aplikasi ditutup dengan mesej komputer shut down-
untuk info arahan ini taip at \\namakomputer
untuk membuang task ini taip at \\namakomputer nomborID /delete
Pertama-tama Linux cmd are sentsitive case misalnya 'A' xsama dgn 'a'.
Basic cmd you must know
- pwd - Prints out on the screen the working directory (eg /etc/ssh)
- cd - changes directory (eg cd .. - goes up one dir; cd etc - enters /etc dir)
- ls - lists the content of the directory
- mkdir - creates a new directory (mkdir dir_name)
- touch - creates a new file (touch file_name)
- rmdir - removes a directory (rmdir dir_name)
- cp - copies a file/directory (cp source_file destination_file)
- mv - moves a file/directory - also used for renaming a file or directory
(mv old_location new_location or mv old_name new_name)
- rm - removes files (rm file_name)
To search a file, you can use
- find (used for filenames)
- grep
To view a file, you can use
- more - will display a file page by page
- cat - displays all the file
- head - displays the first lines
- tail - displays the last lines (useful for example when you want to view the last information logged in a file by the system for example)
To edit a file you must use a built-in editor from the command-line. Generally, this is vi and it's used with the syntax vi .
To uncompress an archive (usually tar.gz) you must use the tar command with the syntax tar -xvzf .
To print a file, use lpr command. Note that you must have some daemons up and running to manage the printer. Usually this is cups (Common UNIX Printing System) that comes with all major distributions.
To remove a file from printer queue (you can list the queue with lpq command) you can use lprm .
To mount/unmount (add in your file system as accessible media) use:
- mount /mnt/floppy - to mount floppies
- umount /mnt/floppy - to unmount floppie
- mount /mnt/cdrom - to mount CD-ROMs
- mount /mnt/cdrom - to unmount CD-ROMs
They usually mount automatically, but you could end-up in the situation where you must do it manually.
To mount a partition:
First create a directory in /mnt (mkdir /mnt/my_new_drive) then use the mount command (mount /dev/source /mnt/my_new_drive) where /dev/source is the device (partition) you want to mount in your file system.
If you want to connect to a remote host, use the ssh command. The syntax is ssh .
System management:
- ps - shows the current processes running (useful: ps -A shows up all processes)
In the list obtained by using ps command you will see a PID number (Process identification).
This number is required to stop a service or application. Use kill to stop a task.
- top - works somehow like the Task manager in Windows. It shows up the system resources, the processes running, average load, etc. Useful is top
-d - sets up the refresh period. You can put any value from .1 (10 ms) to 100 (100 seconds) or even greater.
- uptime will display the system's uptime and the load average for that moment, 5 minutes and 15 minutes in the past.
Usually, the load average is calculated as the percent of system resources (processor, RAM, harddisk I/O, network load) used at that moment. 0.37 means that 37% was used. A greater value like 2.35 means that the system had to que some data because it should be 235% faster to compute all without problems. Anyhow, this can be different from distribution to distribution.
- free - will display information on system's memory
- ifconfig - view detailed information about your network interfaces; generally your ethernet network interface will be named eth0. You can also set up the network settings like IP address or so by using this command (see man ifconfig). If something goes wrong, you can also stop/start the interface by using ifconfig up/down
- passwd - enables you to change your password (passwd own_user or others if you are logged in as root)
- useradd - enables to add a new user (see man useradd)
Anywhere you are, you cand use the TAB key to autocomplete a filename or command. This will be usefull when getting used to the commands available. You can also hit up arrow and down arrow to scroll through the history of the commands you entered.
You can also use multiple command on one line. Let's say you want to create 3 directories at once. The syntax is mkdir dir1 ; mkdir dir2 ; mkdir dir3.
Another useful thing is the pipe command. You can get a command output through another. Eg: man mkdir | tail will display the last lines in the manual pages of the mkdir command.
If at anytime you are asked for the root account (the super-administrator of the system) you can login in temporary with it by using the su command. You should also include -l (su -l) parameter to switch the home folder and available commands too. Note that you will be prompted for a password too.
Service : SAMBA Install :#yum-y install samba (if there is NO smb in fedora packages)
.............#rpm-ivh(if there is smb in fedora packages)
Check Status : #rpm-q samba
Up service :#/sbin/service smb status-check status .....................#/sbin/service smb start-start status .....................#/sbin/service smb restart -restart status .....................#/sbin/service smb stop- stop status
Configuration File : vim /etc/samba/smb.conf
Parameter : security=share | user| server .................................(security=share; no need smbpassword)
Dalam aku mengorek langkah kedepan mungkin aku akan terlalai dan terbuai oleh dunia.
Ilaa hilaastu lil Firdausi ahla, walaa aqwaa ‘alaa Naaril Jahiimi. Allah, fahablii taubatan waghfir dzunuubii, fainnaka Ghafirun dzambil ‘adziimi Tuhanku aku tidak layak untuk sorgaMu tetapi aku tidak pula sanggup menanggung seksa nerakaMu dari itu kurniakanlah ampunan kepadaku ampunkanlah dosaku sesungguhnye Engkaulah pengampun dosa-dosa besar...
Menurut tafsir Hanafi, barang siapa hafal tujuh kalimat, ia terpandang mulia di sisi Allah dan Malaikat serta diampuni dosa-dosanya walau sebanyak buih-buih laut.
1. Mengucap Bismillah pada tiap-tiap hendak melakukan sesuatu.
2. Mengucap Alhamdulillah pada tiap-tiap selesai melakukan sesuatu.
3. Mengucap Astagfirullah jika lidah terselip perkataan yang tidak patut
4. Mengucap Insya Allah jika merencanakan berbuat sesuatu di hari esok.
5. Mengucap La haula wala kuwwata illa billah jika menghadapi sesuatu tak disukai dan tak diingini.
6. Mengucap inna lillahi wa inna ilaihi rajiun jika menghadapi dan menerima musibah.
7. Mengucap La ilaha illa Allah Muhammad Rasulullah sepanjang siang malam sehingga tak terpisah dari lidahnya.
Mudah-mudahan ingat, walau lambat-lambat mudah-mudahan selalu,walau sambil lalu mudah-mudahan jadi bisa, kerana sudah biasa.
Selalunya aku mendownload cite or lagu atau papepon pkai IDM, youtube downloader dan browser pilihan aku xlen xbkn mozilla firefox..so xde masalah tok aku mendownload sesuatu.Tetapi satu malam nie aku ubah selera gatal tangan nk pkai browser chrome hahaha.Terlintas dpikiran mao donload video tanpa software gmana. Buhsan ape lagi tgk youtube la..Spider mungkinkah terjadi pilihan aku da lame xusha band nie.Ape lagi download jela...IDM?youtube downloader?xkot.
Apa kena buat? set ip address set router buat routing
Apa Yang Kne Ada? cisco router DCE cable Console Cable – untuk device sama ( PC ke PC) Straight Cable – untuk device x sama (PC ke Router)
benda yang perlu dfikir …. Topology/network design configure router
client = .100 gw = .1 s0 = .1 s1 = .2
Jom Configure.. -Start -Accessories -Communication -Hyper Terminal -put name and icon -change bit per second to 9600 -off and on Cisco router -Loading and type no to choose option. -follow the command and refer the topology.
Apa itu protocol ? – peraturan, standard Cisco router – EGP, OSPF, RGP, IGRP and other(xsempat study detail lg)………………….
UTP cable – maxima long – 100 meter - 4 pair,8 wire.1,2,3,6 wire for sent data. but can use for 2 pc. - Pintalan dalam wayar berbeza-beza utk pengaruhi medan magnet wayar.
Why minta 10 mb tp bila connect kelajuan tak capai 10 mb sepenuhnya. Data loss – data collection, signal destruction
Clockrate – use depend yourself – try one by one..
100 mbps – belum tentu paling laju – kalau data jam, transmission akn lambat.. Visual Route 2008 –tool for tress router.. ______________________________________________________________
What is router? -device yg menghubungkan 2 network segment yg berbeza untuk berkomunikasi.
How its work? -routing and forwarding -router extract paket yg diterima kepada destinasinya. -pilih laluan terbaik dan forward paket tersebut disepanjang laluan yg dah dipilih.
Router – simpang Path – jalan Host – rumah/destinasi
What the important things to configure router? -design network topology -know interface and IP
Cisco Router
Version – CCNA - FREEZCO
Use – fastEtharnet(f/e) - Ethernet (E)
Coding for configure Cisco router CCNA
Router>enable Router#config terminal Enter configuration commands, one per line. End with CNTL/Z.
*********** Start Setup Serial 0/0 Interface with DCE connection *************
Utk configure serial ajeLAB_A(config)#interface Serial 0/0 LAB_A(config-if)#ip addr 10.2.2.1 255.255.255.0 LAB_A(config-if)#clockrate 64000 LAB_A(config-if)#no shutdown LAB_A(config-if)# 00:08:29: %LINK-3-UPDOWN: Interface Serial0/0, changed state to up 00:08:30: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0/0, changed state to up LAB_A(config-if)#exit LAB_A(config)#exit LAB_A#
*********** End Setup Serial 0/0 Interface with DCE connection *************
*********** Check Interface *************
LAB_A#show interfaces summary
*: interface is up IHQ: pkts in input hold queue IQD: pkts dropped from input queue OHQ: pkts in output hold queue OQD: pkts dropped from output queue RXBS: rx rate (bits/sec) RXPS: rx rate (pkts/sec) TXBS: tx rate (bits/sec) TXPS: tx rate (pkts/sec) TRTL: throttle count
*********** Start Setup Fast Ethernet l 0/0 Interface *************
LAB_A#config terminal Enter configuration commands, one per line. End with CNTL/Z. LAB_A(config)#interface fastethernet 0/0 LAB_A(config-if)#ip addr 10.1.1.1 255.255.255.0 LAB_A(config-if)#no shutdown LAB_A(config-if)# 00:16:14: %LINK-3-UPDOWN: Interface FastEthernet0/0, changed state to up LAB_A(config-if)#exit LAB_A(config)#exit LAB_A#
*********** END Setup Fast Ethernet l 0/0 Interface *************
*********** Check Interface *************
LAB_A#show interfaces summary
*: interface is up IHQ: pkts in input hold queue IQD: pkts dropped from input queue OHQ: pkts in output hold queue OQD: pkts dropped from output queue RXBS: rx rate (bits/sec) RXPS: rx rate (pkts/sec) TXBS: tx rate (bits/sec) TXPS: tx rate (pkts/sec) TRTL: throttle count
********************************************************************** FastEthernet0/0 did Not UP yet because of Another Router did Setup yet **********************************************************************
*********** Check Interface fast Ethernet 0/0 Detail *************
LAB_A#sh int fast 0/0
FastEthernet0/0 is up, line protocol is down Hardware is AmdFE, address is 000d.28ef.bac0 (bia 000d.28ef.bac0) Internet address is 10.1.1.1/24 MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec, reliability 255/255, txload 1/255, rxload 1/255 Encapsulation ARPA, loopback not set Keepalive set (10 sec) Auto-duplex, Auto Speed, 100BaseTX/FX ARP type: ARPA, ARP Timeout 04:00:00 Last input 00:23:34, output 00:00:04, output hang never Last clearing of "show interface" counters never Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0 Queueing strategy: fifo
********************************************************************** Let setup FastEthernet0/1 at LAB_B router ********************************************************************** LAB_B(config)#int fast 0/1 LAB_B(config-if)#ip addr 10.1.1.2 255.255.255.0 LAB_B(config-if)#no shutdown LAB_B(config-if)# 00:29:54: %LINK-3-UPDOWN: Interface FastEthernet0/1, changed state to up 00:29:56: %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up LAB_B(config-if)#
*********** End Of setup FastEthernet0/1 At LAB_B router *************
LAB_A#sh int sum
*: interface is up IHQ: pkts in input hold queue IQD: pkts dropped from input queue OHQ: pkts in output hold queue OQD: pkts dropped from output queue RXBS: rx rate (bits/sec) RXPS: rx rate (pkts/sec) TXBS: tx rate (bits/sec) TXPS: tx rate (pkts/sec) TRTL: throttle count
*********** Start Setup routing protocol using RIP ****************
Mencari sesuatu fail amat melecehkan bagi aku..lagi2 aku nie jenis berselerak hahaha dan tak suka kemas. fail yang lama or lagu mungkin merumitkan aku untuk mencari..Sambil mengisi masa lapang aku tertarik dengan satu software review nie kt freeware genius.Everything banyak membantu aku dalam mencari sesuatu selain cepat, mudah dan ringan.
Everything so simple, ringan dan pantas.Download and just install(follow the instruction) click here to download
Right click on your dekstop dan pilih NEW>>Shortcut. In the box that says "Type the location of the shortcut".Isikan dengan shutdown -s -t 3600. dan click next.3600saat=60saat*60minit. Dengan kata lain pc akan shutdown selepas 1jam.
Untuk membatalkan atau to abort create another shortcut and type shutdown -a and click next. Untuk mengubah icon right click=>properities=>change icon=>browse
another trick mmmm maybe lagi simple kot click RUN taip at 10.30 shutdown -s (set shutdown pada jam 10.30) and to abort just type shutdown -a
Jom chat with ur friend dengan menggunakan command prompt, tanpa perlu kelibat yahoo messenger or sebagainya.But you need your friend IP address .
Fisrtly open the notepad and type :
@echo off
:A
Cls
echo MESSENGER
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A
Now save this command as "Messenger.bat"(pape name.bat).
Now click "Messenger.bat"
enter the ip and start chatting
**one more thing in xp and onwards Messenger service are default.so you must enable its...
1.click on run taip services.msc dan tekan ok.
2.services is opened..cari Messenger dan right click and pergi ke properties dan enablekan(automatic)
Apa itu fiber optik? Fiber optik adalah sebuah kaca murni yang panjang dan tipis serta berdiameter sebesar rambut manusia. Dan dalam pengunaannya beberapa fiber optik dijadikan satu dalam sebuah tempat yang dinamakan kabel optik dan digunakan untuk mengantarkan data digital yang berupa sinar dalam jarak yang sangat jauh.Core adalah kaca tipis yang merupakan bagian inti dari fiber optik yang dimana pengiriman sinar dilakukan. Cladding adalah materi yang mengelilingi inti yang berfungsi memantulkan sinar kembali ke dalam inti(core). Buffer Coating adalah plastic pelapis yang melindungi fiber dari kerosakan.
*outdoor vs indoor *singlemode(Mempunyai inti yang lebih besar(berdiameter 0.0025 inch atau 62.5 micron) dan berfungsi mengirimkan sinar laser inframerah (panjang gelombang 850-1300 nanometer) *multimode(Mempunyai inti yang kecil (berdiameter 0.00035 inch atau 9 micron) dan berfungsi mengirimkan sinar laser inframerah (panjang gelombang 1300-1550 nanometer)
*connecter type *ammor/not
ST=simply twist SE=simply click
Cabling (utp/stp copper) white orange orange white green blue white blue green white brown brown
Dari luar pintu terdengar seorang yang berseru mengucapkan salam. 'Bolehkah saya masuk?' tanyanya. Tapi Fatimah tidak mengizinkannya masuk, 'Maafkanlah, ayahku sedang demam', kata Fatimah yang membalikkan badan dan menutup pintu.
Kemudian ia kembali menemani ayahnya yang ternyata sudah membuka mata dan bertanya pada Fatimah, 'Siapakah itu wahai anakku?' 'Tak tahulah ayahku, orang sepertinya baru sekali ini aku melihatnya,' tutur Fatimah lembut. Lalu, Rasulullah menatap puterinya itu dengan pandangan yang menggetarkan.
Seolah-olah bahagian demi! bahagian wajah anaknya itu hendak dikenang.
'Ketahuilah, dialah yang menghapuskan kenikmatan sementara, dialah yang memisahkan pertemuan di dunia. Dialah malaikatul maut,' kata Rasulullah, Fatimah pun menahan ledakkan tangisnya. Malaikat maut datang menghampiri, tapi Rasulullah menanyakan kenapa Jibril tidak ikut sama menyertainya.
Kemudian dipanggilah Jibril yang sebelumnya sudah bersiap di atas langit dunia menyambut ruh kekasih Allah dan penghulu dunia ini.
'Jibril, jelaskan apa hakku nanti di hadapan Allah?', tanya Rasululllah dengan suara yang amat lemah. 'Pintu-pintu langit telah terbuka, para malaikat telah menanti ruhmu. 'Semua syurga terbuka lebar menanti kedatanganmu,' kata Jibril. Tapi itu ternyata tidak membuatkan Rasulullah lega, matanya masih penuh kecemasan. 'Engkau tidak senang mendengar khabar ini?', tanya Jibril lagi. 'Khabarkan kepadaku bagaimana nasib umatku kelak?' 'Jangan khawatir, wahai Rasul ! Allah, aku pernah mendengar Allah berfirman kepadaku: 'Kuharamkan syurga bagi siapa saja, kecuali umat Muhammad telah berada di dalamnya,' kata Jibril. Detik-detik semakin dekat, saatnya Izrail melakukan tugas. Perlahan ruh Rasulullah ditarik.
Nampak seluruh tubuh Rasulullah bersimbah peluh, urat-urat lehernya menegang. 'Jibril, betapa sakit sakaratul maut ini.' Perlahan Rasulullah mengaduh. Fatimah terpejam, Ali yang disampingnya menunduk semakin dalam dan Jibril memalingkan muka.
'Jijikkah kau melihatku, hingga kau palingkan wajahmu Jibril?' Tanya Rasulullah pada Malaikat pengantar wahyu itu. 'Siapakah yang sanggup, melihat kekasih Allah direnggut ajal,' kata Jibril. Sebentar kemudian terdengar Rasulullah mengaduh, karena sakit yang tidak tertahankan lagi.
'Ya Allah, dahsyat nian maut ini, timpakan saja semua siksa maut ini kepadaku, jangan pada umatku.' Badan Rasulullah mulai dingin, kaki dan dadanya sudah tidak bergerak lagi. Bibirnya bergetar seakan hendak membisikkan sesuatu, ! Ali segera mendekatkan telinganya. 'Uushiikum bis shalati, wa maa malakat aimanuku' 'peliharalah shalat dan peliharalah orang-orang lemah di antaramu.'
Diluar pintu tangis mulai terdengar bersahutan, sahabat saling berpelukan. Fatimah menutupkan tangan di wajahnya, dan Ali kembali mendekatkan telinganya ke bibir Rasulullah yang mulai kebiruan.
'Ummatii,ummatii,ummatiii?' - 'Umatku, umatku, umatku' Dan, berakhirlah hidup manusia mulia yang memberi sinaran itu. Kini, mampukah kita mencintai sepertinya? Allahumma sholli 'ala Muhammad wa baarik wa salim 'alaihi
Dangerous searching techniques perumpamaan yang boleh diungkat.
let's say you want to search "FifaManager2010" go to the site "www.google.com". now type "FifaManager2010" selepas itu sambungkan dengan "rapidshare.com/files" "FifaManager2010 rapidshare.com/files" and now click search and see the result...hahahha
If you want to search "surat rasmi" filetype .doc "surat rasmi" site gov.my
untuk mencari crack for software dengan google sebelum name product yg dicari tambah dengan perkataan "THE" dan selepas nama product tambah dengan "94fbr".. so jd camni the microsoft office 2007 "94fbr"
What Is IP address? *rule to communicate (language) -network equip(network card) -media(fiber optik) - Protocal *broadcast vs mutlicast (all receievd) (limited)
What Are Classes? *how 2 secure using broadcast? -ip address
Class A addresses begin with 0xxx, or 1 to 126 decimal.
Class B addresses begin with 10xx, or 128 to 191 decimal.
Class C addresses begin with 110x, or 192 to 223 decimal.
Class D addresses begin with 1110, or 224 to 239 decimal.
Class E addresses begin with 1111, or 240 to 254 decimal.
e.g
Default subnet masks:
Class A - 255.0.0.0 - 11111111.00000000.00000000.00000000
Class B - 255.255.0.0 - 11111111.11111111.00000000.00000000
Class C - 255.255.255.0 - 11111111.11111111.11111111.00000000