SagXD to Lemmy Shitpost@lemmy.world · 1 year agoWeather app asking for permission to manage callsimagemessage-square132fedilinkarrow-up11.42Karrow-down118
arrow-up11.4Karrow-down1imageWeather app asking for permission to manage callsSagXD to Lemmy Shitpost@lemmy.world · 1 year agomessage-square132fedilink
minus-squareBaŝto@discuss.tchncs.delinkfedilinkEnglisharrow-up2·1 year 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-squareHiddenLayer5@lemmy.mllinkfedilinkEnglisharrow-up1·1 year 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ŝto@discuss.tchncs.delinkfedilinkEnglisharrow-up2·edit-21 year 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.