William Storey
William Storey
There's this option to show IDs for each tweet shown: https://github.com/horgh/twitter-tcl/blob/master/twitter.tcl#L17-L19 It's pretty verbose so it's off by default. Otherwise you could find the tweet on the website and copy...
Sorry I hadn't had time to look at this. I just tried this on a Debian 11 container and it is working okay for me. Did you have any luck...
That logging will show in the bot's partyline I believe by the way.
This happens on Perl 5.26.2 and DBI 1.641. Backtrace with line numbers: ``` Program terminated with signal SIGSEGV, Segmentation fault. #0 0x00007f925d9159a3 in XS_DBI_dispatch (cv=0x8b32e48) at DBI.xs:3372 3372 DBI.xs: No...
I don't think any of our Java libraries support iteration currently. It has come up before though. You can see a potential way here: https://github.com/maxmind/GeoIP2-java/issues/93. (Note it might need some...
I see. Yeah, it sounds like an option would be the way to go if it was added then! I have a workaround where I create a different type and...
Thank you for looking at it! This reproduces the issue: ```go package main import ( "context" "log" "time" "github.com/neilotoole/errgroup" // "golang.org/x/sync/errgroup" ) func main() { ctx := context.Background() eg, _...
I added a test here in the test package too - https://github.com/neilotoole/errgroup/compare/master...horgh:horgh/deadlock-test?expand=1
I'm kinda wondering now if `golang.org/x/sync/errgroup` is not designed for this either. It won't deadlock, but I don't know that it is valid to call `Go()` and `Wait()` on a...
Ah, I see #29 also adds a way to do IPv6 lookups, though in a bit different way.