- Microsoft Windows chief decries standards grandstanding
- The 5 best, and 5 worst, features of Google Chrome OS
- Federal government using PS3 to crack pedophile passwords
- 10G Ethernet cheat sheet
- Top 10 free Windows tools for IT pros, at a glance
Before I launch into my main thrust (a word that must be pronounced with a rolling "r") I have to direct you to a work of near genius, txt2re, an online regular expression code generator.
If you aren't au fait with regular expressions (also called regexes or regexps), they are formal descriptions of searches to be conducted on sequences of characters (or "strings") by a regular expression processor, that is, a program designed to process "regexes" (see the Wikipedia entry on regular expressions).
Regex is useful for jobs such as mining server logs and searching data files and txt2re makes generating code in Perl, PHP, Python, Java, Javascript, ColdFusion, C, C++, Ruby, VB, VBScript, J#.net, C#.net, C++.net or VB.net that perform these searches incredibly easy.
To use txt2re you give the service an example string and it shows you the substrings it recognizes and lets you select which ones you want to include in the output.
I did, however, say "near genius" as txt2re seems to have a bug that means the service doesn't always identify all of the "findable" substrings correctly. I was using txt2re to generate JavaScript code based on the following example entry in an Apache server access log:
192.168.10.11 - bob [16/Mar/2009:13:14:15 -0800] "GET /gibbs.gif HTTP/1.0" 200 5648
Txt2re failed to offer to treat the last digits in the string that show the data length as an integer – it only offered them as four individual digits (see here), which would be useless if the data length was five digits long.
The solution was, oddly enough, to change the IP address in the example string to 1.1.1.1 and voila! I got the code I needed (see here). Despite this bug, the concept is way cool and a little creative tweaking of either your example or the generated code will get you the code for exactly the regex search you need. (Here is a telephone number parser in JavaScript I created using txt2re).
So now, onto my main thrust: I love Gmail. Yes, I know that there are potential problems because, as a free service, there's no guarantee that your e-mail won't vanish one day and you'll have no recourse and occasionally the service goes unavailable, but I've had those same problems with services I've paid for.
Quite some time ago I decided to drop my e-mail service provider, Everyone.net. I'd been using Everyone because the mail service that came with my Web service (hosted by EasyCGI) had no spam filtering at the time.
Comments (2)
Filtering Gmail is far more importantBy Anonymous on March 14, 2009, 3:00 amDear Gibbs, You probably should have kept your "Everyone" account. Gmail is one of the biggest spammers and phishers around and many, including myself, McCafee...
Reply | Read entire comment
txt2reBy Anonymous on March 19, 2009, 7:50 amHi, I'm the author of txt2re. The porblem you saw is strange. I'm working on figuring out why this is hapenning.
Reply | Read entire comment
View all comments