CINXE.COM

Staff Engineer: Leadership beyond the management track

<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Staff Engineer: Leadership beyond the management track</title> <meta name="description" content="Buy Staff Engineer: Leadership beyond the management track"> <meta name="author" content="Will Larson"> <link rel="stylesheet" href="book.css"> <!-- font awesome 5 free --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> <!-- Poppins font from Google --> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet"> <!-- Your Custom CSS file that will include your blocks CSS --> <link rel="stylesheet" href="./app.css"> </head> <body> <!------------------------------> <!--Hero----------------> <!------------------------------> <header class="hero container-fluid position-relative"> <div class="hero__content container"> <!-- I'm putting the nav inside this "fixed-nav-container" to fix some issues happens on scroll --> <div class="fixed-nav-container"> <nav class="hero-nav position-relative container mx-auto px-0"> <ul class="nav w-100 list-unstyled align-items-center p-0"> <li class="hero-nav__item"><a href="/"><img class="hero-nav__logo" src="StaffEngLogo-v2.png" alt="our logo"></a> <!-- Don't remove this empty span --><span class="mx-2"></span></li> <li id="hero-menu" class="flex-grow-1 hero__nav-list hero__nav-list--mobile-menu ft-menu"> <ul class="hero__menu-content nav flex-column flex-lg-row ft-menu__slider animated list-unstyled p-2 p-lg-0"> <li class="flex-grow-1"> <ul class="nav nav--lg-side flex-column-reverse flex-lg-row-reverse list-unstyled align-items-center p-0"> <li class="hero-nav__item"><a href="/guides" class="hero-nav__link">Guides</a></li> <li class="hero-nav__item"><a href="/stories" class="hero-nav__link">Stories</a></li> </ul> </li> </ul><button close-nav-menu="" class="ft-menu__close-btn animated"><svg class="bi bi-x" width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" d="M11.854 4.146a.5.5 0 010 .708l-7 7a.5.5 0 01-.708-.708l7-7a.5.5 0 01.708 0z" clip-rule="evenodd"></path> <path fill-rule="evenodd" d="M4.146 4.146a.5.5 0 000 .708l7 7a.5.5 0 00.708-.708l-7-7a.5.5 0 00-.708 0z" clip-rule="evenodd"></path> </svg></button> </li> <li class="hero-nav__item d-lg-none d-flex flex-row-reverse"><button open-nav-menu="" class="text-center px-2"><i class="fas fa-bars"></i></button></li> </ul> </nav> </div> <div class="hero__body text-center col-lg-8 px-0 mx-auto"> <h1 class="hero__title mb-3">Staff Engineer<span class="highlight">: Leadership beyond the management track</span> by Will Larson</h1> <div class="hero__btns-container"> <a class="hero__btn btn btn-primary mb-2 mb-lg-0 mx-1 mx-lg-2" href="https://gumroad.com/l/staff-engineer">Buy on Gumroad</a> <span class="mx-2"></span> <a class="hero__btn btn btn-primary mb-2 mb-lg-0 mx-1 mx-lg-2" href="https://www.amazon.com/dp/B08RMSHYGG">Buy on Amazon</a> </div> </div> <div class="hero__img-container col-11 col-lg-8 mx-auto p-0 mt-5"><img src="StaffEngCoverHero.png" class="hero__img w-100"><svg class="form-dots-svg form-dots-svg--top-left"> <defs> <pattern id="pattern" media="(min-width: 992px)" width="19" height="19" viewBox="0 0 40 40" patternUnits="userSpaceOnUse" patternTransform="rotate(90)"> <rect id="pattern-background" x="0" y="0" width="400%" height="400%" fill="transparent"></rect> <circle cx="20" cy="20" r="4" fill="currentColor" stroke="currentColor" stroke-width="0"></circle> <circle cx="20" cy="20" r="0" fill="currentColor" stroke="currentColor" stroke-width="0"></circle> </pattern> </defs> <rect fill="url(#pattern)" height="100%" width="100%" y="0" x="0"></rect> </svg><svg class="form-dots-svg form-dots-svg--bottom-right"> <defs> <pattern id="pattern" width="19" height="19" viewBox="0 0 40 40" patternUnits="userSpaceOnUse" patternTransform="rotate(90)"> <rect id="pattern-background" x="0" y="0" width="400%" height="400%" fill="transparent"></rect> <circle cx="20" cy="20" r="4" fill="currentColor" stroke="currentColor" stroke-width="0"></circle> <circle cx="20" cy="20" r="0" fill="currentColor" stroke="currentColor" stroke-width="0"></circle> </pattern> </defs> <rect fill="url(#pattern)" height="100%" width="100%" y="0" x="0"></rect> </svg></div> </div> </header> <script src="https://unpkg.com/tua-body-scroll-lock"></script> <script> var showDropdown = function(e) { e.currentTarget.classList.add("hero-nav__item--show-dropdown") }, hideDropdown = function(e) { e.currentTarget.classList.remove("hero-nav__item--show-dropdown") }, toggleDropdown = function(e) { e.currentTarget.classList.toggle("hero-nav__item--show-dropdown") }; function setupDropdowns(n) { document.querySelectorAll(".hero-nav__item--with-dropdown").forEach(function(e) { var o, t; n.matches ? ((o = e.classList).contains("hero-nav__item--dropdown-left") && o.contains("hero-nav__item--dropdown-right") || (t = e.getBoundingClientRect().width, e.querySelector(".dropdown").style.transform = "translateX(calc(-50% + " + t / 2 + "px))"), e.addEventListener("mouseenter", showDropdown), e.addEventListener("mouseleave", hideDropdown), e.querySelector(".hero-nav__link").removeEventListener("click", toggleDropdown)) : (e.removeEventListener("mouseenter", showDropdown), e.removeEventListener("mouseleave", hideDropdown), e.querySelector(".dropdown").style.transform = "", e.addEventListener("click", toggleDropdown)) }) } var mediaQcroll")), o.setAttribute("change-src-onscroll", logoSrc)), nav.classList.remove("hero-nav--is-sticky")) }; var languageDropdown = document.querySelector("[javascript-language-selector]"); languageDropdown.onclick = function(e) { e.target.classList.contains("dropdown__link") && (languageDropdown.querySelector(".dropdown__link--selected").classList.remove("dropdown__link--selected"), e.target.classList.add("dropdown__link--selected"), document.querySelector(".language-image").setAttribute("src", e.target.querySelector("img").getAttribute("src"))) } </script> <!------------------------------> <!--Content----------------> <!------------------------------> <div class="block-1 space-between-blocks"> <div class="container"> <div class="row justify-content-center flex-lg-row px-2"> <div class="col-lg-8 col-xl-8 px-lg-8 mb-8 mbl-lg-0"> <h1 class="block__title mb-3">The technical leadership path is still under-documented.</h1> </div> </div> <div class="row justify-content-center flex-lg-row px-2"> <div class="col-lg-4 col-xl-6 px-lg-5 mb-5 mbl-lg-0"> <p class="block__paragraph mb-5"> At most technology companies, you’ll reach Senior Software Engineer, the career level for software engineers, in five to eight years. At that career level, you’ll no longer be required to work towards the next promotion, and being promoted beyond it is exceptional rather than expected. Should you stay there, move into engineering management, or continue down the path of technical excellence to become a Staff Engineer?</p> <p class="block__paragraph mb-5"> What are the skills you need to develop to reach Staff Engineer? Are technical abilities alone sufficient to reach and succeed in that role? How do most folks reach this role? What is your manager’s role in helping you along the way? Will you enjoy being a Staff Engineer or will you toil for years to achieve a role that doesn’t suit you? <i>Staff Engineer: Leadership beyond the management track</i> is a pragmatic look at attaining and operating in Staff engineering roles, building on the lived experience of folks who've walked before you. </p> </div> <div class="col-lg-4 col-xl-6 px-lg-5 mb-5 mbl-lg-0"> <div class="row"> <div> <h3 class="card-1__title mb-2">Author</h3> <p class="block__paragrph mb-5"> <i>Staff Engineer</i> is brought to you by the author of <a href="https://www.amazon.com/Elegant-Puzzle-Systems-Engineering-Management/dp/1732265186"><em>An Elegant Puzzle</em></a>, with over 30,000 copies sold. If you enjoyed or found it useful, you'll enjoy this book as well. </p> <p class="block__paragrph mb-5"> Foreword written by <a href="https://noidea.dog">Tanya Reilly</a>, Principal engineer at Squarespace. </p> </div> </div> <div class="row"> <div> <h3 class="card-1__title mb-2">28 guides and 14 interviews</h3> <p class="block__paragrph mb-5"> These guides cover the <a href="/guides/staff-archetypes">Staff engineer archetypes</a>, how to identify what to work on as a Staff Engineer in <a href="/guides/work-on-what-matters">Work on what matters</a>, how to partner with your management chain in <a href="/guides/staying-aligned-with-authority">Stay aligned with authority</a>, and tools for charting your promotion path in <a href="/guides/promo-packets">Promotion packets</a>. Read how folks at Dropbox, Etsy, Slack, Stripe, and more carved their path to Staff-plus engineer. </p> </div> </div> <div class="row"> <div> <h3 class="card-1__title mb-2">Podcast episodes</h3> <p class="block__paragrph mb-5"> Hear more about <i>Staff Engineer</i> on episodes of the <a href="https://softwareengineeringdaily.com/2020/10/29/staff-engineering-with-will-larson/">Software Engineering Daily</a> and <a href="https://share.transistor.fm/s/d499230a">Career Chats</a> podcasts.</p> </p> </div> </div> </div> </div> </div> </div> <!------------------------------> <!--Testimonials----------------> <!------------------------------> <div class="block-20 space-between-blocks"> <div class="container"> <div class="col-lg-8 col-xl-7 mx-auto text-center px-0 mb-5"> <h1 class="block__title pb-5">Reviews of <span class="highlight">Staff Engineer</span></h1> </div> <div class="row px-2 pt-4"> <div class="col-lg-4"> <div class="testimonial-card-1"> <div class="block-20-person"> <div class="mb-2"><img class="block-20-person__avatar" src="/au_profile.png"></div> <div class="flex-grow-1 d-flex flex-column"> <span class="block-20-person__name my-1">Amy Unger</span><span class="block-20-person__info"><a href="https://amyunger.com">Staff Engineer at GitHub</a></span> </div> </div> <p class="testimonial-card-1__paragraph mb-3">&quot;Becoming a Staff engineer is both a promotion and a job change; many immensely talented engineers pursue the first and arrive unprepared for the latter. Will Larson's <i>Staff Engineer</i> is a wide ranging and thought provoking overview of the many dimensions of the role. </p> <p class="testimonial-card-1__paragraph mb-3"> As a software engineer at any level, this book will challenge you to become better and should be required reading if you're pursuing a Staff engineer role.&quot; </p></span> </div> </div> <div class="col-lg-4"> <div class="testimonial-card-1"> <div class="block-20-person"> <div class="mb-2"><img class="block-20-person__avatar" src="/nw_profile.jpg"></div> <div class="flex-grow-1 d-flex flex-column"> <span class="block-20-person__name my-1">Nicky Wrightson</span><span class="block-20-person__info"><a href="https://twitter.com/NickyWrightson">Principal Engineer at Skyscanner</a></span> </div> </div> <p class="testimonial-card-1__paragraph mb-3"> &quot;It is not easy to find many resources on the staff engineer role which is still massively misunderstood due to wildly varying definitions and assumptions. </p> <p class="testimonial-card-1__paragraph mb-3"> This book lays out some of the differing role definitions and then brings them to life with real case studies making it easy to map the archetypes to your own circumstances, passions and ambitions. This should be a go to resource for anyone thinking of pursuing the IC path or that has already moved into a senior IC role.&quot; </p></span> </div> </div> <div class="col-lg-4"> <div class="testimonial-card-1"> <div class="block-20-person"> <div class="mb-2"><img class="block-20-person__avatar" src="/pp_profile.jpg"></div> <div class="flex-grow-1 d-flex flex-column"> <span class="block-20-person__name my-1">Padmini Pyapali</span><span class="block-20-person__info"><a href="https://twitter.com/ppyapali">f. Engineering Manager at Uber, Sonder</a></span> </div> </div> <p class="testimonial-card-1__paragraph mb-3"> &quot;In Staff Engineer, Will Larson does more than demystify the staff engineer role: he explains the whys and hows of long-term technical strategy, the power of sponsorship, and the responsibility that comes with having influence. </p> <p class="testimonial-card-1__paragraph mb-3"> Throughout the book, he references inclusive studies, addresses realistic scenarios, and offers practical advice. Staff Engineer leaves me feeling more equipped for success as an engineering leader, but more than that, it leaves me feeling affirmed — it’s the first engineering leadership book I’ve read with over half its quotations from women.&quot; </p></span> </div> </div> </div> </div> </div> <!------------------------------> <!--FAQ----------------> <!------------------------------> <div class="block-40 space-between-blocks"> <div class="container"> <!-- HEADER --> <div class="block__header col-lg-8 col-xl-7 mx-auto text-center mb-5"> <h1 class="block__title">Frequently Asked Questions</h1> </div> <div class="row px-2 justify-content-center"> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">Will I like this book?</h4> <p class="content-block__paragraph"> I think you will, yes! However, since we probably haven't met, I'm not a particularly good judge of that. Rather than trust me, read one of the sections available online (my favorites are <a href="/guides/staff-archetypes">Staff engineer archetypes</a> and <a href="/guides/work-on-what-matters">Work on what matters</a>), and one or two of the interviews (I'd recommend <a href="/stories/ras-kasa-williams">Kasa's</a> and <a href="/stories/michelle-bu">Michelle's</a>). </div> </div> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">Why write this book?</h4> <p class="content-block__paragraph"> There isn't much out there about being a senior technical leader outside of the management career track. As I've worked with more folks in Staff and Principal engineer roles, this lack of guidance became a point of friction for both them in self-directing their professional development and for me in trying to support their growth. I wrote this book to become a more effective partner for the Staff engineers I work with, and with the hope that it can help others who are charting their path to technical leadership within an organization that's still figuring out how to support them. </p> </div> </div> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">Are you the right author for this book?</h4> <p class="content-block__paragraph"> The role and career of Staff engineers is a topic that deserves to be written about far more than it is written about! My hope is that this book is useful enough that more folks start to write about it, and hopefully quickly surpass this book with better, more useful books of their own. </p> </div> </div> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">Will this advice apply to my company?</h4> <p class="content-block__paragraph"> Advice without context should always be taken with a grain of salt! This book is based on more than a dozen interviews with folks operating in Staff engineer, or equivalent, roles, along with my personal experience leading engineering organizations at Calm, Stripe, and Uber. My hope is that this broad perspective will make the book applicable to your experience, although aspects of the advice are undeniably United States-centric and Silicon Valley-centric. </p> </div> </div> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">Is this content available for free?</h4> <p class="content-block__paragraph"> The vast majority of the writing included in this book is available for free on <a href="/">staffeng.com</a>, and will continue to available for free indefinitely. The book's foreword and ending section are not available on the website. </p> <p class="content-block__paragraph"> There are also stories on <a href="https://staffeng.com">staffeng.com</a> that are not included within the book version. </p> </div> </div> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">Where are the profits from this book going?</h4> <p class="content-block__paragraph"> All profits will be donated to non-profit organizations that work to increase access for underepresented communities in technology. </div> </div> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">What formats? PDF? EPUB? MOBI? Print? Audio?</h4> <p class="content-block__paragraph">If you <a href="https://gumroad.com/l/staff-engineer">buy on Gumroad</a>, you will get access to PDF, EPUB and MOBI versions of the book. If you <a href="https://www.amazon.com/dp/B08RMSHYGG">buy on Amazon</a>, you will get a standard Kindle digital book. </p> <p class="content-block__paragraph"> All copies are DRM-free. </p> <p class="content-block__paragraph"> Paperback is available on Amazon. <a href="https://www.amazon.com/Staff-Engineer-Leadership-Beyond-Management/dp/B097CNXP89/">Audiobook</a> is also available on Amazon as of June, 2021. There are currently no plans for a hardcover edition. </p> </div> </div> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">Where can I buy it?</h4> <p class="content-block__paragraph"> You can buy the <i>Early Edition</i> on <a href="https://gumroad.com/l/staff-engineer">on Gumroad</a>, available from January 28th, 2021. <i>Early Edition</i> includes a near-final version of the book, along with all future updates. The final version will be available on Gumroad from February 7th. </p> <p class="content-block__paragraph"> The paperback and digital version are also available <a href="https://www.amazon.com/dp/B08RMSHYGG">on Amazon</a> from February 5th. </p> <p class="content-block__paragraph"> <a href="https://www.amazon.com/Staff-Engineer-Leadership-Beyond-Management/dp/B097CNXP89/">Audiobook</a> is available on Amazon as of June, 2021. </div> </div> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">How much does it cost?</h4> <p class="content-block__paragraph"> Digital and print versions are offered at $25 USD. Audiobook price varies a bit by platform. Team and company licenses are available via <a href="https://gumroad.com/l/staff-engineer">Gumroad</a>. </p> </div> </div> <div class="col-lg-8"> <div class="content-block"> <h4 class="content-block__title">How can I report an issue or error?</h4> <p class="content-block__paragraph"> Please use <a href="https://airtable.com/shr416F1GqPYr1KqE">this form</a> to report issues! </p> </div> </div> </div> </div> </div> <!------------------------------> <!--Call To Action----------------> <!------------------------------> <div class="block-29 px-4 space-between-blocks overflow-hidden"> <div class="container position-relative"> <div class="row justify-content-center"> <div class="col-lg-6 col-xl-7 mb-3 mb-lg-0"> <h4 class="block-29__title m-0"><i>Staff Engineer</i></h4> <p class="block-29__paragraph mt-3">Learn how to navigate the technical leadership career while staying as an individual contributor. Understand the mechanics and consequences of moving from Senior Engineer to Staff Engineer. Get tools to determine the right next steps for your circumstances.</p> </div> <div class="col-lg-6 col-xl-5 d-flex flex-row-reverse align-items-center justify-content-center justify-content-lg-start"> <div class="text-center px-lg-5 mb-4"><a class="btn btn-primary" href="https://gumroad.com/l/staff-engineer"><span class="mx-1">Buy now</span><svg width="1em" height="1em" viewBox="0 0 16 16" class="mx-1 bi bi-arrow-right" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" d="M10.146 4.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L12.793 8l-2.647-2.646a.5.5 0 0 1 0-.708z"></path> <path fill-rule="evenodd" d="M2 8a.5.5 0 0 1 .5-.5H13a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8z"></path> </svg></a></div> </div> </div> </div> </div> <!------------------------------> <!--Footer----------------> <!------------------------------> <div class="block-43 text-center py-5"> <div class="container"> <ul class="d-flex justify-content-center list-unstyled p-0"> <li class="mx-2">© 2021 Will Larson.</p></li> <li class="mx-2"><a href="http://twitter.com/lethain/" class="block-43__link m-0"><i class="fab fa-twitter"></i></a></li> </ul> </div> </div> <body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10