#concatenative — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #concatenative, aggregated by home.social.
-
Abstract Machines for Logic Programs https://lobste.rs/s/7yy79j #concatenative #logiclangs
https://chrisistyping.bearblog.dev/abstract-machines-for-logic-programs/ -
Retargeting JIT compilers by using C-compiler generated executable code (2004) https://lobste.rs/s/etfkgx #pdf #compilers #concatenative #plt
https://www.cs.arizona.edu/~collberg/Teaching/553/2011/Resources/jit.pdf -
Slap: Functional Concatenative Language... with a Borrow Checker? https://lobste.rs/s/3fprl8 #compilers #concatenative #graphics #plt
https://taylor.town/slap-000 -
Slap: Functional Concatenative Language... with a Borrow Checker?
-
The Mouse Programming Language on CP/M https://lobste.rs/s/g53l7b #concatenative
https://techtinkering.com/articles/the-mouse-programming-language-on-cpm/ -
The Mouse Programming Language on CP/M
https://fed.brid.gy/r/https://techtinkering.com/articles/the-mouse-programming-language-on-cpm/
-
Getting Ziggy With It – Re: Factor https://lobste.rs/s/3qhmza #concatenative #zig
https://re.factorcode.org/2026/03/getting-ziggy-with-it.html -
Getting Ziggy With It – Re: Factor
https://fed.brid.gy/r/https://re.factorcode.org/2026/03/getting-ziggy-with-it.html
-
An x86-64 backend for raven-uxn https://lobste.rs/s/shaars #assembly #concatenative #vibecoding
https://www.mattkeeter.com/blog/2026-03-15-uxn/ -
r3: ColorForth inspired https://lobste.rs/s/f8kjl7 #concatenative
https://github.com/phreda4/r3 -
One Open-source Project Daily
Factor programming language
https://github.com/factor/factor
#1ospd #opensource #concatenative #factor #language #programminglanguage #stack -
One Open-source Project Daily
Factor programming language
https://github.com/factor/factor
#1ospd #opensource #concatenative #factor #language #programminglanguage #stack -
One Open-source Project Daily
Factor programming language
https://github.com/factor/factor
#1ospd #opensource #concatenative #factor #language #programminglanguage #stack -
One Open-source Project Daily
Factor programming language
https://github.com/factor/factor
#1ospd #opensource #concatenative #factor #language #programminglanguage #stack -
One Open-source Project Daily
Factor programming language
https://github.com/factor/factor
#1ospd #opensource #concatenative #factor #language #programminglanguage #stack -
Migrating to GTK3 – Re: Factor https://lobste.rs/s/vj2zkd #concatenative #graphics
https://re.factorcode.org/2025/12/migrating-to-gtk3.html -
Migrating to GTK3 – Re: Factor
https://fed.brid.gy/r/https://re.factorcode.org/2025/12/migrating-to-gtk3.html
-
The Concatenative Language XY https://lobste.rs/s/mpvdwd #apl #concatenative
https://www.nsl.com/k/xy/xy.htm -
Writing Anteforth, a Forth-like in SPARK https://lobste.rs/s/8hjgvt #concatenative #formalmethods
https://pyjarrett.github.io/2026/01/13/anteforth.html -
romforth: Ultra Portable, Small, Baremetal Forth for various processors https://lobste.rs/s/wrcgvd #concatenative
https://github.com/romforth/romforth -
romforth: Ultra Portable, Small, Baremetal Forth for various processors
-
@go_shrumm So glad to learn from you today about the concept of #parataxis! I've been doing a lot of #Forth programming lately, and this concept seems to create a fresh window into the mysterious richness of #concatenative languages.
https://en.wikipedia.org/wiki/Parataxis
https://en.wikipedia.org/wiki/Concatenative_programming_language -
An Attempt at a Compelling Articulation of Forth's Practical Strengths and Eternal Usefulness https://lobste.rs/s/iuzgps #concatenative #programming
https://im-just-lee.ing/forth-why-cb234c03.txt -
An Attempt at a Compelling Articulation of Forth's Practical Strengths and Eternal Usefulness
https://fed.brid.gy/r/https://im-just-lee.ing/forth-why-cb234c03.txt
-
Chuck Moore retires from colorforth after latest Windows breaks rendering https://lobste.rs/s/wqrzcy #video #concatenative
https://www.youtube.com/watch?v=MvkGBWXb2oQ -
Forth - is it still relevant? https://lobste.rs/s/qx9qot #concatenative
https://github.com/chochain/eforth -
Functional genetic programming and exhaustive program search with combinator expressions (2007) https://lobste.rs/s/oysxby #pdf #ai #concatenative #math #ml #plt
https://www.cs.hmc.edu/~oneill/papers/Combinators-KES.pdf -
第四: a Japanese and Forth inspired postfix language via @rk https://lobste.rs/s/xy5d4l #concatenative #plt
https://gist.github.com/typeswitch-dev/ac86d7e32167c1e5bf311c796cedc1a8 -
第四: a Japanese and Forth inspired postfix language
https://fed.brid.gy/r/https://gist.github.com/typeswitch-dev/ac86d7e32167c1e5bf311c796cedc1a8
-
Bootstrapping a Forth for Art https://lobste.rs/s/hr4xja #concatenative #performance
https://tia.mat.br/posts/2025/08/30/forth-haiku.html -
#HowToThing #029 — One for the #Forth friends: Minimal livecoding playground for animated 2D geometry generation (incl. SVG export) using a Forth-like DSL (domain-specific language) based on https://thi.ng/pointfree, https://thi.ng/pointfree-lang and various geometry related operations using https://thi.ng/geom. A short screen recording is included to demonstrate overall usage. This is a cutdown version of a prototype tool, originally from 2019...
Even though the language is "Forthy", the underlying thi.ng/pointfree implementation does _not_ use a VM, but instead compiles words to vanilla JavaScript using normal functional composition (or reductions) and each word is passing data & state via a single shared stack context object (with the usual dual data & return stacks and an environment object with var bindings). The language supports quotations, local variables, combinators etc.
I _highly_ recommend consulting the detailed readme docs for the above packages to familiarize yourself with the basic principles & language features/syntax. If you do have some prior #Forth knowledge, many aspects should feel familiar (apart from the geometry DSL terms)...
Also worth pointing out that the editor/interpreter in this small example is not super forgiving re: error handling and might easily crash when live coding. The point of this demo is not about providing great UX, but to illustrate how the basic thi.ng/pointfree language infrastructure can be easily extended/adapted/integrated...
Demo:
https://demo.thi.ng/umbrella/pointfree-geom/Source code:
https://github.com/thi-ng/umbrella/tree/develop/examples/pointfree-geom/src(Note: The source code of the actual language bindings for the geometry operations is not shown here, but available in the `lang.ts` file, linked above...)
#Forth #Pointfree #Concatenative #Programming #Geometry #Graphics #SVG #GenerativeArt #GenerativeDesign #TypeScript #JavaScript #ThingUmbrella