Last active
September 17, 2022 05:01
-
-
Save mischief/d00ac877d719f0f68255c7a27c40a710 to your computer and use it in GitHub Desktop.
site
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
host = unix.gethostname() | |
c1, c2, c3 = string.byte(GetRandomBytes(1)), string.byte(GetRandomBytes(1)), string.byte(GetRandomBytes(1)) | |
function OnHttpRequest() | |
Write([[<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Hello World!</title> | |
</head> | |
<body> | |
<h1 style='color:rgb(%d, %d, %d)'>Hallo, Welt!</h1> | |
</body> | |
</html>]] % {c1, c2, c3}) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment