Archive for the 'Tech' Category

PPP dial-in server

Wednesday, June 4th, 2003 | 17:25

Some quick notes on installing a PPP dial-in server on a RH7.3 box. This is based on the older instructions found in an old Linux Gazette article: Make sure the … Continue reading »

Tivo Hacks

Sunday, June 1st, 2003 | 11:56

Raffi Krikorian is writing a book on Tivo hacks, to be published by ORA later this summer. Personally, I have to get around to installing a TurboNet card in my Tivo, … Continue reading »

SQL Server Dynamic SQL article

Thursday, May 22nd, 2003 | 22:30

Here’s an article on SQL Server dynamic sql. Stored procs and such.

Managing Enterprise Content

Thursday, May 22nd, 2003 | 14:13

Slashdot has a

O’Reilly Hacks and Perl

Monday, May 12th, 2003 | 16:28

Poking around ORA’s “hacks” site, I came across this quick note on searching and replacing with command-line perl: perl -pi.bak -e ‘s/bgcolor=#ffffff/bgcolor=#000000/i’ *.html The example, of course, is at the back of … Continue reading »

SQLZoo

Tuesday, May 6th, 2003 | 12:30

Regarding my old school SQL, I found this site that covers new school SQL (or, in my case, SQL that isn’t at least ten years out of date): SQL Zoo I think … Continue reading »

Wireless Security

Wednesday, April 30th, 2003 | 12:14

A book review on Slashdot to keep in mind for future use, in case we have to or want to set up wireless in the combined apartment, since I don’t … Continue reading »

File uploads with PHP

Wednesday, April 23rd, 2003 | 23:53

As a stress relief from the horrors of VBScript, I’ve been working on trying to get file uploads to work again with the b2upload script, now that register_globals=off has been … Continue reading »

Perl regex reference

Tuesday, April 22nd, 2003 | 11:04

Found a Perl regex reference when trying to figure out how to capitalize the first letter of every word. The way to do the capitalization involves using the right-hand term as … Continue reading »

Script for generating random strings

Monday, April 14th, 2003 | 12:59

Neat Perl snippet to generate a string of random characters, for, say, randomized usernames, passwords, etc.: sub random_string { my $p = ”; … Continue reading »