Niklas Collin

Results 10 comments of Niklas Collin

Maybe I'm the only one using Windows? :) Native notifications in Windows do persist if you do not remove those either programmatically or manually. It actually makes sense that they...

One real reason for adapting v2 is this: https://github.com/aws/aws-sdk-java/issues/1603 which won't be fixed for v1 and which isn't an issue in v2 (see https://github.com/aws/aws-sdk-java-v2/issues/560). These warnings are currently annoying and...

I'm seeing this issue as well. I also faced it with Cloud Functions but I took my cloud function code and modified it a bit so I could easily trigger...

I literally would need this right now. My other option is to change my setup in such a way that I'm running two concurrent instances of oauth2-proxy. Since I'm using...

> > I literally would need this right now. My other option is to change my setup in such a way that I'm running two concurrent instances of oauth2-proxy. Since...

Tell Cursive to treat `defstate` as `def` and you are fine. See the attached gif. Please note that the wait time you see after selecting it as `def` is due...

I would like to point out, that by adding ` :jvm-opts ["--add-modules" "java.xml.bind"]` you are breaking Java 8 support since flag `--add-modules` is only recognized by Java 9. The only...

Here is a slightly less hacky hack (pun intended) to bypass this problem: ```clojure :jvm-opts ~(concat ; Normal JVM opts to pass in ["-Xmx1g"] ; Java 9+ recognition, adding --add-modules....

@levitanong Maybe also parse it to number and make comparison that it is equal or greater to 9?

@puredanger I agree but in this case doing that will cause try-catching and whatnot which just adds to the already noisy hack which shouldn't even be in `project.clj`. Like we...