 |
User since: |
Jun 21, 2000 at 23:31 UTC
(23 years ago) |
Last here: |
Dec 09, 2011 at 14:50 UTC
(12 years ago) |
Experience: |
3276
|
Level: | Curate (13) |
Writeups: |
276
|
Location: | Nashville, Tennessee |
User's localtime: |
Dec 05, 2023 at 04:22 -05
|
Scratchpad: |
View
|
For this user: | Search nodes |
|
This is one of the extremely few photos of me that I
like. I have always been horribly camera shy (which probably
explains why I look angry in this picture).
Upon seeing this picture eduardo's comment was
"that one makes your nose look... normal people sized". Thanks Ed.
In the tradition of "feeding chromatic's cat", here is the
piece of code that I had in my homenode. This variation
autosubmits the message without the user having to push a button.
There used to be a bug in netscape that would let you use 'mailto:'
as the form action and have it automatically send email to people.
That was a lot fun while it lasted.
<form name="theform" method="POST" action="/index.pl" enctype="applica
+tion/x-www-form-urlencoded">
<input type="hidden" name="node_id" value="19314">
<input type=hidden name="op" value="message">
<input type=hidden name="message" value="/me just visited maverick's h
+omenode">
<input type=hidden name="message_send" value="talk">
</form>
<script>
if (window.location.search != "") {
document.theform.submit();
}
</script>
|