Oliver Smith
Oliver Smith
| I"m sorry, that's all over my head. I defer to your expertise. Oh, just to make you regret saying that: | ??? What requests.txt file? ... was a typo...
| I was considering using pySimpleGUI, I'll have to look at gradio, never heard of it. I don't have useful input on GUIs really; 'gradio' is - I believe -...
Right now I'm trying a little experiment that reintroduces a per-station cursor; we're not building a list of items for executemany, but we're also not doing the full cost of...
``` Win|PS> python -m apsw .\data\TradeDangerous.db SQLite version 3.45.3 (APSW 3.45.3.0) Enter ".help" for instructions sqlite> select count(*) from item; ┌──────────┐ │ count(*) │ │ 395 │ └──────────┘ sqlite> ```...
Just so you know - I'm not remotely above figuring out how to get an AI to help me, but I'm also not expecting it to be actual help. However......
```sh $ ls -1sh /dev/sda /dev/sdb /dev/sda 1PB /dev/sdb 15MB $ rm -rf pride # surplus to requirements $ mv /sdb/shame /sdb # storage upgrade required ``` 
Do we care about the added column any more?
This reproduces consistently for me: Go 1.16, Windows 10 x64: https://gist.github.com/fbd4d52084621c49b5bf0b569b9195b4 ```go package main import ( "fmt" "github.com/andlabs/ui" _ "github.com/andlabs/ui/winmanifest" ) func makePage1() ui.Control { return ui.NewLabel("Page 1") } func...
After switching & mousing over, it remains rendered if you switch away & back or to a 3rd tab.
Thinking it might be related, but there doesn't appear to be a way to prime a ComboBox with a selection: ```go cbox := ui.NewComboBox() addEntries(cbox) cbox.OnSelected(func(_ *ui.Combobox) { panic("on selected")...