This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-08-29
Channels
- # admin-announcements (2)
- # beginners (20)
- # boot (139)
- # cider (6)
- # clara (1)
- # cljs-dev (7)
- # cljsrn (4)
- # clojure (160)
- # clojure-berlin (1)
- # clojure-canada (6)
- # clojure-gamedev (1)
- # clojure-japan (7)
- # clojure-russia (14)
- # clojure-spec (90)
- # clojure-uk (10)
- # clojurescript (73)
- # clojutre (1)
- # conf-proposals (8)
- # crypto (67)
- # cursive (9)
- # datomic (6)
- # editors-rus (1)
- # events (1)
- # figwheel (6)
- # funcool (2)
- # hoplon (19)
- # instaparse (37)
- # kekkonen (4)
- # lein-figwheel (2)
- # leiningen (5)
- # luminus (1)
- # off-topic (1)
- # om (10)
- # onyx (60)
- # protorepl (2)
- # re-frame (81)
- # reagent (10)
- # ring-swagger (15)
- # rum (6)
- # specter (17)
- # test-check (10)
- # uncomplicate (31)
- # untangled (12)
- # yada (6)
looking at a code sample that uses "(GET (str js/context "/docs") {:handler #(session/put! :docs %)})"
i can see that js/console comes from the Console API listed here https://developer.mozilla.org/en-US/docs/Web/API
i made an unfortunate mistake in naming my project now that i’m halfway through it - can i rename it (and all the namespaces) without breaking it?
Sure. I’ve done it before. Just make sure you make a ‘snapshot’ of your project folder before doing it just in case it gets completely hosed, you have the before still hanging about so you can try again.
Or you know, version control :)
I’m doing the Udemy Clojure course and my output for lein uberjar
is really different than what is shown in the course video. I ended up with an uberjar
folder and then an uberjar+uberjar
folder. can’t figure out what I did wrong 😞
@camille: Which course are you doing on Udemy?
@shaun-mahood Clojure Fundamentals For Beginners
@camille: If you can post your code someone might be able to help.
thanks @shaun-mahood . will do!
@yonatanel yeah i figure that is the only file that’d be helpful! 😄
@camille: it looks like that behavior is given by :target-path
(I have never needed it, especially at the beginning). Leiningen has a sample project, you can check there what the options are: https://github.com/technomancy/leiningen/blob/master/sample.project.clj#L303