Chris Zehner

Results 6 comments of Chris Zehner

I just ran into this as well when trying to use `render_into()` and it took me a while to realize that uses `std::fmt::Write` while `BufWriter` uses `std::io::Write`... ```rust error[E0277]: the...

For what it's worth, I compiled @vmsp & @benkio's suggestions together into a `postgres.nix` file that's working nicely. It depends on having both `nix-darwin` and `home-manager` available with `home-manager.users..xdg.enable =...

I'm also seeing failures on Ventura Beta 8 ``` ... user defaults... setting up user launchd services... setting up ~/Applications... setting up pam... applying patches... setting up /etc... system defaults......

~I recently wanted this functionality in a CLI tool and built on top of the suggestion @danieleades made above.~ ~Here's a [greeting example](https://gist.github.com/cbzehner/dede31dc0b4617fd4abaff9e03b15f9e) that uses the `default_value_t` from `clap_derive` to...

Nope 🙃 Thanks Ed, Ah, I didn't realize we were evaluating it regardless - you're right that it doesn't work. It seems like it does from a happy-path example but...

Not very experienced here, but would the suggestions in [this blog post](https://medium.com/@thegeorgeous/a-sentry-logger-for-cloudflare-workers-3b7e522ae000) help with this?