Henrik Hall

Results 40 comments of Henrik Hall

Same issue here, although I solved the `grep` problem [this way](https://github.com/diogocavilha/fancy-git/issues/47#issuecomment-2199661875). My icons are also question marks. No solution?

Thanks @panva. I tried this out but with no success for RSA-OAEP-256 with MGF1/SHA-1. I can't see any option for setting MGF with `jose` either?

Thanks! Yes, in Java (or at least on Android), `RSA/ECB/OAEPWithSHA-256AndMGF1Padding` implies OAEP SHA-256 but MGF1 with SHA-1. :( I made another attempt now using OAEP-256 with MGF1/SHA-256 on my Android...

I noticed that `echo "\u00E5\u00E4\u00F6" | slackcat @myuser` works. Is slackcat deliberately expecting javascript style unicode encoding or it this by chance?

@Drilmo I added [docker support](https://github.com/99x/dynamodb-localhost/pull/64) to get this working on M1. Is the above Java library now available for arm64? If so, that's possible a good (better?) solution than my...

IAM actions are on the form `service:action`. In your example however, you have a space after the colon, making this into an object per the YAML specification. If converting your...

As a workaround I was able to achieve what I wanted by copying the [shouldIncludeNode](https://github.com/graphql/graphql-js/blob/a24a9f35b876bdd0d5050eca34d3020bd0db9a29/src/execution/collectFields.ts#L256) function into my codebase. At least exporting that function to avoid copying it would be...

I just ran into this issue four years later, running ajv `8.17.1`. I there a solution such as a flag to ignore `undefined`s?

@PLSFIX This helps somewhat for users of the class, but if class methods use any of the properties of `Opts` they would still have to be declared as fields, and...

Any solution except TypeScript itself handling this will be an ugly workaround. Using a class declaration wrapper function every time we want to declare a class is just hideous. Yes,...