RaduBerinde
RaduBerinde
I'm using vscode-neovim with rust-analyzer. The issue I'm having is that the type/field/argument hints make editing very confusing. For example:  If I want to edit the mass, I can't...
The examples that involve textures show a noticeable delay at start in dev mode; the delay is not there in release mode. I tracked this down to the image library....
I tried switching to `NormalsMaterial` or `UvsMaterial` and neither seems to be working (the shapes I apply the material to don't show up). I tried comparing the code to `ObjectsMaterial`...
Some ideas for improving the binary search for array stores: https://dirtyhandscoding.wordpress.com/2017/08/25/performance-comparison-linear-search-vs-binary-search/ IMO the two should be combined - binary search should be used to narrow down the range to the...
There are some questions around LazyLogger that should be clarified in the comments: - what is the purpose of `Encoder.EmitLazyLogger` (as opposed to just calling the `LazyLogger` directly); some motivation...
See discussion #116.
It would be good to provide some documentation about what properties are expected of the input hash for `InsertHash`. For example, a reasonable question is: if my data is a...
This commits add some helpers to assert that we have a certain number of values and for common cases of retrieving one or two values. - - - This change...
I had a case where I had a very long SQL line (around 300k) and I silently got an empty string from datadriven. We should check `Err()` from the scanner...
We no longer show `d.Pos` when the output doesn't match: https://github.com/cockroachdb/datadriven/blob/master/datadriven.go#L364