I hereby claim:
- I am petrsnobelt on github.
- I am petrsnobelt (https://keybase.io/petrsnobelt) on keybase.
- I have a public key ASArKDLe2EpR9660uXM2KGil8RUrTa-lFa2CoSN8M0lxLAo
To claim this, I am signing this object:
React | |
https://blog.kentcdodds.com/learn-react-fundamentals-and-advanced-patterns-eac90341c9db | |
https://cdb.reacttraining.com/free-advanced-react-js-lectures-a9fdcad008f3 | |
https://frontendmasters.com |
Security | |
https://github.com/drduh/macOS-Security-and-Privacy-Guide#google-chrome | |
https://github.com/google/santa - A binary whitelisting/blacklisting system for macOS - consider | |
https://objective-see.com/index.html | |
Programming | |
SourceTree or GitKraken | |
VSCode | |
nodejs |
I hereby claim:
To claim this, I am signing this object:
function later_ES5(delay) { | |
return new Promise(function(resolve) { | |
setTimeout(resolve, delay); | |
}); | |
} | |
const later = delay => new Promise(resolve => setTimeout(resolve, delay)) |
// Using ES6 | |
const nearZero = [[-1,-1], [0,-1], [1,-1], | |
[-1, 0], [1, 0], | |
[-1, 1], [0, 1], [1, 1]] | |
const neighboursOf = p => | |
nearZero.map(n => [p[0] + n[0], p[1] + n[1]]) | |
// arr.includes can't be used because [0, 0] !== [0, 0] |
var getLogger = (prefix = "") => ({ | |
get: function(zdroj, vlastnost){ | |
console.log(prefix, "try access", vlastnost); | |
if(vlastnost in zdroj){ | |
return zdroj[vlastnost]; | |
} else { | |
return 37; | |
} | |
}, | |
defineProperty: function (oTarget, sKey, oDesc) { |