Eyal Kalderon

Results 126 comments of Eyal Kalderon

If we do manage to generate shell completions somehow, we can install them to a derivation with the `installShellFiles` function provided by Nixpkgs ([suggested here on the Nix Discourse](https://discourse.nixos.org/t/adding-bash-completion-for-a-package/3947/3)).

@trha I agree with `cargo check` being a separate compile mode, but [`cargo clippy` shares a cache with `cargo check`](https://github.com/rust-lang/rust-clippy/blob/c154754b74577906c5d55d57f7daeff02d6a33e7/src/main.rs#L59). It doesn't make sense to have Clippy as a separate...

I can reproduce this on macOS Mojave and Rust 1.39.0 as well. However, it seems that I am able to get the constructor to run at least with the following...

@carllerche Is this going to get merged eventually? I would also like to see `Serialize` and `Deserialize` implemented on `Uri` as well. I can open a follow-up PR for that...

@seanmonstar That seems like a reasonable compromise to me, personally. The `url` crate already does something similar with `url_serde`.

Please do. My Sass-ified Numix GTK+ theme is feeling lonely...

Another vote for _Game Engine Architecture_ by Jason Gregory as a good example of such a book. It provides a very good high-level view of how game engines suited for...

This fix doesn't seem to work in practice, sadly. After consulting Inspect Element → Responsive Design Mode in Firefox, I see that the `overflow-x: scroll` CSS property doesn't get applied...

Would `overflow-x: auto;` not be sufficient here? Why or why not? I'll give the PR with `overflow-x: scroll;` a try regardless, though. Thanks for opening it.