other-lisps

Pavel Filipenco 2023-10-20T15:34:29.255929Z

Hey, anyone successfully launched cloture (https://github.com/ruricolist/cloture)? I tried to quickload it but it gave a compile-error

Pavel Filipenco 2023-10-20T17:22:29.455589Z

Apparently having *print-case* set to :downcase breaks it. Very weird, maybe it has to do with the fact that in cloture clj symbols are surrounded with || to make them case sensitive

mdp 2023-10-27T14:05:29.376559Z

@pavel.filipenco The repo is now found on github as well as gitlab and so has been added to ultralisp as of this morning (EST). https://github.com/persidastricl/persidastricl

💯 1
Pavel Filipenco 2023-10-27T14:57:50.021969Z

@mdp, that's great, however: https://ultralisp.org/projects/persidastricl/persidastricl > Finished 36 minutes 30 seconds ago. There was an error. Next check will be made in 23 minutes 29 seconds. Seems some Ultralisp internals timed out. Let's see if this persists in 23 minutes later

mdp 2023-10-27T15:05:36.779879Z

aah ok … I will see if I can find what the error is somewhere but it may need to wait till after work

Pavel Filipenco 2023-10-27T16:00:45.965639Z

It was some ultralisp problem

🎉 1
Pavel Filipenco 2023-10-25T21:33:52.507819Z

@mdp, did you put the library on ultralisp?

mdp 2023-10-25T21:36:35.042849Z

No I have only set it up to be found locally by the asdf system/quicklisp as mentioned in the readme

Pavel Filipenco 2023-10-25T21:42:44.342479Z

Try putting it on ultralisp. I bet other common lispers will enjoy finding it!

👍 1
mdp 2023-10-25T23:35:22.120279Z

@pavel.filipenco I looked into adding it to ultralisp but it appears they do not support adding gitlab repositories quite yet sadly 😞 I will revisit periodically or consider a repository relocation

mdp 2023-10-24T15:51:55.923799Z

Hi Pavel, I wrote a library with immutable data structures, some familiar syntax, atoms, lazy sequences, and some core functionality/libraries to give me some of the nice things in common lisp that I enjoy in clojure. If you use sbcl, it might work pretty well for you (and if you have issues let me know) https://gitlab.com/pupcus/persidastricl I would not call it ‘finished’ but I have written several things with it (ymmv). The goal was not to ‘recreate’ clojure in CL but to have some of the things in CL that are helpful from clojure. See the README for more.

💯 1
Pavel Filipenco 2023-10-24T17:12:53.090489Z

Thanks! I'll see if I can contribute to it if I find issues while using it