Andy Hamon

Results 25 issues of Andy Hamon
trafficstars

It looks like the latest version of Turbolinks [doesn't use the same event names as before](https://github.com/turbolinks/turbolinks#running-javascript-when-a-page-loads), causing this gem to not work with Rails 5.

Suppose I have a table `nodes` with attributes `id`, `parent_id`, and `name`. It would but much more convenient for the paths to use names instead of ids, at least for...

As best I can tell, each metric[ is sent one by one](https://github.com/zio/zio-metrics/blob/69b4a4febffd8b90d554730a543d0438953aebe4/statsd/src/main/scala/zio/metrics/Client.scala#L62), not in any batched or buffered way. Does the [bufferSize param](https://github.com/zio/zio-metrics/blob/69b4a4febffd8b90d554730a543d0438953aebe4/statsd/src/main/scala/zio/metrics/Client.scala#L13) and the call to [groupedWithin](https://github.com/zio/zio-metrics/blob/69b4a4febffd8b90d554730a543d0438953aebe4/statsd/src/main/scala/zio/metrics/Client.scala#L73) serve any...

When sending a UDP statsd message, this library always allocates [a fixed 512 ByteBuffer](https://github.com/zio/zio-metrics/blob/69b4a4febffd8b90d554730a543d0438953aebe4/statsd/src/main/scala/zio/metrics/UDPClient.scala#L15). If the data size exceeds this, copying into this buffer will throw a `java.nio.BufferOverflowException`. Something like...

The statsd [client listener](https://github.com/zio/zio-metrics/blob/69b4a4febffd8b90d554730a543d0438953aebe4/statsd/src/main/scala/zio/metrics/Client.scala#L68-L76) (a.k.a. zstream processor) has no error handling built in. If there is an unhandled error, such as with buffer overflows as described in #123, then I'm...

So a problem I keep running in to is environments that depend on other environments. For example, I usually have a server domain that has the endpoint info for several...

Hey there! I asked about this on matrix and I was directed to open an issue. I am a [readTree](https://github.com/tvlfyi/kit/tree/canon/readTree) user, so my repo consists of lots of files that...

enhancement

It seems that if there is already a vm with the same name as the one specified by `vm_name`, that VM will be overwritten. This seems a little dangerous, and...

enhancement
question

It appears that nix-installer.sh does not perform any integrity checking of the binaries it downloads. This is surprising and concerning - it seems it takes care to use secure TLS...

**Describe the bug** When I run `nix build`, I repeatedly get an error about compression when trying to substitute from a private cache. ``` error: input compression not recognized error:...

bug