Rick Richardson

Results 49 issues of Rick Richardson

I have implemented an Ingress Controller using your very helpful API. For maintaining state, I store a handful of different objects in Sled, and, to save space/cpus, I serialize into...

I just ran `rustup update` and `cargo install cargo-wa` ``` 19:53 $ rustup show Default host: x86_64-apple-darwin installed toolchains -------------------- stable-x86_64-apple-darwin nightly-x86_64-apple-darwin (default) active toolchain ---------------- nightly-x86_64-apple-darwin (default) rustc 1.23.0-nightly...

This is a proposal for how to manage configuring a client with the static address of a server. It builds, but I haven't tested it. I want to make sure...

One thing that none of the prevailing reverse proxy solutions except for Traefik handle the need for an elastic (or previously unknown) set of upstream servers. A compelling feature for...

#### Use Case: Use `Subscriber` as if it were a Stream of Events instead of a Future of a single event multiple times. As the documentation for Future and Stream...

feature

I am working on a cert signing implementation for Acme/LetsEncrypt, and was looking for an EC key solution. I was a bit surprised to only find the RSASigningKey trait impl...

First, thanks for building such an amazing set of libraries and tools! This is a pretty amazing body of work. Also, apologies in advance for the length of this message....

question

**Is your feature request related to a problem? Please describe.** I have strings in legacy schemas that I need to convert from kebab case ("card-session-request") to TitleCase ("CardSessionRequest") Presently: ```cue...

FeatureRequest

This is related to https://github.com/ulid/javascript/issues/21 and https://github.com/ulid/spec/issues/11 If multiple UUIDs are generated in the same millisecond, the random bits are not guaranteed to be monotonically increasing. So given `const [a,...

This statement works in postgres 9.3+ ``` update users set roles = ARRAY[['owner', 'user', users_b.gen_id] from users as users_b where users.id = users_b.id; ``` However, this results in a parsing...