[thelist] (OT) URLOTD - interview with a search engine

isaac forman isaac at triplezero.com.au
Mon Apr 3 09:12:38 2000


FNwire interviews AskJeeves.com with amusing results:
http://www.fnwire.com/features/satire-jeevesinterview.html

the internet is like "beekeeping in new zealand" apparently...


and if you haven't seen this one before:
http://www.soda.co.uk/soda/constructor/
check it out *right now*.



isaac


<tip type="basic CF" author="isaac">

ok, this one is pretty shitty, but i know there are people out there learning
CF, or about to start, so it won't be totally useless.

between <cfoutput>'s, etc, always remember to use ## instead of # in your
colour/css definitions. otherwise you'll confuse the application server, which
assumes that text between #'s is a variable.

the application server will render the double # as a single #, giving you the
result you're after:

	color="##666666"

will become:

	color="#666666"

</tip>