You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Effective-style books are aimed at developers who already know the nuts and bolts of a programming language, but want to learn how to use it more effectively. Rather than explaining the three ways to do X, an Effective book will tell you which one to use in which situation, and which to avoid entirely. By learning about usage, as well as the odd corners of TypeScript, you'll advance from a beginner or intermediate developer to a seasoned expert.
I have many, many open source repos on GitHub, but here are some of the most popular by ⭐️s:
source-map-explorer: Answers the question "why is my JavaScript bundle so big?" using an interactive treemap visualization.
dygraphs: Venerable JavaScript charting library. Aims to get you from data to interactive chart quickly, then give you lots of options for customization.
oldnyc: Source code for the OldNYC geocoding pipeline, OCR and web site, launched in 2015.
webdiff: Two-column web-based difftool with syntax highlighting and support for image diffs. Instead of git diff, run git webdiff.
localturk: Perform repetitive manual tasks on your own computer using the same API as Amazon's Mechanical Turk. Great for generating some data or prototyping a Mechanical Turk UI.
RangeHTTPServer: Python's built-in http.server does not support range requests. This extends it to fix that.