Yaroslav
Yaroslav
Hello, It would be nice to have a proxy (socks/http) support as hey does. Thank you.
Version: current master Currently we do have [uv_cond_timedwait](http://docs.libuv.org/en/v1.x/threading.html#c.uv_cond_timedwait), but the implementation of portable ```c int sem_timedwait(sem_t *sem, const struct timespec *abs_timeout); ``` Which (I guess) should be called `uv_sem_timedwait` is...
Hello, Currently we have that function like this: ```c int uv_accept(uv_stream_t *server, uv_stream_t *client) ``` Which does not allow to pass also `struct sockaddr *addr` to get remote address of...
Hey, I guess it is nice to have a generic listen function because go1.11+ now has `ListenConfig` methods and it could be useful to setup some sockets options. For example:...
For instance, this will allow us to build images using one generic config: ``` image boot.vfat { vfat { files = { "zImage", "*.dtb", "boot.scr" } } size = 6M...
Hi there, It would be nice to have some basic grafana dashboard for those metrics. Thanks!
Hey, Here is my code: ```go package main import ui "github.com/gizak/termui" func main() { err := ui.Init() if err != nil { panic(err) } defer ui.Close() data := []int{1, 2,...
Currently, if you want to increase thread pool size, you need to write something like that: ```c static int xsetenv(const char *key, const char *value) { #ifdef _WIN32 return (int)_putenv_s(key,...