sfba.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for the San Francisco Bay Area. Come on in and join us!

Server stats:

2.4K
active users

#schemelang

1 post1 participant0 posts today
Ramin HonaryThe <a class="hashtag" href="https://fe.disroot.org/tag/lispygopherclimate" rel="nofollow noopener noreferrer" target="_blank">#LispyGopherClimate</a> <a class="hashtag" href="https://fe.disroot.org/tag/weekly" rel="nofollow noopener noreferrer" target="_blank">#weekly</a> <a class="hashtag" href="https://fe.disroot.org/tag/tech" rel="nofollow noopener noreferrer" target="_blank">#tech</a> <a class="hashtag" href="https://fe.disroot.org/tag/podcast" rel="nofollow noopener noreferrer" target="_blank">#podcast</a> for 2025-04-02 <p>Listen at: <a href="https://archives.anonradio.net/202504020000_screwtape.mp3" rel="nofollow noopener noreferrer" target="_blank">https://archives.anonradio.net/202504020000_screwtape.mp3</a></p><p>This week we will talk about the Unix Philosophy and how it compares and contrasts with whatever one might call the “Emacs Philosophy.”</p><p>The impetus for the discussion is a series of blog posts by <span class="h-card"><a class="u-url mention" href="https://fe.disroot.org/users/ramin_hal9001" rel="nofollow noopener noreferrer" target="_blank">@<span>ramin_hal9001</span></a></span> called “Emacs fulfills the UNIX Philosophy”:</p><ul><li><a href="https://tilde.town/~ramin_hal9001/articles/emacs-fulfills-the-unix-philosophy.html" rel="nofollow noopener noreferrer" target="_blank">The original introductory blog post</a></li><li><a href="https://codeberg.org/ramin_hal9001/lisp-gopher-climate_chat-about-emacs/src/branch/main/show-outline.org" rel="nofollow noopener noreferrer" target="_blank">The show notes</a></li></ul><p>…as well as a fascinating <a href="https://mastodon.sdf.org/@screwtape/114225644895007169" rel="nofollow noopener noreferrer" target="_blank">discussion</a> that took place over this past week on ActivityPub on the topic of the Unix philosophy and history of Lisp on Unix in which some very knowledgeable people have contributed anecdotes and facts.</p><p><a class="hashtag" href="https://fe.disroot.org/tag/technology" rel="nofollow noopener noreferrer" target="_blank">#technology</a> <a class="hashtag" href="https://fe.disroot.org/tag/programming" rel="nofollow noopener noreferrer" target="_blank">#programming</a> <a class="hashtag" href="https://fe.disroot.org/tag/softwareengineering" rel="nofollow noopener noreferrer" target="_blank">#SoftwareEngineering</a> <a class="hashtag" href="https://fe.disroot.org/tag/retrocomputing" rel="nofollow noopener noreferrer" target="_blank">#RetroComputing</a> <a class="hashtag" href="https://fe.disroot.org/tag/lisp" rel="nofollow noopener noreferrer" target="_blank">#lisp</a> <a class="hashtag" href="https://fe.disroot.org/tag/r7rs" rel="nofollow noopener noreferrer" target="_blank">#r7rs</a> <a class="hashtag" href="https://fe.disroot.org/tag/schemelang" rel="nofollow noopener noreferrer" target="_blank">#SchemeLang</a> <a class="hashtag" href="https://fe.disroot.org/tag/unixphilosophy" rel="nofollow noopener noreferrer" target="_blank">#UnixPhilosophy</a></p> This weeks <a class="hashtag" href="https://fe.disroot.org/tag/climatecrisis" rel="nofollow noopener noreferrer" target="_blank">#ClimateCrisis</a> <a class="hashtag" href="https://fe.disroot.org/tag/haiku" rel="nofollow noopener noreferrer" target="_blank">#haiku</a> by <span class="h-card"><a class="u-url mention" href="https://climatejustice.social/@kentpitman" rel="nofollow noopener noreferrer" target="_blank">@<span>kentpitman</span></a></span><pre><code>within each of us our loved ones, in tiny form, caring's innate yield company at a distance legacy in case of loss</code></pre><p><a class="hashtag" href="https://fe.disroot.org/tag/senryu" rel="nofollow noopener noreferrer" target="_blank">#senryu</a> <a class="hashtag" href="https://fe.disroot.org/tag/poem" rel="nofollow noopener noreferrer" target="_blank">#poem</a> <a class="hashtag" href="https://fe.disroot.org/tag/shortpoem" rel="nofollow noopener noreferrer" target="_blank">#ShortPoem</a> <a class="hashtag" href="https://fe.disroot.org/tag/smallpoem" rel="nofollow noopener noreferrer" target="_blank">#SmallPoem</a> <a class="hashtag" href="https://fe.disroot.org/tag/smallpoems" rel="nofollow noopener noreferrer" target="_blank">#SmallPoems</a></p>
Ramin Honary<blockquote><p>What I don’t like:</p><ul><li>some stuff breaks “everything is a list” model</li><li>Common Lisp is not minimal, includes overlapping and legacy stuff</li></ul><p>does <a class="hashtag" href="https://fe.disroot.org/tag/scheme" rel="nofollow noopener noreferrer" target="_blank">#scheme</a> address this?</p></blockquote><p><span class="h-card"><a class="u-url mention" href="https://mastodon.social/@rzeta0" rel="nofollow noopener noreferrer" target="_blank">@<span>rzeta0</span></a></span> I would say yes, Scheme sort of addresses those issues.</p><p>Scheme’s biggest advantage is that it is minimal enough that you can understand the whole language specification top-to-bottom, inside and out. But that is also it’s greatest drawback: is that it is too minimal to be practical. So for a long time, every single Scheme implementation has a it’s own large and unique set of libraries for solving practical programming problems that were incompatible with other Scheme implementations, making the Scheme ecosystem very fragmented. The <a href="https://srfi.schemers.org/%20" rel="nofollow noopener noreferrer" target="_blank">Scheme Request for Implementation (SRFI) process</a> is meant to address this fragmentation issue. Fragmentation is still (in my opinion) a pretty big problem, though things are much better than they were 20 years ago.</p><p>The R6RS standard, as I understand it, tried to make Scheme more practical, but it started to become too Common Lisp-like in complexity so it was mostly rejected by the Scheme community — with a few notable exceptions, like the <a href="https://www.scheme.com" rel="nofollow noopener noreferrer" target="_blank">Chez Scheme compiler</a>.</p><p>The next standard, R7RS, split the language into two parts: “R7RS small,” ratified in 2014, which is more like the original minimal core of the Scheme language, but just a few new features, in particular the <code>define-library</code> macro, for modularizing parts of Scheme programs into immutable environment objects. Then they took a collection of “SRFIs” and declared them to be part of the “R7RS large” language standard. The full “large” language specification is not yet fully ratified, even 11 years after the completion of R7RS “small,” but I think the SRFIs they have ratified so far already make the latest Scheme standard a very practical language. The final R7RS standard may end up being larger than Common Lisp, but that is fine with me since it can be almost completely implemented in the R7RS “small” Scheme standard.</p><p>R7RS “small” Scheme, in my opinion, is a powerful but minimal language that exists to implement other languages, but is still useful in it’s own right as a progeny of Lisp. The “R7RS large” language then adds the useful features of larger languages like Python or Common Lisp as a layer on top of the “R7RS small” language.</p><p>The current chair of the R7RS working group is Daphne Preston Kendal, and is often on Mastodon as <span class="h-card"><a class="u-url mention" href="https://chaos.social/@dpk" rel="nofollow noopener noreferrer" target="_blank">@<span>dpk</span></a></span> . She can tell you if I got anything in this post wrong.</p><p><a class="hashtag" href="https://fe.disroot.org/tag/tech" rel="nofollow noopener noreferrer" target="_blank">#tech</a> <a class="hashtag" href="https://fe.disroot.org/tag/software" rel="nofollow noopener noreferrer" target="_blank">#software</a> <a class="hashtag" href="https://fe.disroot.org/tag/schemelang" rel="nofollow noopener noreferrer" target="_blank">#SchemeLang</a> <a class="hashtag" href="https://fe.disroot.org/tag/r7rs" rel="nofollow noopener noreferrer" target="_blank">#R7RS</a> <a class="hashtag" href="https://fe.disroot.org/tag/programminglanguage" rel="nofollow noopener noreferrer" target="_blank">#ProgrammingLanguage</a></p>
Ramin Honary<p><span class="h-card"><a class="u-url mention" href="https://mathstodon.xyz/@xameer" rel="nofollow noopener noreferrer" target="_blank">@<span>xameer</span></a></span> the “R7RS small” Scheme standard has a full numerical tower built-in, including unbounded integers.</p><pre><code>(- (+ (expt 10 100) 1) (expt 10 100))</code></pre><p>gives you precisely the correct answer without any floating-point operations. Although macros for symbolic computation with optimization that would avoid computation of <code>(expr 10 100)</code> is “an exercise left to the reader.” Haskell <em>might</em> do the optimal computation though thanks to it’s lazy evaluation.</p><p><a class="hashtag" href="https://fe.disroot.org/tag/tech" rel="nofollow noopener noreferrer" target="_blank">#tech</a> <a class="hashtag" href="https://fe.disroot.org/tag/computers" rel="nofollow noopener noreferrer" target="_blank">#computers</a> <a class="hashtag" href="https://fe.disroot.org/tag/software" rel="nofollow noopener noreferrer" target="_blank">#software</a> <a class="hashtag" href="https://fe.disroot.org/tag/functionalprogramming" rel="nofollow noopener noreferrer" target="_blank">#FunctionalProgramming</a> <a class="hashtag" href="https://fe.disroot.org/tag/lisp" rel="nofollow noopener noreferrer" target="_blank">#Lisp</a> <a class="hashtag" href="https://fe.disroot.org/tag/schemelang" rel="nofollow noopener noreferrer" target="_blank">#SchemeLang</a> <a class="hashtag" href="https://fe.disroot.org/tag/scheme" rel="nofollow noopener noreferrer" target="_blank">#Scheme</a> <a class="hashtag" href="https://fe.disroot.org/tag/r7rs" rel="nofollow noopener noreferrer" target="_blank">#R7RS</a></p>
Ramin Honary<blockquote><p>Are you a Lisper? If yes, What made <a class="hashtag" href="https://fe.disroot.org/tag/lisp" rel="nofollow noopener noreferrer" target="_blank">#lisp</a> special in your view? </p></blockquote><p><span class="h-card"><a class="u-url mention" href="https://mastodon.social/@lxsameer" rel="nofollow noopener noreferrer" target="_blank">@<span>lxsameer</span></a></span> a few things:</p><ul><li><strong>absolute minimum amount of syntax,</strong> makes it very easy to understand how the computer sees each part of the program, makes it easy to implement your own parser if you want to.</li><li><strong>the ability to define your own evaluator for Lisp syntax,</strong> also made considerably easier than other languages due to the minimal syntax. This also makes it easy to develop your own tooling, or to modify existing tooling for the language, which brings me to the next point…</li><li><strong>macro programming:</strong> the ability to hack the Lisp compiler itself so that it can run your own evaluator. This allows you to introduce language features when and where you need them, like linting, type checking, literate programming, alternative evaluation strategies (e.g. lazy evaluation, or concurrent evaluation), etc.</li><li><strong>functional programming:</strong> it is based on the mathematics of lambda calculus, which is a very elegant way of defining algorithms and computation. It is also a computer for the “<em>untyped lambda calculus</em>“ which can implement any other typed lambda calculus as a system of macros.</li><li><strong>homoiconicity,</strong> again a feature of the minimal syntax, allows you to express programs as data, and data as programs. This is very useful for serialization and transport across multiple computers.</li><li><strong>REPL-based development,</strong> which is a feature many languages have nowadays (although Lisp invented this feature), allows for rapid prototyping and easier debugging.</li><li><strong>stability:</strong> Lisp languages like Common Lisp and Scheme have changed very little throughout the decades as there is no need to change them. Macro programming makes it so that you don’t need too add new language features all the time, language features become extensions you can import into your project.</li></ul><p><a class="hashtag" href="https://fe.disroot.org/tag/tech" rel="nofollow noopener noreferrer" target="_blank">#tech</a> <a class="hashtag" href="https://fe.disroot.org/tag/software" rel="nofollow noopener noreferrer" target="_blank">#software</a> <a class="hashtag" href="https://fe.disroot.org/tag/computerprogramming" rel="nofollow noopener noreferrer" target="_blank">#ComputerProgramming</a> <a class="hashtag" href="https://fe.disroot.org/tag/lisp" rel="nofollow noopener noreferrer" target="_blank">#Lisp</a> <a class="hashtag" href="https://fe.disroot.org/tag/commonlisp" rel="nofollow noopener noreferrer" target="_blank">#CommonLisp</a> <a class="hashtag" href="https://fe.disroot.org/tag/schemelang" rel="nofollow noopener noreferrer" target="_blank">#SchemeLang</a> <a class="hashtag" href="https://fe.disroot.org/tag/scheme" rel="nofollow noopener noreferrer" target="_blank">#Scheme</a> <a class="hashtag" href="https://fe.disroot.org/tag/clojure" rel="nofollow noopener noreferrer" target="_blank">#Clojure</a> <a class="hashtag" href="https://fe.disroot.org/tag/fennellang" rel="nofollow noopener noreferrer" target="_blank">#FennelLang</a> <a class="hashtag" href="https://fe.disroot.org/tag/gerbillang" rel="nofollow noopener noreferrer" target="_blank">#GerbilLang</a> <a class="hashtag" href="https://fe.disroot.org/tag/racketlang" rel="nofollow noopener noreferrer" target="_blank">#RacketLang</a></p>
Ramin Honary<a href="https://github.com/objecthub/swift-lispkit" rel="nofollow noopener noreferrer" target="_blank">Swift LispKit</a> is a Scheme written in Swift <p>It is odd that I had not heard about this <a class="hashtag" href="https://fe.disroot.org/tag/scheme" rel="nofollow noopener noreferrer" target="_blank">#Scheme</a> implementation until very recently. I can find almost no reference to it anywhere on the <a href="http://scheme.org" rel="nofollow noopener noreferrer" target="_blank">scheme.org</a> website or the <a href="http://r7rs.org" rel="nofollow noopener noreferrer" target="_blank">r7rs.org</a> website, although they advertise compliance with the R7RS standard.</p><p>I installed the “LispPad” app (the Mac OS front-end to Swift LispKit) and</p><ul><li>it follows the modern Mac OS user interface guidelines pretty well</li><li>implements a large number of SRFI extensions</li><li>provides a very large array of libraries to extend the core features of R7RS</li><li>provides thorough online documentation</li></ul><p>That said, I have found the LispPad GUI prety difficult to use, mostly because when I use the REPL, pressing enter does not execute the input, it seem like you must use the mouse to press a little “execute” button instead. The GUI seems to be designed more for use on tablets than on PCs. And I haven’t figured out how to use it from the terminal yet either.</p><p>It seem like a pretty good implementation though, and I am wondering why I haven’t heard much talk about it anywhere?</p><p><a class="hashtag" href="https://fe.disroot.org/tag/tech" rel="nofollow noopener noreferrer" target="_blank">#tech</a> <a class="hashtag" href="https://fe.disroot.org/tag/software" rel="nofollow noopener noreferrer" target="_blank">#software</a> <a class="hashtag" href="https://fe.disroot.org/tag/lisp" rel="nofollow noopener noreferrer" target="_blank">#Lisp</a> <a class="hashtag" href="https://fe.disroot.org/tag/schemelang" rel="nofollow noopener noreferrer" target="_blank">#SchemeLang</a> <a class="hashtag" href="https://fe.disroot.org/tag/lisppad" rel="nofollow noopener noreferrer" target="_blank">#LispPad</a> <a class="hashtag" href="https://fe.disroot.org/tag/swiftlispkit" rel="nofollow noopener noreferrer" target="_blank">#SwiftLispKit</a></p>
Ramin Honary<p><span class="h-card"><a class="u-url mention" href="https://mastodon.social/@wingo" rel="nofollow noopener noreferrer" target="_blank">@<span>wingo</span></a></span> is asking if anyone knows of a good course on the Nanopass framework (perhaps to recommend to others), but as usual he forgot to add hashtags to his post. So please reply to this post here: <a href="https://mastodon.social/@wingo/113956474737820425" rel="nofollow noopener noreferrer" target="_blank">https://mastodon.social/@wingo/113956474737820425</a></p><p><a class="hashtag" href="https://fe.disroot.org/tag/tech" rel="nofollow noopener noreferrer" target="_blank">#tech</a> <a class="hashtag" href="https://fe.disroot.org/tag/software" rel="nofollow noopener noreferrer" target="_blank">#software</a> <a class="hashtag" href="https://fe.disroot.org/tag/lisp" rel="nofollow noopener noreferrer" target="_blank">#Lisp</a> <a class="hashtag" href="https://fe.disroot.org/tag/scheme" rel="nofollow noopener noreferrer" target="_blank">#Scheme</a> <a class="hashtag" href="https://fe.disroot.org/tag/schemelang" rel="nofollow noopener noreferrer" target="_blank">#SchemeLang</a> <a class="hashtag" href="https://fe.disroot.org/tag/r7rs" rel="nofollow noopener noreferrer" target="_blank">#R7RS</a> <a class="hashtag" href="https://fe.disroot.org/tag/r6rs" rel="nofollow noopener noreferrer" target="_blank">#R6RS</a> <a class="hashtag" href="https://fe.disroot.org/tag/guilescheme" rel="nofollow noopener noreferrer" target="_blank">#GuileScheme</a> <a class="hashtag" href="https://fe.disroot.org/tag/guile" rel="nofollow noopener noreferrer" target="_blank">#Guile</a> <a class="hashtag" href="https://fe.disroot.org/tag/compilers" rel="nofollow noopener noreferrer" target="_blank">#Compilers</a> <a class="hashtag" href="https://fe.disroot.org/tag/programminglanguages" rel="nofollow noopener noreferrer" target="_blank">#ProgrammingLanguages</a> <a class="hashtag" href="https://fe.disroot.org/tag/plt" rel="nofollow noopener noreferrer" target="_blank">#PLT</a></p>