Nathan Baulch
Nathan Baulch
I was going to fix this issue but stumbled on this existing fix in another fork. The only thing "wrong" with it is the unused `generatedImports` field that it introduces,...
I noticed that if any of the sensor flags are disabled then the screen no longer displays each stat page for the same period. I've fixed this by introducing a...
I'm a bit confused about the meaning of the `Offset` option. ```go for i := 0; i < 10; i++ { println("offset", i, ":", Plot([]float64{0}, Offset(i))) } ``` ```text offset...
I'm relatively new to OTEL. I've instrumented my application for tracing but one particular package I'm using creates a bunch of spans internally that make a lot of noise in...
I noticed the Python version only puts a tick across the y-axis for the first series and not subsequent ones. The Javascript version appears to do it correctly. This simple...
Indexing by `SchedulerName` instead of `SchedulerId` in `SchedulerRepostory` makes it difficult to connect to multiple nodes in a cluster. I have to maintain my own repository and make sure I...
I've been using ozzo-validation to validate typed API input for years but I recently found myself needing to validate dynamic `map[string]interface{}` data. I know, I *could* create typed models, marshal...
I'd like to keep the elapsed time visible once the progress bar finishes, just like the four example animations in the main README show. This seems to be the normal...
I occasionally see residual junk after my progress bar in situations when the total width decreases. This can happen when the description shrinks or when the timestamp wraps around (eg...
Handy library, thanks! What if don't want `TagsOnly` on my slice of structs? Currently I'm forced to: ```go reflect.Indirect(reflect.ValueOf(tableprinter.SliceParser)).FieldByName("TagsOnly").SetBool(false) ```