- Learn You Some Erlang https://learnyousomeerlang.com/
- The Little Elixir & OTP Guidebook
- Elixir in action 2nd Edition
- Phoenix
- Phoenix in action
- Erlang
| #!/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}") |
gsettings set org.gnome.settings-daemon.plugins.keyboard active false
setxkbmap us -option compose:ralt
Criar uma aplicação Python que permita gerenciar uma biblioteca pessoal usando PostgreSQL. A aplicação deve funcionar no terminal com menu de opções simples e implementar todas as operações CRUD (Create, Read, Update, Delete).