Skip to content

Instantly share code, notes, and snippets.

@PetrSnobelt
PetrSnobelt / gist:212944c24b5e85a32327681ce7b05328
Last active December 6, 2017 18:20
Training materials for js, react and functional programming
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
@PetrSnobelt
PetrSnobelt / macbook-sw.txt
Last active April 24, 2021 05:49
Macbook software
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

Keybase proof

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:

function later_ES5(delay) {
return new Promise(function(resolve) {
setTimeout(resolve, delay);
});
}
const later = delay => new Promise(resolve => setTimeout(resolve, delay))
@PetrSnobelt
PetrSnobelt / GOLv3.js
Created June 27, 2018 14:30
Game Of life in ES6 v3
// 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]
@PetrSnobelt
PetrSnobelt / getLogger.js
Created May 16, 2019 20:32
JS Proxy logger
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) {