Delaney
Delaney
Functions like `StructFunc` take a `Group` but don't return an error. I have conditions where iterating and creating the fields must error out. Right now i'm jumping through hoop to...
```go package main import ( "fmt" "context" "github.com/neilotoole/errgroup" ) func main() { ctx, cancel := context.WithCancel(context.Background()) defer cancel() eg, ctx := errgroup.WithContextN(ctx, 1, 1) eg.Go(func() error { return nil })...
I'd like to try the `docking` branch of imgui from typescript but don't know if that's possible via a config or something. Thanks!
Was going through the [Vulkan tutorial]() and noticed `debug_report` work via your demos but `debug_utils` used by the tutorial is not. The [spec](https://vulkan.lunarg.com/doc/view/1.1.82.1/windows/layer_configuration.html) says > Layer Controls There are two...
The README.md is missing how the type registry integrates, the docs no longer match the examples.
HTML works great as expect. Moving to pug removes the great color preview functionality.
Using `3.0.0-alpha.2`. I'm sure this is just a lack of understanding about how batching work and unclear if its just misuse of the API. I have a complicated set (1500+)...
They support SQL.js but would be great to see how to properly setup connection with your persistence layer.
[The Trueskill 2.0 paper came out a few months ago.](https://www.microsoft.com/en-us/research/uploads/prod/2018/03/trueskill2.pdf) It appears to be taking in game per players stats into account and includes quit penalties. There claim is much...
In my specific situation I need to add `gridRows` for doing application style css grid layouts. It either not supported or not clear how you go about overriding or upserting...