Hexadecimal colours palette to use in charts
#ff3b3b
#30e5ff
#37ff30
#ff38ed
#ffbc3c
#362fff
#e8ff2f
#!/bin/bash | |
# ---------- SETUP -------------- | |
SITE="unforgivenexception.com" | |
APP_FOLDER="app" | |
VIRTUALENV_FOLDER="env" | |
PYTHON_VERSION="3.5.6" | |
# ---------------------------------------------- |
#!/bin/bash | |
# This script will show the current branch of all subdirs in a directory | |
# source: https://gist.github.com/paulera/fed7e4f8ac150dd2a05180ae1ac241b1 | |
if [ "$1" == "--help" ] | |
then | |
echo "List the current branch of all subfolders that are GIR repos" | |
echo "Usage: $(basename $0) [folder]" | |
echo |
Hexadecimal colours palette to use in charts
#ff3b3b
#30e5ff
#37ff30
#ff38ed
#ffbc3c
#362fff
#e8ff2f
# ref: https://stackoverflow.com/questions/36463531/pyyaml-automatically-converting-certain-keys-to-boolean-values | |
from yaml.constructor import Constructor | |
def add_bool(self, node): | |
return self.construct_scalar(node) | |
Constructor.add_constructor(u'tag:yaml.org,2002:bool', add_bool) | |
# code continues here ... |
var auto = { | |
insist_timeout: 3000, | |
insist_snooze: 500, | |
/** | |
* Pauses execution for <tt>delay</tt> milisseconds | |
* @param {number} [delay=1000] Delay in milisseconds. | |
*/ | |
sleep: function (delay = 1000) { |
// ==UserScript== | |
// @name AdSkipper | |
// @namespace https://gist.github.com/paulera/671daf5b9a5f6502697359941ba524dc | |
// @version 1.3 | |
// @description Skip youtube ads automatically | |
// @author paulera | |
// @match https://www.youtube.com/* | |
// @grant none | |
// ==/UserScript== |
As mensagens dos commits devem servir para três importantes coisas:
Escreva sua mensagem de commit desta forma:
As mensagens dos commits devem servir para três importantes coisas:
Escreva sua mensagem de commit desta forma:
/** | |
* Make this program to print 13 making changes ONLY the body of the "function" function | |
* You are NOT ALLOWED to change NOTHING in the "main" function | |
*/ | |
void function() { | |
/* EDIT ONLY HERE */ | |
} | |
int main() { |
document.getElementById('ghx-header').style.display = 'none'; | |
document.getElementById('ghx-quick-filters').style.display = 'none'; | |
document.getElementById('navigation-app').style.display = 'none'; | |
// document.getElementById('gh').style.height = '100%'; | |
// document.getElementById('ghx-content-main').style.height = '100%'; | |
// document.getElementById('ghx-rabid').style.height = '100%'; | |
document.getElementById('ghx-plan').style.height = '100%'; | |
document.getElementById('ghx-plan-group').style.height = '100%'; |