Other Tools General Info
List of useful tools and resources
Automated docker container base image updates
Example mermaid diagram rendered here:
graph LR
A[Start] --> B{Error?};
B -->|Yes| C[Hmm...];
C --> D[Debug];
D --> B;
B ---->|No| E[Yay!];
Proxmox Virtualisation Platform
TrueNas Open source NAS platform
Static Code Analysis tools - supports 19 languages including IaC (Terraform, Cloudformation, ARM), community and commerical editions. Can be integrated in pipelines or used as standalone tooling
Cloud Instrastructure IaC Code Scanning - CheckOv is now owned by Prisma Cloud. The Bridgecrew platfrom is also by Prisma Cloud and is where you get your API key fro using CheckOv in VSCode or pipelines Bridgecrew Docs
Prisma Cloud Code Security Policy Reference - Azure
Git hook scripts are useful for identifying simple issues before submission to code review. We run our hooks on every commit to automatically point out issues in code such as missing semicolons, trailing whitespace, and debug statements. By pointing these issues out before code review, this allows a code reviewer to focus on the architecture of a change while not wasting time with trivial style nitpicks.
Is a spell checker for code, can be integrated into pipelines and pre-commit