Skip to content

Instantly share code, notes, and snippets.

@bhrutledge
Last active January 12, 2022 15:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bhrutledge/e56b3aaa54fa6e19f46f4fb0174b7af4 to your computer and use it in GitHub Desktop.
Save bhrutledge/e56b3aaa54fa6e19f46f4fb0174b7af4 to your computer and use it in GitHub Desktop.
Professional development resources

Professional development

A read/watch list re: growing as a software developer/engineer. If there aren't any sub-bullets, I probably haven't vetted the link beyond the title.

Guides for reaching and succeeding at Staff-plus roles.

TODO: Curate a reading list of guides.

A community of software engineering leaders that come together to learn and get inspired on all things team, tech, process, and personal development.

Requires a free account. The weekly newsletter regularly surfaces interesting articles/videos/webinars.

Their category lists are hard to navigate; here's some code I used in Chrome DevTools to generate the lists below, which I lightly curated based on the title.

articles = document.querySelectorAll('.box__item:not(.box__item--media) .box__link')
videos = document.querySelectorAll('.box__item--media .box__link')
links = articles
links.forEach(link => console.log(`${link.innerText.trim()}\n${link.href}`))
links_md = Array.from(links).map(link => `- [${link.innerText.trim()}](${link.href})`)
copy(links_md.join('\n'))

Articles

Videos

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment