SpeedCrunch
11–20 of 138 posts
Re: SpeedCrunch
#12Re: SpeedCrunch
#13This looks cool! I have been using qalculate ( https://qalculate.github.io/ ) recently, which seems similar. Has anyone used both and can tell me how they compare?
Re: SpeedCrunch
#14 SC: 5+8 Enter [4 keys, 1 shift]
Calc: 5 RET 8 + [4 keys, 1 shift]
SC: 5*(113+23) Enter [11 keys, 3 shifts]
Calc: 5 RET 113 RET 23 + * [10 keys, 1 shift]
SC: 7*ans Enter [6 keys, 1 shift]
Calc: 7 * [2 keys, 1 shift]
SC: sqrt(1231+41) Enter [14 keys, 3 shift]
Calc: 1231 RET 41 + Q [9 keys, 1 shift]
Maybe it’s more efficient than clicking buttons with a mouse but it doesn’t feel more efficient than the calculator I already use, nor does it seem to be better integrated with the software I use. It doesn’t even seem more efficient than the scientific calculator I used in high school.I think I’m put off more by the lack of graphing and (as far as I could tell skimming their site) array/vector/matrix functions, which are the main things I do with Calc.
Re: SpeedCrunch
#15Their demo of their efficient interface compared to GNU Calc: SC: 5+8 Enter [4 keys, 1 shift] Calc: 5 RET 8 + [4 keys, 1 shift] SC: 5*(113+23) Enter [11 keys, 3 shifts] Calc: 5 RET 113 RET 23 + * [10 keys, 1 shift] SC: 7*ans Enter [6 keys, 1 shift] Calc: 7 * [2 keys, 1 shift] SC: sqrt(1231+41) Enter [14 keys, 3 shift] Calc: 1231 RET 41 + Q [9 keys, 1 shift] Maybe it’s more efficient than clicking buttons with a mouse…
Re: SpeedCrunch
#16 if [ $(xdotool search --name "calc repl") ]; then
xdotool search --name "calc repl" windowraise
else
xfce4-terminal \
--title="calc repl" \
--color-bg=#123 \
--color-text=#fec \
--hide-scrollbar \
--font="Deja Vu Sans Mono 14px" \
--geometry 40x14 \
--execute node -i -e "$JSREPL"
fi
($JSREPL just contains some extra functions that I want in a calculator)I can easily go back to previous calculations and results, define vars, run loops whatevs. Having it on a key combo and launching the terminal with a distinct text/bg color really makes a difference. It also launches faster than most other calculators I tried. For my purposes (non-scientific, mostly programming stuff), it's been great.
Re: SpeedCrunch
#17I often have to do many simple calculations (adding numbers from a pdf,...) and having full history and being able to keep speedcrunch over the other windows is perfect. I also increased font-size dramatically to improve readability on big screens.
Sure, there are more advanced tools. But the simplicity and lightness on ressources is what makes it my go-to calculator.
Re: SpeedCrunch
#18Am I a weirdo for using the console (F12) in my browser for calculating stuff like tips, rent/utilities for the month, and other such things? Lol.
Re: SpeedCrunch
#19Am I a weirdo for using the console (F12) in my browser for calculating stuff like tips, rent/utilities for the month, and other such things? Lol.
It also has a persistent history, variables, functions, base conversion, etc. I guess it doesn't have unit conversion or a math library, but it's a great programmers calculator.