Inconsistent AOT classnotfoundexception

2019-09-11 Thread Kimmo Koskinen
Hi! Not a direct answer, but have you looked at clj-headlights https://github.com/logrhythm-oss/clj-headlights, a Apache Beam wrapper for Clojure. It might have pointers related to Beam/AOT specifically. - Kimmo -- You received this message because you are subscribed to the Google Groups

Re: [Q] How to load Clojure as part of Wildfly module?

2019-02-07 Thread Kimmo Koskinen
Hi! I ran into the same issue while helping a colleague in working on the [sonar-clojure Sonarqube|https://github.com/hjhamala/sonar-clojure/] plugin. A quick search on Clojure JIRA reveals couple of discussions, [this

Re: [ANN] clj-memory meter – measure the memory used by arbitrary objects

2018-04-17 Thread Kimmo Koskinen
We just tried this library with a colleague while trying to track down a memory leak when parsing a jdbc result set and saw a stunning victory :) With clj-memory-meter we were able to see that lazy parsing of json strings left references to quite large buffers (in comparison to actual data) to

RE: Any better client then telnet for connecting to a socket repl server?

2018-03-04 Thread Kimmo Koskinen
Hi! There are quite impressive socket repl clients such as https://github.com/Unrepl/unravel and https://github.com/Unrepl/spiral (for Emacs) both of which use the unrepl protocol https://github.com/unrepl/unrepl. - Kimmo -- You received this message because you are subscribed to the Google

Re: [ANN] lein-jlink: A leiningen plugin for custom JRE creation

2018-02-11 Thread Kimmo Koskinen
Just whistling in that there's a project, that has tree-shaker similar to proguard, but written (partly) in Clojure: https://github.com/portkey-cloud/portkey Portkey has been a bit dormant for a while, but we had some success as minimizing amount of bytecode that's shipped to AWS Lambda, to

Re: Reducing Jar file size for AWS Lambda

2017-07-24 Thread Kimmo Koskinen
gt; build myself? Not a problem either way, just making sure I'm doing it > right. Thanks Kimmo. > > On Sunday, July 23, 2017 at 2:35:37 AM UTC-6, Kimmo Koskinen wrote: >> >> Hi! >> >> Although still at early stages, check out portkey >> https://github.com/

Re: Reducing Jar file size for AWS Lambda

2017-07-23 Thread Kimmo Koskinen
Hi! Although still at early stages, check out portkey https://github.com/cgrand/portkey. Portkey does tree-shaking by starting from a closure to minimize resulting jar size. Uses kryo and implementation of var tracing started in powderkeg project (https://github.com/HCADatalab/powderkeg) .

Re: Which GUI toolkit would you like to see wrapped in an idiomatic Clojure library?

2016-03-19 Thread Kimmo Koskinen
This could be React on desktop, +1 for that :) -- 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

Re: Embedded systems and transpiling Clojure to Nim

2015-05-02 Thread Kimmo Koskinen
Hi, Wanted to mention two more languages, that might be interesting: Hy: http://docs.hylang.org/en/latest/ (Lisp that targets Python's AST, has Clojure flavoured syntax) newLISP: http://www.newlisp.org/ (at least FFI seems simple: http://www.newlisp.org/newlisp_manual.html#import) - Kimmo --