Re: Strange behavior with clojure.java.io/copy

2019-08-25 Thread Juha Syrjälä
I posted this also to ask.clojure.org forum at https://ask.clojure.org/index.php/8450/strange-behavior-with-clojure-java-io-copy On Sunday, August 25, 2019 at 8:05:57 PM UTC+3, Juha Syrjälä wrote: > > Hi, > > I found a strange behavior in implementation of clojure.java.io/copy

Strange behavior with clojure.java.io/copy

2019-08-25 Thread Juha Syrjälä
Hi, I found a strange behavior in implementation of clojure.java.io/copy function https://github.com/clojure/clojure/blob/ee1b606ad066ac8df2efd4a6b8d0d365c206f5bf/src/clj/clojure/java/io.clj#L391 (defn copy "Copies input to output. Returns nil or throws IOException. Input may be an InputStr

Re: [ANN] Leiningen template aws-lambda-serverless

2018-06-03 Thread Juha Syrjälä
while. I recall that there was a > slow startup time issue using a JVM based Lambda so someone was using > ClojureScript because Node.js had faster startup time. Is startup time an > issue with this? > > On Friday, June 1, 2018 at 9:58:47 AM UTC-6, Juha Syrjälä wrote: >> &

[ANN] Leiningen template aws-lambda-serverless

2018-06-01 Thread Juha Syrjälä
References: - https://github.com/jsyrjala/aws-lambda-serverless - https://serverless.com/ - https://aws.amazon.com/lambda/ -- Juha Syrjälä -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroup

Re: Why is "add-watch" still in alpha?

2013-12-29 Thread Juha Syrjälä
Hi, According to this thread https://groups.google.com/forum/#!topic/clojure/zM6cbhuBNxY add-watch is no longer marked alpha in Clojure 1.6-alpha3 On Sunday, December 29, 2013 11:24:07 PM UTC+2, larry google groups wrote: > > add-watch was alpha in Clojure 1.2: > > http://clojuredocs.org/clojur

Re: [ANN] clj-wamp : a WebSocket sub-protocol for HTTP Kit

2013-06-24 Thread Juha Syrjälä
Nice work. How about adding this https://github.com/tavendo/AutobahnPython/tree/master/examples/wamp/authentication WAMP-CRA (WAMP Challenge Response Authentication)? On Tuesday, June 25, 2013 6:52:40 AM UTC+3, Christopher Martin wrote: > > Good call. I agree the prefix shortening should be mor

Re: Database migrations

2013-06-14 Thread Juha Syrjälä
There are also following libraries to handle migrations: Ragtime: https://github.com/weavejester/ragtime Lobos: https://github.com/budu/lobos Lobos has its own DSL to implement database manipulation. Ragtime uses normal Clojure functions instead. On Friday, June 14, 2013 7:24:39 PM UTC+3, Regi