Introduction to Ajax

Introduction to Ajax, Ajax how-to

Ajax: Form fields into URL query string

Javascript code to parse form fields into URL query string. To be used with Ajax sites.

myWebChat: IM with your site’s visitors

Info regarding new Web Chatting application which allows site owners to interact with their visitors in real time.

Javascript: Letter incrementation à la PHP/Perl – Part 2

Mimmicking PHP and Perl’s auto-increment on letters.

Javascript: Letter incrementation à la PHP/Perl – Part 1

Have you ever needed to do an auto-increment on a letter in Javascript? It’s built into PHP and Perl ($a = ‘A’; $a++; # $a is now ‘B’), but I recently found that trying to do it in Javascript may be harder than one thinks. After lots of time lost searching the web for a [...]

Perl Crash Course: Introduction to Perl

Perl – the Practical Extraction and Report Language (or Pathologically Eclectict Rubbish Lister) was created by Larry Wall in the late 1980′s. It started as a combination of Larry’s favorite Unix tools such as sed, awk, and shell, and grew to be the best language for text manipulation. I started learning Perl back in 1998 [...]