Entries from July 2004

recipe: tempeh sandwich from becca

July 26th, 2004 by Geoffrey Hing | No Comments

recipe: tempeh sandwich from becca

WHAT YOU WILL NEED:
1 package tempeh
1/2 onion, cut into big big pieces
sesame oil
coriander
soy sauce (or braggs, braggs is better.)
sriracha hot chili sauce (also known as COCK SAUCE)
2 cloves of garlic
1/2 tomato
lettuce
white or sourdough bread
[...]


script: syntax check all php files in current directory

July 24th, 2004 by Geoffrey Hing | No Comments

script: syntax check all php files in current directory

#!/bin/sh

php_files=`ls *.php`
php_exe=’/usr/bin/php -l’

for php_file in $php_files
do
# Need the 2> /dev/null on my server because php always complains
# about some module problems and it makes the output hard to read.
$php_exe $php_file 2> /dev/null
done

exit


howto: global replace in vi

July 24th, 2004 by Geoffrey Hing | No Comments

howto: global replace in vi

from http://www.bo.infn.it/alice/alice-doc/mll-doc/linux/vi-ex/node26.html
%s/old/new/gc


lightning, fourth of july

July 23rd, 2004 by Geoffrey Hing | No Comments

lightning, fourth of july

109042288161726751

July 21st, 2004 by Geoffrey Hing | No Comments

109042288161726751

at night you can walk in the streets here. it’s a simple pleasure, but almost everyone does it. it’s the kind of convention that one just falls into, a lazy routine that i’m sure will be sadly absent when we move on to other points. in the morning you’re confronted by just [...]


108296327447897770

July 20th, 2004 by Geoffrey Hing | No Comments

108296327447897770

form to get my ohio state retirement back
A-4Tradtional9-03.pdf
I need to fill it out, get it notorized and then send it to:
Office of Human Resources
2130 Neal Ave.
Columbus, OH 43210
Room 213
To follow up, OSU HR’s contact is:
web: http://hr.osu.edu
phone: 614.292.2311
email: payroll@hr.osu.edu


109012907853074750

July 18th, 2004 by Geoffrey Hing | No Comments

109012907853074750

howto: resizing windows with javscript in both ie and mozilla
http://dynarch.com:1979/mishoo/articles.epl?art_id=408


109000967892008070

July 16th, 2004 by Geoffrey Hing | No Comments

109000967892008070

software: figlet
figlet create’s ascii art text.
http://www.figlet.org


108991075593063464

July 15th, 2004 by Geoffrey Hing | No Comments

108991075593063464

lingo: new voip provider
http://www.lingo.com/


108940950764603437

July 9th, 2004 by Geoffrey Hing | No Comments

108940950764603437

howto: scrolling layers

http://www.quirksmode.org/js/layerscroll.html