https://www.youtube.com/watch?v=4N2ywun-wTE
1. Clear boundaries & responsibilities (what's platform vs feature team)
- Minimize friction for engineers
- Promotes better collaboration & flow
- Use a "platform contract" (more below)
const swap = (a, b, arr) => { | |
const temp = arr[a]; | |
arr[a] = arr[b]; | |
arr[b] = temp; | |
}; | |
// heaps algorithm | |
const getCombinations = (inputArr) => { | |
const heaps = (result, arr, n) => { |
https://www.youtube.com/watch?v=4N2ywun-wTE
1. Clear boundaries & responsibilities (what's platform vs feature team)
https://timothya.com/blog/git-stack/
Generic script that works when there are no conflicts
#!/usr/bin/env bash
git checkout --detach master
BOUNDARY="origin/master"