Carson Riker
Carson Riker
After some more digging, it appears the behavior is a result of `strconv`'s [`ParseInt` function](https://cs.opensource.google/go/go/+/go1.16.6:src/strconv/atoi.go;l=179). I'm unsure the best way to go about this. If we do want to change...
> I don't consider the example data input you wrote on instant messaging @krader1961 I'm not sure I remember what you're referring to. I searched through telegram to try to...
I wrote this little script for playing around with conversion. If it looks fine I can put it in a PR. ``` package main import ( "fmt" "strings" "bufio" "os"...
I'm getting this issue with linkedin.com, most recent webkit installed. Here's my bug-info: ```Version: 3.6.0-34-g652f411 WebKit compile: 2.32.1 WebKit run: 2.32.1 GTK compile: 3.24.29 GTK run: 3.24.29 libsoup compile: 2.72.0...
@jjakob nope, I'm on void linux, but I didn't install vimb through any package manager, just did it from source
@jntrnr outside of busy-waiting and just checking each loop in turn, I don't believe there's support for polling multiple channels. We could pipe all command output over one channel, and...
On that note, I just searched for crossbeam, and it's in my most recent Cargo.lock. It looks like nu-command uses rayon uses crossbeam, so that might make it a slightly...
@jntrnr I'm leaning towards crossbeam, but think it's worthwhile to try each. I'll do some rough impls and then loop back to this. Maybe in the process one will show...
So sorry! Had gotten pulled away at work. Will follow up with updates
I'm running into difficulties testing. I can't drain both stdout and strerr simultaneously without falling into one of these undesirable situations: 1.) Spawning 1 thread for stdout, 1 for stderr,...