Richard Ulmer

Results 43 comments of Richard Ulmer

Thanks for your thorough reviews!

Thanks for the quick response. CPU usage is not high. How do I get a debug stack trace?

I have obtained a backtrace with the delve debugger. Is this what you were looking for? ``` (dlv) bt 0 0x0000000000481603 in runtime.futex at /usr/local/go/src/runtime/sys_linux_amd64.s:558 1 0x0000000000444c10 in runtime.futexsleep at...

@Anachron: When you accidentally close the editor, the message is still editable. It will only be removed once you leave `mcom`. But I get your point and could try to...

> How did automime make it more complicated? All it did was taking work from you. `[m]ime` could be removed, because `mmime` is now **always** automatically applied, if necessary. Thus...

@alexbrainman said in https://github.com/golang/go/issues/46164#issuecomment-854482868 that he would rather use the Windows API for opening `CONIN$`, than to use `OpenFile` with the `os.O_RDWR` flag. I have no preference, but am open...

@acnodal-tc What operating system are you using and which of the three examples did you try?

@acnodal-tc The `ReadPassword` function is not designed for what you are trying to do. If you pass "command argument" to ssh (`"~/work/Code/epic/epicctl/epicctl create api-user user3 root"`), ssh will not open...

The "it" in "a password can still be read from it" refers to the terminal, not the standard input. To read from standard input, you don't need the `golang.org/x/term` package...

I have checked a recent version of go 1.14 (commit `ebe49b2c2999a7d4128c44aed9602a69fdc53d16`, 2020-02-22) and used benchstat to compare against the current version of jsoniter. I have modified the benchmarks a bit,...