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
--- | |
- name: test jinja2 default filter | |
hosts: localhost | |
gather_facts: False | |
tasks: | |
- name: debug | |
debug: msg="{{ lookup('env', 'UNDEFINED_THING')|default('foo') }}" |
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
Denying load of chrome-extension://[Chromoji extension ID]/jquery.min.map. Resources must be listed in the web_accessible_resources manifest key in order to be loaded by pages outside the extension. |
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
// think of this as the "constructor" function - returns a GridSpace object | |
// so do your init stuff here | |
var GridSpace = function (x, y, height) { | |
this.x = x; | |
this.y = y; | |
this.height = height; | |
}; | |
// this of this as sort of the "class definition", define your other functions here | |
// be warned though: everything in the prototype is shared between all GridSpace instances! |
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
/** | |
* The first commented line is your dabblet’s title | |
*/ | |
/*flickering Neon*/ | |
@keyframes neon { | |
0%, 9%, 12%, 13%, 16%, 75%, 78%, 80%, 83%, 100% { | |
text-shadow: 0 0 5px #fff, | |
0 0 10px #fff, |
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
resize () { | |
SUFFIX="-resized" | |
if [ -n "$1" ] ; then | |
if [ ! -f "${@: -1}" ] ; then | |
SUFFIX="" | |
DEST="${@: -1}" | |
mkdir -p "$DEST" | |
fi | |
geom="$1" |
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
for f in *.JPG; do mv "$f" "${f%.*}.jpg"; done |
NewerOlder