├── BRANCH.md ├── README.md ├── README_54.md ├── bin ├── README.md └── paths ├── browser ├── README.md ├── get.py ├── render.py ├── search.py └── urls.py ├── console ├── README.md ├── console.py └── redirect.py ├── coroutines ├── README.md ├── aterminal.py ├── atimers.py ├── term_timer.py ├── term_timer.txt ├── timer_loops.py └── timer_loops.txt ├── doc ├── README.md ├── baremachine.md ├── compilers.md ├── gracle_excerpts.txt ├── modules.md ├── other.md ├── platforms.md ├── precursors.md ├── rationale.md ├── term.md ├── term.txt └── utilities.md ├── editors ├── HOW.md ├── NOTES.txt ├── README.md ├── autoindent.md ├── breakpt.md ├── breakpt.py ├── bugs.md ├── demo │ ├── README.md │ ├── pmacs.py │ ├── pmacs_no_autoindent.py │ └── sked_fragments.py ├── dm.py ├── dmacs.py ├── editline.py ├── edsel.py ├── pm.py ├── pmacs.py ├── sked.py ├── test │ ├── README.md │ ├── lines10.txt │ ├── lines30.txt │ └── lines40.txt └── vpm.py ├── piety ├── README.md ├── apm.py ├── apmacs.py ├── apyshell.py ├── atimer_script.py ├── atimer_script.txt ├── edsel_script.py ├── edsel_script.txt ├── eventloop.py ├── piety.py ├── piety.txt ├── pmacs_blocking.md ├── pmacs_script.md ├── pmacs_script.py ├── v2pmacs_script.py ├── vedsel_script.md ├── vedsel_script.py └── vpmacs_script.py ├── python ├── README.md ├── pycall.py ├── pyhelp.py └── runner.py ├── screenshots ├── browser_story_comment_frontpage.png ├── browser_story_comment_frontpage_sl.png ├── browser_story_comment_links.png ├── browser_story_comment_links_sl.png ├── editor_readme_x2_buffers.png ├── editor_sked_edsel_directory.png ├── editor_sked_edsel_directory_sl.png ├── pmacs_script.png ├── pmacs_script_terminal.png └── vedsel_script.png ├── tasking ├── README.md ├── editcommand.py ├── pyshell.py ├── writer.py └── writer.txt ├── threads ├── README.md ├── threads_1.txt ├── threads_2.py ├── threads_2.txt ├── threads_3.py ├── threads_3.txt ├── timers.py └── tm.py ├── unix ├── README.md ├── shell.py ├── terminal.py └── terminal_util.py ├── viewer ├── README.md └── viewer.py └── vt_terminal ├── README.md ├── display.py ├── key.py ├── keyseq.py ├── keyseq.txt └── keyseq_1.py /BRANCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/BRANCH.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/README.md -------------------------------------------------------------------------------- /README_54.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/README_54.md -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/bin/README.md -------------------------------------------------------------------------------- /bin/paths: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/bin/paths -------------------------------------------------------------------------------- /browser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/browser/README.md -------------------------------------------------------------------------------- /browser/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/browser/get.py -------------------------------------------------------------------------------- /browser/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/browser/render.py -------------------------------------------------------------------------------- /browser/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/browser/search.py -------------------------------------------------------------------------------- /browser/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/browser/urls.py -------------------------------------------------------------------------------- /console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/console/README.md -------------------------------------------------------------------------------- /console/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/console/console.py -------------------------------------------------------------------------------- /console/redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/console/redirect.py -------------------------------------------------------------------------------- /coroutines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/coroutines/README.md -------------------------------------------------------------------------------- /coroutines/aterminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/coroutines/aterminal.py -------------------------------------------------------------------------------- /coroutines/atimers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/coroutines/atimers.py -------------------------------------------------------------------------------- /coroutines/term_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/coroutines/term_timer.py -------------------------------------------------------------------------------- /coroutines/term_timer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/coroutines/term_timer.txt -------------------------------------------------------------------------------- /coroutines/timer_loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/coroutines/timer_loops.py -------------------------------------------------------------------------------- /coroutines/timer_loops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/coroutines/timer_loops.txt -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/baremachine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/baremachine.md -------------------------------------------------------------------------------- /doc/compilers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/compilers.md -------------------------------------------------------------------------------- /doc/gracle_excerpts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/gracle_excerpts.txt -------------------------------------------------------------------------------- /doc/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/modules.md -------------------------------------------------------------------------------- /doc/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/other.md -------------------------------------------------------------------------------- /doc/platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/platforms.md -------------------------------------------------------------------------------- /doc/precursors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/precursors.md -------------------------------------------------------------------------------- /doc/rationale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/rationale.md -------------------------------------------------------------------------------- /doc/term.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/term.md -------------------------------------------------------------------------------- /doc/term.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/term.txt -------------------------------------------------------------------------------- /doc/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/doc/utilities.md -------------------------------------------------------------------------------- /editors/HOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/HOW.md -------------------------------------------------------------------------------- /editors/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/NOTES.txt -------------------------------------------------------------------------------- /editors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/README.md -------------------------------------------------------------------------------- /editors/autoindent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/autoindent.md -------------------------------------------------------------------------------- /editors/breakpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/breakpt.md -------------------------------------------------------------------------------- /editors/breakpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/breakpt.py -------------------------------------------------------------------------------- /editors/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/bugs.md -------------------------------------------------------------------------------- /editors/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/demo/README.md -------------------------------------------------------------------------------- /editors/demo/pmacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/demo/pmacs.py -------------------------------------------------------------------------------- /editors/demo/pmacs_no_autoindent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/demo/pmacs_no_autoindent.py -------------------------------------------------------------------------------- /editors/demo/sked_fragments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/demo/sked_fragments.py -------------------------------------------------------------------------------- /editors/dm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/dm.py -------------------------------------------------------------------------------- /editors/dmacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/dmacs.py -------------------------------------------------------------------------------- /editors/editline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/editline.py -------------------------------------------------------------------------------- /editors/edsel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/edsel.py -------------------------------------------------------------------------------- /editors/pm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/pm.py -------------------------------------------------------------------------------- /editors/pmacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/pmacs.py -------------------------------------------------------------------------------- /editors/sked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/sked.py -------------------------------------------------------------------------------- /editors/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/test/README.md -------------------------------------------------------------------------------- /editors/test/lines10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/test/lines10.txt -------------------------------------------------------------------------------- /editors/test/lines30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/test/lines30.txt -------------------------------------------------------------------------------- /editors/test/lines40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/test/lines40.txt -------------------------------------------------------------------------------- /editors/vpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/editors/vpm.py -------------------------------------------------------------------------------- /piety/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/README.md -------------------------------------------------------------------------------- /piety/apm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/apm.py -------------------------------------------------------------------------------- /piety/apmacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/apmacs.py -------------------------------------------------------------------------------- /piety/apyshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/apyshell.py -------------------------------------------------------------------------------- /piety/atimer_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/atimer_script.py -------------------------------------------------------------------------------- /piety/atimer_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/atimer_script.txt -------------------------------------------------------------------------------- /piety/edsel_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/edsel_script.py -------------------------------------------------------------------------------- /piety/edsel_script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/edsel_script.txt -------------------------------------------------------------------------------- /piety/eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/eventloop.py -------------------------------------------------------------------------------- /piety/piety.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/piety.py -------------------------------------------------------------------------------- /piety/piety.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/piety.txt -------------------------------------------------------------------------------- /piety/pmacs_blocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/pmacs_blocking.md -------------------------------------------------------------------------------- /piety/pmacs_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/pmacs_script.md -------------------------------------------------------------------------------- /piety/pmacs_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/pmacs_script.py -------------------------------------------------------------------------------- /piety/v2pmacs_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/v2pmacs_script.py -------------------------------------------------------------------------------- /piety/vedsel_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/vedsel_script.md -------------------------------------------------------------------------------- /piety/vedsel_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/vedsel_script.py -------------------------------------------------------------------------------- /piety/vpmacs_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/piety/vpmacs_script.py -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/python/README.md -------------------------------------------------------------------------------- /python/pycall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/python/pycall.py -------------------------------------------------------------------------------- /python/pyhelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/python/pyhelp.py -------------------------------------------------------------------------------- /python/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/python/runner.py -------------------------------------------------------------------------------- /screenshots/browser_story_comment_frontpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/browser_story_comment_frontpage.png -------------------------------------------------------------------------------- /screenshots/browser_story_comment_frontpage_sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/browser_story_comment_frontpage_sl.png -------------------------------------------------------------------------------- /screenshots/browser_story_comment_links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/browser_story_comment_links.png -------------------------------------------------------------------------------- /screenshots/browser_story_comment_links_sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/browser_story_comment_links_sl.png -------------------------------------------------------------------------------- /screenshots/editor_readme_x2_buffers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/editor_readme_x2_buffers.png -------------------------------------------------------------------------------- /screenshots/editor_sked_edsel_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/editor_sked_edsel_directory.png -------------------------------------------------------------------------------- /screenshots/editor_sked_edsel_directory_sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/editor_sked_edsel_directory_sl.png -------------------------------------------------------------------------------- /screenshots/pmacs_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/pmacs_script.png -------------------------------------------------------------------------------- /screenshots/pmacs_script_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/pmacs_script_terminal.png -------------------------------------------------------------------------------- /screenshots/vedsel_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/screenshots/vedsel_script.png -------------------------------------------------------------------------------- /tasking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/tasking/README.md -------------------------------------------------------------------------------- /tasking/editcommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/tasking/editcommand.py -------------------------------------------------------------------------------- /tasking/pyshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/tasking/pyshell.py -------------------------------------------------------------------------------- /tasking/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/tasking/writer.py -------------------------------------------------------------------------------- /tasking/writer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/tasking/writer.txt -------------------------------------------------------------------------------- /threads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/threads/README.md -------------------------------------------------------------------------------- /threads/threads_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/threads/threads_1.txt -------------------------------------------------------------------------------- /threads/threads_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/threads/threads_2.py -------------------------------------------------------------------------------- /threads/threads_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/threads/threads_2.txt -------------------------------------------------------------------------------- /threads/threads_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/threads/threads_3.py -------------------------------------------------------------------------------- /threads/threads_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/threads/threads_3.txt -------------------------------------------------------------------------------- /threads/timers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/threads/timers.py -------------------------------------------------------------------------------- /threads/tm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/threads/tm.py -------------------------------------------------------------------------------- /unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/unix/README.md -------------------------------------------------------------------------------- /unix/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/unix/shell.py -------------------------------------------------------------------------------- /unix/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/unix/terminal.py -------------------------------------------------------------------------------- /unix/terminal_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/unix/terminal_util.py -------------------------------------------------------------------------------- /viewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/viewer/README.md -------------------------------------------------------------------------------- /viewer/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/viewer/viewer.py -------------------------------------------------------------------------------- /vt_terminal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/vt_terminal/README.md -------------------------------------------------------------------------------- /vt_terminal/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/vt_terminal/display.py -------------------------------------------------------------------------------- /vt_terminal/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/vt_terminal/key.py -------------------------------------------------------------------------------- /vt_terminal/keyseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/vt_terminal/keyseq.py -------------------------------------------------------------------------------- /vt_terminal/keyseq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/vt_terminal/keyseq.txt -------------------------------------------------------------------------------- /vt_terminal/keyseq_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jon-jacky/Piety/HEAD/vt_terminal/keyseq_1.py --------------------------------------------------------------------------------