I have seen the Config, and it is Markdown
I Bless Thy Debugger My Child
Saturday, 18 July 2026
Revisiting Port 443
Visual Studio Community July 2026 Release
See the status of GitHub Copilot from the Visual Studio IDE. Built-in .NET and Azure skills are introduced.
Agent Skills Introduced by Anthropic
The PEM Format
Busting Certificate Issues in Ubuntu
Suppose you are running a data pipeline on Linux/Ubuntu that consumes data from the web. You get a RuntimeError: "SSL certificate verification failed". What do you investigate?
Verifying the ca-certificates package and updating /etc/ssl/certs
sudo apt-get install -y ca-certificates
installs the ca-certificates package (the -y means "say yes to all prompts").
This software processes certificates in PEM format.
With this installed, new certificates can be added to /usr/local/share/ca-certificates.
The trust store can then be updated with:
sudo update-ca-certificates
You can then check if the certificate has been added.
ls /etc/ssl/certs | grep local-ca