Small utilities that run on the server, the way /cgi-bin/ used to. No JavaScript, no accounts, nothing stored. Each one answers in plain text so you can use it from a script, a text browser, or curl.
| script | what it does |
|---|---|
| env.cgi | echo the request headers your client sent (the classic "what does my browser tell you" page) |
| ip.cgi | your address as this server sees it. shown to you, not stored. |
| time.cgi | the current time in every format a script might want |
| uuid.cgi | a fresh random id. ?n=5 for more. |
| sha256.cgi | sha-256 of ?q= or of a POSTed body |
| wc.cgi | lines, words, characters, bytes of ?q= or a POSTed body |
| fortune.cgi | one line of questionable wisdom |
| guestbook.cgi | the guestbook, at its old address |
curl https://www2.onnwee.me/cgi-bin/time.cgi curl -d 'hello world' https://www2.onnwee.me/cgi-bin/sha256.cgi curl https://www2.onnwee.me/cgi-bin/fortune.cgi
Also useful and not a script: uptime.txt, recent.txt, links.txt.