Kevin Burke

Results 132 issues of Kevin Burke

Go 1.9 ships with os/user.LookupId, os/user.Lookup, os/user.LookupGroup, os/user.LookupGroupId that work without cgo. If you compile without cgo enabled, those functions will read /etc/passwd and /etc/group respectively to find answers to...

I have the following code that uses a fork of curve25519/internal/edwards25519: ```go func TestUnmarshalMarshal(t *testing.T) { pub, _, _ := Keypair(rand.Reader) var A edwards25519.ExtendedGroupElement var pubBytes [32]byte copy(pubBytes[:], pub) if...

Running make, "go vet" fails, I commented this line out, and get the following results. ``` gofmt -e -s -w . cc -g -fPIC -c -o lib/lib.o lib/lib.c cc -g...

If I am sharing a validator instance across multiple Node workers running on different CPU processes, `getLastErrors` is not a safe API. Consider the following sequence of events: - Thread...

enhancement
PR welcome

It may not have been possible to do this when this code was written, but it should be possible now. Fixes #1427.

In rustls-ffi, we are hoping to export some ciphersuites (`rustls::SupportedCipherSuite` structs) to C code, by putting them in a const array (see https://github.com/rustls/rustls-ffi/pull/165). One obstacle we are running into is...

I installed the tool and am running `mongotail [db] --follow`. I expect that the command will block until I kill it with `ctrl+c`. Instead, it exits after 1 second, without...

bug
enhancement
good first issue

I was incorrectly doing ```javascript var bunyanLogger = require("express-bunyan-logger"); var express = require("express"); var app = express(); app.use(bunyanLogger); ``` when I really wanted: ``` app.use(bunyanLogger()); ``` It's hard to tell...

Currently the search window in condensed view (narrower than 700px or so) takes up the entire height of the page, making it very difficult to scroll past as scrollbars are...