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
LOG_DIR=~/EOFY/2016-2017/ | |
mkdir -p $LOG_DIR | |
for dir in */ ; do | |
cd $dir | |
if git log &> /dev/null; then | |
project=$(basename $dir) | |
for branch in $(git for-each-ref --format='%(refname:strip=2)' refs/heads/); do | |
LOG=$(git log $(git merge-base master $branch)..$branch --since="2016-07-01T00:00:00+10:00") | |
if [ -n "$LOG" ]; then | |
echo $LOG > $LOG_DIR/$project.$branch.log |
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
I._onWindowResize = function(a) { | |
if (this._lastReportedWidth != document.body.offsetWidth) { | |
this._lastReportedWidth = document.body.offsetWidth; | |
if (this._isAutoPlaying && this._cancelAutoPlayOnInteraction) { | |
this.stopAutoPlay(a) | |
} | |
window.clearTimeout(this._onResizeDebouncedTimeout); | |
this._onResizeDebouncedTimeout = setTimeout(this._onResizeDebounced, 500); | |
aj._onWindowResize.call(this, a) | |
} |
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
static jmp_buf jmpEnv; | |
enum { | |
kPrepareBinaryAddress = 0x44dd, | |
kMutexBinaryAddress = 0x9090 | |
}; | |
void signal_handler(int n, siginfo_t *info, void *context) | |
{ | |
longjmp(jmpEnv, 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
StringsAndComments | |
{ | |
Unicode { string { "💩", "🙉: Hear no evil monkey is strǽnge", "Yes, a sickle - ☭: ☭" } } | |
} | |
Coordinates $where | |
{ | |
int32[3] %xyz | |
{ | |
{ 1, 2, 3 }, |
NewerOlder