From 949ab79b3f24fe2fa1b45285f8ea9b11af6159a2 Mon Sep 17 00:00:00 2001 From: waffeln <34871211+waffln@users.noreply.github.com> Date: Mon, 13 Jul 2020 15:04:15 +0200 Subject: [PATCH 1/2] Add webgems.io to webgems.io --- resources/general.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/resources/general.json b/resources/general.json index 5bad88f..343a8f2 100644 --- a/resources/general.json +++ b/resources/general.json @@ -67,6 +67,12 @@ "desc": "Take a whirlwind tour of your next favorite language. Community-driven!", "url": "https://learnxinyminutes.com/", "tags": ["languages", "quick", "resources", "basics"] + }, + { + "title": "webgems.io", + "desc": "It's a great collection for learning materials for all sorts of programming topics.", + "url": "https://webgems.io", + "tags": ["quick", "resources", "basics", "search", "aggregator"] } ] } From 3225ca900ac8ebd2b093325e7ab401a7fbc05173 Mon Sep 17 00:00:00 2001 From: NASA Graves <45607262+MarcosNASA@users.noreply.github.com> Date: Tue, 14 Jul 2020 19:23:56 +0200 Subject: [PATCH 2/2] Added some cool resources! Added "Deep JavaScript" book and "Loupe". Besides, updated the YDKJS description. --- resources/javascript.json | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/resources/javascript.json b/resources/javascript.json index 048a72a..f634197 100644 --- a/resources/javascript.json +++ b/resources/javascript.json @@ -40,10 +40,16 @@ }, { "title": "YDKJS", - "desc": "This is a free series of books diving deep into the core mechanisms of the JavaScript language. The first edition of the series is now complete.", + "desc": "This is a free series of books diving deep into the core mechanisms of the JavaScript language. The first edition of the series is now complete, and the first two chapters of the second edition have already been published.", "url": "https://github.com/getify/You-Dont-Know-JS", "tags": ["online", "comprehensive", "courses"] }, + { + "title": "Deep JavaScript", + "desc": "A high-end book by Dr. Axel Rauschmayer which answers some of the questions that experienced JS developers might still encounter through their career.", + "url": "https://exploringjs.com/deep-js/", + "tags": ["book", "basics", "advanced"] + }, { "title": "Eloquent Javascript 3rd Edition", "desc": "This is a book about javascript, programming, and the wonders of the digital. You can read it online or get a paperback copy of it.", @@ -92,6 +98,12 @@ "url": "https://learnjavascript.online/", "tags": ["flashcards", "challenges", "fundamentals"] }, + { + "title": "Loupe", + "desc": "Loupe is a little visualisation to help you understand how JavaScript's call stack/event loop/callback queue interact with each other.", + "url": "http://latentflip.com/loupe/", + "tags": ["event", "queue", "visualizer"] + }, { "title": "Code to go", "desc": "Find up to date snippets for common JavaScript use cases", @@ -111,4 +123,4 @@ "tags": ["email", "solutions", "detailed"] } ] -} \ No newline at end of file +}