Sunday, March 27, 2016

Ini dia obat kurap ampuh sudah dicoba sendiri


Penyakit kurap ini penyakit sepele yang kadang diabaikan sehingga sang penderita membiarkanya selama bertahun-tahun, dampaknya daerah infeksi semakin melebar terutama di daerah selangkangan. jika anda menderita penyakit kurap jangan anggap sepele penyakit kurap ini karena anda akan menyesal ketika penyakit kurap ini meninggalkan bekas yang cukup luas di tubuh anda.

Penyakit kurap ini menular melalui sentuhan secara langsung maupun dari pakaian. Jadi hindarilah kebiasaan meminjam pakaian semisal handuk, celana, maupun baju karena penyakit ini sangat gampang menular. Untuk pencegahannya jagalah kebersihan mulai dari diri sendiri dan sekitar.

Obat untuk penyakit kurap ini bisa menggunakan obat luar berbentuk salep dan cair, namun efek rasa sakit akibat penggunaan obat luar untuk penyakit kurap ini berbeda-beda ada yang hanya terasa gatal dan ada juga yang membuat kulit serasa terbakar. Penggunaan obat kurap berbentuk salep maupun cair ini memang tergolong merepotkan dan menyiksa karena pengobatan ini harus diulang-ulang sampai sembuh.

Obat untuk penyakit kurap ini ada pula yang berbentu tablet. bukan niat beriklan tapi berdasarkan pengalaman pribadi obat ini memang paling ampuh untuk mengobati jenis penyakit kurap. Silahkan tanyakan ke apotik terdekat nama obat ini  "Mycoral" tanyakan cara meminumnya ke apoteker di Apotik yang menjual. sedangkan pengalaman saya sendiri meminum obat ini 1 hari 1 tablet selama 3 hari. dan memang saya akui langsung ada perubahan di daerah terinfeksi setelah selang beberapa hari meminum obat ini. Dan bahkan tanpa saya sadari panu yang di tubuh sekian lama juga ikut hilang dulu sering saya obati menggunakan "kalpanax" obat luar yang merepotkan.

Dalam masa pengobatan ini hindari memakan unggas baik itu telur ataupun dagingnya.

Demikian pengalaman saya selama mencari obat kurap, dulu sering mencari di google terkait obat kurap ini ternyata banyak postingan yang hanya sekedar mencari pengujung yang banyak demi uang tanpa memikirkan waktu pengunjung yang membaca artikel terkait obat kurap di website mereka dan tidak sembuh-sembuh.

Semoga cepat sembuh,

Salam  Sehat,




Friday, March 25, 2016

Kupu kupu terbesar di dunia


Jumat sore saya dikejutkan dengan penampakan kupu kupu yang sangat besar dan tidak lazim. lansung saya ambil kamera dan merekam penampakan dari kupu kupu yang sangat besar tersebut. karena saya baru pertama kali melihat penampakan kupu kupu yang begitu besar.


Silahkan dilihat video youtube dari kupu kupu  terbesar yang saya temukan.


Setelah googling kesana kemari ternyata kupu kupu yang saya temukan ini namanya kupu kupu gajah(Attacus atlas) atau dalam bahasa inggris dikenal sebagai Atlas moth dan termasuk dalam keluarga ngengat.

Ukurannya sendiri lebih besar dari telapak tangan orang dewasa, rentang sayapnya bisa mencapai 25 cm. 

Umur dari kupu kupu gajah ini ternyata sangat singkat kurang lebih 2 minggu setelah keluar dari kepompong.

Tuesday, March 22, 2016

Ketonggeng atau Whip Scorpion

 

Apa itu Ketonggeng atau Whip Scorpion?


Ketonggeng atau Whip Scorpion istilah sebenarnya untuk Ketonggeng ini adalah Whiptail Scorpion / theliphonyda. Namun lebih dikenal sebagai Whip Scorpion karena bentuknya terlihat sangat mirip seperti kalajengking. Pertama kali melihat  pasti kita akan mengira kalajengking karena warnanya yang gelap dan ada sepasang capit di kepala.  

Makanan utama makanan Ketonggeng atau Whip Scorpion adalah serangga, kaki seribu, kalajengking,jangkrik, kecoa dan cacing. 

Waktu aktif Ketonggeng atau Whip Scorpion ini yaitu pada malam hari. jika merasa dalam bahayaKetonggeng atau Whip Scorpion akan menyemprotkan cairan asam yang berbau cuka. Untuk lebih amannya hindari saja Ketonggeng atau Whip Scorpion ini meskipun menurut wikipedia Ketonggeng atau Whip Scorpion ini tidak menggigit dan tidak berbisa. tapi siapa tau ada hal lain yang berbahaya misal membawa bakteri yang berbahaya untuk kesehatan manusia.


