Martin Pärtel
Martin Pärtel
Travis's default OpenVZ thing [doesn't support FUSE](https://github.com/travis-ci/travis-ci/issues/1100), but apparently there's also an [OS X environment](http://docs.travis-ci.com/user/osx-ci-environment/). Should look into that.
There should be an easy and correct way to construct queries like `some_map_field[?]` where `?` can be any string.
## Subject of the issue Currently I can't write an efficient single-threaded server with SFML, because `SocketSelector` only lets me wait for a socket to become readable, not writable. If...
Adds a lexer for [GNU Assembler](https://en.wikipedia.org/wiki/GNU_Assembler). This is based on `nasm.rb` and might retain some NASMisms. The most important differences to NASM: GNU Assembler directives start with `.`, registers start...
Useful e.g. for generating maps in code. Includes some cleanup commits. Not super extensively tested, since I don't have a large project using this yet.
Gandi now recommends [Personal Access Tokens](https://api.gandi.net/docs/authentication/) instead of API keys. Currently, the authorization header looks like `Authorization: Apikey ` With Personal Access Tokens, it should be `Authorization: Bearer ` I...
Starting bindfs fails with "short read on fuse device". The same bindfs command works when invoked manually. Unclear how the test environment differs.
Should check the return values of the various `*alloc` functions, and recover when possible. In some cases we already do. Some existing checks currently log and abort on failure. Would...
After I updated the mobo bios from 2.10 to L2.71, this module started failing [here](https://github.com/Fred78290/nct6687d/blob/df1565ad8e9689ca7d9614d656836b32656de0ae/nct6687.c#L1126). I see `address = 0xa20` but `verify = 0xffff` :raised_eyebrow: If I remove the `address...
- Added factory methods because overloaded constructors taking `(ReadOnlySpan span)` and `(IEnumerable collection)` would be ambiguous given an array. - This bumps the minimum .NET requirement to .NET Standard 2.1.