Re: Interest in a Full Featured Clojure Blog Engine

2013-07-22 Thread Chris Wilson
There is a Clojure static site generator, Misaki: http://liquidz.github.io/misaki/ Which has a bunch of nice features including swappable templates, although the non-standard ones need a little love. Chris On 22 July 2013 07:12, Keith Irwin wrote: > On Jul 21, 2013, at 10:01 PM, Colin Flemin

Re: java interop: passing int[]

2013-07-22 Thread Mikera
You can use vectorz-clj if you want fast double[] vector and matrix operations on the JVM. https://github.com/mikera/vectorz-clj It's basically a comprehensive wrapper over almost everything you might possibly want to do with Java double[] arrays, but wrapped up behind the core.matrix API so t

[ANN] Beckon - POSIX signal handling in Clojure

2013-07-22 Thread Jean Niklas L'orange
Hello Clojurians, I've released a tiny library for handling POSIX signals named Beckon. You can find more information and documentation at https://github.com/hyPiRion/beckon: It is not a library aimed to make POSIX signals simpler, but to make it easier to work with from Clojure without gettin

Re: ns defaults

2013-07-22 Thread Alex Fowler
A stray comment, but maybe it can give you some going, in a combo with :require-macros or cljs repl - http://stackoverflow.com/questions/9847013/syntax-of-require-in-the-clojurescript-repl пятница, 19 июля 2013 г., 23:03:30 UTC+4 пользователь Jozef Wagner написал: > > On Friday, July 19, 2013 4:

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-22 Thread Manuel Paccagnella
There is also Yuggoth: https://github.com/yogthos/yuggoth It's pretty feature-complete as I can see, but I haven't looked at the source for its the architecture. Trivia: It has been written starting with Luminus, and the author is writing a book about web development in Clojure for The Pragmati

[clojure 1.5] deftype & defrecord class annotations missing in action

2013-07-22 Thread the80srobot
Hello, Maybe this is a dumb question, but I have been trying to get deftype class annotations to work for a few hours now, ended up reading most of the code in Compiler.java and short of debugging Clojure, I'm out of ideas. As I understand the murky interactions between deftype, metadata and Ja

Robo VM

2013-07-22 Thread Jacob Goodson
I wanted to see if people know/knew about this. According to the website it states that the VM converts JVM bytecode to native... could clojure take advantage of this(I assume it can but I would like to hear from people with a true understanding if I should be excited or not =P)? -- -- You r

Re: Robo VM

2013-07-22 Thread Gary Trakhman
Seems like it would need reflection and classloaders for loading ASM bytecode, and the run-time would thus need its compiler, I can't tell from the site whether that's the case. If there's no reflection, then it would be a pain to make clojure work. But, I see it says: 'The standard classes (java

core.match question: how can I escape keywords?

2013-07-22 Thread Yong
I have a sequence of keywords which I want to use match on. However, :when has a special meaning, which means I cannot do something like: (let [x [:ok :when :where]] (match [x] [[_ :when _]] :a0)) which gives a "clojure.lang.Compiler$CompilerException: java.lang.AssertionError: Assert f

Re: [ANN] Fluokitten - Category theory concepts in Clojure - Functors, Applicatives, Monads, Monoids and more

2013-07-22 Thread Phillip Lord
That's a good answer! I've enjoyed reading the documentation of both fluokitten and morph and understood it. The functionality certainly seems useful. Phil Dragan Djuric writes: > If Clojure has all of the Haskell's type features, I guess there would be > only one Clojure monad library, more

Re: [ANN] Carmine (Redis client) v2, Nippy (serializer) v2 are out

2013-07-22 Thread László Török
Peter this is wonderful, kudos! I'll give it a spin tonight. Las Sent from my phone On Jul 22, 2013 7:04 PM, "Peter Taoussanis" wrote: > Hey all, quick update: just pushed *Carmine v2.0.0* and *Nippy v2.0.0* to > Clojars. > > Carmine: GitHub | > Changel

[ANN] Carmine (Redis client) v2, Nippy (serializer) v2 are out

2013-07-22 Thread Peter Taoussanis
Hey all, quick update: just pushed *Carmine v2.0.0* and *Nippy v2.0.0* to Clojars. Carmine: GitHub | Changelog| API docs | [com.taousso/carmine "2.0

Re: core.match question: how can I escape keywords?

2013-07-22 Thread David Nolen
This is just a bug :when should only have special meaning if it occurs in a list not a vector. Please file a ticket in JIRA: http://dev.clojure.org/jira/browse/MATCH David On Sun, Jul 21, 2013 at 8:54 PM, Yong wrote: > I have a sequence of keywords which I want to use match on. However, :when

Type hint puzzler

2013-07-22 Thread Gary Fredericks
Can anybody figure out how I can type hint this adequately? Not only does it result in reflection, but because a Fn is both a Runnable and Callable, it can result in runtime incorrectness: https://gist.github.com/fredericksgary/6058783 -- Gary Fredericks (803)-295-0195 fredericksg...@gmail.com w

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-22 Thread Timothy Washington
On Sun, Jul 21, 2013 at 5:16 PM, Manuel Paccagnella < manuel.paccagne...@gmail.com> wrote: > > >>- what I should use to model workflow; possibly >> lamina >>? >> >> I'm not sure Lamina is the right tool for this job. What are your ideas > for modeling an

Re: Interest in a Full Featured Clojure Blog Engine

2013-07-22 Thread Timothy Washington
Hey all, *A)* Thanks for all the feedback on this topic. There's a few interesting things here. Notably that there are at least these existing blog engines: - http://github.com/bitemyapp/neubite (apparently needs a WYSIWYG editor) - https://github.com/yogthos/yuggoth (although this adverti

Re: [ANN] Carmine (Redis client) v2, Nippy (serializer) v2 are out

2013-07-22 Thread Peter Taoussanis
Thanks Las, much appreciated! Just shout if there's anything I can assist with. - Peter -- -- 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