SagXD to Lemmy [email protected] • 10 months agoWeather app asking for permission to manage callslemy.lolmessage-square125fedilinkarrow-up11.4K
arrow-up11.38KimageWeather app asking for permission to manage callslemy.lolSagXD to Lemmy [email protected] • 10 months agomessage-square125fedilink
minus-squareBaŝtolinkfedilinkEnglish1•10 months agoThere are many fun ways of calculating stuff. echo $((5+8)) or abusing REPL mode of python3 or node. My colleagues once made fun of me using galculator with a tiling wm:
minus-squareMarxism-FennekinismlinkfedilinkEnglish1•10 months agoCall me a plebian but I still open up Python when I want to do calculations in the command line because I don’t know how to in Bash.
minus-squareBaŝtolinkfedilinkEnglish2•edit-210 months agoIt’s complicated. $((5+8)) doesn’t support floats. For float you need bc and I always have to look up how to use it. You have to tell it how many numbers it should show scale=2;5/8, by default it also only does integer.
There are many fun ways of calculating stuff.
echo $((5+8))
or abusing REPL mode of python3 or node.My colleagues once made fun of me using galculator with a tiling wm:
Call me a plebian but I still open up Python when I want to do calculations in the command line because I don’t know how to in Bash.
It’s complicated.
doesn’t support floats. For float you need
bc
and I always have to look up how to use it. You have to tell it how many numbers it should showscale=2;5/8
, by default it also only does integer.