Results 21 issues of Tim Kellogg

This error didn't happen in Astyanax version 1.4.42, it started happening in 1.4.43 and it still happens in the latest version. I have this code that reproduces the issue: ```...

`dura` can't do anything for you if it's not running. How can we ensure that it's started & always running? I'd like `dura` to be nearly invisible after installation. It...

stability

A [lobste.rs user is concerned](https://lobste.rs/s/g7suro/dura_you_shouldn_t_ever_lose_your_work_if) about the disk usage. I've wondered the same thing myself. Does anyone has ideas about how to get real data about how big of a...

The Git log goes `HEAD -> HEAD^ -> HEAD^^ -> ...`. This seems like chronological ordering, but it's not because it only follows the lineage of a single branch. I'd...

enhancement
good first issue

Right now there are some safeguards to ensure that only a single daemon process is running. Consequences of multiple daemons: * Possible Git race condition on creating multiple commits *...

stability

The readme outlines how to use a `dura` branch to recover, but it involves a lot of git-fu. It could be a lot easier ## Idea: sub-commands Add `dura` subcommands...

enhancement
good first issue

Seems to have slipped my mind, until I really needed it.

I'd like to explore the possibility of having a web framework support both HTTP and [CoAP](http://tools.ietf.org/search/draft-ietf-core-coap-18). How suitable would Blueeyes be to support an extension that handles both CoAP and...

For one, an exclusive lock was being held for far too long, so I shortened it some. Also, the Published event wasn't being called for QoS 2, only for QoS1....

@payoff showed me, in the objectflow-example project, that having `.When(...).Do(...)` take a workflow delegate is kind of confusing. Add overloads for `.Do(Action)` and `.Do(Func)`