update site/about

This commit is contained in:
Erik Osheim 2022-02-07 23:00:28 -05:00
parent b4eda6c01b
commit 66a17bcfea
2 changed files with 8 additions and 8 deletions

View File

@ -2,7 +2,7 @@ some uxn projects
this is a listing of various uxn projects i've worked on.
FILE DESCRIPTION
FILENAME DESCRIPTION
math32.tal unsigned 32-bit math routines, fairly complete and tested
test-math32.tal used by tester.py to test math32.tal
@ -14,11 +14,11 @@ repl-regex.tal REPL to interactively play with regex.tal
test-regex.tal some testing code for regex.tal
grep.tal very simple grep program using regex.tal
drums.tal very simple drum machine (non-iteractive)
drums2.tal aleatoric version of drums.tal that adds random hits
bfloat16 very early/wip bfloat16 implementation
fixed.tal very incomplete fixed-point (8.8) implementation
femto.tal early proof-of-concept terminal-based editor
femto launcher shell script for femto.tal
drums.tal very simple drum machine (non-interactive)
drums2.tal aleatoric version of drums.tal that adds random hits
bfloat16.tal very early/wip bfloat16 implementation
fixed.tal very incomplete fixed-point (8.8) implementation

View File

@ -1,5 +1,5 @@
#!/bin/sh
for NAME in about.txt math32.tal; do
for NAME in about.txt math32.tal test-math32.tal tester.py primes32.tal regex.tal repl-regex.tal test-regex.tal grep.tal femto.tal femto drums.tal drums2.tal bfloat16.tal fixed.tal; do
cp $NAME /var/www/plastic-idolatry.com/html/erik/nxu
done