Andlogreg
banner
andlogreg.bsky.social
Andlogreg
@andlogreg.bsky.social
Tech, Productivity, and 🚀 Self-Improvement. (While navigating Self-Doubt)

Some of my values: Discipline, Minimalism, Progress, and Lifelong Learning

https://links.andlogreg.work
New Technical Note: PostgreSQL Automated Backups and Recovery on Azure with CloudNativePG.

Covers:
✅ Continuous WAL archiving to Azure Blob
✅ Scheduled physical backups
✅ Point-in-Time Recovery (PITR) workflow

🧵
January 25, 2026 at 12:13 AM
Why does an idle NVIDIA RTX 4090 draw ~30W on Linux but only ~10W on Windows?

I spent a day digging into NVIDIA kernel parameters to bridge this gap in my Kubernetes-based homelab.

The Result: A 60% reduction in idle power waste with just 3 parameters.

Here’s the breakdown:👇🔗
January 22, 2026 at 7:27 PM
A curated list of #git pre-commit hooks for secret detection, linting, and conventional commits.

This is a living document I'll be expanding as I find new ways to automate codebase quality. Feel free to bookmark it if you find these tools useful.
January 16, 2026 at 5:18 PM
Following up on my #Proxmox + #Terraform auth setup.

I've documented how I quickly provision Ubuntu VMs on Proxmox using Terraform and Cloud-Init.

Covers cloning from templates and injecting network/SSH configs automatically. 🔗 ⬇️
December 22, 2025 at 7:30 PM
I just documented a quick reference for connecting #Terraform to #Proxmox. Secure, minimal setup, ready for quickly provisioning VMs:

1. Create a scoped role
2. Generate a non-privileged API token
3. Export secrets

🔗 ⬇️
December 22, 2025 at 7:03 PM
If you work with Proxmox, Cloud-Init images are a huge time-saver.

I wrote a short guide on creating a reusable Ubuntu 24.04 VM template: (1/3) ⬇️ 🔗
December 21, 2025 at 10:06 PM
Why? Because in Dockerfiles:
- `ARG` before `FROM` → only available to `FROM`
- If you want to use that same `ARG` later, you must re-declare it after `FROM`
✅ Correct:
July 2, 2025 at 4:47 PM
I had something like this.
But the condition was never true — even with:
`--build-arg TARGET_ENV=production`.
July 2, 2025 at 4:47 PM
Debugged a Dockerfile issue for way too long: a RUN condition that should have matched — but never did.
Subtle mistake. Here’s what happened ❌👇
#Docker #DevOps
July 2, 2025 at 4:47 PM