William McGann

Results 10 comments of William McGann

I don't remember what we did to work around this offhand, but will take a look at it later on today hopefully. Most likely we should do a defer in...

@miketheprogrammer Point out the spots where pprof shows churn, if you can? I'm scheduling some downtime later today to work on some issues, and will take a look at this...

@swloki Would you mind providing a bit more information or some details? If you're trying to create an http client connection from go the stdlib will, by default, respect the...

If we're paranoid we can do a hash check of the linked file afterwards. What is the actual surface area of this risk?

I think that would be best handled either by passing in a channel you'd want to be notified on, or by passing in an instance of the handler that is...

Those unicode characters aren't illegal in a domain name, are they? Firefox at least *(what I'm using, haven't tested others)* translates that properly to https://xn--zn7caaaaaaaaaaa.com/ for me. Some reference info:...

@TomVesel If it's something valuable to your company have y'all provided donations to support development? Since this is something being done in someone's free time there's not much you should...

Went to implement this yesterday evening, ran into two issues: - SQLite database is locked constantly, but can be safely (and quickly) copied before opening. - The sqlite package I...

I think caching the db file for a _(configurable!)_ short amount of time would be good without impacting search performance. Copying, querying, searching (with `fuzzy` package) happens on my windows...

Might want to vendor dependencies. Don't have to use `go dep` to do that. Glide works well, and is likely to be very similar to the linked utility.