Skip to main content

Posts

Top 10 Songs

I made a django app recently in a weekend. Its called Top 10 Songs . It retrieves top charts from all over the internet to determine top songs for the weekend. Visit the site @ www.top10songs.co.in The app is open source and code is available at GitHub

Create Free WiFi Hotspot in Windows 7

Windows 7 has the ability to create wireless hotspots that allow you to share your pc internet connection. You don't need any other software for this.  First Enable Internet Connection Sharing on the network you want to share from network and sharing center. Internet Connection Sharing Start cmd with Admin priviledges. Run cmd with CTRL+SHIFT+ENTER Run the following command "netsh wlan set hostednetwork mode=allow ssid="techdorm" key="techd0rm" keyUsage=persistent"   #Change ssid and key to your like. You should see "Microsoft Virtual Wifi Miniport Adaptor" when goto change adapter settings in Network and sharing center. Then run the following command in cmd "netsh wlan start hostednetwork". Now you should a WiFi network with ssid you choose above be able to connect to it. To stop the network you can simply run "netsh wlan stop hostednetwork"  I used to make hotspot using Virtual Router but started to...

How to connect windows laptop wifi to android mobile

You cannot use Windows inbuild ad-hoc network to share your laptop/desktop internet connection with your android mobile through WiFi. Android will not detect your WiFi network although there are methods to do so. There are some special soft wares which makes this task a breeze like Connectify, Virtual Router etc. Virtual Router is free and open-source program that can wirelessly share any internet connection (WiFi, LAN, Cable Modem, Dial-up, Cellular, etc.) with any WiFi device (Laptop, Smart Phone, iPod Touch, iPhone, Android Phone, Zune, Net-book, wireless printer, etc.) secured using WPA2. Go to Network and Sharing Center Change Adapter Settings Right click on the connection you want to share Select Sharing tab Check the "Allow other network users to connect through this computer's internet connection" Also, select your Home networking connection Start Virtual Router and enter desired Network Name and Password Choose the connection you just shared from ...

Get IMDB Rating For Your Movies in a Folder

I have made an app that reads the names of movies from files given to it and retrieves IMDB Ratings for each. It uses awesome http://www.omdbapi.com/ API to fetch data. [caption id="attachment_201" align="aligncenter" width="733"] Folder Movie Data[/caption] It was inspired originally from http://legaloslotr.github.com/mdb/ . MDB has to be installed to work but mine version need not be installed but files have to be dragged and dropped everytime. I will try to improve it more in future using newer HTML5 features like localstorage but it will take time. Give it a go at http://pumpndump.in/fmd Also give your valuable feedback and comments. Source code will also be published soon at Git Hub

Running django on apache with mod_wsgi in Ubuntu/Linux Mint

Django comes with a built in web server that should only be used in development. Integrating django and apache is a bit messy. Apart from Django and Apache itself, libapache2-mod-wsgi is needed to run django with apache2. There are four steps involved. Creating a wsgi file that enables wsgi handler . Creating a conf file in sites-available directory of apache Enabling the site and reloading apache configuration Adding a host entry that points to localhost for the site Detailed Steps First to create a mysite.wsgi file in any directory of your choice with following code [python] import os import sys sys.path = ['/var/www/mysite'] + sys.path # change the path to project directory os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings' import django.core.handlers.wsgi.WSGIHandler() [/python] Then create mysite.conf file in /etc/apache2/sites-available directory and write following code [xml] <VirtualHost *.80> WSGIScriptAlias / /home/user/mys...

Setup connection for MDMA

MDMA is a mobile network monitoring application. It shows information such as QoS, detailed signal information. I like to use MDMA rather than Huawei dashboards. It’s lightweight and much faster than Huawei Dashboards. MDMA 1.1.0.0 requires you to have connection entry ‘ MDMA ’ by default otherwise you get an error. [caption id="attachment_95" align="aligncenter" width="470"] Cannot find phone book entry error[/caption] Setting up a connection entry for MDMA Go to Control Panel\Network and Internet\Network and Sharing Center [caption id="attachment_96" align="aligncenter" width="280"] Open Network & Sharing folder[/caption] Create a copy of existing connection. [caption id="attachment_97" align="aligncenter" width="411"] Create a copy of existing connection[/caption] Rename it to MDMA [caption id="attachment_98" align="aligncenter" width="416"] Renaming...