[ANN] riverford/durable-ref 0.1.2 - Durable reference types for clojure

2017-02-10 Thread Daniel Stone
Hi All, I've just released a new version of durable-ref to clojars, available as [riverford/durable-ref "0.1.2]. Since my last ANN I have added: - `atomic` references, with a reference dynamodb implementatino plus extension points. - `nippy` storage format using the high performance taoensso/n

[ANN] durable-ref 0.1.1 providing durable references to remote values

2016-11-28 Thread Daniel Stone
I am please to announce the first release durable-ref! durable-ref is a library that defines conventions, a set of implementations and extensibility points for the following reference types: *value* references, which represent an immutable pointer to a value held 'somewhere else', this allows t

[ANN] faraday-atom 0.2.0 - a durable clojure atom backed by DynamoDB

2015-12-17 Thread Daniel Stone
I am pleased to announce that faraday-atom is now available from clojars . This library provides an atom that will provide atomic state transition over a single dynamo item and allows you to use clojure's epo

[ANN] multi-atom 0.1.0 - a library for dealing with atom-like cells. Includes DynamoDB support.

2015-09-11 Thread Daniel Stone
Hi, I am pleased to announce the first release of: https://github.com/mixradio/multi-atom. Much in the spirit of avout[1] and enduro[2], multi-atom is a library for dealing with things that can behave as atoms, only not limited to in-memory cells. Its approach is to: a. Use the IAtom interf

unable to load mydocemacs on Lisp Cabinet on XP any help, pls?

2014-11-30 Thread Sylver Stone
Hi, group: I´m trying with Lisp Cabinet on XP (unable to set a proper environment for learning Clojure (/emacs/slime/) on e.g. Fedora (though that´s other (sad) story). I tried the to-usb´installation option for testing purposes anyway but got into the following issues: (If someone familiar with

Re: Hierarchical data core.logic

2014-11-13 Thread Daniel Stone
I'm not sure I fully understand, I guess I'm looking for the equivalent to a sub query? When I tried to implement this early, I naively perhaps tried something like this: (defn bars-for-foo [?foo ?bars] (l/== ?bars (l/run* [?q] (fooz ?foo ?q This seems relevant: http://dev.cloju

Re: how to launch repl and switch to specific namespace programmatically

2012-12-13 Thread Stone
u'll be able to acces the vars defined in it. >> >> my-repl.repl=> my-var >> "hi" >> >> Cheers, >> >> Juan >> >> >> On Thursday, December 13, 2012 2:25:44 PM UTC-3, stone wrote: >>> >>> I tried the following w

Re: how to launch repl and switch to specific namespace programmatically

2012-12-13 Thread stone
fer.invoke(CLOJURE); maybeLoadResourceScript("user.clj"); } finally { Var.popThreadBindings(); } } On Friday, December 14, 2012 1:25:44 AM UTC+8, stone wrote: > > I tried the following way: > > java -Xmx1G -cp $CLASSPATH cloju

how to launch repl and switch to specific namespace programmatically

2012-12-13 Thread stone
-repl.repl'. How to achieve this so I can use my-var directly after repl launching ? Thanks, Stone -- 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 ne

Re: JVM 7 support (invokedynamic)

2011-08-25 Thread Kenny Stone
A significant speed improvement without resorting to type hints would be a pretty huge win from a programmer's standpoint. Kenny On Thu, Aug 25, 2011 at 1:21 PM, Nick Zbinden wrote: > @Aaron: Could you go into why this is the case? What does jruby do > that it needs it so much and clojure does

Re: Good book on migrating from (Java) OO to FP

2011-07-30 Thread Kenny Stone
Dean gave a talk at Windy City Rails a few years ago that opened this (ruby) programmer's eyes to functional programming. I haven't read the book, but he's a very good educator. Kenny On Sat, Jul 30, 2011 at 12:03 AM, Sean Corfield wrote: > On Fri, Jul 29, 2011 at 5:03 AM, Colin Yates > wrote:

Re: Java 7 is out!

2011-07-28 Thread Kenny Stone
Can clojure take advantage of some features if they are available? I know the JRuby dudes are pretty excited about invoke dynamic... Kenny On Thu, Jul 28, 2011 at 6:14 PM, Sean Corfield wrote: > On Thu, Jul 28, 2011 at 8:54 AM, Daniel Gagnon > wrote: > > So, what does it means for Clojure? >

Re: Help on a Clojure performance question

2011-07-08 Thread Kenny Stone
JVM is very slow to start. Try measuring around your method calls instead. Also try running it for a long enough time to see the JVM GC kick the butt of python's GC... On Fri, Jul 8, 2011 at 6:19 PM, Michael Klishin wrote: > 2011/7/9 Christopher > >> % time cake run mapper.clj < input.txt >>