ulimit -n
ulimit -n 512
If you want to join the first workshop and get your hands dirty in the handson part, ensure the following is ready on your computer:
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
/* | |
* Outputs a float representing the iOS version if user is using an iOS browser i.e. iPhone, iPad | |
* Possible values include: | |
* 3 - v3.0 | |
* 4.0 - v4.0 | |
* 4.14 - v4.1.4 | |
* false - Not iOS | |
*/ | |
var iOS = parseFloat( |
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
function fib(end) { | |
const range = [0, 1]; | |
while (range[range.length - 1] < end) { | |
const prev = range[range.length - 1]; | |
const prevPrev = range[range.length - 2]; | |
range.push(prev + prevPrev); | |
} | |
return range; |