Re: java.lang.OutOfMemoryError: PermGen space

2014-12-17 Thread Micha Niskin
You might try experimenting with JVM options to increase PermGen: https://github.com/boot-clj/boot/wiki/JVM-Options#permgen-errors On Wednesday, December 17, 2014 12:41:29 PM UTC-5, Moritz Ulrich wrote: > > > Hello, > > I'm getting the following error while working on a Clojure(Script) REPL > o

[ANN] Boot 2.0.0-rc1 released

2014-12-17 Thread Micha Niskin
Boot (https://github.com/boot-clj/boot) is a new build tool for Clojure. * The boot API has been stabilized and incorporates feedback from the community about naming and usage. * We introduce immutable fileset objects which are threaded through the task pipeline and provide an abstraction over f

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-07 Thread Micha Niskin
:15 PM UTC-5, Micha Niskin wrote: > > I'll answer inline below: > > On Friday, November 7, 2014 12:15:55 PM UTC-5, Laurent PETIT wrote: > > Just to check that I correctly understood the concepts : > > - it's upfront, in the task itself, that the decision of wheth

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-07 Thread Micha Niskin
cult to distinguish when one > does not have diseases related to ordering of letters. Maybe falling back > to longer names could fix this: :source-paths and :resource-paths > Yes, I like this! Perhaps even some better way to describe these things than "source" and "resour

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-07 Thread Micha Niskin
this stuff and this is one of the first iterations :) ​ -- Micha Niskin On Fri, Nov 7, 2014 at 6:46 AM, Henrik Eneroth wrote: > Agreed, because it seems like a good tool. :-) > > > On that vein; what's the syntax for add-src? > > I'm trying to include helper.cljs in the

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-07 Thread Micha Niskin
pretty excited about this aspect of boot in particular and would love to see how people find ways to use it in their workflows. ​ -- Micha Niskin On Fri, Nov 7, 2014 at 10:22 AM, Micha Niskin wrote: > Henrik, the -d option simply adds dependencies to the project. The main > use case fo

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-07 Thread Micha Niskin
the version. ​ -- Micha Niskin On Fri, Nov 7, 2014 at 4:16 AM, Henrik Eneroth wrote: > I tried now, just running boot -u, and it worked perfectly. It's was > probably some caching thing with Clojars. Currently at pre21 > > Now the command runs without errors, but it also doesn&

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-06 Thread Micha Niskin
Did you forget to cut a release > or should I set BOOT_CHANNEL to dev? > > > On Thursday, November 6, 2014 8:30:55 PM UTC+1, Micha Niskin wrote: >> >> Hi Henrik, >> >> You found a bug! We just fixed it though. Boot was confused by >> `reagent/reage

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-06 Thread Micha Niskin
hough. Did you forget to cut a release > or should I set BOOT_CHANNEL to dev? > > > On Thursday, November 6, 2014 8:30:55 PM UTC+1, Micha Niskin wrote: >> >> Hi Henrik, >> >> You found a bug! We just fixed it though. Boot was confused by >> `reagent/reage

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-06 Thread Micha Niskin
n Thursday, November 6, 2014 8:30:55 PM UTC+1, Micha Niskin wrote: >> >> Hi Henrik, >> >> You found a bug! We just fixed it though. Boot was confused by >> `reagent/reagent` when it tried to match that against the artifact ids >> returned by Pomegranate, becaus

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-06 Thread Micha Niskin
... >boot.App.runBoot App.java: 217 > boot.App.main App.java: 309 > > > Any feedback on what I (or it) may be doing wrong? > > > Thanks! > > Henrik > > On Monday, November 3, 2014 9:40:58 PM UTC+1, M

Re: Introducing Boot v2 with a streamlined CLJS workflow

2014-11-04 Thread Micha Niskin
task. In return you get 100% deterministic builds. We’ll be talking about the details of the whole temporary filesystem machinery soon. Have fun playing with boot! ​ -- Micha Niskin On Mon, Nov 3, 2014 at 5:45 PM, Laurent PETIT wrote: > And more seriously, I remember reading that you put

Introducing Boot v2 with a streamlined CLJS workflow

2014-11-03 Thread Micha Niskin
Hi! Boot (http://github.com/boot-clj/boot) is a build tool for Clojure. We've pulled together lessons learned from a year or so using boot v1 in production and are now getting ready to release v2. To show what boot can do we present a very streamlined and awesome boot-based ClojureScript devel

Re: bug in clojure.zip when calling next on empty list node?

2013-12-22 Thread Micha Niskin
What I was getting at there was that it seems like nil could mean a leaf node with the value nil or the absence of leaf nodes, and the two situations can't be distinguished. On Dec 22, 2013 12:26 PM, "Lee Spector" wrote: > > On Dec 22, 2013, at 12:02 PM, Micha Niskin wr

Re: bug in clojure.zip when calling next on empty list node?

2013-12-22 Thread Micha Niskin
Also, what about this: (loop [z (zip/seq-zip '((nil) 0))] (if (zip/end? z) :done (do (println (zip/node z)) (recur (zip/next z) Which produces: ((nil) 0) (nil) nil 0 :done On Saturday, December 21, 2013 5:59:16 PM UTC-5, Lee wrote: > On Dec 21, 2013, at 11:49 AM, Lee

Re: [ANN] Hoplon: web applications in Clojure and ClojureScript

2013-12-18 Thread Micha Niskin
7;s happening in the state machine, so it's not like there is a problem with inadvertently introducing circular deps. -- Micha Niskin On Wed, Dec 18, 2013 at 11:40 PM, Cedric Greevey wrote: > On Wed, Dec 18, 2013 at 10:45 PM, Micha Niskin wrote: > >> The difference between a cell

Re: [ANN] Hoplon: web applications in Clojure and ClojureScript

2013-12-18 Thread Micha Niskin
ags available? > 4. Is defc equivalent to def and cell? And defc= equivalent to def and > cell=? > 5. What's the difference between cell and cell=? Is one like an atom, and > the other like a reactive function? > 6. What's the difference between a cell an an atom? >

Re: [ANN] Hoplon: web applications in Clojure and ClojureScript

2013-12-18 Thread Micha Niskin
verview of the syntax. The > purpose of the examples is clear, but the mechanism is a mystery. > > - James > > > On 18 December 2013 20:05, Micha Niskin > > wrote: > >> Documentation is here: http://hoplon.io >> >> We continue to add documentation all t

[ANN] Hoplon: web applications in Clojure and ClojureScript

2013-12-18 Thread Micha Niskin
Documentation is here: http://hoplon.io We continue to add documentation all the time. Serverside stuff not yet documented yet. Feedback welcomed! -- Micha Niskin and Alan Dipert -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To po