//
archives

Technology

This category contains 25 posts

Apache – Digest Authentication

Here is the second one. In order to configure Digest authentication in Apache, the server that hosts Apache should be in a Domain that provides the user access for that machine. Here again there are two steps, Create a password file Configure the server Create the password file: To create the password file we would … Continue reading

Apache – Basic Authentication

When I was searching my internal wiki I stumbled upon some useful pages that I had written. Here is the first among many that I wrote. There are two configuration steps which you must complete in order to protect a resource using basic authentication. Or three, depending on what you are trying to do. Create … Continue reading

STAF

One of my favorite Test Automation frameworks which I have used in many of my projects is STAF. Software Testing Automation Framework (STAF) is an open source, multi-platform, multi-language framework designed around the idea of reusable components, called services (such as process invocation, resource management, logging, and monitoring). The main advantage of STAF is that … Continue reading

Photoshop.com Mobile App for IPhone

First it was the big announcement of publishing Flash Application to Native IPhone application and now yet another big announcement, Photoshop mobile for IPhone. It seems that finally Adobe has found a way to keep their customers happy. Using the Photoshop.com mobile application, one can, Transform your photos with essential edits like crop, rotate and … Continue reading

Python – Find and Replace

Here is a simple python script that would help in finding and replacing text in a file using python

Flash Apps for IPhone

Probably one of the biggest announcements by Adobe @ MAX 2009 was the ability to publish Flash applications directly to native IPhone applications. This is a new and upcoming feature in Flash CS5, which would be launched in 2010. This means that Flash Developers can now directly publish their applications to native IPhone apps and … Continue reading

Python – Monitor Process CPU using WMI

The following code lets us monitor a process running in windows using the WMI package designed for Python language. I have tested the same on multiple windows boxes and the results have been mostly accurate. Enjoy

Python – WMI

I’d probably the last person in the world to brag about this, but I am fine with it. I am building a monitoring and reporting framework using Python and wanted to measure the memory and cpu utilization along with per process cpu utilization.  Thanks to Tim Golden, most of my work was reduced. You can … Continue reading

Android Programming – Link

Here is a good resource for Android programming. They have step by step guide to build some sample applications. http://www.helloandroid.com/

Symbian – TPtrC to TText* conversions

To create a TText* from a TPtrC we need to access the Ptr() function of TPtrc. Here is the sample code snippet To Create a TPtrC using a TText* is same as that of creating a TPtrC from a TBuf either using the constructor or the Set method