

Topic 26 of 109: playing on the web (cool tips)
Sat, Dec 14, 1996 (23:58) |
Paul Terry Walhus (terry)
What are your coolest, neatest, hottest tricks and tips for playing on the web?
4 responses total.
Topic 26 of 109 [web]: playing on the web (cool tips)
Response 1 of 4: Paul Terry Walhus (terry) * Sun, Dec 15, 1996 (00:00) * 13 lines
Some simple scripts for replacing all instances of
"htm" with "html", a common need with Windows created web pages.
#!/bin/sh
for i in "*.htm"
do
j=`basename $i .htm`
cat $i | sed s/\.htm/\.html/g > $j.html
done
ksh even easier.
for i in *.htm; do; mv $i ${i%.htm}.html; done
Topic 26 of 109 [web]: playing on the web (cool tips)
Response 2 of 4: Paul Terry Walhus (terry) * Sun, Dec 15, 1996 (00:02) * 8 lines
[BODY BGCOLOR="#FFFFFF"]
also known as
[BODY BGCOLOR="white"]
I've substituted square brackets for angle
brackets. Use angle brackets.
Topic 26 of 109 [web]: playing on the web (cool tips)
Response 3 of 4: Paul Terry Walhus (terry) * Sun, Dec 15, 1996 (04:58) * 27 lines
web.178.415: Wheel Oil Beef Hooked (josh) Sun 11 Feb 96 21:12
I just discovered an odd trick I hadn't seen: try entering
view-source:http://www.blahblahblah
web.178.416: Wheel Oil Beef Hooked (josh) Sun 11 Feb 96 21:19
Wow -- you can even put that in an href!
web.178.426: Wheel Oil Beef Hooked (josh) Thu 22 Feb 96 12:46
You can make it an anchor. For example,
View the source to this
page
web.178.486: Wheel Oil Beef Hooked (josh) Thu 7 Mar 96 19:21
Now what could be doing _this_?
I load the page
http://www.iclnet.org/clm/real/ri9502/sommers.html
The red "stop" light flashes on and then off about once a second; so does
the status bar, too fast to see what it is trying to accomplish.
WTF?
quoted with permission of josh@well.com
Topic 26 of 109 [web]: playing on the web (cool tips)
Response 4 of 4: Paul Terry Walhus (terry) * Tue, Jul 2, 2002 (09:25) * 5 lines
If anyone is curious how your site sounds in a screen reader, you can
download JAWS and try it out.
http://www.freedomscientific.com/fs_products/software_jaws.asp



web conference
Main Menu