Andrew Dunham

Results 24 issues of Andrew Dunham

A user reported that they were seeing errors of the form: ``` dns udp read: read udp 100.100.100.100:53: connection was refused dns udp query: request queue full ``` And that...

This code doesn't check whether we've already returned the `*stmt` to a caller, so it's possible that calling `conn.PrepareContext` twice in a row can return the same `*stmt` to two...

Hi there! Thanks a bunch for the library; I really like the interface that you've got here. However, the README says that you support UDP, however I don't believe that...

I don't know if this is a thing that will be super-useful, but it'd be interesting to have support for `emoji256 -d` to turn a sequence of emoji back into...

When `Environment` is `debug`, we should first try to read a static file / template from the filesystem, and then fallback to the embedded file. This prevents us from having...

Can watch everything in templates/static files, use this: https://github.com/jaschaephraim/lrserver

On macOS Monterey (12.0.1) on a M1 Mac, I'm seeing this build failure: ``` gfunc.c:296:24: error: format specifies type 'intmax_t' (aka 'long') but the argument has type 'off_t' (aka 'long...

``` Started GET "/ip_addresses/71/edit" for 10.0.2.2 at 2014-02-27 22:46:06 +0000 Processing by IpAddressesController#edit as HTML Parameters: {"id"=>"71"} Rendered ip_addresses/_form.html.erb (3.5ms) Rendered ip_addresses/edit.html.erb within layouts/application (4.2ms) Completed 500 Internal Server Error...

This is causing problems with certain servers that have a lot of open FDs; the process collector that Prometheus provides generates a lot of garbage when enumerating open FDs, which...

This can be used to implement a persistent pool (i.e. one that isn't cleared like sync.Pool is) of items–e.g. database connections. Some benchmarks vs. a naive implementation that uses a...