m4dc4p

Results 32 comments of m4dc4p
trafficstars

The exception thrown is: ``` Exception in thread "main" java.lang.NumberFormatException: For input string: "16 xsalsa20" at java.lang.NumberFormatException.forInputString(Unknown Source) at java.lang.Integer.parseInt(Unknown Source) at java.lang.Integer.(Unknown Sour at org.abstractj.kalium.NaCl.checkVersion(NaCl.java:66) at org.abstractj.kalium.NaCl.sodium(NaCl.java:30) ``` Here...

Can be fixed by adding an `@Encoding` annotation (from jnr-ffi) to the method: ``` @Encoding("US-ASCII") String sodium_version_string(); ```

To test this fix, first download https://download.libsodium.org/libsodium/releases/libsodium-1.0.16-msvc.zip and (from that archive) copy `x64\Release\v141\dynamic\libsodium.dll` (or `Win32`, if on a 32-bit OS) to a directory on your PATH so Kalium will find...

I've moved on to the lazy sodium library. I'd suggest checking that out, this project seems dead. On Thu, Jul 5, 2018, 8:57 AM Dmitry Timofeev wrote: > *@dmitry-timofeev* commented...

Just ran into this one myself, where I was passing Instant values to a query of `2017-01-01T00:00:00Z` and they got converted to `2016-12-31T00:16:00` because my local computer is 8 hours...

Not as obvious, but this bug leads to huge closure sizes (such as including all of GHC and its docs). Especially painful when using nix to build docker images.

@maralorn That doesn't work when the executable also includes an internal library. (We were already using the `justStaticExecutables` function). Moving the executables to their own package does work, however, if...

Really wish this had gone through. Aeson 1.5 no longer compiles with GHC 9.2.2, forcing us to upgrade to 2.0. Having a compat shim would make that so much simpler.

At my workplace, we started using amazon's IAM support for RDS authentication, which essentially meant the "password" passed to postgres was a signed request. There is a library out there,...

@flotwig given `Promise.defer()` is deprecated, is there any way to do this with aliases? Does returning a promise that is resolved/rejected based on the request work? ```ts cy.route2({ url: "http://localhost:3000/graphql",...