Clojure + ClojureScript + Electron + Om.Next + Boot and ProtoRepl on Atom to co-exist?

2016-10-03 Thread Ray King
Is there a blog post or has anyone tried to get a Clojure + ClojureScript + Electron + Om.Next + Boot and ProtoRepl on Atom to co-exist? TL;DR Background - Why? 1. We have a Clojure code base which deploys as a Jar local on a user's PC. It is running as a web socket server, serving a local

Re: Is Pallet abandoned? Alternatives?

2016-10-03 Thread Karel Miarka
I'm very happy with Ansible https://github.com/ansible/ansible (it is not Ansible Tower = their commercial product). You need only ssh server on the controled machine, no state, idempotent execution. -- You received this message because you are subscribed to the Google Groups "Clojure" group.

Re: multi-spec and unqualified keys

2016-10-03 Thread Beau Fabry
Changing these two lines works, but I don't know whether it would cause other issues ``` (defmulti event-type :type) (s/def :event/event (s/multi-spec event-type :type)) ``` On Monday, October 3, 2016 at 4:01:32 AM UTC-7, Karol Hosiawa wrote: > > I don't know how to define multi-spec so that it

[CfP]: :clojureD Berlin Conference 2017

2016-10-03 Thread doctronic
Final month of CfP for :clojureD Berlin 2017! Be part of the biggest annual Clojure conference in Germany, file a proposal and help us creating an awesome conference. Again. :) (Ticket sale starts

multi-spec and unqualified keys

2016-10-03 Thread Karol Hosiawa
I don't know how to define multi-spec so that it works with unqualified keys and generators. An example from the official guide: https://clojure.org/guides/spec#_multi_spec (s/def :event/type keyword?) (s/def :event/timestamp int?) (s/def :search/url string?) (s/def :error/message string?)