This file contains 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
find . | sort | sed 's@[^/]*/@ @g' |
This file contains 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
def example(*args, **kwargs): | |
print("Args:", args, "Kwargs:", kwargs) | |
args = [1, 2] | |
kwargs = {"pos_x": 1, "pos_y": 2} | |
print("Standard call") | |
example(1, 2) | |
print("Keyword call") | |
example(pos_x=1, pos_y=2) | |
print("Args call") |
This file contains 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
pylint .|grep -o "([a-z\-]*)$"|cut -d "(" -f2|sort|uniq|sed s/\)/,/ |
This file contains 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
sudo apt-get update;sudo apt-get dist-upgrade -y;sudo apt-get -y autoremove;sudo apt-get -y autoclean |
This file contains 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
sudo apt-get update;sudo apt-get dist-upgrade -y;sudo apt-get -y autoremove;sudo apt-get -y autoclean | |
sudo apt-get install -y git zsh python3-venv gcc make perl | |
git config --global core.editor "nano" | |
git config --global advice.skippedCherryPicks false | |
git config --global --add --bool push.autoSetupRemote true | |
git config --global help.autocorrect prompt | |
git config --global pull.rebase true | |
git config --global fetch.prune true | |
git config --global diff.algorithm histogram | |
git config --global alias.sw switch |