This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-10-31
Channels
- # aleph (1)
- # announcements (2)
- # beginners (105)
- # braveandtrue (1)
- # cider (61)
- # clara (47)
- # cljdoc (29)
- # cljs-dev (5)
- # clojure (61)
- # clojure-austin (14)
- # clojure-brasil (1)
- # clojure-india (3)
- # clojure-italy (4)
- # clojure-mexico (1)
- # clojure-nl (2)
- # clojure-spec (37)
- # clojure-uk (95)
- # clojurescript (73)
- # cursive (12)
- # data-science (1)
- # datomic (26)
- # duct (10)
- # emacs (5)
- # fulcro (47)
- # hoplon (6)
- # hyperfiddle (3)
- # jobs-discuss (3)
- # kaocha (2)
- # leiningen (3)
- # nrepl (8)
- # off-topic (3)
- # onyx (2)
- # re-frame (31)
- # reitit (16)
- # shadow-cljs (36)
- # spacemacs (46)
- # specter (16)
- # tools-deps (13)
- # yada (22)
Say, anybody got something that works similarly to lein-try
, where I can lein try clojure-lanterna
and fire up a REPL with the latest version loaded?
Relative newbie here, but I think the -Sdeps
option covers that use case, no?
I'm thinking in a bare directory with no existing deps.edn present
Think that'll work, thanks @dominicm
I use these bash aliases to try out new deps in a nice REPL: https://gist.github.com/Lokeh/a67bb2dc9295d7990d9f8525f478457c
clj -Sdeps '{:deps {clojure-lanterna {:mvn/version "RELEASE"}}}'
-- or you can use "LATEST"
to look for snapshots instead.
I use a command like that all the time when I just want to try out a library without any setup.
That looks like a fun library @timgilbert -- are you planning to build something public or is it just for fun?
Just for fun, was looking at some roguelike things from a HN post earlier today
Here's the post in case anyone else is interested: http://www.gamasutra.com/blogs/JoshGe/20181029/329512/How_to_Make_a_Roguelike.php