├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Elemental Source 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # awesome-agile 2 | A hub of blog posts, papers and discussion around Agile theory and practices for software developers 3 | 4 | # Contents 5 | * [Theory](#theory) 6 | * [The Agile Movement](#the-agile-movement) 7 | * [Scrum](#scrum) 8 | * [Kanban](#kanban) 9 | * [Lean](#lean) 10 | * [Pragmatic Programming](#pragmatic-programming) 11 | 12 | ## Theory 13 | 14 | ## The Agile Movement 15 | 16 | * [10 Key Principles of the Agile] (http://www.allaboutagile.com/what-is-agile-10-key-principles/) - 10 Key Principles of the Agile movement 17 | * [Agile Manifesto] (http://agilemanifesto.org/) - Manifesto for Agile Software Development 18 | 19 | ## Scrum 20 | 21 | * [Scrum Guide] (http://www.scrumguides.org/scrum-guide.html) - Describes the Scrum framework as proposed by Ken Schwaber and Jeff Sutherland. 22 | * [Modern Tooling and Practices for Scrum Development Teams] (https://www.scrum.org/Courses/Professional-Scrum-Developer/PSD-Subject-Areas) - Modern Tooling and Practices for Scrum Development Teams. 23 | * [How to become a certified Scrum Master] (http://mlapshin.com/index.php/2015/09/08/psm-exam/) - Tips and learning guide for becoming a Scrum Master. 24 | * [How do I pass the Scrum (PSM 1) exam?] (https://www.quora.com/How-do-I-pass-the-Scrum-PSM-1-exam) 25 | * [How to pass Professional Scrum Master (PSM I) Certification?] (http://www.manasbhardwaj.net/pass-professional-scrum-master-psm-certification/) 26 | * [PSM Certification Guide] (http://psm.certification.guide/) 27 | * [Scrum.org PSM I Study Tips] (http://www.scrumcrazy.com/Scrum.org+PSM+I+Study+Tips) 28 | * [Scrum Insights for Practitioners: The Scrum Guide Companion] (https://www.amazon.com/Scrum-Insights-Practitioners-Guide-Companion-ebook/dp/B01MYSIYPT) 29 | * [The Scrum Master as a Change Agent] (http://www.barryovereem.com/the-scrum-master-as-a-change-agent/) 30 | 31 | ## Kanban 32 | 33 | ## Lean 34 | 35 | ## Pragmatic Programming 36 | 37 | * [A Pragmatic Quick Reference] (https://blog.codinghorror.com/a-pragmatic-quick-reference/) - A Pragmatic Programmer Quick Guide 38 | --------------------------------------------------------------------------------