A layer of fog persisted here past noon today. It felt quiet and muted and calm, like after a snowfall.
An Austrian radio station mentioned a "Schneeflockdown". Schneeflocke is German for 'snowflake'. So Schneeflockdown is a cute bilingual way of saying "snowed in".
.
While debugging, I came across this comment in angular.js:
// Insanity Warning: scope depth-first traversal
// yes, this code is a bit crazy, but it works and we have tests to prove it!
(I didn't write down what version of the file we are using, so am not able to find it online right now.)
This is the code that followed the comment. After that comment, I didn't bother trying to make sense of it. It wasn't related to what I was debugging anyway:
An Austrian radio station mentioned a "Schneeflockdown". Schneeflocke is German for 'snowflake'. So Schneeflockdown is a cute bilingual way of saying "snowed in".
.
While debugging, I came across this comment in angular.js:
// Insanity Warning: scope depth-first traversal
// yes, this code is a bit crazy, but it works and we have tests to prove it!
(I didn't write down what version of the file we are using, so am not able to find it online right now.)
This is the code that followed the comment. After that comment, I didn't bother trying to make sense of it. It wasn't related to what I was debugging anyway:
if (!(next = ((current.$$watchersCount && current.$$childHead) || (current !== target && current.$$nextSibling)))) { while (current !== target && !(next = current.$$nextSibling)) { current = current.$parent; } } } while ((current = next));