- Learn You Some Erlang https://learnyousomeerlang.com/
- The Little Elixir & OTP Guidebook
- Elixir in action 2nd Edition
- Phoenix
- Phoenix in action
- Erlang
gsettings set org.gnome.settings-daemon.plugins.keyboard active false
setxkbmap us -option compose:ralt
#!/usr/bin/env python3 | |
import os | |
import sys | |
import re | |
import fileinput | |
def update_branch_and_checkout(version): | |
os.system("git checkout master") | |
os.system("git pull") | |
os.system(f"git checkout -b chore/prepare-to-v{version}") |