Kimmo Koskinen
Kimmo Koskinen
Seems that bumping zprint to current latest (1.2.4) helped for me (sci dependency seems to come from zprint).
Also, when using clojure 1.11.1, there's a warning on zprint's use of it's own `abs` function, which is now in clojure.core: ``` WARNING: abs already refers to: #'clojure.core/abs in namespace:...
AWS has a project called [Amplify](https://github.com/aws/aws-amplify) which has React components for authentication with Cognito and probably a set of helpers for making requests to AWS API's, but probably also to...
Yes, now that my mind refreshes, RN uses [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) for HTTP. Don't know what's the thing used in Node, maybe some XMLHttpRequest wrapper? But yeah, a survey of the...
Finding interpretation for `asSubclass` might help: https://github.com/pgjdbc/pgjdbc/blob/246b759cdc264c2732717dbd6ff9f8f472024196/pgjdbc/src/main/java/org/postgresql/jdbc/PgConnection.java#L602
For the record, I ran into this with following setup (the below output masks what's happening behind the scenes): ``` 0% cat deps.edn {:deps {org.clojure/clojure {:mvn/version "1.9.0"} clj-http/clj-http {:mvn/version "3.8.0"}...
This is similar to https://github.com/clojure-goes-fast/clj-memory-meter/issues/1#issuecomment-373262272, so: ``` JVM_OPTS=-Djdk.attach.allowAttachSelf=true lein repl ``` gets to the next step, which is: ``` CompilerException java.lang.ClassCastException: java.base/jdk.internal.loader.ClassLoaders$AppClassLoader cannot be cast to java.base/java.net.URLClassLoader, compiling:(core.clj:249:3) user=> *e...
Then again, Lambda runtime is based on Java8, so it's best to use Java8 for Clojure Lambdas for now.
Yep, wasn't sure also, speaking out loud makes for better validation of ideas :) So I think that overall goal is that the deploy is always fast so there is...
This is now provided by ring handler support, by having `:portkey/lambda-context` key in the request map.