off-topic

https://github.com/clojurians/community-development/blob/master/Code-of-Conduct.md Clojurians Slack Community Code of Conduct. Searchable message archives are at https://clojurians-log.clojureverse.org/
Nazral 2020-11-11T16:12:05.373300Z

Hi, I'm not sure if self-promotion is allowed but I've made a small lib in Clojure I'd like to share, is there any specific channel where I can do that?

dharrigan 2020-11-11T16:13:36.373600Z

I think #announcements is pretty common for publishing news about libraries

dharrigan 2020-11-11T16:15:00.374100Z

from the topic “Project/library announcements ONLY - use threaded replies for discussions. Do not cross post here from other channels. Consider #events or #news-and-articles for other announcements.”

dharrigan 2020-11-11T16:15:06.374400Z

you should be okay there 🙂

Nazral 2020-11-11T16:17:44.374800Z

Ok, thanks !

borkdude 2020-11-11T16:29:42.375700Z

I have a old script which uses the #_( ...) hack:

#!/bin/sh

#_(
exec "clojure" "-Sdeps" "{:deps,{selmer,{:mvn/version,\"1.12.17\"}}}"
)

(println :hello)
But when executing it, I get a REPL, not :hello printed

borkdude 2020-11-11T16:32:21.376300Z

Ah right, forgot to append "$0" "$@"