Skip to content

Developer Reference Tools — Cheatsheets and Calculators for DevOps

Quick-reference guides and cheat sheets for developers and DevOps engineers — copy-ready commands, patterns, and the edge cases that catch everyone out. All free, no signup.

🐍 Python

☕ Java / JVM

  • Java Reference new — Java 17–21: records, sealed classes, pattern matching, streams, Optional, virtual threads, Maven/Gradle.

⚡ JavaScript / TypeScript / Node.js

🐹 Go   🦀 Rust

  • Go Reference — go mod, cross-compile, go test -race, go work, build tags, CGO_ENABLED=0.
  • Go Testing Reference — t.Run, table tests, testify, httptest, mocking, coverage, benchmarks, fuzz.
  • Cargo & Rust Reference — cargo build/check/test, Cargo.toml features, clippy, Criterion benchmarks, musl static binary.
  • Rust Error Handling Reference — Result, ?, thiserror, anyhow, Box<dyn Error>, custom error types.

☸️ Kubernetes

🏗️ Infrastructure & IaC

  • Terraform Reference — init, plan -out, apply/destroy, state mv/rm/import, workspaces, TF_VAR_*, modules.
  • OpenTofu Reference — migration from Terraform, providers, resources, backends, workspaces, testing
  • Temporal Reference — workflows, activities, signals, TypeScript SDK, production patterns
  • NGINX Ingress Controller Reference — annotations, TLS, rewrites, rate limiting, canary
  • Pulumi Reference — IaC with TypeScript/Python, stacks, AWS/K8s resources, deploy & CI
  • Ansible Reference new — ansible-playbook flags, ad-hoc, inventory, roles, vault, loops/block-rescue, ansible.cfg.
  • ArgoCD & GitOps Reference new — Applications, ApplicationSet generators (list/cluster/git/pull-request), sync waves/hooks, RBAC + SSO, notifications, ArgoCD vs Flux 2 comparison.
  • k9s Reference — shortcuts, Popeye linter, XRay dependency graph, aliases for CRDs, plugins
  • Crossplane Reference — K8s-native infra, Providers, Managed Resources, XRD Compositions, Claims
  • Cilium Reference — eBPF CNI, L7 HTTP/DNS/Kafka policy, Hubble network observability
  • Argo Workflows Reference — DAG, steps, artifacts, CronWorkflow, K8s ML pipelines
  • Argo Events Reference — EventSource, Sensor, Triggers — webhook, Kafka, cron, conditions
  • Go Modules Reference — go.mod, go get, workspaces, GOPROXY, private repos
  • Argo Rollouts Reference — canary, blue-green, AnalysisTemplate, Prometheus-gated rollback
  • NATS Reference — pub/sub, JetStream streams, KV store, request/reply, clustering
  • Falco Reference — K8s runtime security, custom rules, Falcosidekick routing, tuning
  • Dapr Reference — distributed app runtime, service invocation, pub/sub, state, secrets
  • Flux v2 Reference — GitOps bootstrap, HelmRelease, image automation, SOPS encrypted secrets
  • RabbitMQ Reference — exchanges, dead-letter queues, consumer patterns, vs Kafka
  • Helm Reference — install/upgrade/rollback, templating (tpl/lookup), values override, chart dependencies, OCI.
  • Dockerfile Best Practices — Multi-stage builds, layer caching, non-root user, .dockerignore, health checks, size optimisation.
  • Docker Commands Reference — docker run/build/compose, multi-stage builds, health checks, prune.
  • Docker Compose Reference — services, networks, volumes, profiles, depends_on, deploy/replicas, env_file.

☁️ Cloud CLIs

  • AWS CLI Reference — configure profiles, S3 sync/cp, EC2 describe, ECS/EKS, IAM, SSM, CloudFormation, query/filter.
  • gcloud CLI Reference — auth, config, compute/container/run/storage, IAM, service accounts, GKE.
  • Azure CLI Reference — az login, resource groups, AKS, App Service, Storage, Key Vault, role assignments.

