Josh Bleecher Snyder
Josh Bleecher Snyder
What I did: * Crop a canvas. * Use FillText/FillString to draw a string at (0,0) in the cropped canvas. Expected: The string at (0,0) of the cropped canvas. Got:...
This test panics: ```go func TestSetStringMalformed(t *testing.T) { c := &BaseContext d := new(Decimal) tests := []string{ ".-4", ".-400000000000000000000000000000000000000", } for _, test := range tests { _, _, err...
We may have volunteers to help translate the site and issues into spanish. This is a tracking issue to discuss and to provide technical support for that effort. cc @mettler
Every time I use this package, I think that I can do something like: ```go var flagCPUProfile = flag.String("cpuprofile", "", "write a cpuprofile to `cpuprofile`") func main() { if *flagCPUProfile...
For programs that have both non-trivial shutdown hook plumbing and flags controlling profiling, it'd be convenient to have a NoProfile option with a no-op Stop function. I'll send a PR...
@dgoldman-ebay I renamed some of our model files, and I wanted to re-export them so that the file names would match here. However, the export code was broken for our...
This is a follow-up to #636. I have a large db, now at ~70gb. It contains a mix of large (>= page size) and small values. The length of the...
I'm executing this polyfill in v8, and getting: ``` TypeError: Cannot read property 'allocUnsafe' of undefined ``` It's coming from this line: ``` var NativeBuffer_allocUnsafe = NativeBuffer["allocUnsafe"]; ``` Commenting out...
@Xe requested that IPSet be a fmt.Stringer. It's not obvious what a good representation would be, but having something to look at would be better than nothing. One option might...
I'm puzzling over how IPPort and IPPrefix's MarshalText methods should work when their IP is the zero IP but they have a non-zero port/bits. Currently we return an empty slice,...