Kevin Pulo
Kevin Pulo
A recent comment on the same answer claims that the `ln` in modern coreutils does the atomic rename approach now.
Looks like the culprit is here: https://github.com/flowdock/oulu/blob/ff98112e4aaf8a2aee48a065323f29d349e8c73b/lib/events/file_event.rb#L6 Just need to properly URI escape the contents of `@message['content']['path']`, right?
I never +1, but +1.
stdin is just a special case of a file that can't be seeked. It's also possible to have such a file passed on the command line (eg. using bash's "
I recently encountered the need to pass `--setParameter disableResumableRangeDeleter=true` to mongod processes. Since this is a startup-only parameter, the `setParameter` admin command workaround isn't possible. Editing the `.mlaunch_startup` file would...
What's wrong with doing `{ $query: { ... }, $orderby: { ... }, $proj: { ... } }` or similar for the "query shape" column? (I made up $proj, I...
For the record, I needed this in a hurry so I cheated by mangling the planSummary into the query as a fake field. The fake field starts with "~" because...