Earlier quoted context omitted.
I am a Windows power user, and the default Windows calculator is one of very few programs bundled with the OS that I actually use - and I use it quite frequently. And I click on the number digits. Why? 1. Usually I only click on a few buttons, for example I paste some number, then press / then 2, and then typically ENTER key on the numpad (because I can just press it with the thumb of the hand still holding the mouse…
Your use cases are valid and should be respected and supported. What I was saying is, there are other people who prefer keyboard for efficiency, and they don't need keypad. Make it optional and hideable so that all users are happy. It's very simple change in terms of code diff, but it seems very hard in terms of design choice since even Microsoft doesn't get it.
Show HN: All desktop software calculators are wrong, so I had to build my own
161–169 of 169 posts
Re: Show HN: All desktop software calculators are wrong, so I had to build my own
#162I have a script bound to a hotkey. User experience: 1+1 exit $ cat ~/bin/ipy ipython -i -c "import itertools as it; from statistics import ;import functools as ft;import operator as op;import io;import pathlib as pl;import pandas as pd;import numpy as np;from math import ;import enum;import re;import sys;import os;import json;from collections import defaultdict, deque, Counter;import random;import decimal;import frac…
For anyone needing more inspiration, here is some pseudocode for my version (which also has accompanying print()'s in the live script as a reminder of what my imports are):
>>> from base64 import b64encode as be, b64decode as bd;from binascii import hexlify as hexl, unhexlify as unhexl;from Crypto.Random import get_random_bytes as grb;from Crypto.Random.random import randint # PARAMS (a, b) INCLUSIVE;from Crypto.Hash import SHA1, SHA256;from urllib.parse import quote, unquote
Re: Show HN: All desktop software calculators are wrong, so I had to build my own
#163Earlier quoted context omitted.
I am a Windows power user, and the default Windows calculator is one of very few programs bundled with the OS that I actually use - and I use it quite frequently. And I click on the number digits. Why? 1. Usually I only click on a few buttons, for example I paste some number, then press / then 2, and then typically ENTER key on the numpad (because I can just press it with the thumb of the hand still holding the mouse…
Your use cases are valid and should be respected and supported. What I was saying is, there are other people who prefer keyboard for efficiency, and they don't need keypad. Make it optional and hideable so that all users are happy. It's very simple change in terms of code diff, but it seems very hard in terms of design choice since even Microsoft doesn't get it.
You can download a calculator that is designed to your preferences. I actually wrote a calculator in Autohotkey that was a keylogger constantly checking if last typed characters can be interpreted as a mathematical expression - if so, the expression was evaluated and displayed as a tooltip, and pressing a shortcut could be pressed to paste an equal sign and that evaluated value. Never finished it though, demotivated by how hard it was to port to other OSes.
Re: Show HN: All desktop software calculators are wrong, so I had to build my own
#164I got fed up with all these complicated calculators and re-implemented the original Mac calculator desk accessory at https://CalculatorDA.com . It does the simple things I need while giving me a nice nostalgia buzz.
A fun story about how that original Mac calculator came to look the way it did: https://www.folklore.org/StoryView.py?story=Calculator_Const...
Re: Show HN: All desktop software calculators are wrong, so I had to build my own
#165Re: Show HN: All desktop software calculators are wrong, so I had to build my own
#166Earlier quoted context omitted.
A fun story about how that original Mac calculator came to look the way it did: https://www.folklore.org/StoryView.py?story=Calculator_Const...
Thanks! That story was part of my inspiration. I gave my Calculator DA a lot of visual toggles in the View menu so you can find your way to the look that makes you happy, like Steve did.
Re: Show HN: All desktop software calculators are wrong, so I had to build my own
#167https://education.casio.co.uk/emulator-free-licences
(Looks like they are Windows binaries, didn't try on WineHQ tough)
Re: Show HN: All desktop software calculators are wrong, so I had to build my own
#168Alternative: why not use casio emulators? https://education.casio.co.uk/download-emulator-cw https://education.casio.co.uk/emulator-free-licences (Looks like they are Windows binaries, didn't try on WineHQ tough)
Re: Show HN: All desktop software calculators are wrong, so I had to build my own
#169Alternative: why not use casio emulators? https://education.casio.co.uk/download-emulator-cw https://education.casio.co.uk/emulator-free-licences (Looks like they are Windows binaries, didn't try on WineHQ tough)