Deputy Sheriff The Viking Programmer – Telegram
Deputy Sheriff The Viking Programmer
246 subscribers
1.36K photos
162 videos
41 files
1.3K links
Download Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Guns ain't only used for killin! Your papi was right when he said they're a tool not a weapon.
Forwarded from (φ (μ (λ)))
https://xorvoid.com/forsp.html

A Forth+Lisp Hybrid Lambda Calculus Language
Forwarded from (φ (μ (λ)))
(φ (μ (λ)))
https://xorvoid.com/forsp.html A Forth+Lisp Hybrid Lambda Calculus Language
This is extremely intriguing to me not because it is employing my old love Lisp and new love Forth, but also because it has been surrounded by my new rabbit hole in type theory that I've been exploring, gradual type theory and the work of Paul Levy. So call-by-push-value is one of the brilliant ideas that I've come across recently. And his Forsp is exactly this.

In fact, while reading about CBPV, I couldn't help but think "That's Just Forth!", and thus Forsp was born.
Forwarded from (φ (μ (λ)))
(φ (μ (λ)))
https://xorvoid.com/forsp.html A Forth+Lisp Hybrid Lambda Calculus Language
void push(obj_t *obj)
{
state->stack = make_pair(obj, state->stack);
}

bool try_pop(obj_t **_out)
{
if (!state->stack) {
return false;
}

*_out = car(state->stack);
state->stack = cdr(state->stack);
return true;
}


This is just something I never thought of being done. You have a stack operation which is implementing car and cdr.
Forwarded from Kei Lambda
Fun little fact: You can use simp? to extract the list of lemmas that simp applied.
1
“Elder Scrolls is officially canon to Fortnite and by extension is linked to a great amount of collaborative franchises whose properties have made their way into the universe, including that of our own Earth, and other Bethesda properties such as the Doom Slayer from Doom. Doom (2016) itself also has a skeleton wearing the iconic Dragonborn iron helmet from Skyrim, with an arrow in its knee.”

This means all of Elder Scrolls lore is canon to Fortnite. Thus, Fortnite has deeper lore than Elder Scrolls. 😭😭😭🤯🤯🤯
👏2👍1
Forwarded from (φ (μ (λ)))
The concatenative and functional language F:

http://www.nsl.com/k/f/f.htm
Forwarded from (φ (μ (λ)))
How do you define success in terms of your work?

Chuck: An elegant solution.
One doesn’t write programs in Forth. Forth is the program. One adds words to construct a vocabulary that addresses the problem. It is obvious when the right words have been defined, for then you can interactively solve whatever aspect of the problem is relevant.
For example, I might define words that describe a circuit. I’ll want to add that circuit to a chip, display the layout, verify the design rules, run a simulation. The words that do these things form the application. If they are well chosen and provide a compact, efficient toolset, then I’ve been successful.

https://www.oreilly.com/library/view/masterminds-of-programming/9780596801670/ch04.html