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
if [ -z "$1" ] | |
then | |
echo "no argument given. pass a project name" | |
exit 1 | |
fi | |
mkdir -p $1 | |
cd $1 | |
mkdir -p ".vscode" | |
mkdir -p "src/$1" | |
touch "src/$1/__init__.py" |
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
@media print { | |
body { | |
width: 21cm; | |
height: 29.7cm; | |
margin: 30mm 45mm 30mm 45mm; | |
/* change the margins as you want them to be. */ | |
} | |
} |
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
alphabetObj = { | |
a: 0, | |
b: 1, | |
c: 2, | |
d: 3, | |
e: 4, | |
f: 5, | |
g: 6, | |
h: 7, | |
i: 8, |
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
[flake8] | |
exclude=.git,__pycache__,env | |
ignore=E231,E501 |
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
{ | |
"python.pythonPath": "env/bin/python", | |
"python.formatting.provider": "black", | |
"python.linting.pylintEnabled": false, | |
"python.linting.flake8Enabled": true, | |
"python.linting.enabled": true, | |
"files.trimFinalNewlines": true | |
} |