-
Preferred Paper for Printing with a Canon i860
After experimenting with various types of paper for photo printing, we’ve found that the Epson photo paper produces the best results on our Canon Printer:
-
Windows Vista problems resticting GNU GCC apps to 32MB
Disturbing to see this come about:Windows Vista problems resticting GNU GCC apps to 32MB Buried in the footnotes is a note about a response supposedly coming from a Microsoft representative saying, “now that people are asking for this, we are planning to fix…”
-
Insert archive parameter into HTML applet tag.
Under Linux:This code, named replace_applet.sh, adds a archive parameter (classes.jar) to all applet tags for *.htm files in a directory. ls *.htm | while read x do cat $x | sed -e ‘/<APPLET/ { s/<APPLET /<APPLET archive=”classes.jar”/}’ > $x.$$ cp $x.$$ $x rm $x.$$done