Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 1.16 KB

RESOURCES.md

File metadata and controls

37 lines (25 loc) · 1.16 KB

Learning Resources

Introduction

I have found the need to save the resources that are timeless in a more permanent place than my bookmarks or the many notetaking apps I tend to use.

I will attempt to keep this list from growing too large by reviewing it from time to time.

The focus of this list are not what I'm studying right now but references that I need to go back from time to time or that I'd like to show to new teammates.

General

Clean Code

JavaScript

JavaScript the Good Parts

Philip Roberts: What the heck is the event loop anyway - JSConf EU - Great primer on how the JS runtime works. Summarizes in a clean way a lot of resources that I had studied before bumping into it.

Testing

Practical Test Pyramid - Martin Fowler - Sound advice on how to structure your tests.

Mocks aren't stubs - Martin Fowler - Discusses mostly the difference between "classic" and "mockist" TDD. Very interesting because it presents a lot of the challenges of testing and how each approach tries to solve them.