[news][resume][wishlist][code]

Code

  • [2002 Sep 19]  Want to add a "favorite icon" to your web page? Make a bitmap, save it to your DocumentRoot as favicon.ico, add to your webpage inside the <HEAD> section.
  • [2006 May 15]  Quicky DNS query log parser:
    perl -e 'open(FILE,'queries'); 
    @wfile = <FILE>;
    close (FILE);
    foreach (@wfile) { 
      (undef,$req,$query,undef) = split(/\//,$_,4);
      $host=`host $req 2>/dev/null`;
      if ($host =~ m/^$/) {
        $host = $req;
      } else {
        $host =~ s/.*pointer //;
        chomp $host;
      }
      print "$host,$req,$query\n";
    };'