Re: Using 1_000_000_000

2015-02-18 Thread Akos Gyimesi
Hi Cecil, It is not possible in Clojure. This is the full regexp pattern for integers: https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/LispReader.java#L67 https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/LispReader.java#L67 See also

Re: New Member Initiation

2015-02-10 Thread Akos Gyimesi
Hi Shubham, See also this list of novice-friendly Clojure projects, it may be a good starting point for contribution: https://github.com/marcuscreo/clojure-learning-resources https://github.com/marcuscreo/clojure-learning-resources Regards, Akos On 10 Feb 2015, at 00:56, Christopher Small

Re: How to handle refactoring with TDD and mocking/stubbing

2015-01-06 Thread Akos Gyimesi
On Sat, Jan 3, 2015, at 02:46 AM, Brian Marick wrote: I use TDD and mocking/stubbing (conjure) to test each layer of my code. The problem is when I change the function signature and the tests do not break, because the mocks/stubs do not know when their argument lists no longer agree

Re: How to handle refactoring with TDD and mocking/stubbing

2015-01-06 Thread Akos Gyimesi
). Hope this helps. On Tuesday, 6 January 2015 08:22:36 UTC, Akos Gyimesi wrote: On Sat, Jan 3, 2015, at 02:46 AM, Brian Marick wrote: I use TDD and mocking/stubbing (conjure) to test each layer of my code. The problem is when I change the function signature

Re: Proposing a new Clojure documentation system (in Clojure)

2014-05-07 Thread Akos Gyimesi
On Tue, May 6, 2014, at 07:54 PM, Timothy Baldridge wrote: Clojure is being reworked into literate form already Proof of this claim? I think Tim referred to his personal project to convert Clojure code into a literate form: [1]https://groups.google.com/forum/#!topic/clojure/RgQX_kXzFMM

Re: devops-ish questions regarding Clojure webapp server-side REPL usage

2014-05-04 Thread Akos Gyimesi
Hi Deyan, I also think that it's usually better to have a standalone Clojure app with a built-in HTTP server, and possibly with a reverse proxy as a frontend. You will have much more control this way, and Tomcat will not surprise you with wiping your hotfixes. About thread handling: it's