Call me an Enterprise Java Programmer or whatever but I really like method and variable names that say exactly what they are rather then saving characters.
`let routing_context = bla bla; routing_context.get_route()` is just so much quicker for me to grock than `let rc = bla bla; rc.get_route()`. Then again I guess the intellisense stuff would be popping up the type for folks for the shortnames?
@mauve Totally agree. I reach for acronyms only after my 100 line lenght starts causing problems.