Silahkan lihat video diatas untuk melihat seperti apakah Ketonggeng atau Whip Scorpion itu .




Monday, April 15, 2013

Perintah-perintah penting di Ubuntu

Perintah-perintah penting di Ubuntu
Clear Bash history
history -c

If you want to use colorful "ls", that is, use colors to distinguish types of files, you can add these lines in ~/.bashrc:

if [ "$TERM" != "dumb" ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
fi

Display Linux distributor's ID
lsb_release -is

Display Linux release number
lsb_release -rs

Display Linux code name
lsb_release -cs

Display machine hardware name
uname -m

List all PCI devices, such as display card and ethernet card.
lspci


Reclaim memory which stores pagecache, dentries and inodes
echo 3 > /proc/sys/vm/drop_caches


Display a list of modules in the Linux Kernel
lsmod


List USB devices
lsusb -v


Display the status of ethernet card
sudo ethtool eth0


List hardware
sudo lshw


List harddisk partitions
sudo fdisk -l


Display SATA harddisk parameters
sudo hdparm -I /dev/sda


Display disk space usage
df -h


Display file/folder space usage
du -bsh FOLDER_NAME


Display amount of free and used memory
free


Display processes
ps -e
Display a tree of processes
pstree
Display processes dynamically
top


Terminate a process with a given process id
sudo kill -9 PROCESS_ID


Terminate all processes with a given name
sudo killall PROCESS_NAME


List files which are opened by a given process
lsof -p PROCESS_ID
lsof -c PROCESS_NAME


List processes which opened a given file
lsof FILE_NAME


List processes which are using port 80
lsof -i :80


Configure an ADSL connection
sudo pppoeconf


Starts up ADSL connections
sudo pon
Shuts down ADSL connections
sudo poff


Display MAC of a given IP address
arping IP_ADDRESS


Display NetBIOS name of a given IP address
nmblookup -A IP_ADDRESS


Display IP address and MAC
ifconfig -a


Display route
netstat -rn


Set MAC of ethernet interface
sudo ifconfig eth0 hw ether 00:11:22:33:44:55


Display information of a domain name
whois example.com


Display the network path to a given host
tracepath example.com


Request an IP address from DHCP server
sudo dhclient


Temporarily restart an init script
sudo /etc/init.d/SCRIPT_NAME restart
Temporarily stop an init script
sudo /etc/init.d/SCRIPT_NAME stop


Add a user
sudo adduser USER_NANE
Delete a user
sudo deluser USER_NAME


Change user password
sudo passwd USER_NAME


Changes user fullname, office number, office extension, and home phone number information.
sudo chfn USER_NAME
Display user information
finger USER_NAME


Temporarily prevent a user from logging in
sudo usermod -L USER_NAME
Revoke the operation above
sudo usermod -U USER_NAME


Add a user to admin group
sudo usermod -G admin -a USER_NAME


Set the HTTP proxy
export http_proxy=http://PROXY.DOMAIN.NAME:PORT


Modify the information displayed after logging in
sudo vim /etc/motd.tail


Choose the input method for X Window
im-switch -c


Convert the file name from GBK to UTF8
convmv -r -f gbk -t utf8 --notest FILE_NAME


Convert the file content from GBK to UTF8
iconv -f gbk -t utf8 FILE_NAME


Convert tags in '*.mp3' from GBK to UTF8
find . -name '*.mp3' -execdir mid3iconv -e GBK {} \;


Read a long file
less FILE_NAME


Print lines matching a pattern
grep REG_EXP FILE_NAME


Display a list of file name. The files contain a given string.
grep -lr REG_EXP PATHNAME


Display all '.txt' file
find . -name '*.txt'


Create two empty files
touch file_name_1 file_name_2


Create directory. Create parent directories as needed.
mkdir -p /tmp/a/b/c/d/e


Change working directory to the home folder
cd
Change working directory to the previous working directory
cd -


Display hidden files
ls -a


Copy directory. Preserve links, file mode, ownership, timestamps.
cp -a SOURCE_DIRECTORY DEST_DIRECTORY


Determine file type
file FILE_NAME


Output the last 6 lines
tail -n 6 FILE_NAME


Copy files via SSH
scp -rp FILE_NAME USERNAME@HOST:DEST_PATH


Rename '*.rm' files to '*.rmvb' files
rename 's/.rm$/.rmvb/' *


Change the file name to lowercase
rename 'tr/A-Z/a-z/' *


Display subdirectories in current directory
ls -d */.


Display file number in current directory
ls . | wc -w


Extract "*.gz" file
gunzip FILE_NAME.gz
Extract "*.tar.gz" file
tar zxf FILE_NAME.tar.gz
Extract "*.tar.bz2" file
tar jxf FILE_NAME.tar.bz2


Do compression
tar czf FILE_NAME.tar.gz FILE1 FILE2 FILE3
tar cjf FILE_NAME.tar.bz2 FILE1 FILE2 FILE3


Displays a calendar
cal
cal MONTH YEAR


Set the date and time via NTP
sudo ntpdate ntp.ubuntu.com


Poweroff your computer
sudo halt
sudo shutdown -h now
Poweroff your computer in 23:00
sudo shutdown -h 23:00
Poweroff your computer after 60 minutes
sudo shutdown -h +60


Reboot your computer
sudo reboot
sudo shutdown -r now


If you want some program to start up automatically, please put '.desktop' files into '~/.config/autostart'


You can configure "preferred applications" by this file "~/.local/share/applications/mimeapps.list"


Continuously monitor the memory usage
watch -d free


Display HTTP HEAD response
w3m -dump_head http://example.com


Display file content with line number
nl FILE_NAME


Eliminate Rootkit
sudo rkhunter --checkall


Change hostname
sudo hostname new_name


"Tasksel" group software packages into "task"s. You can select a "task" and then install all necessary software packages. It is easy to set up LAMP servers or cloud computing servers.
Show all tasks
tasksel --list
Display the extended description of a task
tasksel --task-desc lamp-server
List the packages which are parts of a task
tasksel --task-packages lamp-server
Install/remove a task
gksudo tasksel


Change Process priority
renice NEW_PRIORITY `pgrep NAME_OF_PROCESS`
example: renice 5 `pgrep firefox`
renice -5 `pgrep wine-server`
high <------------------> low
NEW_PRIORITY = -19, -18, -17 [...] 18, 19, 20


~/.thumbnails/ directory is a cache dir GNOME makes when you browse through your folders in nautilus.
It contains thumbnail pictures of picture files you've previously looked at.

You can get its total size by
du -bs ~/.thumbnails/

You can delete the files in the .thumbnails directory that haven't been accessed for seven days, to free disk space.
find ~/.thumbnails/ -type f -atime +7 -exec rm {} \;


Capture screen after 10 seconds
gnome-screenshot -d 10
Capture current window after 10 seconds
gnome-screenshot -wd 10


Start GConf editor:
Press Alt+F2, type 'gconf-editor'.

Set apt source
sudo software-properties-gtk
sudo software-properties-kde

Display the packages which are not installed but have remained residual config
dpkg -l | awk '/^rc/ {print $2}'


Add a PPA repository:
sudo add-apt-repository ppa:PPA-REPOSITORY-NAME


Display a list of files. The files are installed from a given package.
dpkg -L PACKAGE_NAME


Display a list of packages. The packages installed a given file.
dpkg -S FILE_NAME


Display a list of packages. The name of packages matches given regex pattern.
apt-cache search REG_EXPRESSION


Display a list of packages. The packages provide a given file.
apt-file search FILE_NAME


Display a list of packages. The given package depends on the list of packages.
apt-cache depends PACKAGE_NAME


Display a list of packages. These packages depend on the given package.
apt-cache rdepends PACKAGE_NAME


Prompt for a disk to be inserted and then add the disc to the source list.
sudo apt-cdrom add


Install the newest versions of all packages currently installed on the system.
sudo apt-get upgrade


Delete residual package configuration files.
dpkg -l | grep ^rc | awk '{print $2}' | sudo xargs dpkg -P


Automatically install necessary files for './configure ; make ; make install'
sudo auto-apt run ./configure


Save the list of packages currently installed on your system.
dpkg --get-selections | grep -v deinstall > SOME_FILE
Then use the file to restore packages.
dpkg --set-selections < SOME_FILE ; sudo dselect


After running "sudo apt-get install", "*.deb" files are stored in "/var/cache/apt/archives"
You can clean this directory by:
sudo apt-get clean


Display URL for a given package
apt-get -qq --print-uris install PACKAGE_NAME


Display some statistics about the apt cache
apt-cache stats


Display all package name
apt-cache pkgnames


Display some information of a given package
apt-cache show PACKAGE_NAME

Tuesday, September 4, 2012

Toke Menyerupai Daun Kering (Uroplatus phantasticus)

Toke siluman berekor daun (Uroplatus phantasticus)
Hewan ini terlihat lebih mirip daun kering yang telah rontok, sehingga jarang terlihat oleh pemangsa. Ia ditemukan hanya di Madagaskar, dimana ia tinggal dalam hutan bersama reptil-reptil fantastis lainnya. Ia termasuk pemakan serangga dengan penampilan yang menakutkan tetapi tidak berbahaya bagi manusia. Sayangnya, spesies yang luar biasa ini terancam punah karena banyak diburu oleh penduduk dan merusak habitat 















Thursday, March 18, 2010

CD dangDut membawa Petaka








Cerita ini berdasarkan kisah nyata.. (hohoho lebay) alkisah ada seorang anak yang sedang asik asiknya punya laptop baru(baru beli second) mereknya axioo (merek samaran)..
nah apa hubungannya dangdut ma laptop baru...? biar gak lama lama ceritanya.. saia percepat 1 hari (coz ceritanya panjang).. 
okeh kita lanjut lagi..



posisi tidur dah siap tinggal merem tiba tiba ada suara musik Armada Band-mau dibawa kemana (bawa kelaut) eh alah ternyata hp ku yang bunyi .. ssstt ada panggilan masuk. (ternyata ponakan sendiri).

bla bla bla intinya dia nanya kenapa laptopnya gak bisa masuk ke windows dan pesannya file ntldr missing. (okeh anterin besok pagi kerumah.. lengkap ma cd drivernya.. !!).

Taukah anda apa file ntldr itu?

Ntldr adalah file system yang ada  windows 2000 atau windows Xp ,yang berfungsi sebagai penghubung antara MBR (Master Boot Record) dan System Operasi agar System bisa booting,atau kalau di windows 98 seperti command.com
 
jreng jreng jreng.. udah pagi... laptop udah dateng..tanpa berpikir panjang langsung hajar ambil cd windows  xp (install ulang) hehehehe
jreng jreng jreng  instal ulang selesai langsung ambil cd driver..

eits ternyata ada 3 cd tak berlabel. (yang mana ya..?)
karena bingung mo milih yang mana langsung ambil yang warna kuning.. 

 
nah masalah muncul disini... 
pas cdnya dimasukkan tiba tiba muncul command prompt seperti gambar berikut:


kemudian muncul teks dibawah ini

PATRIOT CD of the warriors
System is now repaired.
Windows will reboot the system.
Finish Repair System


kemudian komputer restart dengan sendirinya..  dan muncul file ntldr missing. dan komputer tidak bisa masuk kewindows...

kecurigaanku langsung menuju ke cd kuning(ini dia penyebabnya..)
pasti ada script jahat yang numpang di autorun kemudian langsung menghapus file ntldrnya...
tanpa pikir panjang.. langsung pake komputer ICT. biar kejadiannya gak terulang(file ntldrnya ilang)... sebelum cd kuning tadi di masukkan, ku matikan dulu autorunnya.

nah karena autorunnya udan mati langsung pencet tombol cdrom, cd dimasukkan sambil berdoa.. (semoga tadi dah bener matiin autorunnya... ) ah.. ternyata gak muncul command prompt seperti yang tadi.. berarti autorun dah gak jalan..  okeh..

selanjutnyalangsung ngintip isi CD yang warna kuning tadi (eits jangan negatif yah)..
oh ya ada yang ketinggalan  klo mo ngintip yang gak keliatan masuk ke folder option trus aktifin show hidden files and folders.

pas liat isi ternyata DANGDUTAN semua.. cihuy.. goyangannya... mantab abis... ada 15 klip cuy...



eits eits eits kembali.. ke lap....top[ala tukul].


intinya ada empat file yang mencurigakan : autorun.inf,Auto.cmd,shutdown.exe dan dekstop.ini
yang pertama  saya buka file autorun.inf pake notepad ternyata isinya :
[autorun]
open=Auto.cmd
icon=shutdown.exe,0



ternyata file autorun tadi menjalan kan file Auto.cmd.(nah dah ketemu skript jahatnya.. )
tanpa basa basi langsung liat isi file auto.cmd pake notepad..

[mohon maaf isi perintahnya tidak bisa saya tampilkan disini.. karena takut disalah gunakan]

klo pengen tau.. ntar ketemuan ajah.. hohoho

biar gak penasaran..intinya isi program tadi melakukan perintah berikut
  1. menambahkan perintah berikut di registry HKLM\SOFTWARE\Classes\exefile\shell\open\Command /ve /d %%fe340ead%%  /f (gak tau maksudnya..).
  2. menghapus file C:\ntldr 
  3. memformat drive D
  4. memformat drive E
  5. memformat drive F
  6. menghapus C:\command.com
  7.  menghapus io.sys
  8. menghapus config.sys

    busyet berarti laptop tadi datanya ilang semua dunk.. (dah tau nanya..). karena sudah tau nasib laptop tadi..nginstal lagi deh dari awal.. (ampe bosen nginstal trus).... dan  ternyata cd drivernya warnanya putih cuy... hohoho..

    pesan buat temen temen semuanya.. hati hati kalau masukin cd apapun ke komputer kita.. karena taruhannya data kita hilang semua..(bisa nangis darah)

    semoga bermanfaat.... istirahat dulu ah...