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
// -------------------------------------------------- | |
// Flexbox LESS mixins | |
// The spec: http://www.w3.org/TR/css3-flexbox | |
// -------------------------------------------------- | |
// Licensed under the MIT License (http://choosealicense.com/licenses/mit/) | |
// Flexbox display | |
// flex or inline-flex | |
.flex-display(@display: flex) { | |
.old-flex-display(@display); |
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
#!/usr/bin/env zsh | |
while [ 1 ]; do | |
RESP=$(curl --silent 'http://www.dota2.com/686') | |
if [[ $RESP != *"<div id=\"Teaser\"></div>"* ]]; then | |
curl -X POST --data-urlencode 'payload={"color":"danger","pretext":"6.86 Alert! Patch page change","text":"@channel check http://dota2.com/686 for update"}' https://hooks.slack.com/services/{{slack team integration here}}}} | |
exit | |
else | |
echo $(date) " not out" | |
fi |