This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-11-06
Channels
- # admin-announcements (59)
- # announcements (1)
- # beginners (67)
- # boot (140)
- # cljsrn (8)
- # clojure (70)
- # clojure-berlin (18)
- # clojure-dev (7)
- # clojure-russia (53)
- # clojurescript (124)
- # clojurescript-ios (3)
- # clojurewerkz (2)
- # clojurex (10)
- # code-reviews (42)
- # cursive (9)
- # datomic (2)
- # editors-rus (2)
- # emacs (5)
- # events (1)
- # hoplon (35)
- # jobs (8)
- # ldnclj (7)
- # lein-figwheel (34)
- # luminus (1)
- # om (410)
- # onyx (22)
- # overtone (19)
- # portland-or (6)
- # re-frame (1)
- # yada (4)
Is maven central throwing errors for everyone?
ClojureScript 1.7.170 released! https://groups.google.com/forum/#!msg/clojurescript/AiCARjGT2Mg/J2TdxtHgBAAJ
https://github.com/puniverse/pulsar is probably the closest one, but still a wrapper over Java. Nothing native to Clojure that I know of
Possibly off topic- but does anyone know why or how to speed up Emacs + Cider when outputting a large(ish) amount of text?
I have similar problems, cider being slow pretty-printing repl output
I know that this setting helps globally but doesn't specifically address cider
(setq jit-lock-defer-time 0.05)
@mrjaba: what I do is to run the repl in a terminal (outside of CIDER's reach) and then cider-connect
@pesterhazy: does that help at all?
jit-lock-defer-time is a variable defined in `jit-lock.el'.
Its value is 0.05
Original value was nil
Documentation:
Idle time after which deferred fontification should take place.
If nil, fontification is not deferred.
You can customize this variable.
yes it helps for those cases
@mrjaba: let us know if you find the problem
@mrjaba: also check #C099W16KZ if you haven’t already!
I’m trying to use lein ancient
to upgrade dependencies, and it doesn’t seem to catch plugins in a profile when I try to upgrade :all
— just dependencies.
lein ancient :plugins
shows the outdated plugins. lein ancient upgrade :plugins
also just shows them and doesn’t upgrade anything. lein ancient upgrade :plugins :interactive
and lein ancient upgrade :interactive :plugins
both claim there’s nothing to upgrade.
lein ancient upgrade :interactive :all
was what I wanted (interactively upgrade everything)
@joelkuiper: ah cool, that's probably where I should have posted thanks
@kittenll: try freenode
Is there a clojure walk function that does so recursively (but still gives the keys as parameters to the function) ?
is there any way to force clojure.test suite to fail when uncaught exception is thrown? I’m seeing cases where it says all tests are passing even tho uncaught exceptions are thrown during the test cases
nha: there are a few options in clojure.walk. The demo functions are very helpful for seeing what's going on.
@bronsa: I had a question related to error reporting - AFAIK there’s no way to get the source coordinates of the end of a form (i.e. a list) with the standard reader. Is that possible with tools.reader?
This would be so that I could give a good source position when a form is incomplete and the parser is expecting more input.
@cfleming: yeah, tools.reader's indexing reader attaches that info in the form metadata
@bronsa: Nice. Have you ever tried monkey-patching read with tools.reader to use that for standard Clojure code?
@jarredlhumphrey: clojure.test always catches and reports exceptions on the main test thread. An exception could be uncaught if it happened on another thread. There isn't really a good way for clojure.test to detect this directly, unless you can control thread-creation in the code you're testing. Setting a global uncaught exception handler will at least allow you to make those exceptions visible in logs.
@stuartsierra: ohh ok gotcha. thanks for your help!
hi all, is this a good place to ask something about leiningen?
thanks, let me try there
@rangtongshentong: just go for it
ok let me try here
basically failing to lein run due to i think having too many dependencies
CreateProcess error=206, The filename or extension is too long
lein command has become too long for windows cmd
yes ridiculously long, well over 1000 chars
its actually 33k 💩
what does lein deps :tree
look like? if it complains about a bunch of conflicts you should probably try to resolve those
ah lein deps :tree is suggesting some exclusions
that could work...