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

#r7rs

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<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>