Thayne McCombs
Thayne McCombs
`lazy!` is already used by another crate (https://github.com/reem/rust-lazy). That won't be a problem with macros 2.0 though.
> Don't the serve the same purpose? Not exactly. lazy_static is used for lazy _static_ variables, whereas lazy is used for arbitrary lazy values. You can use `lazy!` to create...
That makes sense to me.
bintray is no more, and I don't know of a good replacement.
I'm inclined to reject this, because it can encourage writing code that is vulnerable to SQL injection. That said, I think having better syntax for thing like table and column...
The piezo-worker JAR is published to maven-central (https://search.maven.org/#artifactdetails%7Ccom.lucidchart%7Cpiezo-worker_2.11%7C1.36%7Cjar). I'm not very familiar with maven or groovy, but is there a problem with just adding a dependency on that jar to...
Possibly, related. I have a use case where I create an AMI using an ec2 instance, so the user_data for the instance shuts down the instance as soon as it...
Something I would like to see, maybe as a future extension of this, would be to have a way to pass a dynamic number of providers to a module. So...
AFAIK, nushell doesn't include an ls executable. lt is a shell builtin. And this is a somewhat niche use case. Also, you could still get similar functionality with `--exec-batch nu...
As a workaround until https://github.com/sharkdp/fd/pull/1571 is released you could use the `--format` option to get this, like so: ``` fd --format $'\x1b]8;;file://'"${HOSTNAME}${PWD}/{}"$'\x1b\\{}\x1b]8;;\x1b\\' ``` You may want to use an alias...