3 bookmarks for 2024-04-06

1221.

Infinite Mac

infinitemac.org

Infinite Mac is a collection of classic Macintosh and NeXT system releases and software, all easily accessible from the comfort of a (modern) web browser.

1220.

Skin in the Game | Armin Ronacher's Thoughts and Writings

lucumr.pocoo.org/2024/3/31/skin-in-the-game

On names in open source

1219.

XXIIVV — modal

wiki.xxiivv.com/site/modal

Modal programs are represented as a series of rules, formatted as tokens delimited by brackets and parentheses, applied to a given tree which gets continually modified until no rules match any given part of the tree.

<> (?x dup) (?x ?x)
<> (?x ?y swap) (?y ?x)
<> ( ?x pop) ()

.. (1 2 3) (4 5 6) swap pop dup
01 (4 5 6) (1 2 3) pop dup
02 (4 5 6) dup
00 (4 5 6) (4 5 6)
<> (if (#t) ?b) (?b)
<> (if (#f) ?b) ()

.. (if (eq bat bat) reached!)
02 (if (#t) reached!)
00 (reached!)