Re: Adding http header to SOAP request

2018-01-02 Thread jmckitrick
Will do. I was hoping to get something up and running quickly for demo purposes, but that might not be practical. It depends on how quickly I hear back from the author. On Sat, Dec 30, 2017 at 1:38 AM Sean Corfield wrote: > Please keep me posted on how that goes. The Zero-Ltd version is a fork

Clojure's long startup time analysis

2018-01-02 Thread Alexander Yakushev
People often ask why Clojure is so slow to boot up. In this blog post, I analyze the profile pictures of different ways to start Clojure — raw, with Leiningen, and with Boot. Enjoy! http://clojure-goes-fast.com/blog/clojures-slow-start/ -- You received this message because you are subscribed t

[ANN] Specter 1.1.0: solving the `dissoc-in` problem

2018-01-02 Thread Nathan Marz
Specter fills in the holes in Clojure's API for manipulating immutable data, allowing data manipulation to be done concisely and with near-optimal performance. Specter is especially powerful for working with nested and recursive data. Project link: https://github.com/nathanmarz/specter Excite

[ANN] CFP for Dutch Clojure Day 2018 is now Open

2018-01-02 Thread Vijay Kiran
Hello Everyone! The third edition of free Clojure Conference in Amsterdam is ready for your CFPs now :) You can submit your proposal via https://www.papercall.io/dcd18 If you have any questions, you can reply to this thread or tweet us at @clojuredays Regards, @vij

Re: Clojure's long startup time analysis

2018-01-02 Thread Jeaye
Nice write up; thanks for spending the time to document this. It's my first time seeing clojure-goes-fast.com, but I think you already have some great posts. On Tue, Jan 02, 2018 at 11:52:12AM +, Alexander Yakushev wrote: > People often ask why Clojure is so slow to boot up. In this blog pos

Re: Port graphs: What would Rich Hickey do?

2018-01-02 Thread Ben Kovitz
Christopher Small, Your suggestion to look into Datomic definitely turned up a new idea. I went through the Datalog tutorial at http://www.learndatalogtoday.org (which is excellent, by the way), and noticed that the attribute names in the datoms are a lot like the port labels in port graphs. A

[ANN] Clojure SYNC Sponsorship kit (updated)

2018-01-02 Thread Eric Normand
Hello, Clojurists! Clojure SYNC, the Clojure conference in New Orleans in February, is right around the corner. It's a great opportunity for learning and networking--especially for companies who are looking to meet their future Clojure employees. If you think you or your company wants to get in

Re: Port graphs: What would Rich Hickey do?

2018-01-02 Thread Christopher Small
> ...noticed that the attribute names in the datoms are a lot like the port labels in port graphs. A port label is essentially an attribute key whose value is the edges incident to it. And when you chain data patterns in Datalog queries, that's a lot like navigating through a graph. That's very mu

Re: [ANN] Clojure 1.9.0 is now available!

2018-01-02 Thread Luc
Hi, finally got some time to dig deeper. The minimal code to reproduce this has shrunk: (defprotocol Anonymous (start-job! [this])) (defrecord NoopJob [] Anonymous (start-job! [this] (yabug.services.logger/environment))) The environment macro was called by log/error but not by the ot

Re: [ANN] Clojure 1.9.0 is now available!

2018-01-02 Thread Alex Miller
What’s GatewayJob look like? -- 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 th

Re: [ANN] Clojure 1.9.0 is now available!

2018-01-02 Thread Nicola Mometto
The code that caused this issue is https://github.com/clojure/clojure/commit/a1c3dafec01ab02fb10d91f98b9ffd3241e860c0?diff=unified#diff-03234b041c0917ec98f2ad9477a0a014R260 But this is not a bug in the clojure code nor a regression, in fact you can reproduce this in any clojure version with the fol

Illustrated Guide to Clojure Start-up Timings

2018-01-02 Thread Nathan Fisher
Hi All, Over the holiday's I started to write up my analysis of the trace output I mentioned previously. The article is posted below; https://news.ycombinator.com/item?id=16056522 Cheers, Nathan -- - sent from my mobile -- You received this message because you are subscribed to the Google G