This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-02-17
Channels
- # beginners (26)
- # calva (7)
- # cider (6)
- # cljs-dev (7)
- # clojure (86)
- # clojure-europe (1)
- # clojure-finland (1)
- # clojure-spec (3)
- # clojure-uk (11)
- # clojurescript (18)
- # cursive (6)
- # data-science (1)
- # emacs (13)
- # fulcro (34)
- # juxt (8)
- # nrepl (6)
- # off-topic (11)
- # pathom (25)
- # re-frame (13)
- # reitit (11)
- # shadow-cljs (4)
- # spacemacs (3)
Noob question for y'all. I recently got figwheel working on a chromex project in Cursive cheer It taught me a fair bit about how the project.clj works. But now I've got a new issue. Does anyone know how to get the output to the repl colorized? When I eval a defn, it shows up in full color in the repl, but when I look at my state object, the text is all grey. fn: https://imgur.com/a/ybvRNce state: https://imgur.com/a/qE8sLPR Any advice would be greatly appreciated
Bonus points if it pretty prints in the repl
@josh200 Maybe ask in #cursive if you don't get an answer here? And "Welcome!" to Clojure!
Ah, I didn't know that was a channel! Thanks!
We have hundreds of channels here -- it can be a bit overwhelming...
if anyone is looking for a good real world beginner project, setup an RSS feed for alex miller music recommendations. would enjoy that right now
What good recommendations has he had? I must be in the wrong channels.
he's ended many of his recent journals with music recommendations. i think on a couple podcasts he's mentioned music as well
Oh. OK. Now realizing how far behind I am on all the podcasts.
I'll put one little bit in here for anyone who sees this thread "Rich chided me for not being more familiar with the Presence album." https://www.youtube.com/watch?v=OUHjo111vkw
Hello guys. I am just arriving to this channel. I need help to configure gradle-clojure plugin on a Grails project. I've been stuck on that for days. I am trying to install plugin version 0.4.0 because Grails won't work with Gradle 5. So I upgraded Gradle to 4.2 and I am trying to install plugin 0.4.0. But I am getting "Could not generate a proxy class for class gradle_clojure.plugin.clojure.ClojureExtension"
I am making a small project using compojure/liberator. I have this bit of code (-> (apply routes [app-routes user-routes]) (wrap-defaults site-defaults))
and when I hit /user/example
I get Not Found
but if then switch the order to this `(-> (apply routes [user-routes app-routes])
(wrap-defaults site-defaults))` it works and I get Hello example!
.
My technical debt credit card has finally been declined --- the naive way I'm handling these test reports I need to look at (reading all 0.5G into memory and structuring them) now gets me to the GC overhead limit
I'm not quite sure where I should apply smarter techniques and I'm soliciting pointers
likely obvious starting points: - I'm not actually doing anything where I need all the reports, so maybe I should parse them file by file when I need one - I have heard of "databases", sounds cool
constraint: - I didn't convince my boss that we should get me a Datomic Cloud instance
there are some heuristics the jvm goes through to set a max heap size if you don't manually set one
depending on the jvm version and how munch memory you have, the default max heap could be as low as 1gb, which half a gig of text on disk could easily fill in memory due to ucs-16
I am not sure how familiar you are with the jvm, but livelock:deadlock::gc overhead exception:out of memory exception