Nathaniel Waisbrot

Results 17 comments of Nathaniel Waisbrot

Well! I was having this problem also, but it turns out not to be a problem. Sort of. The issue is that when you identify the alert sender as Emacs,...

I was thinking about this last night. The problem is that while the Mac rule makes sense for normal applications (don't alert me about a new email when I'm in...

The machine in question is no longer broken, so I tried to reproduce to reproduce on a VM with the network interfaces turned off. Running `rkt run quay.io/coreos/flannel` in the...

> Why do you prefer to use a git tag over a SHA? 1. A friendlier name. Do I use `9690bb6a1e88f39a6073867b029aa03f0c3ba80c` or is `9690b` enough? I don't really want to...

I have a similar problem: a test framework that bypasses Node's module-caching in some cases, so I have to wrap prom-client with my own module that creates meters idempotently. Is...

In past projects, I have added a step myself to run the code through [j2cli](https://github.com/kolypto/j2cli). Advantages: - Jinja2 is a powerful template language (You probably won't run into situations where...

Well you'd still have the problem that your connection closed down unexpectedly :) But yes, I think adding a clause to handle that case by throwing would make it easier...

It seems a little odd to me, although I've only used COPY when I'm streaming data through so this use-case hadn't occurred to me outside of tests. In my code,...

You get the same behavior with transactions, and COPY is pretty much a special-case transaction. If your code did ``` pgsql_connection:simple_query("BEGIN", Connection), pgsql_connection:extended_query(Insert, Bindings, Connection), pgsql_connection:extended_query(Insert2, Bindings2, Connection), pgsql_connection:simple_query("COMMIT", Connection),...

@odo ping. Any opinion on my question about delays?