Level 01: Paddington Skatepark from the council plan + park guides — heightAt(x,z) single-source terrain, grindable rails/ledges, named gaps, B-O-O-K-Q-U-O-Y letters with the BOOKQUOYORK callback. SKATE / BMX / BLADES (blades cop thrown rubbish, as is tradition). character_kit two-rig banks: physics owns the root, clips are cosmetic. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
12 lines
454 B
Python
12 lines
454 B
Python
#!/usr/bin/env python3
|
|
"""BOOKQUOY dev server — http.server with caching disabled so module edits show up."""
|
|
import http.server, functools, sys
|
|
|
|
class NoCache(http.server.SimpleHTTPRequestHandler):
|
|
def end_headers(self):
|
|
self.send_header('Cache-Control', 'no-store, must-revalidate')
|
|
super().end_headers()
|
|
|
|
port = int(sys.argv[1]) if len(sys.argv) > 1 else 8141
|
|
http.server.ThreadingHTTPServer(('', port), NoCache).serve_forever()
|