Results 9 issues of oliver

as for default `authorized_keys`, IMHO, it's better to left it blank or use $HOME/.ssh/id_rsa.pub as the default pub key. ``` bash bash-4.1# cat authorized_keys ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQF3Tkg6Qj+mjQ9PtwE+A+vYHxhhgFmoi3t1voWZBgsIhu5RpM2/qhL13b2d5pzXT7YVeGQ8S6OUYb0Y989YEzvid08wFfBrdHY62D5CGbrBrkFIV9QJjkE/7N6GtwkQRQZgY2airJKZxwOyPlJesRGicUUTQQ7Icg1kRB0QQu99rOLbUCSV50de3NYL9+gs22kFOlKOajTqm05nf7F7+sDPyogZjdbASUUA0KDxegmQykMsZEkqSHbhSc4bZYG1HXxQYjwQCK/TZJ+Voc6y7xBOJbS95jnlRSQk5yppoW8rT3b7O/4gKd2RnZQoemCVf1qUJ114O82SX0xip/lnjd core@localhost ```

``` python #python pseudocode hQuery = win32pdh.OpenQuery() hCounter = win32pdh.AddCounter(hQuery, "\System\Processes") win32pdh.CollectQueryData(hQuery) win32pdh.CollectQueryData(hQuery) _, val = win32pdh.GetFormattedCounterValue(hCounter, win32pdh.PDH_FMT_DOUBLE) print val ``` Code above will get processes count of windows. which...

initially, we use `github.com/kshvakov/clickhouse` for a little while. but we found it write data much slower than java http client (the only one listed in ck document). (snmpdump shows 10x...

I'm trying to install pythonbrew without networking, coz our test/production environment is totally isolated from the outside world. so we have to install packages use local repositories. Here is the...

### Is your feature request related to a problem? I'm try to setup postgresql to access questdb with the help of `Foreign Data Wrapper`. when I try to import schema...

New feature
Compatibility

``` package max // template type Max(A) type A int func Max(x, y A) A { if x < y { return y } return x } ``` for above...

enhancement

``` javascript g1 := metrics.GetOrRegisterGauge("the_same_key", metrics.DefaultRegistry) g1.Update(100) # this line will panic coz there's a StandardGauge with "the_same_key" already exists. g2 := metrics.GetOrRegisterGaugeFloat64("the_same_key", metrics.DefaultRegistry) ``` ``` bash panic: interface conversion:...

bug

**Describe the bug** I'm writing some Scripts in hummingbot. Occasionally encountered some `async_utils - Unhandled error in background task xxxx` while starting the script. Once this happened, I have to...

bug
scripts

It works, downloaded the playlist. but filename and audio content mismatch. all filename and audio content are shuffled randomly. e.g. Track 01 (filename) -> audio content maybe number 23 (total...