I believe I may have found a way to describe #zettelkasten work in #lambdacalculus — like, what it entails to do something in your Zettelkasten, and the communication system that emerges
I believe I may have found a way to describe #zettelkasten work in #lambdacalculus — like, what it entails to do something in your Zettelkasten, and the communication system that emerges
Lamber, my #LambdaCalculus -> Lisp compiler (https://github.com/aartaka/lamber) didn't handle big enough numbers (> 10-bit,) so I decided to implement some optimizations, reusing underlying #CommonLisp compiler to speed up and save space on numerics. It's not particularly reliable, because big LC numbers consume too much of the stack, but at least it's better than it used to be, almost reliably handling 12-bit numbers.
#python lets ypu instantiate a function anywhere and a ( recursive) function definition can be self contained and last i checked its notorious for its type checking
#Lambdacalculus wont let you do that unyil you give it the required fixed point function
#typetheory
Oh and fixed point need not be in R
Unlike rieman zeta ?
OTOH python wont spit potential Nonsense
term Q = λ1((λ11)(λλλλλ14(3(55)2)))1 concatenates two copies of its input, proving that
KS(xx) ≤ ℓ(x) + 66Applying it to its own encoding gives a 132 bit quine:
U(blc(Q) blc(Q) : Nil) = blc(Q) blc(Q)
#lambdacalculus
https://tromp.github.io/cl/Binary_lambda_calculus.html
!
> Forsp: A #Forth+#Lisp Hybrid #LambdaCalculus Language
https://xorvoid.com/forsp.html
C-c-c-conjecturing, and dealing with recursion in Emacs (more excursus)
Another blog post, this one not tagged as part of the lambda-calculus series because it doesn't directly deal with lambda-calculus, but it follows on from Part 2, dealing with issues of recursion, and building up towards the #YCombinator and other #lambdacalculus issues.
Some fun things evaluating the efficiency of implementing different functions in #Elisp (with metrics!), and some fun images/visualisations of an interesting function.
In the spirit of (not-that-radical, unfortunately) openness (inspired by none other than @TodePond,) let me share a thing I've been quietly working on for the last couple of months: #Lamber, my pure #LambdaCalculus -compiling #FunctionalProgramming language inspired by #Lua and #haskell
Readings shared February 22, 2025. https://jaalonso.github.io/vestigium/posts/2025/02/22-readings_shared_02-22-25 #LambdaCalculus #Lisp #Emacs
Lambda calculus and Lisp, part 2. https://babbagefiles.xyz/lambda-calculus-and-lisp-02-recursion/ #LambdaCalculus #Emacs #Lisp
Lambda calculus and Lisp, part 1. https://babbagefiles.xyz/lambda-calculus-and-lisp-01/ #LambdaCalculus #Lisp
#Programming with #Math | The Lambda Calculus
https://www.youtube.com/watch?v=ViPNHMSUcog&t=1307
The first of a planned series of posts on #Lisp and #LambdaCalculus and their connections:
Lambda Calculus and Lisp, part 1
"Did John McCarthy understand lambda calculus?"
Readings shared February 16, 2025. https://jaalonso.github.io/vestigium/posts/2025/02/16-readings_shared_02-16-25 #CategoryTheory #FunctionalProgramming #Haskell #LLMs #LambdaCalculus #Logic #Reasoning
The relationship between category theory, lambda calculus, and functional programming in Haskell. ~ Antonio Montano. https://4m4.it/posts/category-theory-functional-programming-compositionality/ #Haskell #FunctionalProgramming #CategoryTheory #LambdaCalculus
#TIL that there's a #LambdaCalculus based language called brujin (for obvious reasons) and that it's absolutely unreadable! The standard library and the amount of work that went into it is extremely impressive though, so go give it a read:
https://bruijn.marvinborner.de/
and show some love to Marvin Borner, the creator of brujin!
I'm stealing parts of it (like Maybe monad) into #Lamber, my own applicative #LambdaCalculus compiling #Lua like language.
What’s a good introduction to the Lambda calculus that you’ve personally used to learn? I wasn’t exposed to it in undergrad and need to understand wtf de Bruijn indices are in the moderately imminent future.
Y'all, how readable does this piece of code seem to you?
def div = fn (numer denom)
local loop = fn quot
when lt quot denom
then 0
else : succ : loop : sub quot denom
end
loop numer
end
That's division via subtraction from #Lamber standard library. And yes, it parses, compiles to pure #LambdaCalculus and returns the right number when applied properly!
Lamber (the WIP name of the language I'm making) compiles and runs factorial program:
let true = fn (t e) t
let false = fn (t e) e .
let iszero = fn (n)
n (fn x false) true .
let pred = fn (n f x)
n (fn (g h) h (g f))
(fn u x) (fn u u) .
let mult = fn (m n f) m (n f) .
let fac = fn : n
when : iszero n
then 1
else : mult n : fac : pred n
fac 6
Just so you know: Lamber is a #Lua, #Haskell, and #Wisp-inspired functional language compiling to pure #LambdaCalculus. And it's close to functioning well enough!
The asymmetry between "take" and "drop" #functionalProgramming operations on lists is weird. "drop" is just applying "cdr" N times, which is just a couple of function calls in #LambdaCalculus. While "take" requires full-blown #recursion and conditional testing. Or am I doing it wrong?