Fork of Lua 5.1 to encourage end-user programming
Go to file
Kartik K. Agaram fdd87c5eda now. we. have. JSON.
Completely unmodified from upstream.
2021-11-21 14:22:20 -08:00
doc tweak Readme 2021-11-14 12:16:07 -08:00
src now. we. have. JSON. 2021-11-21 14:22:20 -08:00
.gitattributes . 2021-11-11 08:56:45 -08:00
.gitignore . 2021-11-05 17:06:49 -07:00
COPYRIGHT.md new fork of Lua 5.1 2021-10-22 19:24:44 -07:00
Makefile drop an obsolete build target 2021-11-10 08:35:08 -08:00
README.md now. we. have. JSON. 2021-11-21 14:22:20 -08:00
counter.tlv slightly more robust on-disk format 2021-11-14 00:52:25 -08:00
hanoi.lua learning about Lua's debug infrastructure 2021-11-11 22:05:15 -08:00
hanoi.tlv slightly more robust on-disk format 2021-11-14 00:52:25 -08:00
json.tlv now. we. have. JSON. 2021-11-21 14:22:20 -08:00
life.tlv demo 2021-11-14 14:40:55 -08:00
network.tlv first glimmers of networking working 2021-11-21 09:59:27 -08:00

README.md

Teliva - an environment for end-user programming

“Enable all people to modify the software they use in the course of using it.” — https://futureofcoding.org/episodes/033.html

“What if we, and all computer users, could reach in and modify our favorite apps?” — https://www.inkandswitch.com/end-user-programming

“Software must be as easy to change as it is to use.” — https://malleable.systems

What's this, then?

An extremely naïve, brutalist attempt at packaging up simple Lua (5.1) apps with almost all the stuff needed to edit and build them. You will need some Unix-like platform[1] with a C compiler and the ncurses library.

Here's how you run one of the example apps (the Tower of Hanoi):

git clone https://github.com/akkartik/teliva
cd teliva
make linux
src/teliva hanoi.tlv
screenshot of Teliva running the Towers of Hanoi

No matter what app you run, you are always guaranteed access to a single obvious, consistent way (currently the hotkey ctrl-e) to edit its sources. And to run the updates after editing.

[1] Tested so far on Linux and Mac OSX; should also work on BSD, WSL on Windows, etc.

Isn't this just an IDE?

There's one big difference: these apps are not intended to be runnable outside of the Teliva environment. Editing the sources will always be a core feature that's front and center in the UI.

A second, more subtle difference: it's primarily an environment for running apps, and only secondarily for editing them. Starting up the environment puts you in a running app by default. Creating an app from a clean slate is a low-priority use case, as is lots of specialized support for developing complex apps. The sweet spot for Teliva is simple apps that people will want to edit after using for a while.

Why Lua?

It's reputedly the fastest interpreted language per line of implementation code.

Will it run any Lua program?

Not quite. My priority is providing a good experience for newcomers to comprehend and modify the programs they use. If it's not clear how to provide that experience for some kinds of Lua programs, I'd rather disable support for them in Teliva and let people use regular Lua. Or other platforms!

  • This approach doesn't make sense for batch programs, I think.

  • I don't know how to obtain a simple, shallow graphics stack, so there's no support for graphics at the moment.

  • Teliva initializes the ncurses library by default, so apps should assume they have access to a text-mode window for printing text to, and a keyboard for reading unbuffered keystrokes from.

  • I want to provide sandboxed access to system resources (file system, network, etc.) which will likely create incompatibilities with the standard library. I'm disinclined to try to improve on Lua syntax, however. It's not my favorite, but it's good enough.

Teliva is not tested much at all yet. This is my first time programming either in Lua or within Lua. So bug reports are most appreciated if Lua programs behave unexpectedly under Teliva.

Will it run any ncurses program?

Hopefully. ncurses is extremely portable; I don't test on all the configurations ncurses runs on. In particular, I assume terminals with colors and UTF-8 support.

Will it run any Lua lcurses program?

Some functions in lcurses have additional smarts. Teliva is consistent with the underlying ncurses.

What's with the name?

Teliva is the Tamil root for clear. Very much aspirational.

Coda

In addition to Lua 1.5, Teliva forks or depends on:

Send all praise to them, brickbats to me.