- Drift into Failure
- How Complex Systems Fail
- Antifragile: Things That Gain from Disorder
- Leverage Points: Places to Intervene in a System
- Going Solid: A Model of System Dynamics and Consequences for Patient Safety
- Resilience in Complex Adaptive Systems: Operating at the Edge of Failure
- Puppies! Now that I’ve got your attention, Complexity Theory
- [Towards Resilient Architectures: Biology
How to compile Mesos on your new Raspberry Pi 2 (which is amazing with 4 cores and 6x performance). Follows on from experiments in compiling for OS X
sudo apt-get install maven libsasl2-dev libapr1-dev libsvn-dev libcurl4-openssl-dev python-dev python-boto
export JAVA_HOME="/usr/lib/jvm/jdk-8-oracle-arm-vfp-hflt"
export PATH=$JAVA_HOME/bin:$PATH
http://likemagicappears.com/projects/raspberry-pi-cluster/mesos-on-raspbian/
This file contains 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
date | close | |
---|---|---|
2014-02-07 | 361.08 | |
2014-02-06 | 354.59 | |
2014-02-05 | 346.45 | |
2014-02-04 | 347.95 | |
2014-02-03 | 346.15 | |
2014-01-31 | 358.69 | |
2014-01-30 | 403.01 | |
2014-01-29 | 384.2 | |
2014-01-28 | 394.43 |
This file contains 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
if($.browser.msie && parseInt($.browser.version) <= 8){ // just for IE8 and lower | |
$(document).on('focusout', windowBlurred); | |
$(document).on('focusin', windowFocused); | |
}else if($.browser.safari && Modernizr.touch && !navigator.userAgent.match(/Android/i) && !navigator.userAgent.match(/CriOS/i)){ // just for ipad / iphone / ipod (Safari mobile, not Android default browsers nor Chrome Mobile that is) | |
$(window).on('pagehide', windowBlurred); | |
$(window).on('pageshow', windowFocused); | |
}else{ // the rest | |
console.log('chrome'); | |
$(window).on('blur', windowBlurred); | |
$(window).on('focus', windowFocused); |
NewerOlder