Email list hosting service & mailing list manager

Re: [gambit-list] Module system ELS20 presentation John Cowan (27 Apr 2020 15:38 UTC)
Re: [gambit-list] Module system ELS20 presentation Marc Nieper-Wißkirchen (27 Apr 2020 15:54 UTC)
Scheme library namespace and library name mapping Lassi Kortela (27 Apr 2020 16:03 UTC)
Re: [gambit-list] Module system ELS20 presentation Marc Feeley (27 Apr 2020 16:38 UTC)
Re: [gambit-list] Module system ELS20 presentation Peter Bex (27 Apr 2020 16:14 UTC)
Re: [gambit-list] Module system ELS20 presentation Lassi Kortela (27 Apr 2020 16:27 UTC)
Re: [gambit-list] Module system ELS20 presentation Marc Feeley (27 Apr 2020 16:52 UTC)
Re: [gambit-list] Module system ELS20 presentation Lassi Kortela (27 Apr 2020 17:02 UTC)
Re: [gambit-list] Module system ELS20 presentation Matthew Flatt (27 Apr 2020 17:07 UTC)
Re: [gambit-list] Module system ELS20 presentation Marc Feeley (27 Apr 2020 17:14 UTC)
Re: [gambit-list] Module system ELS20 presentation Lassi Kortela (27 Apr 2020 17:17 UTC)
Re: [gambit-list] Module system ELS20 presentation Lassi Kortela (27 Apr 2020 16:15 UTC)
Re: [gambit-list] Module system ELS20 presentation Marc Nieper-Wißkirchen (27 Apr 2020 16:25 UTC)
Re: [gambit-list] Module system ELS20 presentation Lassi Kortela (27 Apr 2020 16:35 UTC)
(missing)
Re: [gambit-list] Module system ELS20 presentation Lassi Kortela (27 Apr 2020 19:11 UTC)
(missing)
Eiffel Lassi Kortela (27 Apr 2020 19:43 UTC)
(missing)
Re: [gambit-list] Eiffel Lassi Kortela (27 Apr 2020 20:02 UTC)

Re: [gambit-list] Module system ELS20 presentation Marc Feeley 27 Apr 2020 17:14 UTC

> On Apr 27, 2020, at 1:01 PM, Lassi Kortela <xxxxxx@lassi.io> wrote:
>
>> A registry would be useful but it should not be the only way to name libraries.  A registry forces authors to register their libraries for every new library they want others to use.  But that can become a rather tedious process, especially if you are into rapid development and sharing a new idea “right now”.  I want to put the library up on my github account and share the link… a 60 second process at most.
>
> +1
>
> Last I checked, Racket requires new packages to be registered in order to download them using their "raco pkg" tool. The registration process is completely automated, and it's very painless and nicely done, but it'd still be nice to be able to skip it if a geographically distributed group of people is working by themselves and doesn't (yet) need to share their work.

The problem with registering a name is that it becomes reserved.  So the first one to reserve “list”, “sort”, “gui”, etc will prevent others to use those names even if they have a “better” library.

With URLs you don’t have that problem.  Yes URLs are longer, but they point unambiguously to a specific library.

>
> npm (node.js package manager) arguably shows that it may not even be desirable to publish all libraries people write in a central registry. With too many of them it becomes difficult for users to figure out which ones are polished enough for serious use.
>
> Collections like snow-fort, Akku, Chicken eggs and Emacs MELPA strike a good balance between quality and comprehensiveness IMHO.
>

Perhaps and I’m not at all against it.  It seems there are two needs… what you could call “community agreed portable libraries” and “libraries in the wild”.

Marc