sudo apt-get install build-essential automake checkinstall
sudo apt-get build-dep weechat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
import sys | |
import string | |
def convert(value): | |
value = value.upper() | |
alp = value[1] | |
idx = string.ascii_uppercase.index(alp) | |
num = int(value[2:], 10) |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream