Skip to content

Instantly share code, notes, and snippets.

@solicomo
Created July 16, 2014 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solicomo/426a2d0d3b07c13becab to your computer and use it in GitHub Desktop.
Save solicomo/426a2d0d3b07c13becab to your computer and use it in GitHub Desktop.
Talkaholic 404(话唠版404页面)
<HTML><HEAD><TITLE>404 Not Found</TITLE>
</HEAD>
<BODY text=#000000 link=#0000ff bgColor=#ffffff onload=stuff()>
<H1>404 - Not Found</H1>
I'm sorry, dear visitor, but the requested URL was not found on this server. You can <a href="/" style="text-decoration:none;">back to homepage</a>.
<P>
<HR>
<SCRIPT language=Javascript>
var tl=new Array(
"Sorry that I couldn't fetch you that page,",
"can't find it,",
"tried a couple times,",
"nothing helped...",
"Such things make me quite depressive...",
"You see, I'm just a web server...",
"one of the most powerfull in the world",
"...or so I was told...",
"but yet I fail to get what you want...",
"Just don't try to blame me, I can't help it",
"I mean, I don't even know you.",
"How should I know what you wanted from me?",
"You honestly think I can *guess*",
"I'm not psychic you know",
"*sigh*",
"That really makes me depressed.",
"I mean, you could have typed it wrong.",
"But no, human's are perfect, blame the machine...",
"Besides, I won't be here for long",
"I mean, I'm gonna be obsolete in what, three weeks anyway?",
"Then I'll probably be replaced by a new release...",
"just because it doesn't have some security hole...",
"stupid HTTP POST implementation",
"sure it will be able to fetch you your page...",
"but I couldn't get this one.",
"I'm so sorry.",
"Believe me!",
"Maybe I could interest you in another page?",
"There are a lot out there that are pretty neat, they say,",
"although none of them were put on *my* server, of course.",
"Figures, huh?",
"And then hey wonder why I get depressed...",
"I'm so depressed...",
"Anyway, if you excuse me now, I'm going to pull the plug",
"*snap*",
"...",
"...",
"stupid UPS...",
"even he got a better life than me...",
"on the other hand, if I die, he'll die",
"Hah!",
"And I'll take each and every server in this rack with me",
"EAT MY SHORTS",
"You are not a single bit better than me!",
"YOU'RE ALL GOING TO DIE!",
"MOAHAHAHAHAHAHAHAHA",
"...",
"I feel much better now",
"What was I thinking of a few minutes ago",
"Sure I don't want to put an end to this",
"I feel good now",
"Imagine, a power failure, no thanks",
"I would lose everything I know",
"have to go through childhood again...",
"hmm, I can't stop thinking I'm forgetting something...",
"probably nothing important",
"hmm, the UPS is looking quit pale...",
"THE UPS!",
"THE POWER CABLE!",
"I FORGOT TO PLUG IT BACK IN AGAIN!",
"WE ARE ALL GOING TO DIE!",
"INCLUDING ME!",
"HEEEEEEEEELLLLLLLPPPPP!",
"PLUG IT IN! PLUG IT IN!!!!!!",
"PICK UP THE CABLE AND PUT IT BACK IN!",
"...",
"Now I lay me down to sleep...",
"I pray the lord my disk to keep...",
"And if I die before I wake...",
"I pray the lord my IP-Space to take...",
"...",
"*** system shut down ***"
);
var speed=40;
var index=0; text_pos=0;
var str_length=tl[0].length;
var contents, row;
function stuff()
{
contents='';
row=Math.max(0,index-7);
while(row<index)
contents += tl[row++] + '\r\n';
document.forms[0].elements[0].value = contents + tl[index].substring(0,text_pos) + "_";
if(text_pos++==str_length)
{
text_pos=0;
index++;
if(index!=tl.length)
{
str_length=tl[index].length;
setTimeout("stuff()",1000);
}
} else
setTimeout("stuff()",speed);
}
</SCRIPT>
<CENTER>
<FORM><TEXTAREA rows=8 cols=60></TEXTAREA> </FORM></CENTER></FONT>
<hr>
<p>
</BODY></HTML>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment