Category Archives: Programming

50 Excellent Ajax and JQuery Demos

9lessons has an excellent post/tutorial on using Ajax and Jquery to make you website come alive. In these demos I had explained about jquery connectivity with MySQL database, Ajax implementation with PHP and Animation addons to your web pages. I … Continue reading

Posted in Ajax, JQuery, PHP, Programming | Leave a comment

Barcode Scanner Written For Android Phones in Just 6 Lines of Code

Here’s a barcode scanner written in six lines of Python code using the Google released the Android Scripting Environment (ASE): import android droid = android.Android() code = droid.scanBarcode() isbn = int(code[‘result’][‘SCAN_RESULT’]) url = “http://books.google.com?q=%d” % isbn droid.startActivity(‘android.intent.action.VIEW’, url) This is … Continue reading

Posted in Android, Programming, Python | Leave a comment

Google Code University

Have you ever wanted to learn how to program?  Ever wanted to learn how program for free?  Have you ever wanted to learn how to program from worlds largest on-line search provider?  Well now you can! Google Code University is … Continue reading

Posted in Awesome, How To, Internet, Programming, Technical | Leave a comment

Trace Watch iPhone Plugin (TWiPP)

Click here for the *UPDATED VERSION* Ever since I have configured my website to use Google Analytics I have become a bit of a statistics nut.  I find myself checking every free moment I get and while I don’t get a … Continue reading

Posted in Mobile, Programming, Trace Watch, iPhone | Leave a comment

Remote Process Kill via WMI. A Replacement to rkill.exe/wrkill.exe

In the past I have use an application from the Windows 2000 Resource Kit called rkill.exe and its GUI counter part called wrkill.exe to remotely kill processes.  But lately I find that it is more and more unreliable and I … Continue reading

Posted in AutoIT, Programming, Technical | Leave a comment

Set Windows Applications to Always Be On Top

Here is an application that I wrote that will allow you to select a running application and keep the windows running on top of all of the other applications.   This has been tested on Windows XP/2003/7.  I assume that … Continue reading

Posted in Ajax, Applications | Leave a comment