pah.moi, offline copy
=====================

This is the whole of pah.moi as it was built: every page, the stylesheet, and
the WebAssembly engine the tools run inside. Nothing in here contacts a network,
before or after you unpack it.


Running it
----------

Unpack the archive, then, from the folder this file is in, run:

    python3 -m http.server 8000

and open http://127.0.0.1:8000/ in a browser. Stop it with Ctrl-C.

Any static file server will do. Python is named because it is already on most
machines, not because the site needs it.


Why a server, rather than just opening the page
-----------------------------------------------

Opening index.html directly, at a file:// address, gives you the pages and none
of the tools. Browsers refuse to load a WebAssembly module over file://, and
every tool here is compiled to WebAssembly, so each tool page would show its
no-script description and stop there. The one line above is what turns them on.

Either way the work happens in your browser. A static file server hands over
files and does no computing; that is as true of the copy you are reading as it
is of the site.


Licence
-------

The tool software is MIT licensed. Everything else, including the writing and
the site's build system, is all rights reserved. The full terms are in this
archive, at license/index.html, and at http://127.0.0.1:8000/license/ once you
are serving it.
