Ask HN: Where do you do quick back of envelope calculations?
It was very basic, screenshot below. It had two long text fields on top of each other. You'd enter a mathematical expression in JS in the top field (e.g. "3 + 4 / ( 5 * 0.9 + pi) + pow(2, 4)" ) and as you typed it would auto-generate the result in the bottom field in real time. I would have several instances of this widget in my dashboard so I could quickly and easily do simple calculations or do multipart calculations, copying the result from one widget into the input field of another.
I'd use it constantly for things like measuring stuff for frontend work, doing some rough analytics from db queries, or even just back of envelope budgeting / tax stuff. Using it was so automatic and immediate that it became such an essential tool.
Screenshot: http://www.mindlessflash.com/formula_calc.png
Since I upgraded my OS I've been using the evaluator in Spotlight and the calculator app on my phone and it's not as good because you can only work with one formula at a time. So I guess I have two questions:
1. How do you do rough calculations day to day, what tools do you use and are you happy with them?
2. Do you know of any products / solutions that are similar to the dashboard widget I described above?
18 comments
[ 2.5 ms ] story [ 39.7 ms ] threadEdit: Answering my own question: https://www.apple.com/downloads/dashboard/calculate_convert/...
I uploaded a copy to my s3 bucket: https://www.mindlessflash.com/FormulaCalc.wdgt.zip remove the .zip extension before opening on it.
I also recently bought Soulver (https://www.acqualia.com/soulver), which is great but not quite as quick as a dashboard widget.
Thanks for the modified upload—I realized the version on Apple's site has a visual glitch with the search bar length. I also found this version, which makes you hint enter before you can see the result, but feels more polished. Can't tell if there's any relation. https://www.apple.com/downloads/dashboard/calculate_convert/...
Here is the result of the equation from the OP https://www.wolframalpha.com/input/?i=3+%2B+4+%2F+%28+5+*+0....
[1] https://soulver.app
In version 2 you could make independent files and put them anywhere. It seems, though I may be wrong as I haven't used v3 much, that they want you to keep all your files in one central location and not have independent Soulver files.
Seriously: with a pen, a scrap of paper, and a calculator.
If I want to keep the calculation I'll copy it to a plain text document or to a spreadsheet, or copy it to a notebook.
Also, if you have a browser open, you can just type equations into the console (using JS syntax):
Edit: or just open Terminal, type 'python', and use in interactive mode:(btw the Mac Calculator.app has a 'paper tape' feature that also keeps a record of calculations. ⌘T)