Phil Frost

Results 45 comments of Phil Frost
trafficstars

> Just as a quick note, it is easy to convert a key to the ssh format with gpg2 Even better. But it looks like it's quite recent, more specifically...

> What would be a good prefix to use instead of cs_? Maybe pm_ for Pacemaker? Or maybe better, crm_? The types this module provides largely represent the commands of...

I just learned Rust this week so this could very well be a terrible idea, but I think the solution is to implement `Executor` not on `&Pool` and `&mut Transaction`...

Yeah `Acquire` works, but it seems like a rather clunky workaround. If the problem is in `speak_twice` we don't know that we're dealing with a reference, then what we're doing...

I kinda wonder this "problem" of needing mut access to a Pool is a smell suggesting Pools should not be Executors. For example, consider something like ```rust fn f(e: E)...