Re: help with the lawyers?

2014-05-31 Thread Sean Corfield
This might be a good place to start: http://dodcio.defense.gov/OpenSourceSoftwareFAQ.aspx and in particular this section: http://dodcio.defense.gov/OpenSourceSoftwareFAQ.aspx#OSS_Licenses and this section: http://dodcio.defense.gov/OpenSourceSoftwareFAQ.aspx#Using_OSS_in_DoD_systems Having wo

Re: [ANN] JSON/CLJ/EDN comparison table

2014-05-31 Thread Patrick Logan
Now *that* is a pretty reasonable comparison. I would quibble here and there: I don't find JSON-LD as heavy-weight as you; the benefit of universal identifiers is an advantage in the domains I work in; and the whole graph vs. struct debate... it's a lot easier to represent a struct as a simple

Re: [ANN] JSON/CLJ/EDN comparison table

2014-05-31 Thread Jozef Wagner
Well the suggestion to consider JSON-LD was really out of place. Compared to JSON-LD, EDN belongs to the category of lightweight, schemaless and streaming friendly data serialization formats. JSON-LD is closer to e.g. Turtle or RDF/XML. It serves a different purpose and has different goals than

Re: Registering commands in a command language

2014-05-31 Thread Stuart Sierra
You can use the namespace itself as the mapping. For example: (ns app.commands) (defn dothis [& args] ...) (defn dothat [& args] ...) (ns app) (defn execute-command [name & args] (let [var (ns-resolve 'app.commands

[ANN] Nginx-Clojure v0.2.2 released

2014-05-31 Thread Xfeep Zhang
Nginx-Clojure is a Nginx module for embedding Clojure or Java programs, typically those Ring based handlers. Release 0.2.2 contains two updates 1. Fix bug of with Compojure 1.1.5 + Apache Solrj 4.3.0 + httpclient 4.3.2

Re: [ANN] Nightmod, a tool for making live-moddable games

2014-05-31 Thread James Trunk
I've played around a little with Nightmod, and I really like what I've seen. It's an excellent introduction to games programming; allowing people to experiment their way to understanding by seeing their tweaks/additions reflected immediately in the running game. I'm going to be recommending Nig

Re: [ANN] JSON/CLJ/EDN comparison table

2014-05-31 Thread Patrick Logan
Brilliant analysis. -- 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

Re: [ANN] JSON/CLJ/EDN comparison table

2014-05-31 Thread Jozef Wagner
JSON-LD is an XML stack in JSON clothes, chained to the rusty bandwagon called Semantic Web. For me, it is a step backwards. Jozef On Sat, May 31, 2014 at 4:59 AM, Patrick Logan wrote: > Jozef, > > You might be interested in the JSON-LD w3c standard which defines > representations for most of

Re: help with the lawyers?

2014-05-31 Thread Softaddicts
Hi, I am from Canada but my two cents (or 200$ given the size of this email) I reviewed and signed about 2 dozen contracts in the last 25 years. Some from 50.000 up to milion dollars (ok the canadian dollar was not always on par with the US dollar :)). On both sides of the border, some with US co

Different behaviour of pipeline< in Baldridge video (async's episode 2)

2014-05-31 Thread Juan Manuel Gimeno Illa
First, congratulation for this wonderful series of videos. I'm having some problems reproducing the behaviour of your examples in episode 2 of the core.sync series. For instance, this example: (let [c (async/chan 10)] (>!! c 42) ( ["0" "3" "4" "5"] and if I change str number of proce