Re: Presentation about Clojure

2014-08-23 Thread Mars0i
On Saturday, August 23, 2014 12:04:51 PM UTC-5, Cecil Westerhof wrote: > > 2014-08-23 7:06 GMT+02:00 Mars0i >: > >> (1) Others may disagree, but ... although I love Lisps, think that >> purely functional programming is cool, and have come to see that there are >> situations in which FP is *gre

Re: [ANN] lein-plz 0.1.1 - Add dependencies quickly

2014-08-23 Thread john walker
I don't think this should be included in lein, but thanks Kyle :) I haven't had a lot of trouble finding or installing lein plugins, but it might be the case that a lot of useful ones are obscure. Do you think a clojure-toolbox dedicated to lein would be helpful? - John On Saturday, August 23,

Re: [ANN] Leiningen 2.3.4 released

2014-08-23 Thread Dave Sann
Do exclusions apply to plugins? if I have :plugins [[com.keminglabs/cljx "0.4.0" :exclusions [org.clojure/clojure]]] I get ([com.keminglabs/cljx "0.4.0"] -> [org.clojars.trptcolin/sjacket "0.1.0.6"] -> [org.clojure/clojure "[1.3.0,)"] Consider using [com.keminglabs/cljx "0.4.0" :exclusions [

Re: [ANN] shadow-pgsql: PostgreSQL without JDBC

2014-08-23 Thread Thomas Heller
EDN/Transit on the backend might be nice, but a little much for me. I'll take it if you feel like a lot of C. jsonb in 9.4 will have to do for now. Transparent encoding/decoding is already built-in to the client though, even with array support to encode a clojure set to postgres text[] and back.

Re: [ANN] shadow-pgsql: PostgreSQL without JDBC

2014-08-23 Thread Jason Jackson
This makes me wonder if it would make sense to create a Postgresql plugin that adds a keyword type and other similar types, that would allow for a more precise roundtrip between Clojure and Postgres. Jason On Sat, Aug 23, 2014 at 11:23 AM, Thomas Heller wrote: > Hey Kyle, > > thanks for the Feed

Re: tools.analyzer[.js/.jvm], tools.emitter.jvm, status report

2014-08-23 Thread dmiller
Hi, Alex. I'll send you a few thoughts on this. The reader problem is the biggest issue. -David On Thursday, August 21, 2014 8:01:29 PM UTC-5, Alex Miller wrote: > > Hey David, > > I'm working on the feature expressions stuff. At the moment I've been > focusing on the clj/cljs use case as th

Re: Is there any Clojure magic for "registering" new implementations of something?

2014-08-23 Thread Nahuel Greco
what about: (defmulti step-handler :type) (defmulti get-schema :type) ;; returns the schema And make your users implement both? Remember schemas are first-class values. Saludos, Nahuel Greco. On Sat, Aug 23, 2014 at 8:08 AM, Laurens Van Houtven <_...@lvh.io> wrote: > Hi Nahuel, > > > Tha

Re: Presentation about Clojure

2014-08-23 Thread Timothy Baldridge
I highly recommend this talk: https://www.youtube.com/watch?v=dzP05hEDNvs The title is mostly about persistent data structures, but in reality the talk serves as an excellent intro to clojure. On Sat, Aug 23, 2014 at 11:04 AM, Cecil Westerhof wrote: > 2014-08-23 7:06 GMT+02:00 Mars0i : > > (1)

Re: Presentation about Clojure

2014-08-23 Thread Cecil Westerhof
2014-08-23 7:06 GMT+02:00 Mars0i : > (1) Others may disagree, but ... although I love Lisps, think that purely > functional programming is cool, and have come to see that there are > situations in which FP is *great*, I am not someone who thinks that FP is > always clearer (easier to understand)

Re: [ANN] shadow-pgsql: PostgreSQL without JDBC

2014-08-23 Thread Thomas Heller
Hey Kyle, thanks for the Feedback. Appreciate it. I think you misunderstood the meaning of a "type" in shadow-psql. A "type" is merely the format of how a given value is represented on the wire since the backend needs to understand what we send it. Postgres supports 2 different Wire Formats: T

Re: [ANN] lein-plz 0.1.1 - Add dependencies quickly

2014-08-23 Thread Kyle Cordes
On Saturday, August 16, 2014 at 7:19 PM, john walker wrote: > Hello everyone. > > This is a lein plugin that helps you add dependencies to projects pretty > quickly. The git repo is here: https://github.com/johnwalker/lein-plz > > Basically, you write something like this: > > > lein new fo

Re: [ANN] shadow-pgsql: PostgreSQL without JDBC

2014-08-23 Thread Kyle Cordes
On Thursday, August 21, 2014 at 1:00 PM, Thomas Heller wrote: > Hey Clojure Folk, > > I'm close to releasing the first alpha version of > https://github.com/thheller/shadow-pgsql a "native" interface to PostgreSQL I > wrote. > > Its an implementation of the native binary protocol without any

Re: [ClojureScript] Re: DevArt Co(de)Factory open source release

2014-08-23 Thread Karsten Schmidt
I really couldn't say... am not Google, nor an employee. They commissioned the project, but we had pretty free reign as to what tech to use (only requirement was to use at least one Google technology as part of the project; AppEngine, ComputeEngine & Cloud Storage in my case and the Closure compile

Re: Is there any Clojure magic for "registering" new implementations of something?

2014-08-23 Thread Laurens Van Houtven
Hi Nahuel, Thanks for your suggestion :) On 22 Aug 2014, at 19:31, Nahuel Greco wrote: > why not multi methods? Multimethods definitely solve the registering a handler problem (because what I really want there is arbitrary dispatch), but don’t solve the “there must be two of these” problem.

Re: DevArt Co(de)Factory open source release

2014-08-23 Thread Zubair Quraishi
So does this mean that Google is experimenting with Clojurescript then? On Wednesday, August 20, 2014 1:31:13 PM UTC+1, Karsten Schmidt wrote: > Hi fellow Clojurians, > > > > it's my absolute pleasure to finally announce the open source release > > of an art project I've been working on full-t