├── .gitignore ├── LICENSE.GPL-2.0 ├── LICENSE.MIT ├── Makefile ├── README.md ├── markov.py ├── uwurandom-js ├── .gitignore ├── Makefile ├── README.md ├── package-lock.json ├── package.json ├── uwurandom-bin.mjs └── uwurandom.mts ├── uwurandom.c ├── uwurandom_core.h ├── uwurandom_lib.c ├── uwurandom_lib.h ├── uwurandom_markov_data.h ├── uwurandom_markov_special.h ├── uwurandom_ops.h ├── uwurandom_platform.h ├── uwurandom_types.h ├── uwurandom_user.c ├── uwurandom_wasm.c └── vendor └── walloc.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.GPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/LICENSE.GPL-2.0 -------------------------------------------------------------------------------- /LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/LICENSE.MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/README.md -------------------------------------------------------------------------------- /markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/markov.py -------------------------------------------------------------------------------- /uwurandom-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /uwurandom-js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom-js/Makefile -------------------------------------------------------------------------------- /uwurandom-js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom-js/README.md -------------------------------------------------------------------------------- /uwurandom-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom-js/package-lock.json -------------------------------------------------------------------------------- /uwurandom-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom-js/package.json -------------------------------------------------------------------------------- /uwurandom-js/uwurandom-bin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom-js/uwurandom-bin.mjs -------------------------------------------------------------------------------- /uwurandom-js/uwurandom.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom-js/uwurandom.mts -------------------------------------------------------------------------------- /uwurandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom.c -------------------------------------------------------------------------------- /uwurandom_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_core.h -------------------------------------------------------------------------------- /uwurandom_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_lib.c -------------------------------------------------------------------------------- /uwurandom_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_lib.h -------------------------------------------------------------------------------- /uwurandom_markov_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_markov_data.h -------------------------------------------------------------------------------- /uwurandom_markov_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_markov_special.h -------------------------------------------------------------------------------- /uwurandom_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_ops.h -------------------------------------------------------------------------------- /uwurandom_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_platform.h -------------------------------------------------------------------------------- /uwurandom_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_types.h -------------------------------------------------------------------------------- /uwurandom_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_user.c -------------------------------------------------------------------------------- /uwurandom_wasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/uwurandom_wasm.c -------------------------------------------------------------------------------- /vendor/walloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valadaptive/uwurandom/HEAD/vendor/walloc.c --------------------------------------------------------------------------------