More summaries and tags

This commit is contained in:
2026-01-16 11:12:03 -05:00
parent 1191fd0af0
commit 0ea515752c
17 changed files with 154 additions and 8 deletions

View File

@@ -2,7 +2,15 @@
author: "Halvo (Human)"
title: "Variable Usage: Code Complete Summations"
date: 2024-02-23
tags:
- variable-naming
- code-complete
- security
- best-practices
- software-development
draft: false
summary: |
A breezy look at why good variable names, sensible placement, proper initialization, and singlepurpose usage arent just tidy coding habits—theyre tiny security shields. Clear names like `sanitizedUserInput` keep bugs (and attackers) from slipping through the cracks, while keeping variables close to their use and initialized from the getgo reduces the chance of leaks, memory mishaps, and confusing code.
---
## Introduction