├── .gitignore ├── README.md ├── assets └── recruitment │ └── interview │ └── recruitment_bad.png ├── motivation.md ├── recruitment ├── interview.md ├── intro.md ├── job_description.md └── onboarding.md ├── teamlead_first_steps.md └── teamlead_pros_cons.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qcha/teamlead-cookbook/HEAD/README.md -------------------------------------------------------------------------------- /assets/recruitment/interview/recruitment_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qcha/teamlead-cookbook/HEAD/assets/recruitment/interview/recruitment_bad.png -------------------------------------------------------------------------------- /motivation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qcha/teamlead-cookbook/HEAD/motivation.md -------------------------------------------------------------------------------- /recruitment/interview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qcha/teamlead-cookbook/HEAD/recruitment/interview.md -------------------------------------------------------------------------------- /recruitment/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qcha/teamlead-cookbook/HEAD/recruitment/intro.md -------------------------------------------------------------------------------- /recruitment/job_description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qcha/teamlead-cookbook/HEAD/recruitment/job_description.md -------------------------------------------------------------------------------- /recruitment/onboarding.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teamlead_first_steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qcha/teamlead-cookbook/HEAD/teamlead_first_steps.md -------------------------------------------------------------------------------- /teamlead_pros_cons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qcha/teamlead-cookbook/HEAD/teamlead_pros_cons.md --------------------------------------------------------------------------------