stanguc
- Karma
- 0
- Created
- ()
- Submissions
- 0
- Show HN: MyPDFBoy – Free PDF redaction that deletes the data (mypdfboy.com)
Most free PDF "redaction" tools just draw a black box on top. The text is still there -- select all, paste, done. MyPDFBoy actually removes content from the PDF content stream. What's gone is gone. Upload a PDF, draw…
- Show HN: Git as Your Secrets-Store (github.com)
encrypts your secrets and commits them to git. "npm install" your secrets like any other dependency. Vaults = source of truth Git = distribution layer OneSeal: make the bridge between them
-
I’ve been doing DevOps for about 9 years, and I keep seeing the same mess repeat itself: - Terraform or Pulumi outputs → Vault/KMS → CI replaces values in YAML → K8s secrets operator injects env vars → app starts →…
-
I kept hitting the same problem: teams pass secrets/configs/IDs via .env files, Slack, or CI glue; Terraform (or Pulumi) knows the truth, but apps don’t. Things drift. I built Oneseal: a small CLI that turns platform…