variable naming conventions
-

Background: Many programming languages allow extremely long user-defined variable and function names. Frequently, companies will have a specific policy on naming: for example, forbidding abbreviations and requiring descriptive variable names (e.g., “CALCULATE_TOTAL_COMPOUND_INTEREST” would be OK, but “COMPINT” or “CCI” would not). The Issue: Normally, this makes sense: if someone has to read a bunch of…
