PEAR MDB2 info and installation instructions

July 28th, 2016

pear install MDB2-2.5.0b5

How to Create a Self-Signed Digital Certificate in Microsoft Office 2010

July 27th, 2016

Detailed steps on creating a Self-Signed Digital Certificate for Microsoft Office 2010.

How-To: Replace a MKIV ALH Diesel Injection Pump without Changing the Timing Belt

July 27th, 2016

This "How-To" can be applied to the exchange or replacement of either the 10‑mm or 11‑mm injection pump on an ALH engine, though the instructions will be slanted toward a manual transmission TDI.

Performance tuning 3ware 9000 Series Cards

July 27th, 2016

Good article on performance tuning the 3ware 9000 series cards.

How to recursively process files through directories

July 27th, 2016
use File::Find;

sub eachFile {
  my $filename = $_;
  my $fullpath = $File::Find::name;
  #remember that File::Find changes your CWD, 
  #so you can call open with just $_

  if (-e $filename) { print "$filename exists!\n"; }
}

find (\&eachFile, "mydir/");