Re: core.async buffered channel behavior

2018-06-26 Thread craig worrall
I guess the interrupt doesn't really obliterate the fourth put attempt, and that put proceeds in background when you first take. On Wednesday, June 27, 2018 at 5:12:45 AM UTC+10, jonah wrote: > > Hi folks, > > It's been a while since I've used core.async. Documentation suggests that > > (chan

Re: off-topic: stackof developer survey

2017-03-25 Thread craig worrall
Yes, if you have a 'product' perspective, but others will have a service provider perspective and would like to see employers committed to Clojure and looking to engage with practitioners.+ On Sunday, March 26, 2017 at 4:49:45 AM UTC+11, Dragan Djuric wrote: > > > Isn't it advantageous in some

Re: Reader macro not ignoring form?

2016-09-19 Thread craig worrall
Many thanks Alex. Craig -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from

Reader macro not ignoring form?

2016-09-17 Thread craig worrall
nREPL server started on port 37885 on host 127.0.0.1 - nrepl://127.0.0.1:37885 REPL-y 0.3.7, nREPL 0.2.12 Clojure 1.9.0-alpha11 OpenJDK 64-Bit Server VM 1.8.0_91-8u91-b14-0ubuntu4~14.04-b14 Docs: (doc function-name-here) (find-doc "part-of-name-here") Source: (source

Re: clj-time/do-at not workin as expected

2016-05-20 Thread craig worrall
Chime? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email

Re: 2 way transform in single definition ? unification ?

2015-07-12 Thread craig worrall
You may have already discounted Java versions, but just in case ... http://www.javacodegeeks.com/2013/10/java-object-to-object-mapper.html Craig On Monday, July 13, 2015 at 3:53:19 AM UTC+10, Jules wrote: Guys, I have an external and an internal data representation. I need to define

Re: [ANN] Clojure 1.7.0-alpha3 now available

2014-11-02 Thread craig worrall
I hit this error when moving to a new box that had an encrypted FS. Might be related to your case as well. Good luck. On Wednesday, October 29, 2014 1:34:28 AM UTC+11, Stefan Kamphausen wrote: Hi, have there been any changes how fns with a name and recursion are compiled? One of my

Re: The Last Programming Language

2011-07-19 Thread craig worrall
Maybe. Or maybe Martin's talk should be entitled The Last Programming Language To Get Any Mind-Share. On Jul 19, 3:42 am, Steven Tomcavage ste...@tomcavage.com wrote: I double we'll ever see The Last Programming Language, because we're all hackers and we all have a notion that things could be

Re: Declarative Data Models

2011-05-02 Thread craig worrall
On May 2, 8:37 pm, David Jagoe davidja...@gmail.com wrote: (i) Is it possible to generate the (defrecord Person ...) from the person-entity hash-map that I have shown? Sure. You may want to have a look at https://gist.github.com/876029 (and associated post to this group) for something