├── .editorconfig ├── CONTRIBUTING.md ├── README.md └── media └── ladder.png /.editorconfig: -------------------------------------------------------------------------------- 1 | # Top-most EditorConfig file 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | end_of_line = LF 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | indent_style = space 10 | indent_size = 2 11 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution guidelines 2 | 3 | * Practice common sense and observe applicable [Awesome List Guidelines](https://github.com/sindresorhus/awesome/blob/master/contributing.md). 4 | * Proof-read yourself. 5 | * Please be nice. 6 | * Be brave with contributing and commenting. 7 | * Consider if the item you're adding to the list is actually pretty useful for building the Engineering Team Principles. 8 | * In case we gather a lot of links that are kinda-useful, but not exactly awesome, we could create another list within the repo. 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | Awesome Engineering Ladders 4 | 5 |
6 |

Awesome Engineering Ladders

7 |
8 | 9 |

10 | :sunglasses: A curated list of awesome resources for Engineering Ladders 11 |

12 | 13 |
14 | 15 | Awesome 16 | 17 | 18 | Open Source Love 19 | 20 |
21 | 22 |
23 | 24 | **Engineering Ladder** define the job descriptions and levels of an engineering organization. 25 | 26 | 27 | ## Contents 28 | 29 | * [Real World](#real-world) 30 | * [Dropbox](#dropbox) 31 | * [Kickstarter](#kickstarter) 32 | * [Rent the Runway](#rent-the-runway) 33 | * [GitLab](#gitlab) 34 | * [Etsy](#etsy) 35 | * [Misc](#misc) 36 | * [Resources](#resources) 37 | * [Frameworks](#frameworks) 38 | * [Articles](#articles) 39 | * [Books](#books) 40 | * [Videos](#videos) 41 | * [Slides](#slides) 42 | * [Blogs](#blogs) 43 | 44 | 45 | ## Real World 46 | 47 | ### Kickstarter 48 | 49 | * [Docs](https://gist.github.com/jamtur01/aef437a79fee5a9cefdc) - Kickstarter Engineering Ladder 50 | 51 | ### Dropbox 52 | 53 | * [Docs](https://dropbox.github.io/dbx-career-framework/overview.html) - Dropbox Engineering Career Framework 54 | 55 | ### Rent the Runway 56 | 57 | * [Article](http://dresscode.renttherunway.com/blog/ladder) - Sharing Our Engineering Ladder 58 | * [Slide](http://www.slideshare.net/CamilleFournier1/how-to-go-from-structureless-to-structured-without-losing-your-vibe) - Moving Towards Structure 59 | * [Docs](https://docs.google.com/document/d/1SxmQBrDZvj16veuc2OVO0wUX7a7vEKPM-57dNLXhuEk) - Developer Career Ladder 60 | * [Spreadsheet](https://docs.google.com/spreadsheets/d/1k4sO6pyCl_YYnf0PAXSBcX776rNcTjSOqDxZ5SDty-4) - Software Development/Leadership Ladder 61 | 62 | ### GitLab 63 | 64 | * [Docs](https://about.gitlab.com/handbook/engineering/career-development/) - Engineering Career Development 65 | 66 | ### Etsy 67 | 68 | * [Docs](https://etsy.github.io/Etsy-Engineering-Career-Ladder/) - Etsy Engineering Career Ladder 69 | 70 | ### Misc 71 | 72 | * [Career Ladders: A sample of career ladders](https://career-ladders.dev/engineering/) - by [@sdras](https://github.com/sdras), VP of Developer Experience at Netlify 73 | * [30+ Engineering Career Ladders](https://www.nidup.io/garden/engineering-career-ladders) 74 | 75 | ## Resources 76 | 77 | ### Frameworks 78 | 79 | * [Engineering Ladders: A framework for Engineering Managers](http://www.engineeringladders.com/) 80 | 81 | ### Articles 82 | 83 | * To Be Updated 84 | 85 | ### Books 86 | 87 | * To Be Updated 88 | 89 | ### Videos 90 | 91 | * To Be Updated 92 | 93 | ### Slides 94 | 95 | * To Be Updated 96 | 97 | ### Blogs 98 | 99 | * To Be Updated 100 | 101 | 102 | ## Self Promotion 103 | 104 | Like this project? Follow the repository on [GitHub](https://github.com/posquit0/awesome-engineering-ladders). And if you're feeling especially charitable, follow [posquit0](https://posquit0.com) on [GitHub](https://github.com/posquit0). 105 | 106 | 107 | ## See Also 108 | 109 | * [Awesome Engineer Onboarding](https://github.com/posquit0/awesome-engineer-onboarding) 110 | * [Awesome Engineering Team Principles](https://github.com/posquit0/awesome-engineering-team-principles) 111 | 112 | 113 | ## License 114 | 115 | [![CC0](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/) 116 | 117 | To the extent possible under law, [Byungjin Park](http://www.posquit0.com) has waived all copyright and related or neighboring rights to this work. 118 | -------------------------------------------------------------------------------- /media/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posquit0/awesome-engineering-ladders/741e39928742221f4f95ea1b3492fed206f45041/media/ladder.png --------------------------------------------------------------------------------