This document discusses code-tuning techniques to improve performance without major refactoring. It describes techniques for optimizing logic, loops, data transformations, expressions, routines, and recoding performance-critical sections in assembler. Specific techniques covered include short-circuit evaluation, ordering tests by frequency, substituting table lookups, unswitching loops, jamming loops, loop unrolling, minimizing work inside loops, and rewriting routines inline. The goal is to make small, targeted changes to improve efficiency rather than large-scale redesigns.