Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
var globals = {}; // application wide global variable | |
globals.constants = { | |
} | |
globals.showToastMessage = function(heading, message, icon) { | |
$.toast({ | |
heading: heading, | |
text: message, | |
showHideTransition: 'slide', |
# IMPORTANT SHIT : A cat will die unless you read this. | |
# generate your ssh public key and add it to gitlab, github and your to your body as a tattoo | |
# ssh-keygen // to Generate ssh key | |
# cat ~/.ssh/id_rsa.pub // to print it to console | |
# fucking copy the above key and add it to ur git repo etc. | |
# | |
# sudo apt-get install autoconf automake autoheader -y; | |
sudo apt-get install build-essential -y; |
# This is not used unless SQLALCHEMY_BINDS is not present | |
SQLALCHEMY_DATABASE_URI = 'mysql+pymysql://{username}:{password}@{hostname}/{database}?charset=utf8' | |
SQLALCHEMY_BINDS = { | |
'master': 'mysql+pymysql://{username}:{password}@{hostname}/{database}?charset=utf8', | |
'slave': 'mysql+pymysql://{username}:{password}@{hostname}/{database}?charset=utf8' | |
} |