Wesselinator

Results 9 comments of Wesselinator

Docker and linuxserver:latest Ruining with MariaDB 10.3.17 (Clarkson reports 10.3) But looking at the logs now I see something weird: for some reason its trying to access the dataqbase 9666034a-aae7-40e3-a0e5-3a00a7c2c65d...

Is it just as simple as doing: ```c++ if (const auto val = (*proxy_tbl)["username"].value()) cfg->sessions.at("default").set_str(lt::settings_pack::proxy_username, *val); if (const auto val = (*proxy_tbl)["password"].value()) cfg->sessions.at("default").set_str(lt::settings_pack::proxy_password, *val); ``` or is there a gotcha?

Ah I missed something. Turns out LibTorrent has distinct [proxy type](https://libtorrent.org/reference-Settings.html#proxy_type_t) (`socks5_pw` : `3`) for SOCKS5 with auth. so the correct settings for this is: ```toml [session_settings] proxy_type = 3...

Note, I am aware that the socks5 auth is in [cleartext](https://www.rfc-editor.org/rfc/rfc1929#section-3) and provides questionable security. The reason I have it running with auth is that it felt wrong to run...

For completeness for others you also need the other settings set too: #### Mixed: ```toml [session_settings] proxy_type = 3 proxy_username = "foo" proxy_password = "bar" [proxy] host = "some.host.here" port...

> NVIDIA Propriety Drivers > Driver 550.78 > AUR jellyfin-media-player-git Might be related, but my distro recently moved from X11 to Wayland # Works * `__EGL_VENDOR_LIBRARY_FILENAMES=/usr/share/glvnd/egl_vendor.d/50_mesa.json jellyfinmediaplayer` results in the...

While waiting for the cert chain to be updated, I got copr working with a custom override module: ``` # /usr/share/crypto-policies/policies/modules/COPR-SUPPORT.pmod # Adds a RSA Size downgrade to allow `dnf...

Gonna write here because this looks like the newest issue. With "CMYK" in the title See #468 for the original report. # Confusion So in [v0.11.0](https://github.com/libjxl/libjxl/tree/v0.11.0) it looked like CMYK...