David Rauschenbach

Results 34 comments of David Rauschenbach

Etcd v3, just like Storm, is backed by BoltDB. Replication requires doing what etcd does at that higher level -- gossip, quorum, cluster join/leave semantics, leader elections, etc. So in...

Vagga is Linux-only and this project has a much broader audience than that. I think writing the dockerfiles sounds fun! I'm sure you could crowdsource most of it by creating...

Sprig would provide some welcomed relief. There are a number of problems that can't presently be solved in confd because it is not yet based on Go 1.11 Templates, and...

Sprig also makes sense here because it's included in Helm (for Kubernetes).

What about something like this: ```c++ double MathPow_Double_Int(double x, int n) { double ret; if ((x == 1.0) || (n == 1)) { ret = x; } else if (n...

I am also seeing this issue. My renovate CI automation keeps trying to get me to "upgrade" to Dex 0.6.1 (Sep 2016?). And I have to import the Dex package...

I've investigated Python and JavaScript notebooks for Ballista, and think that Rust notebooks would be the low-hanging fruit and natural starting point: https://github.com/google/evcxr/blob/main/evcxr_jupyter/README.md EvCxR supports one-liner crate imports, and that's...

> The JSONAPISerializer expects the backend to return a JSON API Document that follows the JSON API specification and the conventions of the examples found on http://jsonapi.org/format. This means all...

Agreed -- I'm already using dasherized field names and that is working great. This issue is specifically about the parent struct name and how it's converted to a URL/route name.