[ prog / sol / mona ]

prog


Do you even Scheme?

1 2020-09-06 10:24

Does anyone here actually use Scheme for anything other than doing textbook exercises?

2 2020-09-06 12:41 *

Does guile count?

3 2020-09-06 15:08 *

>>1
The owner of the site does, which is why this place exists at all: https://fossil.textboard.org/schemebbs/home I can honestly say I have never used Scheme for anything more than simple scripts and textbook exercises though.

4 2020-09-06 16:22

I use it with Common Music(S7). Wanting to use it more in future.

5 2020-09-06 22:28

People probably use elisp the most.

6 2020-09-06 22:58 *

I don't, lolol

7 2020-09-07 06:19

>>2
Yes.

>>5
Elisp is not Scheme.

8 2020-09-07 07:02

2 I have more than once got the impression that people think of guile as not-scheme? What is that about? Or is it a joke?

9 2020-09-08 06:16 *

>>8
It's not purely scheme but a scheme like language pushed by gnu. You can find it in a lot of gnu tools.
The problem with calling it scheme like is how gnu is usually known as the opposite of simplicity but I haven't used guile enough to see if it has that many extensions compared to s7. I know it's userland utilities do compared to bsd and svr ones, tons of tools have more usage overlap and it's even more complicated.

10 2020-09-08 06:22 *

>>9
*r7rs

11 2020-09-09 04:44

