- Install Google Chrome
- Install Homebrew - http://brew.sh/
- Install GnuPG -
brew install gnupg2 - Generate SSH key -
ssh-keygen -t rsa -b 4096 -C "gkucmierz@gmail.com" - Install node, npm, n
- Git -
brew install git - Add SSH public key to Github, Bitbucket.
- Restore pgp key https://dev.to/gkucmierz/how-to-make-my-git-contributions-verified-2e76
- To delete words with alt+backspace in Terminal, go to Preferences > (your profile) > Keyboard > Use option as meta key.
- Sublime Text shortcut:
sudo ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl
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
| // const Sunday = 0; | |
| // const Monday = 1; | |
| const TUESDAY = 2; | |
| // const Wednesday = 3; | |
| // const Thursday = 4; | |
| // const Friday = 5; | |
| // const Saturday = 6; | |
| const firstDayOfMonth = (year, month, weekDay) => { |
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
| // find_value.js | |
| const arr = ['a', 'b', 'c', 'd']; | |
| const stopAt = 'c'; | |
| console.log( | |
| arr.findIndex((...args) => { | |
| console.log('args', args); | |
| if (args[0] === stopAt) return true; | |
| return false; |
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
| const BYTE = 8; | |
| const BITS = 64; | |
| const SEGMENTS = 8; | |
| const SEGMENT = BITS / SEGMENTS; | |
| const METHODS_MAP = { | |
| 8: ['getUint8', 'setUint8', 'getInt8', 'setInt8'], | |
| 16: ['getUint16', 'setUint16', 'getInt16', 'setInt16'], | |
| 32: ['getUint32', 'setUint32', 'getInt32', 'setInt32'], | |
| }; |
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
| const solveFor = (target, input, solveFn) => { | |
| let solved = false; | |
| const sort = arr => arr.sort((a, b) => a-b); | |
| const nums = input.map(n => +n); | |
| const ops = [...'+*']; | |
| const fns = { | |
| '+': (a, b) => a + b, | |
| '*': (a, b) => a * b, |
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
| // https://ekw.ms.gov.pl/ | |
| class MortgageRegister { | |
| static check(str) { | |
| const m = str.match(/([A-Z0-9]{4}\/[0-9]{8})\/([0-9])/); | |
| if (m) { | |
| return this.checksum(m[1]) === +m[2]; | |
| } | |
| return false; |
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
| // alphametic puzzle solver (brute force) | |
| const solve = (a, b, c, s) => { | |
| const uniq = [...new Set([...(a+b+c+s)])]; | |
| const res = []; | |
| const rec = nums => { | |
| if (nums.length >= uniq.length) { | |
| const an = +[...a].map(l => nums[uniq.indexOf(l)]).join``; | |
| const bn = +[...b].map(l => nums[uniq.indexOf(l)]).join``; | |
| const cn = +[...c].map(l => nums[uniq.indexOf(l)]).join``; |
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
| // http://instacode.dev/#Y29uc3QgcGVyZlRlc3QgPSAobmFtZSwgY2FsbGJhY2spID0+IHsKCWNvbnN0IGQwID0gK25ldyBEYXRlKCk7CiAgY2FsbGJhY2soKTsKICBjb25zdCBkMSA9ICtuZXcgRGF0ZSgpOwogIGNvbnNvbGUubG9nKGBUZXN0ICR7bmFtZX06ICR7ZDEtZDB9bXNgKTsKfTsKCgpjb25zdCBSRVBTID0gMTA7CmNvbnN0IFNJWkUgPSAxZTU7Cgpjb25zdCBhcnIgPSBbXTsKZm9yIChsZXQgaSA9IDA7IGkgPCBTSVpFOyArK2kpIHsKICBhcnJbaV0gPSB7aSwgcm5kOiBNYXRoLnJhbmRvbSgpfTsKfQpjb25zdCBzdHIgPSBKU09OLnN0cmluZ2lmeShhcnIpOwoKcGVyZlRlc3QoJ3N0cmluZ2lmeScsICgpID0+IHsKICBmb3IgKGxldCBpID0gMDsgaSA8IFJFUFM7ICsraSkgewogIAlKU09OLnN0cmluZ2lmeShhcnIpOwogIH0KfSk7CgpwZXJmVGVzdCgncGFyc2UnLCAoKSA9PiB7CiAgZm9yIChsZXQgaSA9IDA7IGkgPCBSRVBTOyArK2kpIHsKICAJSlNPTi5wYXJzZShzdHIpOwogIH0KfSk7 | |
| const perfTest = (name, callback) => { | |
| const d0 = +new Date(); | |
| callback(); | |
| const d1 = +new Date(); | |
| console.log(`Test ${name}: ${d1-d0}ms`); | |
| }; | |
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
| const genPermutations = size => { | |
| const perms = []; | |
| const gen = (res, used, shift) => { | |
| if (used === size) { | |
| perms.push(res); | |
| } | |
| for (let i = 0; i < (size-used); ++i) { | |
| gen([...res, shift[i]], used + 1, [...shift.slice(0, i), ...shift.slice(i + 1)]); | |
| } | |
| }; |
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
| const matchIpv4 = str => { | |
| const re = /(^\s*((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))\s*$)/g; | |
| return str.match(re) | []; | |
| }; | |
| const matchIpv6 = str => { | |
| const re = /(^\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{ |