You are viewing archived messages.
Go here to search the history.

Mariano Guerra 2023-12-18 20:17:38

The Medley Interlisp Project: interlisp.org

a retrofuturistic software system

What did we leave behind on the path to developing today's computer systems? Could there be lessons for the future of computing hidden in the past? Enter the Medley software environment to explore these questions.

Mariano Guerra 2023-12-18 20:18:16

đź“ť Paolo Amoroso (@amoroso@fosstodon.org)

Attached: 1 image

Do you have any questions on the Medley Interlisp language, environment, tools, history, or project? Ask and I'll try to answer here.

I look forward to your questions as they'll provide valuable feedback on the system and help flesh out the FAQs on the project site.

https://interlisp.org

interlisp #lisp #retrocomputing

Eli Mellen 2023-12-18 20:18:47

I’ve been playing with it! It is fun and a little bit mind bending at times.

Eli Mellen 2023-12-18 20:18:58

I’m such a sucker for image-based environments.

Konrad Hinsen 2023-12-19 06:34:54

I haven't yet tried Medley, because I fear addiction.

Nilesh Trivedi 2023-12-21 23:04:12

đź“ť Designing a Programming Language to Speedrun Advent of Code

“shouldn’t this have been published a few months ago?” yeah, probably. I even considered submitting it to the AoC contest. time is a real beast. The title is clickbait. I did not design and implement a programming language for the sole or even primary purpose of leaderboarding on Advent of Code. It just turned out that the programming language I was working on fit the task remarkably well. I can’t name just a single reason I started work on my language, Noulith, back in July 2022, but I think the biggest one was even more absurdly niche: I solve and write a lot of puzzlehunts, and I wanted a better programming language to use to search word lists for words satisfying unusual constraints, such as, “Find all ten-letter words that contain each of the letters A, B, and C exactly once and that have the ninth letter K.”1 I have a folder of ten-line scripts of this kind, mostly Python, and I thought there was surely a better way to do this. Not necessarily faster — there is obviously no way I could save time on net by optimizing this process. But, for example, I wanted to be able to easily share these programs such that others could run them. I had a positive experience in this with my slightly older golflang Paradoc, which I had compiled into a WASM blob and put online and, just once, experienced the convenience of sharing a short text processing program through a link. (Puzzle: what does this program do?) I also wanted to write and run these programs while booted into a different operating system, using a different computer, or just on my phone. As I worked on it, I kept accumulating reasons to keep going. There were other contexts where I wanted to quickly code a combinatorial brute force that was annoying to write in other languages; a glib phrasing is that I wanted access to Haskell’s list monad in a sloppier language. I also wanted an excuse to read Crafting Interpreters more thoroughly. But sometimes I think the best characterization for what developing the language “felt like” was that I had been possessed by a supernatural creature — say, the dragon from the Dragon Book. I spent every spare minute thinking about language features and next implementation steps, because I had to. The first “real program” I wrote in Noulith was to brute force constructions for The Cube, for last year’s Galactic Puzzle Hunt in early August, and it worked unexpectedly well. I wrote a for loop with a 53-clause iteratee and the interpreter executed it smoothly. Eventually I realized that the language could expand into other niches in my life where I wanted a scripting language. For example, I did a few Cryptopals challenges in them. It would take a month or two before it dawned on me that the same compulsion that drove me to create this language would drive me to do Advent of Code in it. That’s just how it has to be. This post details my thought process behind the design of this language. Some preliminary notes:

Kartik Agaram 2023-12-21 23:18:29

This looks tantalizing for the economic angle in particular: youtube.com/watch?v=-xnppM6GG9Q

The repo for that is github.com/drym-org/dia ~, but sadly there's no documentation yet~ github.com/drym-org/foundation. If anybody has more details or pointers please chime in.

(Thanks Konrad Hinsen.)

Nilesh Trivedi 2023-12-22 08:16:30

Possibly interesting for distribution of revenue. But the challenge is to get users to pay in proportion to the value they derive.

What do you think about Gitcoin's approach?

Nilesh Trivedi 2023-12-22 08:34:47

Some of these questions are answered in the Q&A video here: emacsconf.org/2022/talks/maint

Nilesh Trivedi 2023-12-22 08:40:18

đź“ť :seedling: Introduction | SourceCred

An introduction to the basic concepts of SourceCred.