Vitaly Shukela
Vitaly Shukela
Typical way is to allow all commands (including destructive), but within a sandboxed environment (e.g. a virtual machine) with a properly constrained access and resource limits. Make it easy to...
Main thing about name and description is searchability. Filename should not be the only key to search for. Description is a good place to put various tags and keywords. GUI...
Then this torrent name (which becomes metadata title name) should be overridable by user. Description should also be visible when clicking at search results (maybe after waiting for the file...
What should the unit test test? `as_str` / `from_str` implementations?
> Hi. you can add some unit test. support rfc9220 server: https://github.com/ngtcp2/nghttp3 It is appropriate to add a heavy dev-dependency for a such a trivial change?
Workaround I use now: ``` let somechoice_qqq = create_signal(false); let somechoice_www = create_signal(false); let somechoice_eee = create_signal(false); let the_choice = create_signal(SomeChoice::Qqq); create_effect(move || { if somechoice_qqq.get() { the_choice.set(SomeChoice::Qqq)} }); create_effect(move...
In Websocat1 (stable version) you need to specify `-H` at the end. It interprets current command line as if there were a third header `ws` with value `//localhost:8760/ws`. Here is...
How `q.pkcs12` was obtained? Maybe it was generated from `/etc/ssl/private/ssl-cert-snakeoil.key` or was previously marked as trusted in that browser? > encryption If you need just encryption (protection against passive attacks,...
This looks like a simple self-signed certificate. This: > I can connect succesfully on my local machine (from webpage https://localhost:8080/index.html with a websocket client) looks suspicious. Browsers should not accept...
Maybe some environment variable can affect what `openssl-sys` choses? Or trying older version of that crate? --- What is the version of `libssl-dev` package? Is it for 1 or for...