🔧 DevOps Config & Automation

  • YAML Reference new — Syntax, types, multi-line strings, anchors, K8s patterns, GitHub Actions patterns, gotchas.
  • GitHub Actions Reference — Events, matrix, caching, OIDC, Docker push, composite actions, reusable workflows.
  • Git Advanced Reference — interactive rebase, bisect, hooks, stash, reflog recovery
  • OpenAPI 3.1 Reference — schemas, components, webhooks, SDK generation, linting
  • gh CLI Reference — pr create/merge, issue create, run view, auth, release, api endpoint queries.
  • Makefile Reference — .PHONY, self-documenting help, := vs = vs ?=, $@ $< $^, pattern rules, ifeq.
  • GitLab CI/CD Reference new — .gitlab-ci.yml: stages, rules (replaces only/except), needs DAG, Docker builds, caching, artifacts, environments.
  • Jaeger Reference — distributed tracing, OTel integration, sampling, production setup
  • nginx Reference — server blocks, location matching, proxy_pass, SSL, rate limiting, upstream, headers.
  • pnpm Reference — install, store, workspaces, catalog, CI
  • Rollup Reference — config, plugins, tree shaking, library builds, formats
  • Linux Admin Reference — systemctl, journalctl, crontab, user/group management, firewalld, disk/memory tools.

🌐 Networking, HTTP & Security

  • SSH Reference — Config file, ProxyJump, port forwarding, key management, sshd_config hardening.
  • OpenSSL Reference — Inspect certs, generate keys/CSRs, test TLS handshake, convert PEM/DER/PFX.
  • curl Reference — 30+ flags: POST JSON, bearer token, file upload, retry, timing, mTLS.
  • HTTP Status Codes — All 40+ codes: 401 vs 403, 502 vs 503 vs 504 explained.
  • HTTP Security Headers — HSTS, CSP, X-Frame-Options, CORS. Risk ratings + nginx snippets.
  • DNS Record Types Reference — A, AAAA, CNAME, MX, TXT, SPF, DKIM, DMARC with dig commands.

🔢 Data, SQL & Databases

  • SQL Reference — JOINs, window functions, CTEs, upsert, pagination, JSONB, explain analyze.
  • PostgreSQL & psql Reference — psql meta-commands, pg_stat_activity, EXPLAIN ANALYZE, pg_dump, CONCURRENTLY.
  • AWS CDK Reference — L2/L3 constructs, ECS Fargate, Aspects, CDK Nag, Jest testing
  • PostgreSQL Advanced SQL Reference — window functions, CTEs, JSONB, EXPLAIN ANALYZE, indexes
  • SQLite Reference — CLI, WAL mode, JSON, window functions, transactions, Litestream
  • HTTP Headers Reference — Cache-Control, security headers, CORS, compression, auth
  • MySQL & MariaDB Reference new — mysql client, user management, EXPLAIN type column, index types (covering/FULLTEXT/INVISIBLE), transactions, backup, performance schema.
  • Redis Reference — String/Hash/List/Set/ZSet commands, TTL, pub/sub, pipelines, Lua scripting, ACL.
  • Apache Kafka Reference new — Producer (acks/idempotent/linger.ms/compression), Consumer (auto.offset.reset/CooperativeStickyAssignor/max.poll), consumer group lag + offset reset, exactly-once semantics, kafka-topics/kcat commands, broker production tuning.
  • Elasticsearch & OpenSearch Reference new — Query DSL (bool/match/term/range/multi_match), aggregations, ILM, mappings (text vs keyword), performance diagnostics.
  • MongoDB Reference new — mongosh, CRUD, update operators ($set/$push/$pull), aggregation pipeline, TTL/text/partial indexes, explain().
  • jq Reference — 40+ filters: select, map, reduce, env, curl+jq, kubectl+jq, CSV output.

🐚 Command Line & Scripting

🛠️ Developer Utilities & Calculators

🔒 Security Scanners & Auditors

→ Security Tools Hub

Founded

2023 in London, UK

Contact

hello@releaserun.com