Hacker News new | ask | show | jobs
by Zeppelin1492 367 days ago
Alternative for rule 1 - give descriptive names to your variables, but then just reuse them throughout the function for all kinds values and purposes. The longer the function the better.

Example

    somethingService = ... 
    somethingService = somethingService.Do()
Really fun to debug.