Skip to main content

Posts

Detect If Your Device Is Connected To Wifi using Python

Have you ever wanted to see the list of devices connected to your local home network? Linux provides a cool solution to list all the devices connected to your network using arp scanning. You need to follow these simple steps:(These are for Linux) 1) Make sure you have arp-scan package installed (if not use  sudo apt-get install arp-scan  command in terminal to install the package) 2) In order to verify type  sudo arp-scan --interface=wlan0 --localnet   in terminal. You will probably see the list of devices connected to your local network using wifi. This sets our base and now we can move on to write our python script to detect particular devices and see  there status if its connected to wifi or not. NOTE: We need to know the mac address of the devices we want to track. Now Let's create a new python script and name it anything you like and paste this code  I named mine detectDeviceOnWifi.py Now run your script using  sudo python detectDeviceOnWifi.py  in
Recent posts

Eyes detection using Python and OpenCV

In my last post i've worked on detecting the face. In progress to that, i am able to detect eyes as well. Its pretty simple as of now. Here is the result Before After So as you can see it starts detecting eyes as well. I am making a little progress now but, still a lot to learn.  I am super excited to work towards my goal. * The image has been taken from google images and is used only for testing purpose.

Face Detection Using Python and OpenCV

I am currently working on face detection implementation using Python and OpenCV. Here is the result i collected using a placeholder image. Before After It detects faces pretty well. I am so excited to start working on real time face detection while capturing video. My goal is to work on face recognition and then will start working on detecting multiple types of objects.

Nasscom Game Jam Event 2014

Just came across the game i made along with my team at Nasscom Game Jam Event 2014. Here's the link to download the PC version of the game. Have a try! Download : Cave Mystery

Build Optimization Editor Tool(Android)(WIP)

Note: This version works only with Unity 5.0+ Have you faced problems when dealing with multiple audio files and changing their settings to optimize the build size. Now, with this editor script you can optimize the audio files in the assets folder by selecting only those files which needs modification. In future update you can optimize texture settings for android as well. Current Version -Audio Compression Upcoming Version -Support Texture Compression Download Plugin Here