How to place and enable third-party SNMP MIB files on Ubuntu so tools like snmptranslate can resolve vendor-specific OIDs correctly.
Using a different SSH key for Git commands
How to make Git use a separate SSH key for a specific Git server by adding an entry to your SSH config.
Add a Standby Mode to Celery Beat with a Monkey Patch
Monkey-patch Celery Beat so it stays running but temporarily stops generating scheduled tasks when a standby flag is present.
Submit a Hexo Sitemap to Baidu with GitHub Actions
Use a small Python script and a scheduled GitHub Actions workflow to submit your Hexo sitemap URLs to Baidu automatically.
Fix Different ETags for the Same Static File Across Nginx Nodes
If identical static files return different ETags on different Nginx nodes, check and normalize their modification timestamps.
Use Jira Charts Inside Confluence
Add Jira dashboard gadgets such as burndown charts to Confluence by registering them as external gadgets.
Shorten Poetry Virtualenv Prompt Prefix
How to shorten the long shell prompt prefix generated by Poetry virtual environments by editing the activate script.
Install Headless Chrome with Docker
A simple Dockerfile for installing Headless Chrome on Ubuntu 20.04, with notes about mirrors, timezone prompts, and font support.
Change a YApi User Role Manually
Promote a YApi user to admin by updating the role field directly in MongoDB.
Understanding Django's "The request's session was deleted before the request completed"
This Django session error often points to session storage write failures, especially when using cached_db and writing the session on every request.