september 2008
sun mon tue wed thu fri sat
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

« August 2008 | Main | October 2008 »


September 21, 2008


4 things:
1. Calvin Ross Carl's work has gotten crazy good since I last looked
2. Ms. Kristen had one of my old drawings tattooed on her by Leviticus Tattoo
3. $OEM$\Textmode\ for txtsetup f6 additional scsi drivers when using nlite/slipstream xp.
4. Woo, the ad for Juxtapoz has been released! It's a start!

crit?: 2

September 02, 2008

This one can be viewed either direction. It will be mounted in a rotating frame. I have another 1/3rd done and I started a 3rd tonight, same idea...

Read this, substituting 'writing' for your mode of creativity.

Here's a little utility to help repackage zips or strip known zip passwords:
#!/bin/sh
#loop through all zips in current working directory
for i in *.zip
do
#make unique/temp directory for each zipfile
mkdir "`basename \"$i\" .zip`"
#extract contents to prev. created dir (will prompt for passwd)
unzip "$i" -d "`basename \"$i\" .zip`"
#remove original zipfile
rm "$i"
#repackage zipfile from dir/orig. contents
zip -r "$i" "`basename \"$i\" .zip`"
#remove dir/temp
rm -rf "`basename \"$i\" .zip`"
done

Also: if your Volvo P2 series 2001-2007 sunroof just 'dies' you can reset it by turning the car off and locking/unlocking. This resets upper cabin electronics including maplights.

crit?: 0