Archive for March 2018

Show Available Network And Mac Address Using CMD

Follow these instructions if you're searching for some techniques on how to show mac addresses of available networks in your area.
 
1. Run CMD - either by typing on windows search bar or via the run program (windows key + R).

2. Type the following command below to show available networks in you area.

   - netsh wlan show network



3. Now let's reveal the BSSID of these networks.

- netsh wlan show network mode=bssid



And there it is you already have it... Enjoy exploring!
Continue Reading...


Learn Jquery Even Without Experience With Javascript


Jquery is a javascript library not a framework. It provides simplified functions that enables developers to write less codes and do more actitvities. You can jump on learning jquery even with just a little knowledge on javascript.The important key here is you know how a program works. All programming/scripting languages are the same they just differ on syntax.

Let’s start! Take a look on the sample html and jquery codes below. What it does?


When the button is clicked, it just simply changed the value of input text from “Try to change me!”  to “Hello World”.

 


What? How does it happen? Okay let’s chunk the code into pieces.
Continue Reading...