Tuesday, December 07, 2010

Some Technologies 20101206

Aegis SCM System: http://aegis.sourceforge.net
Perforce: http://www.perforce.com

Monday, November 08, 2010

Wednesday, November 03, 2010

TestPartner (Yet Another GUI Test Tool)

Another GUI Test Tool To Consider

TestPartner (from Wikipedia)

TestPartner (off of microfocus)

Monday, November 01, 2010

Git Hosting Services

Locate Utility On GNU/Linux Systems

Build the database necessary for the "locate" utility:

updatedb &


Monday, October 11, 2010

Tuesday, August 31, 2010

Python (finally)

What the heck, I might as well learn Python (finally...)
Python docs here.

Because my current gig (@ROK) utilizes it, might as well. Also, from a support standpoint, it doesn't hurt that a bunch of GOOG meisters use it either.

Glanced at Ruby off and on, but Python (finally) seems more pragmatic for me..

On Linux, Mac, and PC --- use Python 2.7.1 as the baseline.

The TIOBE link emphasizes why this is a good choice.
http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html

Also, found out that MIT uses Python heavily.

Monday, August 30, 2010

Google Protocol Buffers

Better than JSON, etc?


"Protocol buffers are a flexible, efficient, automated mechanism for serializing structured data – think XML, but smaller, faster, and simpler."

Donald Knuth

I was reminded of how inspiring he is:


Tuesday, July 27, 2010

Thursday, July 22, 2010

Windows Git S/W


Monday, July 19, 2010

Installing Mono 2.6.7 On A CentOS 5.4 VMWare Image

1) Acquire Mono 2.6.7.tar.bz2

2) Extract it:

# tar jxvf mono-2.6.7.tar.bz2

3) Change everything to belong to root:root

# chown -R root:root mono-2.6.7/

4) Change into newly created directory:

# cd mono-2.6.7/

5) Configure, build, and install it:

# ./configure -prefix=/opt/mono; make; make install

6) Add the path to ~/.bash_profile or something as effective.

Since I started out working with a CentOS 5.4 VMWare virtual machine, I had to modify the instructions I found here.

I got my source tar.bz2 from Novell here.

Good link for building Mono for ARM here.



Thursday, June 10, 2010

Wednesday, June 09, 2010

Tuesday, May 18, 2010

ApTest Tool

RA uses ApTest Tool for manual test cases:

http://www.aptest.com/contact.html

Friday, April 30, 2010

Selenium vs Squish for Web Testing


Link comparing Selenium to Squish (commercial tool) here.

Tuesday, April 06, 2010

Thursday, March 25, 2010

WatiN / Watir

Excellent tools:

Web Application Test In .Net

WatiN

WatiN Getting Started and WatiN Test Recorder and Another Helpful Link

Web Application Test In Ruby

watir

More power tools for .NET

Power Tools

Wednesday, January 13, 2010

One Serial Technique For Two Linux Hosts

Let "A" and "B" be Linux hosts.
Let B be the Linux host we want to grab the serial (console) output from.

1) Run a null modem cable between A and B.
2) Added "console=ttyS0,9600" to the boot line of B.
3) cu -l /dev/ttyS0 | tee console-out-from-b.txt from A. (could use minicom too)
4) Reboot B.
5) Console output from B should be visible on A.