Discussion:
Any marginally usable programming language approaches an ill defined barely usable re-implementation of half of Common-Lisp
(too old to reply)
HenHanna
2024-05-27 19:37:01 UTC
Permalink
(selectively-snipped-or-not-p)
Any marginally usable programming language approaches an ill
defined barely usable re-implementation of half of common-lisp
The good news is, it's not Lisp that sucks, but Common Lisp.
--- Paul Graham
Just to set the record straight;
This is not My line.
I quoted it but don't know who the originator of that remark is.
Cor
a few years ago... when i started learning Python...

it was so exciting...

Every day i thought...

--- THis is Lisp in a thin-disguise ... SO Everyone gets it now.
Everyone is a Lisper now.
2***@potatochowder.com
2024-05-27 20:59:51 UTC
Permalink
On 2024-05-27 at 12:37:01 -0700,
(selectively-snipped-or-not-p)
Any marginally usable programming language approaches an ill
defined barely usable re-implementation of half of common-lisp
The good news is, it's not Lisp that sucks, but Common Lisp.
--- Paul Graham
Just to set the record straight;
This is not My line.
I quoted it but don't know who the originator of that remark is.
https://en.wikipedia.org/wiki/Greenspun%27s_tenth_rule
HenHanna
2024-05-29 18:39:14 UTC
Permalink
Post by 2***@potatochowder.com
On 2024-05-27 at 12:37:01 -0700,
(selectively-snipped-or-not-p)
Any marginally usable programming language approaches an ill
defined barely usable re-implementation of half of common-lisp
The good news is, it's not Lisp that sucks, but Common Lisp.
--- Paul Graham
Just to set the record straight;
This is not My line.
I quoted it but don't know who the originator of that remark is.
https://en.wikipedia.org/wiki/Greenspun%27s_tenth_rule
interesting!!!

Are the Rules 1--9 by Greenspun good too?


does Greenspun pun ?
Kaz Kylheku
2024-05-29 18:54:33 UTC
Permalink
Post by HenHanna
Post by 2***@potatochowder.com
https://en.wikipedia.org/wiki/Greenspun%27s_tenth_rule
interesting!!!
Are the Rules 1--9 by Greenspun good too?
I don't think they exist; it's a joke.

However, Greenspun's resume of accomplishments is a marvel and
an inspiration, including many in Lisp.

A few highlights:

https://philip.greenspun.com/personal/resume

"Helped architect, simulate and design prototype of HP's Precision
Architecture RISC computer. The prototype took two man-years to complete
and ran at VAX 11/780 speed in June 1983. This architecture became the
basis of HP's computer product line for 15 years and then became the
basis for the 64-bit generation of Intel processors."

https://philip.greenspun.com/personal/resume-list

"Automatic Layout tools for VLSI, with an emphasis on bus cells and
automatic implementation of finite state machines (1984 for Symbolics)"

"Design tools on Symbolics Lisp Machine for RISC CPU implemented in TTL
(1982-3 for Hewlett Packard)" (in reference to the PA-RISC work).

"ConSolve system for automating earthmoving, entirely implemented in
Lisp (1986-1989 for ConSolve), including:

* Delaunay Triangulation-based terrain model, with C0 and C1 surface
models.
* complete environment for earthworks and road design, including
software to specify design surfaces, calculate costs of
realizing design surfaces and automatic design tools
* tree-structured database of zoning laws and automatic testing of
design compliance
* hydrology modelling to calculate drainage basins, streams and ridges
* simulation of earthmoving vehicles
* automated surveying using vehicles and location systems
* radio interface to Caterpillar vehicle, including CRCC error detection
* automatically generated user interface"
--
TXR Programming Language: http://nongnu.org/txr
Cygnal: Cygwin Native Application Library: http://kylheku.com/cygnal
Mastodon: @***@mstdn.ca
2***@potatochowder.com
2024-05-30 00:32:40 UTC
Permalink
On 2024-05-29 at 11:39:14 -0700,
Post by HenHanna
Post by 2***@potatochowder.com
https://en.wikipedia.org/wiki/Greenspun%27s_tenth_rule
[...]
Post by HenHanna
Are the Rules 1--9 by Greenspun good too?
I don't know; let me look it up. Oh, there it is:

https://en.wikipedia.org/wiki/Greenspun%27s_tenth_rule says that
Greenspun said he "was just trying to give the rule a memorable name."

Sadly, the citation link is failing for me right now.
Sebastian Wells
2024-06-24 06:07:04 UTC
Permalink
Post by HenHanna
(selectively-snipped-or-not-p)
Any marginally usable programming language approaches an ill
defined barely usable re-implementation of half of
common-lisp
The good news is, it's not Lisp that sucks, but Common Lisp.
--- Paul Graham
Just to set the record straight;
This is not My line.
I quoted it but don't know who the originator of that remark is.
Cor
a few years ago... when i started learning Python...
it was so exciting...
Every day i thought...
--- THis is Lisp in a thin-disguise ... SO Everyone gets it now.
Everyone is a Lisper now.
Except it's not Lisp in a thin disguise, but rather an anti-Lisp,
which copies just enough from Lisp to be "marginally usable" as
your quote puts it, and then addresses certain specific use cases
by adding syntactic or semantic special cases, just to stop people
in the early days from listening to Lispers' calls for macros to
be added so that Python's weaknesses could be addressed in general
instead of only in certain special cases.

In some ways, Python is aggressively anti-Lispy, in a way that
cannot be reconciled. Just one example: if you've built up a
list comprehension and suddenly you need to reference the
result of the same computation twice, now you need to turn
the whole thing into a for loop because you can't introduce
variables in the middle of an expression. This is supposedly
"good" because there's some species of idiot who can't
understand expressions, and all Python code must be understandable
to these specific idiots. But it's okay for Python to have
weird special-case behavior that no-one would ever guess is
happening until they're debugging some weird problem in a big
open-source library and see it first hand.
Lawrence D'Oliveiro
2024-06-24 06:46:48 UTC
Permalink
Just one example: if you've built up a list comprehension
and suddenly you need to reference the result of the same computation
twice, now you need to turn the whole thing into a for loop because you
can't introduce variables in the middle of an expression.
Sure you can.

Loading...