Mike D Pilsbury
Mike D Pilsbury
The current generation code is unfortunately an unmaintainable mess. I had no idea when I started writing it how many parameter types and variations there were. Nor did I understand...
This is a possible solution for https://github.com/dave/jennifer/issues/59.
Formatting a generated file is nice. However it's causing me a performance problem during development. I'm generating over 4,000,000 lines, spread over about 200 files, which takes 35 to 40...
If I add a QListWidgetItem to a QListWidget, it's initially visible in the list, but soon disappears. ``` go listWidget := ui.NewListWidget() item := ui.NewListWidgetItem() item.SetText("some text") listWidget.AddItem(item) ``` It...
```go lbl := unison.NewLabel() lbl.SetTitle("Here be a label") // lbl.Text = "Here be a label" lbl.OnBackgroundInk = unison.Red ``` With 0.68.1 a label's text color can be set. But with...
https://github.com/charmbracelet/bubbles/releases/tag/v2.0.0-beta.1 includes this. ``` # Collect them all go get github.com/charmbracelet/[email protected] go get github.com/charmbracelet/[email protected] go get github.com/charmbracelet/[email protected] ``` They are all slightly wrong, as they are missing `/v2`. For example...