First things first !
sudo apt update
sudo apt upgrade
sudo apt-get install build-essential git
As configured in my dotfiles.
start new:
tmux
start new with session name:
def java_string_hashcode(s): | |
h = 0 | |
for c in s: | |
h = (31 * h + ord(c)) & 0xFFFFFFFF | |
return ((h + 0x80000000) & 0xFFFFFFFF) - 0x80000000 |