>>8 but it seems much more in line with r7rs than say, MIT-scheme, Gerbil or Racket -not that there aren't some warts. And it seems like there are plenty of implementations like Chibi, STklos, Gauche, Chez, Chicken that in the same size neighborhood and have their own extensions. But GNU, that's true, that probably does go some way to explaining it. (I have to disagree with the idea that it's pushed by the GNU though, the idea that GNU is the official extension language of the GNU project is meaningless next to the mountain of Python bindings that GNU projects actually have.)

12 2020-09-09 07:43 *

>>11
It can be expected of gnu to push out something completely compliant the first but not always. That knowledge probably isn't held by those pushing guile is not scheme seriously and not as a joke. I was pushing it as a joke though.
It's depressing gnu won't write it's own python 2 and python 1 implementation with gnu peps, python 2 has tachyon now since it will never die. There might be a python 1 implementation hidden somewhere on savanna though.

13 2020-09-09 15:51 *

>>8
This is probably not the reason, but technically Guile supports multiple languages: https://www.gnu.org/software/guile/manual/html_node/Supporting-Multiple-Languages.html

>>12
Python-on-Guile exists, but I am unsure which version it targets: https://gitlab.com/python-on-guile/python-on-guile

14 2020-09-09 17:30 *

>>13
When does pog get gpeps.
>>11-13
Found something funny about python 1.

Incompatibility warning: Norton Antivirus 2000 can cause blue screen crashes on Windows 98
when a function in the os.popen*() family is invoked. To prevent this problem, disable Norton
Antivirus when using Python. (Confirmed on Windows 98 Second Edition with Norton Antivirus
version 6.10.20. The same Norton Antivirus version doesn't have this problem on Windows 2000.
Norton Antivirus version 5 on Windows 98SE doesn't have this problem either.)
15 2020-09-10 20:53

Why nobody uses Scheme? How can we make it more popular?

16 2020-09-10 20:59

>>15
Finishing r7rs-large. A well designed, cross-platform, simple, modular, extendible scripting language, that can be compiled, and has multiple implementations to fall back on, is something a lot of people might find interesting.

17 2020-09-11 17:05

Scheme is used, but people are not in-your-face about it. You might have several implementations on your computer and not know about it. Got a Mac or a Steelseries headset? You got a Scheme. Does *anyone* know what Cisco uses Chez for?

Less glorious, but supporting the point above: "TinyScheme was used as the core of Direct Revenue's adware, making it the world's most widely distributed Scheme runtime."

18 2020-09-12 08:05 *

>>17

Does *anyone* know what Cisco uses Chez for?

I always assumed Cisco didn't even know they used it.
And chances are good they still don't know.

19 2020-09-12 14:37

>>15

Why nobody uses Scheme? How can we make it more popular?

At least for me, I think a lot of this has to do with it being very difficult to write portable Scheme, especially if you want to interact with the outside world, or write something particularly efficient. There is this real dissonance of Lisp at once encouraging standardization, encouraging "the right thing", encouraging writing complete programs, and at the same time Scheme denying you the opportunity to write portable programs.

20 2020-09-14 14:48

>>19

dissonance

I don't see it, what does that have to do with Lisp?

21 2020-09-14 17:29

>>20
The dissonance is in the form of these contradictory beliefs which Scheme has as a product of its cultural inheritance as a member of the Lisp family of programming languages, and its belief that programming languages should be easy to implement (leading to under-specification and non-portable programs).

22 2020-09-14 18:55

>>21
I hold the dim view that "portability" is largely a myth bolstered by the dominance of certain machine architectures and language implementations over alternatives. In that respect Scheme doesn't seem appreciably worse than C in being under-specified, but without any dominant implementations or even consensus among its users the ecosystem stayed fragmented while C's mostly coalesced around a handful of flagship implementations on x86.
More often than not, truly portable C results from contortions by the programmer to write for the lowest common denominator. For non-trivial programs, this is not usually something to aspire to.

23 2020-09-14 20:06

>>22
This is a compelling argument, and I still need to think about it more. If I
understand correctly this is more of an argument against something like
standardized performance guarantees rather than standardized semantics and
syntax. So it might be that portability in a smaller sense would still be
virtuous, on the other hand this may be an ad hoc adjustment, which is not a
good sign for the truth value of a theory. Just to invoke a sort of stream of
consciousness this makes me think about sort of paradigm independent
programming like Fortress, and deductive optimisations like reduction
operations on lambda calculus. To what extent can optimisation exist without
referense to hardware, even if we include extremely dramatic deviations in
hardware? There is also this blurry line of how much influence protocols
should have over a language especially if we accept binary protocols, for many
tasks it would likely turn out that simply accepting the common representation
of a protocol would be more efficent than translating into a form which might
be more efficient due to hardware specific optimisations. Homogenous
representations of data structures seems like it would allow for a great deal
of reasoning about performance. This is likely another ad hoc modification
though.

24 2020-09-14 20:09 *

>>23
sorry about the fill-paragraph, I usually correct this before sending but forgot.

25 2020-09-15 06:46

>>21
In what sense is Scheme underspecified? Since at least R3RS, the specification even includes formal semantics!

26 2020-09-15 13:39

>>25
Truthfully I have a fairly crude notion of this myself, but consider the following questions: What objects have the same memory location (eq? each other)? What order are internal definitions evaluated in, especially with regards to mutually recursive internal definitions? How large is the numeric tower? What compound data structures have copy-on-write versus mutable implementations? Can the way continuations are implemented make programs slower, even if they are used appropriately? How do you call foreign functions in Scheme? etc.

27 2020-09-15 20:03

>>26

What objects have the same memory location (eq? each other)?

As far as I understand one location can only have one object.

What order are internal definitions evaluated in, especially with regards to mutually recursive internal definitions?

If you need a defined order of evaluation, you can use letrec*. Do you have any examples where this actually matters for mutually recursive definitions? I can't think of any.

How large is the numeric tower?

It has five levels, from top to bottom: number, complex, real, rational and integer.

What compound data structures have copy-on-write versus mutable implementations?

None of the standard ones have copy-on-write.

Can the way continuations are implemented make programs slower, even if they are used appropriately?

Yes, there are no performance guarantees in the standard.

How do you call foreign functions in Scheme?

There's no standard way to do it.

28 2020-09-15 20:30

>>27

There's no standard way to do it.

AFAIK r7rs-large plans to standardize this.

29 2020-09-15 22:21

>>27
Overall I think your response is valid. I do think the admission of the last point alone is enough to condemn many potentially portable Scheme programs. A tricky thing to think about is that of course you could simply claim that you should never used unspecified behavior but this is operating under the assumption that we always know when we are doing. Even when you have a great deal of experience with a language you sometimes make mistakes, and if there no indication in your implementation, or even several major implementations that you made an error you are unlikely to fix it. This discourages portable software.

As far as I understand one location can only have one object.

Well yes, but the issue is what is a distinct object then I suppose for example eq? is unspecified for lists, numbers, strings, characters, vectors and functions. Another example might be equal? which is unspecified for functions.

Do you have any examples where this actually matters for mutually recursive definitions?

SICP has some.

It has five levels, from top to bottom: number, complex, real, rational and integer.

What about polar complex numbers and quaterions, what happens when you mix real numbers and polar complex numbers?

None of the standard ones have copy-on-write.

This is fair from the perspective of >>22 but it is still questionable to me, the only major implementation with copy-on-write is for strings, I know Gauche has them, and I wouldn't be surprised if there were others.

>>28

AFAIK r7rs-large plans to standardize this.

Really? That'd be a game changer honestly.

30 2020-09-16 06:41

>>29
Let's see those examples from SICP.

31 2020-09-16 10:09

>>28,29
My bad, it's not explicity on the agenda. R7RS-large is split into multiple phases, listed here: https://small.r7rs.org/wiki/WG2Dockets/. FFI is not on the current agenda, but is planned to be discussed by future working groups: https://small.r7rs.org/wiki/ReassignedDocket/
Due to the modular nature of R7RS, this shoudln't be too much of an issue, though if someone were to suggest a SRFI for FFI, this might change?

32 2020-09-16 12:50

>>31
That's too bad, in any case all the things they make mandatory over R7RS-small is a major step in the right direction: https://small.r7rs.org/wiki/MandatoryDocket/ (even if much of this was already standardized in R6RS)

33 2020-09-16 13:02

>>30
sure, I think all but the last would be amenable to letrec, for the last, it's not even clear what it means.

;; From SICP Section 4.16
(define (f x)
  (define (even? n) (if (= n 0) #t (odd (- n 1))))
  (define (odd? n) (if (= n 0) #t (even? (- n 1))))
  <rest of body of f>)

(define (solve f y0 dt)
  (define y (integral (delay dy) y0 dt))
  (define dy (stream-map f y))
  y)

(let ((a 1))
  (define (f x)
    (define b (+ a x))
    (define a 5)
    (+ a b))
  (f 10))
34 2020-09-16 15:01

>>33
Internal definitions are syntactic sugar for letrec in R5RS and letrec* in R6RS and R7RS-small. In the latter case, the order of evaluations is specified to go from left-to-right. Only your first example is mutually recursive, in which case the order does not matter. This is because letrec first creates fresh locations, which are captured by the closures during their evaluations. Once evaluated, they are assigned to the location, mutating the captured environment. If portability was the goal, the second example should have used let* and the third let.

35 2020-09-16 15:08

The reason the standard says (eq? '(a) '(a)) is unspecified is because the implementation can choose to do common subexpression elimination on the parameters, which would transform it into something like this:

(let ((x '(a)))
  (eq? x x))

In this case the implementation is allowed to return #t. But notice that for (eq? (list 'a) (list 'a)) the implementation is required to return #f, because list always returns a fresh object and on distinct locations it must return #f.

36 2020-09-16 16:45

>>34

C-f ~/resources/Revised^6-Report-on-the-Algorithmic-Language-Scheme.pdf
C-s internal definitions
Internal definitions are now defined in terms of letrec*.

You are correct, I learned this from SICP, but the information is quite evidentially outdated.

If portability was the goal, the second example should have used let* and the third let.

The second is mutually recursive no? Also if this is syntactic sugar for letrec* wouldn't these be portable anyway? This is actually very valuable information.

>>35
Another example would be if you implemented strings as ropes then you could have mutations of strings which share space. I wasn't trying to argue that the unspecified behavior was left in for no reason, simply that it was present.

37 2020-09-17 18:52 *

>>36
You are right, I am just not paying attention. It should work with both letrec and letrec* without issues.

38 2020-09-17 23:06

>>1
If you're asking about industry use, I have deployed CHICKEN programs in production. Other than that, I just use Scheme to write toy programs for my own use.

39 2021-10-02 20:12

Where do I get a job as a Scheme programmer? Any of you hiring?

40 2021-10-02 22:12

Scheme isn't particularly popular in the business world. This means it's very difficult to find a business that's actively hiring programmers for Scheme based projects.

41 2021-10-03 14:48

>>40
With sleazy and negative names such as "scheme", "racket", "larceny", "chicken", and "guile", it's no surprise that Scheme is not particularly popular in the business world. Scheme may find some use in the seedier corners of the business world. For example, Scheme has attracted the likes of adware companies such as Direct Revenue that produce sleazy products in line with Scheme's branding.

42 2021-10-03 19:27

No.

43 2021-10-04 00:27 *

>>41
Are really you making the argument that the business world cares about sleazy names? Businesses wouldn't exist in the first place if the appearance of being negative was ever important to a business.

44 2021-10-05 05:58

How can anyone trust a programming language that is based on swindles? Lisp's lists are made of "cons".

45 2021-10-05 06:12 *

>>44
Drumpf supporters can.

46 2021-10-06 10:08

Scheme is a minimal programming language good for creating minimal software. In other words, it is good for creating subpar, incomplete, idealistic, and/or impractical software in a one-person team. Examples of Scheme applications include textbook exercises and SchemeBBS.

47


VIP:

do not edit these