├── .editorconfig ├── DejaVuSansMono.ttf ├── README.md ├── denver.lua ├── flux.lua ├── flux └── lexer.lua ├── main.lua ├── sone.lua ├── thesis-hisham.pdf ├── ui.lua ├── user ├── debugger.lua ├── shell.lua ├── spreadsheet.lua ├── spreadsheet │ └── formulas.lua └── synth.lua ├── userland ├── userland-dev-1.rockspec └── util.lua /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/.editorconfig -------------------------------------------------------------------------------- /DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/README.md -------------------------------------------------------------------------------- /denver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/denver.lua -------------------------------------------------------------------------------- /flux.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/flux.lua -------------------------------------------------------------------------------- /flux/lexer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/flux/lexer.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/main.lua -------------------------------------------------------------------------------- /sone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/sone.lua -------------------------------------------------------------------------------- /thesis-hisham.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/thesis-hisham.pdf -------------------------------------------------------------------------------- /ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/ui.lua -------------------------------------------------------------------------------- /user/debugger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/user/debugger.lua -------------------------------------------------------------------------------- /user/shell.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/user/shell.lua -------------------------------------------------------------------------------- /user/spreadsheet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/user/spreadsheet.lua -------------------------------------------------------------------------------- /user/spreadsheet/formulas.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/user/spreadsheet/formulas.lua -------------------------------------------------------------------------------- /user/synth.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/user/synth.lua -------------------------------------------------------------------------------- /userland: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | eval `./luarocks path` 4 | 5 | love . 6 | -------------------------------------------------------------------------------- /userland-dev-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/userland-dev-1.rockspec -------------------------------------------------------------------------------- /util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hishamhm/userland-prototype/HEAD/util.lua --------------------------------------------------------------------------------