Pages

marți, 7 iulie 2026

Tools : simple guide of the most relevant terms, structured as a specialized in development.

Today, with a little help of artificial intelligence I created this a comprehensive synthesis of the most relevant terms, structured as a specialized guide.
In the software development field, jargon and slang are extremely rich, evolving rapidly alongside new technologies.
1. Code Quality and Technical Debt
These terms are used in professional environments to evaluate the state of a codebase and the trade-offs made during development:
  • Technical Debt: Decisions made to deliver a feature quickly at the cost of lower quality, which will require additional effort to correct later.
  • Code Smell: Symptoms or patterns in the code that suggest a deeper design problem, even if the code is functional.
  • Spaghetti Code: Source code with a complex and incomprehensible control structure, often the result of chaotic development.
  • Code Rot: The process by which a software system becomes increasingly difficult to maintain and more prone to errors as it is modified over time.
  • Maintainability Index: A software metric that measures how easy it is to maintain, modify, and understand a codebase.
  • Brittle Code: Code that breaks as soon as you change a single setting or a small part of the input.
2. Slang for Poor Quality (Beyond Slop)
  • Boilerplate: Repetitive, standard code that must be written to make a feature work but adds no unique logical value.
  • Cargo Cult Programming: The practice of copying and implementing code snippets or design patterns without understanding why they are used.
  • Quick and Dirty: A solution implemented rapidly, without a solid structure or maintainability, usually with the intention of being refactored later.
  • Kitchen Sink: Code or a project where everything has been added, without a clear direction, resulting in an oversized and unmanageable codebase.
  • Hack: An inelegant solution that fixes something for the moment but creates significant risks in the long term.
  • Low-effort slop: A slang term borrowed from creative and online communities to describe mass-generated content that lacks added value or attention to detail.
3. Processes, Errors, and Productivity
  • Yak Shaving: The situation where you start a simple task but realize you have to solve a minor problem, then another, and another, until you lose hours doing things completely unrelated to the main objective.
  • Bikeshedding: The phenomenon where the team spends hours discussing trivial details instead of focusing on the critical architecture of the project.
  • Heisenbug: A bug that disappears or changes its behavior when you try to investigate or debug it.
  • Race Condition: An error that occurs only under very specific timing conditions, making it extremely difficult to reproduce in a controlled manner.
  • Zombie Code: Code that is no longer used by anyone in the application but has not been deleted because programmers are afraid that if they remove it, something will break.
  • Rubber Ducking: The method of explaining your code, line by line, to an inanimate object. The act of explaining often helps you find the logical error yourself.
4. The AI Paradigm: Risks and Automation
  • Prompt Engineering: Although it has become a technical term, in the programming community it is sometimes used ironically to describe the process of trying to get the AI to produce something useful through repeated trial and error.
  • AI-in-the-Middle: The situation where a programmer no longer understands the logical flow of their application because they have delegated too much to an AI assistant, losing control over the code architecture.
  • Hallucination: Used to describe code or a model that has a high probability of generating false information, logical errors, or calls to non-existent libraries.
  • Stochastic Parrot: A critical term describing language models that repeat statistical patterns without understanding the meaning or context of what they are generating.
  • Shadow Code: Code introduced into a project without being fully understood or reviewed.
  • Copy-Paste Programming: The practice of taking code without understanding how it works or how it interacts with the rest of the system.
5. AI Yak Shaving (AI Infrastructure Pitfalls)
  • The RAG Architecture Rabbit Hole: Instead of a simple context injection, the developer becomes obsessed with chunking strategies, vector distance metrics, and migrating between vector databases.
  • Model Hopping: Occurs when the focus shifts to the provider or model architecture rather than the inference logic, spending hours fine-tuning quantization parameters or local registry versions.
  • Agentic Over-Orchestration: Getting lost in Agentic Frameworks, building complex state machines and multi-agent hierarchies for a task that is essentially a linear sequence of inputs.
  • Evaluation Paralysis: Building systems to evaluate LLM outputs using another LLM before shipping any feature, thereby optimizing the evaluation system instead of validating the product value.
6. Testing and Validation in the AI Era
  • Golden Master Testing: A fundamental testing technique originating from the music and film industry. It involves running a system with a set of inputs and capturing the output in a known, correct state. When AI modifies the code, the output is compared to this Master to verify if the changes are safe.
  • Mutation Score: A metric that quantifies the AI drift, representing how many changes were required to make the AI-generated code behave like the Golden Master.
  • LLM-as-a-Judge: Using a second, distinct AI instance that receives the input, output, and code to evaluate if the output is logically consistent with the requirements.
  • Property-Based Testing: Instead of checking for an exact match, the AI is prompted to verify if essential properties hold true.
  • Self-Healing Tests: A framework where a failed test triggers the AI-Author again with instructions to rewrite the code based on the specific error, effectively allowing the AI to debug itself.
  • Circular Hallucination: The risk that an AI-Judge evaluates the code positively simply because it was trained on the same data as the Author, sharing the same biases or errors.
7. Governance and Structured Logging
  • ADRs (Architecture Decision Records): The gold standard for recording decisions; this is where you document a Hack or a Quick and Dirty solution, transparently acknowledging the Technical Debt you are incurring.
  • Structured Logs (JSONL): For an AI to learn from development history, logs must be structured rather than stored as unstructured text.
  • Remediation Engine: Feeding your structured logs into a more capable AI model using a Meta-Prompt to analyze recurring patterns of logic errors and suggest system prompt updates or coding standards.
  • Human-in-the-Loop (HITL): The ultimate safety standard; the developer defines Trust Checkpoints. If a module passes the AI-Judge and Golden Master tests repeatedly, it becomes Trusted Code and is merely monitored rather than re-verified.