Jens Alfke

Results 119 issues of Jens Alfke

The script uses the `defaults` command to read the bundle version from the app's `Info.plist`. Unfortunately `defaults` doesn't support that anymore — as threatened in its man page, it's stopped...

Do you plan to add support for ARM64 AES instructions, as you did for x86?

question

I've written a grammar but it's failing even on trivial inputs. I've boiled the grammar down to the following simple test case: ``` %prefix "test" property

The generated parsers don't compile as C++, because of one call that implicitly casts from `void*` to a concrete pointer. It's easy to fix by changing the type-cast from `(void...

I tried to use this to build my project, but I use some C++20 features including the new comparison (``) operator, which [GCC 9 doesn’t support](https://gcc.gnu.org/projects/cxx-status.html#cxx20). So I got a...

There's a shadowed local variable in the function `linenoiseUtf8NextCharLen`. I build with `-Wshadow` and `-Werror`, so this warning breaks my build. ## Behavior Building with Clang ("Apple clang version 12.0.0")...

I've started using pipecolor with the unit-test log output from the project I work on, and it's great. However, in one scenario the output cuts off early with the message...

1. It would be nice if the `tokens` property were optional. Many of my rules don't use tokens, so I forget to add them, but currently it's a fatal error...

In the blog post you wrote: >lock-free implementations [of refcounting] rely on a compare-and-swap mechanism on the wrapped pointer – here, the pointer is not wrapped. This sucks, but if...

Just skimmed the source code; one thing that jumps out is that it expects either a chunked response, or a content-length. But another common option is neither of these: the...

enhancement
help wanted
good first issue