Dontopedia

server.py

From Dontopedia, the open, paraconsistent wiki. (Last updated 2026-06-06.)

server.py has 19 facts recorded in Dontopedia across 2 references, with 2 live disagreements.

19 facts·16 predicates·2 sources·2 in dispute

Mostly:defines class(2), imports class(2), uses http protocol(1)

Maturity scale raw canonical shape-checked rule-derived certified

Inbound mentions (6)

Other subjects in dontopedia point AT this entity as a value. These are inverse relationships — e.g. "X motherOf this subject" — and answer questions the forward facts can't. Grouped by predicate.

containsFileContains File(1)

definesFileDefines File(1)

expressedTrollingIntentExpressed Trolling Intent(1)

impliesFileUploadImplies File Upload(1)

providesContentForProvides Content for(1)

referencesFileReferences File(1)

Other facts (18)

The long tail: predicates that appear too rarely to warrant their own section. Filter or scroll to find a specific one. Each row links to its source.

18 facts
PredicateValueRef
Defines ClassSimplehandler[1]
Defines ClassSimple Handler[2]
Imports ClassBasehttprequesthandler[1]
Imports ClassHttpserver[1]
Uses Http ProtocolHttp 1 1[1]
Has Main GuardMain Block[1]
Implements Http ServerSimplehandler[1]
Imports ModuleHttp Server[1]
Is Base64 EncodedIyEvdXNyL2Jpbi9lbnYgcHl0aG9uMwpmcm9tIGh0dHAuc2VydmVyIGltcG9ydCBIVFRQU2VydmVyLCBCYXNlSFRUUFJlcXVlc3RIYW5kbGVyCgpjbGFzcyBTaW1wbGVIYW5kbGVyKEJhc2VIVFRQUmVxdWVzdEhhbmRsZXIpOgogICAgZGVmIGRvX0dFVChzZWxmKToKICAgICAgICBzZWxmLnNlbmRfcmVzcG9uc2UoMjAwKQogICAgICAgIHNlbGYuc2VuZF9oZWFkZXIoJ0NvbnRlbnQtdHlwZScsICd0ZXh0L3BsYWluJykKICAgICAgICBzZWxmLmVuZF9oZWFkZXJzKCkKICAgICAgICBzZWxmLndmaWxlLndyaXRlKGInZnVjayB5b3UgYWpheCcpCgppZiBfX25hbWVfXyA9PSAnX19tYWluX18nOgogICAgc2VydmVyID0gSFRUUFNlcnZlcigoJzAuMC4wLjAnLCA4MCksIFNpbXBsZUhhbmRsZXIpCiAgICBwcm_lbnQoJ1NlcnZlcgBydW5uaW5nIG9uIHBvcnQgODAuLicpCiAgICBzZXJ2ZXIuc2VydmVfZm9yZXZlcigpCg==[1]
Is Python Scripttrue[1]
Presupposes Python3 Availablepython3[1]
Rdf:typeFile[2]
Programming LanguagePython3[2]
Decoded Content#!/usr/bin/env python3 from http.server import HTTPServer, BaseHTTPRequestHandler class SimpleHandler(BaseHTTPRequestHandler): def do_GET(self): self.send_response(200) self.send_header('Content-type', 'text/plain') self.end_headers() self.wfile.write(b'fuck you ajax') if __name__ == '__main__': server = HTTPServer(('0.0.0.0', 80), SimpleHandler) print('Server running on port 80...') server.serve_forever() [2]
Imports LibraryHttp Server Library[2]
Instantiates ServerHttp Server Instance[2]
Calls MethodServe Forever Method[2]
Prints to Standard OutputServer running on port 80...[2]

Timeline

Timeline axis is valid_time — when each source says the fact was true in the world, not when Dontopedia learned about it. Retracted rows are kept for provenance; coloured stripes indicate the context kind.

usesHttpProtocolblah/unturf/part-45
ex:http-1-1
definesClassblah/unturf/part-45
ex:simplehandler
hasMainGuardblah/unturf/part-45
ex:main-block
implementsHttpServerblah/unturf/part-45
ex:simplehandler
importsClassblah/unturf/part-45
ex:basehttprequesthandler
importsClassblah/unturf/part-45
ex:httpserver
importsModuleblah/unturf/part-45
ex:http-server
isBase64Encodedblah/unturf/part-45
IyEvdXNyL2Jpbi9lbnYgcHl0aG9uMwpmcm9tIGh0dHAuc2VydmVyIGltcG9ydCBIVFRQU2VydmVyLCBCYXNlSFRUUFJlcXVlc3RIYW5kbGVyCgpjbGFzcyBTaW1wbGVIYW5kbGVyKEJhc2VIVFRQUmVxdWVzdEhhbmRsZXIpOgogICAgZGVmIGRvX0dFVChzZWxmKToKICAgICAgICBzZWxmLnNlbmRfcmVzcG9uc2UoMjAwKQogICAgICAgIHNlbGYuc2VuZF9oZWFkZXIoJ0NvbnRlbnQtdHlwZScsICd0ZXh0L3BsYWluJykKICAgICAgICBzZWxmLmVuZF9oZWFkZXJzKCkKICAgICAgICBzZWxmLndmaWxlLndyaXRlKGInZnVjayB5b3UgYWpheCcpCgppZiBfX25hbWVfXyA9PSAnX19tYWluX18nOgogICAgc2VydmVyID0gSFRUUFNlcnZlcigoJzAuMC4wLjAnLCA4MCksIFNpbXBsZUhhbmRsZXIpCiAgICBwcm_lbnQoJ1NlcnZlcgBydW5uaW5nIG9uIHBvcnQgODAuLicpCiAgICBzZXJ2ZXIuc2VydmVfZm9yZXZlcigpCg==
isPythonScriptblah/unturf/part-45
true
presupposesPython3Availableblah/unturf/part-45
python3
labelblah/unturf/45
server.py
typeblah/unturf/45
ex:File
programmingLanguageblah/unturf/45
ex:python3
decodedContentblah/unturf/45
#!/usr/bin/env python3 from http.server import HTTPServer, BaseHTTPRequestHandler class SimpleHandler(BaseHTTPRequestHandler): def do_GET(self): self.send_response(200) self.send_header('Content-type', 'text/plain') self.end_headers() self.wfile.write(b'fuck you ajax') if __name__ == '__main__': server = HTTPServer(('0.0.0.0', 80), SimpleHandler) print('Server running on port 80...') server.serve_forever()
importsLibraryblah/unturf/45
ex:http-server-library
definesClassblah/unturf/45
ex:SimpleHandler
instantiatesServerblah/unturf/45
ex:http-server-instance
callsMethodblah/unturf/45
ex:serve-forever-method
printsToStandardOutputblah/unturf/45
Server running on port 80...

References (2)

2 references
  1. [1]Part 4510 facts
    ctx:discord/blah/unturf/part-45
  2. [2]459 facts
    ctx:discord/blah/unturf/45
    • full textunturf-45
      text/plain1 KBdoc:agent/unturf-45/975ea366-401c-4e27-af43-fdece32e1fde
      Show excerpt
      [2026-01-17 00:28] xenonfun: ``` Tool: unsandbox.unsandbox__createService Arguments { "bootstrap": "#!/bin/bash\necho \u0022Starting Python HTTP server on port 80 that responds with \u0027fuck you ajax\u0027...\u0022\npython3 /tmp/input/s

See also

Keep researching

Missing something or suspicious of what's here? Kick off a research session — a Claude agent will investigate, cite its sources, and file new facts into a dedicated context you can review before accepting into the shared view.