Calculator Everywhere!
Here are some handy ways to do my math:
- in a Terminal, I could
alias ca='printf "%d\n"', then just typeca 3*12-32to get myself the result, but remember not to have spaces. - in Vim, under insert-mode, I could use the
<c-r>=3*12-32to directly insert the result. - Not to mention the Interpreter of many language, like Python and Ruby.