Viktor Stanchev
Viktor Stanchev
Example from binutils `include/elf/external.h`: ``` typedef struct { unsigned char d_tag[4]; /* entry tag value */ union { unsigned char d_val[4]; unsigned char d_ptr[4]; } d_un; } Elf32_External_Dyn; ``` I...
Rebased and improved #1238 Left to do: - [ ] Tests for various edge cases. Maybe just make a big file full of unreachable types? https://github.com/99designs/gqlgen/pull/1238/files#diff-41df4b43d528566617cd5b0c3ae5adc68f75a5c2d4fe8a5bb3a5ad10ccad9508 - [ ] Figure...
I would love to have fish shell completion for doit. I don't know how easy or hard this would be, but hopefully it's easy because there's already bash and zsh...
Looks like the tests exported from the graphql-js repo are very out of date. I looked through the history of the graphql-js repo and it looks like the package.json in...
See https://github.com/docker/docker/issues/18864 https://github.com/samalba/dockerclient/blob/master/types.go#L531 CheckDuplicate should be changed to IgnoreDuplicate so that the default can be to not allow duplicate names.
It would be nice if one doesn't need to manually start the network after a fresh install of libvirt and before using it with docker-machine.
Please make a static binary available so that it's easier to run on obscure systems.
This code triggers an error in [email protected] ``` var everyauth = require('everyauth'); var express = require('express'); var app = express.createServer(); everyauth.helpExpress(app, {userAlias:'user'}); ``` This is the error: ``` node.js:201 throw...
If you run `netstat` you'll see that grc seems to not stream output as it comes in. [Cope](https://github.com/lotrfan/cope) handles this better. Maybe it does line based buffering while grc uses...
It's very obvious when running `ps aux` that the tty's size is ignored by grc. [Cope](https://github.com/lotrfan/cope) doesn't seem to have this problem. I'm guessing that is emulates a tty?