├── .git_hooks ├── install_hooks.sh └── pre-commit ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── articles └── mistakes_25_years.md ├── glossary.md └── pictures ├── Dilbert ├── music_in_office.gif ├── new_features.jpg └── office_noice.gif ├── calvin_and_hobbes_style.gif ├── comforting-lies-unpleasant-truths.jpg ├── good_code_review.jpg ├── interruptions.png ├── maslow_of_developer_needs.jpg ├── pillars.png ├── strategic_planning.jpg ├── survivorship_bias_2x.png ├── techDebtQuadrant.png ├── what_the_customer_really_needed.jpg └── xkcd ├── README.md ├── making_progress.png ├── onboarding.png ├── optimization.png └── the_general_problem.png /.git_hooks/install_hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/.git_hooks/install_hooks.sh -------------------------------------------------------------------------------- /.git_hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | doctoc --title "# Table of Contents" README.md 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/README.md -------------------------------------------------------------------------------- /articles/mistakes_25_years.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/articles/mistakes_25_years.md -------------------------------------------------------------------------------- /glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/glossary.md -------------------------------------------------------------------------------- /pictures/Dilbert/music_in_office.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/Dilbert/music_in_office.gif -------------------------------------------------------------------------------- /pictures/Dilbert/new_features.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/Dilbert/new_features.jpg -------------------------------------------------------------------------------- /pictures/Dilbert/office_noice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/Dilbert/office_noice.gif -------------------------------------------------------------------------------- /pictures/calvin_and_hobbes_style.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/calvin_and_hobbes_style.gif -------------------------------------------------------------------------------- /pictures/comforting-lies-unpleasant-truths.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/comforting-lies-unpleasant-truths.jpg -------------------------------------------------------------------------------- /pictures/good_code_review.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/good_code_review.jpg -------------------------------------------------------------------------------- /pictures/interruptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/interruptions.png -------------------------------------------------------------------------------- /pictures/maslow_of_developer_needs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/maslow_of_developer_needs.jpg -------------------------------------------------------------------------------- /pictures/pillars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/pillars.png -------------------------------------------------------------------------------- /pictures/strategic_planning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/strategic_planning.jpg -------------------------------------------------------------------------------- /pictures/survivorship_bias_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/survivorship_bias_2x.png -------------------------------------------------------------------------------- /pictures/techDebtQuadrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/techDebtQuadrant.png -------------------------------------------------------------------------------- /pictures/what_the_customer_really_needed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/what_the_customer_really_needed.jpg -------------------------------------------------------------------------------- /pictures/xkcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/xkcd/README.md -------------------------------------------------------------------------------- /pictures/xkcd/making_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/xkcd/making_progress.png -------------------------------------------------------------------------------- /pictures/xkcd/onboarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/xkcd/onboarding.png -------------------------------------------------------------------------------- /pictures/xkcd/optimization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/xkcd/optimization.png -------------------------------------------------------------------------------- /pictures/xkcd/the_general_problem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlax/engineering-management/HEAD/pictures/xkcd/the_general_problem.png --------------------------------------------------------------------------------