<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>env.dev — Developer Guides &amp; Cheatsheets</title>
    <link>https://env.dev</link>
    <description>In-depth developer guides, cheatsheets, and references. Free tools and resources for developers.</description>
    <language>en-us</language>
    <lastBuildDate>Sun, 12 Apr 2026 12:17:41 GMT</lastBuildDate>
    <atom:link href="https://env.dev/rss.xml" rel="self" type="application/rss+xml"/>
    <item>
      <title>Next.js Environment Variables: Complete Guide</title>
      <link>https://env.dev/guides/nextjs-env-variables</link>
      <description>How Next.js handles environment variables: .env files, NEXT_PUBLIC_ prefix, server vs client access, load order, and common production errors.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/nextjs-env-variables</guid>
    </item>
    <item>
      <title>GitHub Actions: Secrets vs Environment Variables</title>
      <link>https://env.dev/guides/github-actions-secrets-env</link>
      <description>When to use repository secrets, environment secrets, and configuration variables in GitHub Actions. Includes workflow examples for Node.js, Python, and Docker.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/github-actions-secrets-env</guid>
    </item>
    <item>
      <title>Node.js Environment Variables: process.env, dotenv &amp; --env-file</title>
      <link>https://env.dev/guides/nodejs-env-variables</link>
      <description>How to use environment variables in Node.js. Covers process.env, dotenv, Node 20.6+ --env-file flag, NODE_ENV, type-safe validation with zod, and cross-platform support.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/nodejs-env-variables</guid>
    </item>
    <item>
      <title>Environment Variables Security: Secrets, Leaks &amp; Best Practices</title>
      <link>https://env.dev/guides/env-vars-security</link>
      <description>Why environment variables are not truly secure and what to do about it. Covers secret rotation, leak detection, client-side exposure risks, and when to use a dedicated secrets manager.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/env-vars-security</guid>
    </item>
    <item>
      <title>Go Environment Variables: os.Getenv, godotenv &amp; Viper</title>
      <link>https://env.dev/guides/go-env-variables</link>
      <description>How to read, set, and manage environment variables in Go. Covers os.Getenv, os.LookupEnv, godotenv, Viper, envconfig, build-time variables, and testing.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/go-env-variables</guid>
    </item>
    <item>
      <title>JWT Security Best Practices: Token Storage, Algorithms &amp; Revocation</title>
      <link>https://env.dev/guides/jwt-best-practices</link>
      <description>Security best practices for JSON Web Tokens: algorithm selection, token storage, expiration, refresh patterns, revocation strategies, and common vulnerabilities to avoid.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/jwt-best-practices</guid>
    </item>
    <item>
      <title>Docker Environment Variables: Dockerfile ENV, ARG &amp; Runtime</title>
      <link>https://env.dev/guides/docker-env-variables</link>
      <description>How to use environment variables in Docker: ENV vs ARG in Dockerfile, docker run -e, --env-file, multi-stage builds, BuildKit secrets, and best practices.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/docker-env-variables</guid>
    </item>
    <item>
      <title>Vercel Environment Variables: Dashboard, CLI &amp; Edge</title>
      <link>https://env.dev/guides/vercel-env-variables</link>
      <description>How to configure environment variables on Vercel. Covers the dashboard, CLI (vercel env pull), system variables, per-environment settings, and Edge function access.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/vercel-env-variables</guid>
    </item>
    <item>
      <title>The Complete .env File Syntax Reference</title>
      <link>https://env.dev/guides/env-file-syntax</link>
      <description>Definitive reference for .env file syntax: quoting rules, comments, multiline values, variable expansion, and differences across Node.js, Python, Ruby, Go, and Docker Compose.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/env-file-syntax</guid>
    </item>
    <item>
      <title>Kubernetes Environment Variables: ConfigMaps, Secrets &amp; Pod Spec</title>
      <link>https://env.dev/guides/kubernetes-env-variables</link>
      <description>How to configure environment variables in Kubernetes: inline env, ConfigMaps, Secrets, the downward API, and best practices for managing configuration at scale.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/kubernetes-env-variables</guid>
    </item>
    <item>
      <title>AWS Lambda Environment Variables: Console, CLI, SAM &amp; CDK</title>
      <link>https://env.dev/guides/aws-lambda-env-variables</link>
      <description>How to set and manage environment variables in AWS Lambda. Covers the console, CLI, SAM templates, CDK, Terraform, KMS encryption, and Secrets Manager integration.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/aws-lambda-env-variables</guid>
    </item>
    <item>
      <title>Python Environment Variables: os.environ, dotenv, and Pydantic</title>
      <link>https://env.dev/guides/python-env-variables</link>
      <description>How to read, set, and manage environment variables in Python. Covers os.environ, python-dotenv, Pydantic Settings, Django, and Flask patterns.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/python-env-variables</guid>
    </item>
    <item>
      <title>How to Share .env Files With Your Team Securely</title>
      <link>https://env.dev/guides/sharing-env-files-securely</link>
      <description>Never commit .env files to Git. Compare secure sharing methods: 1Password CLI, Doppler, AWS Secrets Manager, HashiCorp Vault, and encrypted git with SOPS.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/sharing-env-files-securely</guid>
    </item>
    <item>
      <title>Terraform Variables: tfvars vs Environment Variables vs Variable Blocks</title>
      <link>https://env.dev/guides/terraform-variables</link>
      <description>Compare all three approaches to Terraform variables with code examples. Variable blocks, .tfvars files, TF_VAR_ environment variables, precedence, sensitive values, and validation.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/terraform-variables</guid>
    </item>
    <item>
      <title>dotenv Not Loading? Step-by-Step Debugging Guide</title>
      <link>https://env.dev/guides/dotenv-not-loading</link>
      <description>Fix environment variables not loading from .env files. Covers Node.js, Python, Docker, file path issues, syntax errors, load order, and production gotchas.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/dotenv-not-loading</guid>
    </item>
    <item>
      <title>TypeScript Generics: A Complete Guide</title>
      <link>https://env.dev/guides/typescript-generics</link>
      <description>Master TypeScript generics, constraints, utility types, mapped types, and conditional types with practical examples.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/typescript-generics</guid>
    </item>
    <item>
      <title>REST API Best Practices: Design Guide</title>
      <link>https://env.dev/guides/rest-api-best-practices</link>
      <description>Design better REST APIs with best practices for naming, versioning, pagination, error handling, and HATEOAS.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/rest-api-best-practices</guid>
    </item>
    <item>
      <title>SSH Keys: Complete Guide to Generation and Usage</title>
      <link>https://env.dev/guides/ssh-keys-guide</link>
      <description>Learn how to generate SSH keys, configure ssh-agent, set up config files, tunnels, and ProxyJump for secure remote access.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/ssh-keys-guide</guid>
    </item>
    <item>
      <title>Docker Networking: Bridge, Host, Overlay &amp; Compose</title>
      <link>https://env.dev/guides/docker-networking</link>
      <description>Understand Docker networking: bridge, host, overlay networks, port mapping, DNS resolution, and Docker Compose networking.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/docker-networking</guid>
    </item>
    <item>
      <title>Linux File Permissions: chmod, chown, umask &amp; ACLs</title>
      <link>https://env.dev/guides/linux-file-permissions</link>
      <description>Master Linux file permissions including chmod, chown, umask, sticky bit, SUID/SGID, and Access Control Lists.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/linux-file-permissions</guid>
    </item>
    <item>
      <title>Nginx Configuration: Server Blocks, Proxy &amp; SSL</title>
      <link>https://env.dev/guides/nginx-configuration</link>
      <description>Configure Nginx for server blocks, reverse proxy, SSL termination, load balancing, and caching with practical examples.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/nginx-configuration</guid>
    </item>
    <item>
      <title>Git Branching Strategies: GitFlow, Trunk-Based &amp; GitHub Flow</title>
      <link>https://env.dev/guides/git-branching-strategies</link>
      <description>Compare Git branching strategies: GitFlow, trunk-based development, GitHub Flow, and release branches. Choose the right workflow for your team.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/git-branching-strategies</guid>
    </item>
    <item>
      <title>Python Virtual Environments: venv, pip, pyenv &amp; Poetry</title>
      <link>https://env.dev/guides/python-virtual-environments</link>
      <description>Manage Python environments with venv, pip, pyenv, Poetry, and conda. Learn requirements.txt, pyproject.toml, and environment best practices.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/python-virtual-environments</guid>
    </item>
    <item>
      <title>HTTPS and TLS Explained: Certificates, Handshake &amp; HSTS</title>
      <link>https://env.dev/guides/https-tls-explained</link>
      <description>Understand HTTPS, TLS certificates, the TLS handshake, cipher suites, Let&apos;s Encrypt, and HSTS for secure web communication.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/https-tls-explained</guid>
    </item>
    <item>
      <title>DNS Explained: Record Types, Resolution &amp; Common Issues</title>
      <link>https://env.dev/guides/dns-explained</link>
      <description>Understand DNS record types, resolution process, caching, TTL values, and how to debug common DNS misconfigurations.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/dns-explained</guid>
    </item>
    <item>
      <title>Regex Patterns Cookbook: Common Patterns with Explanations</title>
      <link>https://env.dev/guides/regex-patterns-cookbook</link>
      <description>A cookbook of common regex patterns for email, URL, IP address, phone number, and date validation with detailed explanations.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/regex-patterns-cookbook</guid>
    </item>
    <item>
      <title>Rate Limiting Strategies: Token Bucket, Sliding Window &amp; More</title>
      <link>https://env.dev/guides/rate-limiting-strategies</link>
      <description>Implement rate limiting with token bucket, sliding window, fixed window, and Redis-based strategies. Includes code examples and API gateway patterns.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/rate-limiting-strategies</guid>
    </item>
    <item>
      <title>HTTP Status Codes — Complete Quick Reference</title>
      <link>https://env.dev/cheatsheets/http-status-codes-cheat-sheet</link>
      <description>Every HTTP status code explained with practical examples. 1xx through 5xx with when to use each code in your API.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/http-status-codes-cheat-sheet</guid>
    </item>
    <item>
      <title>CIDR Notation Cheat Sheet — Subnet Masks &amp; Host Counts</title>
      <link>https://env.dev/cheatsheets/cidr-cheat-sheet</link>
      <description>Complete CIDR reference table: every prefix from /8 to /32 with subnet mask, total addresses, usable hosts, and common use cases.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/cidr-cheat-sheet</guid>
    </item>
    <item>
      <title>YAML Syntax Cheat Sheet — Scalars, Collections &amp; Gotchas</title>
      <link>https://env.dev/cheatsheets/yaml-cheat-sheet</link>
      <description>Quick reference for YAML syntax: strings, numbers, multiline values, sequences, mappings, anchors, aliases, and common gotchas like the Norway problem.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/yaml-cheat-sheet</guid>
    </item>
    <item>
      <title>JSON Cheat Sheet — Syntax, Parsing &amp; Common Mistakes</title>
      <link>https://env.dev/cheatsheets/json-cheat-sheet</link>
      <description>Quick reference for JSON syntax: data types, objects, arrays, JSON.parse/stringify, jq basics, and common mistakes like trailing commas and single quotes.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/json-cheat-sheet</guid>
    </item>
    <item>
      <title>Cron Schedule Examples — 30+ Common Cron Expressions</title>
      <link>https://env.dev/cheatsheets/cron-examples-cheat-sheet</link>
      <description>Ready-to-use cron expressions for every common schedule: every 5 minutes, hourly, daily, weekly, monthly, and more.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/cron-examples-cheat-sheet</guid>
    </item>
    <item>
      <title>Python Cheat Sheet — Quick Reference</title>
      <link>https://env.dev/cheatsheets/python-cheat-sheet</link>
      <description>Python quick reference: data types, string methods, list/dict comprehensions, f-strings, file I/O, and common standard library modules.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/python-cheat-sheet</guid>
    </item>
    <item>
      <title>JavaScript Cheat Sheet — ES6+ Quick Reference</title>
      <link>https://env.dev/cheatsheets/javascript-cheat-sheet</link>
      <description>JavaScript ES6+ quick reference: destructuring, spread operator, arrow functions, array methods, promises, async/await, and modules.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/javascript-cheat-sheet</guid>
    </item>
    <item>
      <title>TypeScript Cheat Sheet — Types &amp; Generics Quick Reference</title>
      <link>https://env.dev/cheatsheets/typescript-cheat-sheet</link>
      <description>TypeScript quick reference: basic types, interfaces, generics, utility types, type guards, enums, and type assertions.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/typescript-cheat-sheet</guid>
    </item>
    <item>
      <title>SQL Cheat Sheet — Queries &amp; Commands Quick Reference</title>
      <link>https://env.dev/cheatsheets/sql-cheat-sheet</link>
      <description>SQL quick reference: SELECT, JOINs, GROUP BY, subqueries, window functions, indexes, and data manipulation commands.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/sql-cheat-sheet</guid>
    </item>
    <item>
      <title>Go (Golang) Cheat Sheet — Quick Reference</title>
      <link>https://env.dev/cheatsheets/go-cheat-sheet</link>
      <description>Go quick reference: types, structs, interfaces, goroutines, channels, error handling, slices, maps, and defer/panic/recover.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/go-cheat-sheet</guid>
    </item>
    <item>
      <title>Rust Cheat Sheet — Ownership &amp; Types Quick Reference</title>
      <link>https://env.dev/cheatsheets/rust-cheat-sheet</link>
      <description>Rust quick reference: ownership, borrowing, lifetimes, traits, enums, pattern matching, Result/Option, and common macros.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/rust-cheat-sheet</guid>
    </item>
    <item>
      <title>CSS Cheat Sheet — Flexbox, Grid &amp; Selectors Quick Reference</title>
      <link>https://env.dev/cheatsheets/css-cheat-sheet</link>
      <description>CSS quick reference: Flexbox, Grid, selectors, units, CSS variables, media queries, and transitions.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/css-cheat-sheet</guid>
    </item>
    <item>
      <title>Linux Commands Cheat Sheet — Quick Reference</title>
      <link>https://env.dev/cheatsheets/linux-cheat-sheet</link>
      <description>Linux commands quick reference: file management, process control, networking, permissions, systemd, and disk usage.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/linux-cheat-sheet</guid>
    </item>
    <item>
      <title>AWS CLI Cheat Sheet — EC2, S3 &amp; IAM Quick Reference</title>
      <link>https://env.dev/cheatsheets/aws-cli-cheat-sheet</link>
      <description>AWS CLI quick reference: EC2, S3, IAM, Lambda, and CloudFormation common commands with examples.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/aws-cli-cheat-sheet</guid>
    </item>
    <item>
      <title>Markdown Cheat Sheet — Syntax Quick Reference</title>
      <link>https://env.dev/cheatsheets/markdown-cheat-sheet</link>
      <description>Markdown syntax quick reference: headings, links, images, lists, code blocks, tables, and GitHub Flavored Markdown extensions.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/markdown-cheat-sheet</guid>
    </item>
    <item>
      <title>Vim Cheat Sheet — Commands &amp; Motions Quick Reference</title>
      <link>https://env.dev/cheatsheets/vim-cheat-sheet</link>
      <description>Vim quick reference: modes, navigation, editing, search/replace, visual mode, registers, macros, and window management.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/vim-cheat-sheet</guid>
    </item>
    <item>
      <title>MySQL Cheat Sheet — Commands &amp; Queries Quick Reference</title>
      <link>https://env.dev/cheatsheets/mysql-cheat-sheet</link>
      <description>MySQL quick reference: data types, CRUD operations, JOINs, indexes, user management, backup/restore, and common functions.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/mysql-cheat-sheet</guid>
    </item>
    <item>
      <title>REST vs GraphQL: Which API Style Should You Use?</title>
      <link>https://env.dev/comparisons/rest-vs-graphql</link>
      <description>Compare REST and GraphQL APIs side by side. Understand the trade-offs in performance, flexibility, caching, and developer experience to choose the right approach.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/rest-vs-graphql</guid>
    </item>
    <item>
      <title>Docker vs Kubernetes: What&apos;s the Difference?</title>
      <link>https://env.dev/comparisons/docker-vs-kubernetes</link>
      <description>Understand the difference between Docker and Kubernetes. Docker builds and runs containers; Kubernetes orchestrates them at scale. Learn when to use each.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/docker-vs-kubernetes</guid>
    </item>
    <item>
      <title>npm vs yarn vs pnpm: Package Manager Comparison</title>
      <link>https://env.dev/comparisons/npm-vs-yarn-vs-pnpm</link>
      <description>Compare npm, yarn, and pnpm package managers. Benchmark install speed, disk usage, lockfile format, and monorepo support to pick the best one for your project.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/npm-vs-yarn-vs-pnpm</guid>
    </item>
    <item>
      <title>PostgreSQL vs MySQL: Which Database to Choose?</title>
      <link>https://env.dev/comparisons/postgresql-vs-mysql</link>
      <description>Compare PostgreSQL and MySQL databases. Analyze performance, features, JSON support, replication, and ecosystem to choose the right database for your project.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/postgresql-vs-mysql</guid>
    </item>
    <item>
      <title>Redis vs Memcached: In-Memory Caching Compared</title>
      <link>https://env.dev/comparisons/redis-vs-memcached</link>
      <description>Compare Redis and Memcached for caching. Evaluate data structures, persistence, clustering, and use cases to pick the right in-memory store.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/redis-vs-memcached</guid>
    </item>
    <item>
      <title>Nginx vs Apache: Web Server Comparison</title>
      <link>https://env.dev/comparisons/nginx-vs-apache</link>
      <description>Compare Nginx and Apache web servers. Evaluate performance, configuration, modules, reverse proxy capabilities, and resource usage.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/nginx-vs-apache</guid>
    </item>
    <item>
      <title>SQL vs NoSQL: How to Choose the Right Database</title>
      <link>https://env.dev/comparisons/sql-vs-nosql</link>
      <description>Compare SQL and NoSQL databases. Understand relational vs document/key-value/graph models, consistency guarantees, scalability, and when to use each.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/sql-vs-nosql</guid>
    </item>
    <item>
      <title>TypeScript vs JavaScript: Is TypeScript Worth It?</title>
      <link>https://env.dev/comparisons/typescript-vs-javascript</link>
      <description>Compare TypeScript and JavaScript. Evaluate type safety, developer experience, build tooling, ecosystem support, and migration strategies.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/typescript-vs-javascript</guid>
    </item>
    <item>
      <title>Git Merge vs Rebase: When to Use Each</title>
      <link>https://env.dev/comparisons/git-merge-vs-rebase</link>
      <description>Compare git merge and git rebase strategies. Understand how each affects commit history, when to use which, and best practices for team workflows.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/git-merge-vs-rebase</guid>
    </item>
    <item>
      <title>Vite vs Webpack: Build Tool Comparison</title>
      <link>https://env.dev/comparisons/vite-vs-webpack</link>
      <description>Compare Vite and Webpack build tools. Evaluate dev server speed, build performance, configuration complexity, plugin ecosystems, and migration paths.</description>
      <pubDate>Sun, 12 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/comparisons/vite-vs-webpack</guid>
    </item>
    <item>
      <title>Neovim Lua: Complete Guide to vim.fn, vim.api, and Lua Scripting</title>
      <link>https://env.dev/guides/neovim-lua</link>
      <description>Master Neovim Lua scripting: the vim.* namespace, vim.opt options, vim.fn.jobstart with environment variables, vim.system, autocommands, keymaps, user commands, vim.uv async I/O, and practical recipes for your init.lua config.</description>
      <pubDate>Thu, 02 Apr 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/neovim-lua</guid>
    </item>
    <item>
      <title>GraphQL: The Complete Developer Guide to Queries, Schemas, and APIs</title>
      <link>https://env.dev/guides/graphql-guide</link>
      <description>Master GraphQL from scratch: schema design with SDL, queries, mutations, subscriptions, resolvers, the N+1 problem with DataLoader, cursor-based pagination, error handling, security hardening, and the Apollo/Relay ecosystem.</description>
      <pubDate>Mon, 23 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/graphql-guide</guid>
    </item>
    <item>
      <title>WebSockets: Guide to Real-Time Communication</title>
      <link>https://env.dev/guides/websockets-guide</link>
      <description>Master WebSockets: the RFC 6455 protocol, handshake, browser API, server implementations in Node.js, Python, and Go, reconnection strategies, heartbeats, security best practices, pub/sub patterns, and scaling in production.</description>
      <pubDate>Thu, 19 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/websockets-guide</guid>
    </item>
    <item>
      <title>Server-Sent Events: SSE vs WebSockets Guide</title>
      <link>https://env.dev/guides/server-sent-events</link>
      <description>Master Server-Sent Events (SSE): wire format, EventSource API, Node.js TypeScript implementation, auto-reconnection, HTTP/2 multiplexing, and a detailed comparison with WebSockets.</description>
      <pubDate>Thu, 19 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/server-sent-events</guid>
    </item>
    <item>
      <title>Nginx Cheat Sheet — Server Blocks, Proxy &amp; SSL</title>
      <link>https://env.dev/cheatsheets/nginx-cheat-sheet</link>
      <description>Quick reference for Nginx: service management, server blocks, reverse proxy, load balancing, SSL/TLS, location matching, logging, and performance tuning.</description>
      <pubDate>Thu, 19 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/nginx-cheat-sheet</guid>
    </item>
    <item>
      <title>tmux Cheat Sheet — Sessions, Windows, Panes &amp; Copy Mode</title>
      <link>https://env.dev/cheatsheets/tmux-cheat-sheet</link>
      <description>Quick reference for tmux: sessions, windows, panes, copy mode, resizing, synchronize panes, configuration, and keybindings.</description>
      <pubDate>Thu, 19 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/tmux-cheat-sheet</guid>
    </item>
    <item>
      <title>Bash Scripting Cheat Sheet</title>
      <link>https://env.dev/cheatsheets/bash-scripting-cheat-sheet</link>
      <description>Quick reference for Bash scripting: variables, parameter expansion, conditionals, loops, functions, arrays, redirection, error handling, and strict mode.</description>
      <pubDate>Thu, 19 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/bash-scripting-cheat-sheet</guid>
    </item>
    <item>
      <title>curl Cheat Sheet — HTTP Requests &amp; API Testing</title>
      <link>https://env.dev/cheatsheets/curl-cheat-sheet</link>
      <description>Quick reference for curl: GET/POST requests, headers, cookies, authentication, file uploads and downloads, debugging, TLS, proxies, and scripting patterns.</description>
      <pubDate>Thu, 19 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/curl-cheat-sheet</guid>
    </item>
    <item>
      <title>jq Cheat Sheet — Filter &amp; Transform JSON</title>
      <link>https://env.dev/cheatsheets/jq-cheat-sheet</link>
      <description>Quick reference for jq: basic filters, pipes, selectors, string operations, array and object manipulation, reduce, path expressions, output formatting, and passing variables.</description>
      <pubDate>Tue, 17 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/jq-cheat-sheet</guid>
    </item>
    <item>
      <title>The Dark Factory Pattern Part 5: Security &amp; Governance</title>
      <link>https://env.dev/guides/dark-factory-pattern-part-5</link>
      <description>Harden your dark factory with defense in depth, OS-level sandboxing, secrets protection, supply chain lockdown, audit trails, and governance policies. Covers the OWASP Agentic Top 10, permission deny rules, hooks, prompt injection defense, and a production-ready settings.json.</description>
      <pubDate>Mon, 16 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/dark-factory-pattern-part-5</guid>
    </item>
    <item>
      <title>GitHub Actions: The Complete CI/CD Guide for Developers</title>
      <link>https://env.dev/guides/github-actions-guide</link>
      <description>Master GitHub Actions CI/CD: workflow syntax, triggers, matrix builds, reusable workflows, composite actions, caching, secrets, security hardening, and performance optimization.</description>
      <pubDate>Sat, 14 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/github-actions-guide</guid>
    </item>
    <item>
      <title>GitHub Actions Cheat Sheet</title>
      <link>https://env.dev/cheatsheets/github-actions-cheat-sheet</link>
      <description>Quick reference for GitHub Actions CI/CD: workflow syntax, triggers, jobs, matrix strategies, secrets, caching, artifacts, reusable workflows, and essential actions.</description>
      <pubDate>Sat, 14 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/github-actions-cheat-sheet</guid>
    </item>
    <item>
      <title>Git for Beginners: Visual Guide to Version Control</title>
      <link>https://env.dev/guides/git-getting-started</link>
      <description>Learn Git from scratch: cloning, branching, committing, pushing, pull requests, handling conflicts, and using VS Code and GitHub Desktop. A beginner-friendly visual guide to version control.</description>
      <pubDate>Fri, 13 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/git-getting-started</guid>
    </item>
    <item>
      <title>PostgreSQL vs MongoDB: Why Postgres Wins</title>
      <link>https://env.dev/guides/postgresql-vs-mongodb</link>
      <description>A no-nonsense comparison of PostgreSQL and MongoDB. When to choose which, why PostgreSQL wins for 95% of projects, JSONB vs documents and hosting options with free tiers.</description>
      <pubDate>Thu, 12 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/postgresql-vs-mongodb</guid>
    </item>
    <item>
      <title>CORS: The Complete Guide to Cross-Origin Resource Sharing</title>
      <link>https://env.dev/guides/cors-guide</link>
      <description>Everything you need to know about CORS: headers, preflight requests, credentialed requests, debugging techniques, third-party scripts (Google Ads, Cloudflare, PostHog), and framework setup for Next.js and TanStack Start.</description>
      <pubDate>Thu, 12 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/cors-guide</guid>
    </item>
    <item>
      <title>PostgreSQL Cheat Sheet</title>
      <link>https://env.dev/cheatsheets/postgresql-cheat-sheet</link>
      <description>Comprehensive PostgreSQL reference: CRUD, JOINs with visual diagrams, subquery vs JOIN vs CTE alternatives, window functions, indexing, JSONB, transactions, and performance tuning.</description>
      <pubDate>Thu, 12 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/postgresql-cheat-sheet</guid>
    </item>
    <item>
      <title>The Dark Factory Pattern Part 4: Scaling the Factory</title>
      <link>https://env.dev/guides/dark-factory-pattern-part-4</link>
      <description>Scale your dark factory with multi-agent orchestration, cost control, and production observability. Covers git worktrees, Agent Teams, model routing, budget gates, circuit breakers, and the economics of autonomous development.</description>
      <pubDate>Wed, 11 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/dark-factory-pattern-part-4</guid>
    </item>
    <item>
      <title>Terraform Cheat Sheet</title>
      <link>https://env.dev/cheatsheets/terraform-cheat-sheet</link>
      <description>Quick reference for Terraform CLI commands, HCL configuration syntax, state management, workspaces, expressions, and built-in functions.</description>
      <pubDate>Wed, 11 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/terraform-cheat-sheet</guid>
    </item>
    <item>
      <title>Kubernetes (kubectl) Cheat Sheet</title>
      <link>https://env.dev/cheatsheets/kubernetes-cheat-sheet</link>
      <description>Quick reference for kubectl: contexts, core resources, pod operations, deployments, scaling, debugging, ConfigMaps, and Secrets.</description>
      <pubDate>Tue, 10 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/kubernetes-cheat-sheet</guid>
    </item>
    <item>
      <title>The Dark Factory Pattern Part 3: Spec-Driven Development</title>
      <link>https://env.dev/guides/dark-factory-pattern-part-3</link>
      <description>Master spec-driven development: write precise specifications, implement holdout scenarios as quality gates, build evaluation pipelines, and transition from human code review to automated auto-merge.</description>
      <pubDate>Mon, 09 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/dark-factory-pattern-part-3</guid>
    </item>
    <item>
      <title>SSH Cheat Sheet</title>
      <link>https://env.dev/cheatsheets/ssh-cheat-sheet</link>
      <description>Quick reference for SSH: connecting, key generation, agent, port forwarding, jump hosts, SCP, SFTP, config file, and permissions.</description>
      <pubDate>Mon, 09 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/ssh-cheat-sheet</guid>
    </item>
    <item>
      <title>Dev Containers: Guide to Containerized Development</title>
      <link>https://env.dev/guides/dev-containers</link>
      <description>Everything you need to know about Dev Containers: devcontainer.json, Features, lifecycle scripts, Docker Compose integration, the CLI, performance optimization, security hardening, and common gotchas.</description>
      <pubDate>Sun, 08 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/dev-containers</guid>
    </item>
    <item>
      <title>The Dark Factory Pattern Part 2: AI Dev Foundation</title>
      <link>https://env.dev/guides/dark-factory-pattern-part-2</link>
      <description>Hands-on guide to setting up your coding agent, writing a production-grade AGENTS.md, decomposing tasks for AI delegation, and building feedback loops that improve agent output over time.</description>
      <pubDate>Sat, 07 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/dark-factory-pattern-part-2</guid>
    </item>
    <item>
      <title>The Dark Factory Pattern: AI-Driven Dev Playbook</title>
      <link>https://env.dev/guides/dark-factory-pattern</link>
      <description>A practical playbook for reaching fully autonomous AI-driven development. Covers all six levels (0-5) from manual coding to the dark factory, with concrete actions, examples, and buildable artifacts at every step.</description>
      <pubDate>Thu, 05 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/dark-factory-pattern</guid>
    </item>
    <item>
      <title>Neovim: A Developer Guide to the Modern Vim</title>
      <link>https://env.dev/guides/neovim</link>
      <description>Master Neovim: modes, motions, text objects, registers, LSP, Tree-sitter, Lua configuration, and essential plugins.</description>
      <pubDate>Thu, 05 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/neovim</guid>
    </item>
    <item>
      <title>Neovim Cheat Sheet</title>
      <link>https://env.dev/cheatsheets/neovim-cheat-sheet</link>
      <description>Essential Neovim commands and keybindings: modes, navigation, editing, text objects, search, windows, buffers, macros, and more.</description>
      <pubDate>Thu, 05 Mar 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/neovim-cheat-sheet</guid>
    </item>
    <item>
      <title>Docker Compose Environment Variables: The Complete Guide</title>
      <link>https://env.dev/guides/docker-compose-env-variables</link>
      <description>How to use environment variables in Docker Compose: .env files, env_file directive, --env-file flag, multiple environments, variable substitution, and secrets management.</description>
      <pubDate>Sat, 28 Feb 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/docker-compose-env-variables</guid>
    </item>
    <item>
      <title>The .env File: A Complete Guide to Environment Variables</title>
      <link>https://env.dev/guides/dotenv</link>
      <description>Everything you need to know about .env files: syntax, usage across languages, best practices, and common pitfalls.</description>
      <pubDate>Fri, 27 Feb 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/dotenv</guid>
    </item>
    <item>
      <title>Cron Expression Syntax: A Complete Guide</title>
      <link>https://env.dev/guides/cron-expression-guide</link>
      <description>Master cron expressions: field breakdown, special characters, and common schedule examples.</description>
      <pubDate>Thu, 26 Feb 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/cron-expression-guide</guid>
    </item>
    <item>
      <title>Unix Timestamps Explained</title>
      <link>https://env.dev/guides/unix-timestamps-explained</link>
      <description>What epoch time is, why it is used, the Y2K38 problem, and how to convert in different languages.</description>
      <pubDate>Thu, 26 Feb 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/unix-timestamps-explained</guid>
    </item>
    <item>
      <title>Base64 Encoding Explained</title>
      <link>https://env.dev/guides/base64-encoding-explained</link>
      <description>Understand Base64 encoding: how the algorithm works, when to use it, and what padding means.</description>
      <pubDate>Thu, 26 Feb 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/base64-encoding-explained</guid>
    </item>
    <item>
      <title>What is a JWT? A Developer Guide to JSON Web Tokens</title>
      <link>https://env.dev/guides/what-is-jwt</link>
      <description>Learn how JSON Web Tokens work, their structure, use cases, and common pitfalls.</description>
      <pubDate>Thu, 26 Feb 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/guides/what-is-jwt</guid>
    </item>
    <item>
      <title>Regex Cheat Sheet for Developers</title>
      <link>https://env.dev/cheatsheets/regex-cheat-sheet</link>
      <description>A quick-reference guide to regular expression syntax: patterns, quantifiers, groups, and examples.</description>
      <pubDate>Thu, 26 Feb 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/regex-cheat-sheet</guid>
    </item>
    <item>
      <title>Git Cheat Sheet — Undo, Rebase &amp; Resolve Conflicts</title>
      <link>https://env.dev/cheatsheets/git-cheat-sheet</link>
      <description>Essential Git commands: how to undo the last commit, resolve merge conflicts, rebase branches, squash commits, and one-liners you always forget.</description>
      <pubDate>Thu, 26 Feb 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/git-cheat-sheet</guid>
    </item>
    <item>
      <title>Docker Cheat Sheet</title>
      <link>https://env.dev/cheatsheets/docker-cheat-sheet</link>
      <description>Quick reference for Docker CLI: containers, images, volumes, networking, and Docker Compose.</description>
      <pubDate>Thu, 26 Feb 2026 00:00:00 GMT</pubDate>
      <guid isPermaLink="true">https://env.dev/cheatsheets/docker-cheat-sheet</guid>
    </item>
  </channel>
</rss>
