Latest Articles
If Firefox on macOS enters the system’s standard fullscreen mode and you find it annoying that pressing the Esc key exits fullscreen, this article explains how to prevent that by changing `browser.fullscreen.exit_on_escape` to `false` in `about:config`. Exiting fullscreen via F11 or the menu remains available.
Explains why Chromium’s remote debugging port (9222) cannot be exposed externally when running inside a Docker container—because from M113 onward, Chromium forces the bind address from `0.0.0.0` to `127.0.0.1`—and shows how to safely forward `9222` to `127.0.0.1:9223` using `socat` to enable Chrome DevTools Protocol (CDP) connections.
Here's an overview of the blog article translated into English: The article discusses how to avoid the `httpx.ConnectError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Basic Constraints of CA cert not marked critical (_ssl.c:1020)` error when making requests to a server using a self-signed certificate in Python 3.13. The error occurs because the certificate verification process fails due to the basic constraints of the CA certificate not being marked as critical. The article likely provides a step-by-step guide or workaround to bypass or resolve this SSL verification issue, ensuring successful communication with the server using the `httpx` library.