David Roundy
David Roundy
I like this feature, and would love (if it's implemented) to have a solid documented example of a set of exclusions (similar to what you give) that would exclude derive...
I just ran into this today (what a coincidence!), and would like to have this fixed also. I did the same analysis, and cane to the same conclusion, just running...
Here is the little module I created as a workaround. It just implements a replacement for shortcuts.render_to_pdf: ``` import os from subprocess import PIPE, run, CalledProcessError import tempfile from django.template.loader...
I'm doing an animation drawing program not a game, and I'm computing the moment of inertia tensor to get a first guess as to the relative orientation of two frames....
No, I have not.
My vote (as a user who is only starting to use nix) would be to keep nix as a monolithic crate, and just let users bump their version dependencies. They...
``` use rkyv::Archive; #[derive(Archive)] struct Inner(u32); #[derive(Archive)] pub struct Outer(Inner); ```
In doing this, I discovered that this is a warning (I had a stricter configuration), not an error, but the warning claims it will be a hard error in the...
I'll point out that lz4 is the default compression for clickhouse over http, which would make lz4 support very appealing to me.
Is the issue that you are reusing a temporary and returning a reference to that temporary?