From 0ff395005275b729f7f5ad9e76feea926054a2cd Mon Sep 17 00:00:00 2001 From: Johan-Ng <44483400+Johan-Ng@users.noreply.github.com> Date: Sun, 13 Oct 2019 19:27:47 +0800 Subject: [PATCH 1/7] contentCreators added --- resources/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/index.js b/resources/index.js index 3e5b8a8..e01b213 100644 --- a/resources/index.js +++ b/resources/index.js @@ -14,6 +14,7 @@ import server from './server' import utility from './utility' import icons from './icons' import accessibility from './accessibility' +import contentCreators from './contentCreators' export default [ css, @@ -32,4 +33,5 @@ export default [ utility, icons, accessibility, + contentCreators, ] From 045c63ac09791a720f6782ee3bd2c783b7dce4b5 Mon Sep 17 00:00:00 2001 From: Johan-Ng <44483400+Johan-Ng@users.noreply.github.com> Date: Sun, 13 Oct 2019 19:29:23 +0800 Subject: [PATCH 2/7] Content creators --- resources/contentCreators.json | 69 ++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 resources/contentCreators.json diff --git a/resources/contentCreators.json b/resources/contentCreators.json new file mode 100644 index 0000000..05d76ce --- /dev/null +++ b/resources/contentCreators.json @@ -0,0 +1,69 @@ +{ + "title": "Content creators", + "slug": "/content-creators", + "resources": [ + { + "title": "Traversy Media", + "desc": "Traversy Media is owned by Brad Traversy. The channel has a lot of great tutorials to learn full web development and coding. It features online web development and programming tutorials for the latest web technologies including Node.js, Angular 2, React.js, PHP, Rails, HTML, CSS, and more.", + "url": "https://www.youtube.com/user/TechGuyWeb", + "categories": "", + "tags": ["Start from scratch", "Web Development crash courses", "Responsive portfolio website"] + }, + { + "title": "The Net Ninja", + "desc": "The Net Ninja is a channel to strengthen your web skills. It has many tutorials for designers and developers.", + "url": "https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg", + "categories": "", + "tags": ["Object oriented JavaAcript", "Biginners", "CSS animation tutorial"] + }, + { + "title": "The Futur", + "desc": "The mission of The Futur is to be the future of online education for creative entrepreneurs. It features design content on identity design and branding, user experience, logos and lettering, typography, the business of design, and plenty of case studies.", + "url": "https://www.youtube.com/channel/UC-b3c7kxa5vU-bnmaROgvog", + "categories": "Design", + "tags": ["UX/UI Web design", "Marketing & sales", "Logo design"] + }, + { + "title": "Tutvid", + "desc": "Nathaniel Dodson’s Tutvid is a site to learn advanced graphic design skills, with tutorials in Adobe Photoshop and Adobe Illustrator. Tutvid also includes tutorials to master animation and video with Adobe Premiere Pro, Adobe After Effects, and Adobe Lightroom. Tutvid’s “Daily Photoshop Tutorials” playlist covers tools, features, and tricks.", + "url": "https://www.youtube.com/user/tutvid", + "categories": "Graphic design", + "tags": ["Photoshop tutorial", "Video editing", "Web design tutorial"] + }, + { + "title": "CharliMarieTV", + "desc": "Charli Marie TV is a channel from Charli Marie, a web and graphic designer in London. Videos are posted weekly about tools, projects, and concepts. There are also weekly videos about her life as a designer.", + "url": "https://www.youtube.com/user/charlimarieTV", + "categories": "Show", + "tags": ["Designer", "Design and build a webpage", "Custom ecommerce website"] + }, + { + "title": "Funfunfunction", + "desc": "Fun Fun Function is like a show about programming. Not a database of tutorials and courses, a show. A regular show with an different topic every week, with an entertaining host that explains things well, with the purpose of keeping you curious and excited about the programming craft. Basically, the purpose of Fun Fun Function is to keep programming fun.", + "url": "https://www.youtube.com/channel/UCO1cgjhGzsSYb1rsB4bFe4Q", + "categories": "Youtube show", + "tags": ["Machine learning", "Unit testing", "Live mob programming"] + }, + { + "title": "Mayuko", + "desc": "Mayuko is a Senior iOS Software Engineer from San Diego. She makes Youtube videos about what life is like as a Software Engineer living and working in Silicon Valley. She aims to make the tech industry feel more accessible to those entering the industry.", + "url": "https://www.youtube.com/user/hellomayuko", + "categories": "Life experiences sharing", + "tags": ["Vlogs", "Tech Advice", "Software Engineering"] + }, + { + "title": "MDN Web Docs", + "desc": "MDN Web Docs, previously Mozilla Developer Network and formerly Mozilla Developer Center, is the official Mozilla website for development documentation of web standards and Mozilla projects. It is a resource for developers, maintained by the community of developers and technical writers and hosting many documents on a wide variety of subjects.", + "url": "https://developer.mozilla.org/en-US/", + "categories": "Wiki site", + "tags": ["Web development", "Web technologies", "Mozilla"] + }, + { + "title": "Getify", + "desc": "Getify writes about JavaScript, finding new and useful ways to teach it to more learners, and exploring and researching JavaScript through OSS coding.", + "url": "https://twitter.com/getify?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor", + "categories": "Twitter", + "tags": ["Short tips", "Guide for programming", "Debugging updates"] + } + ] + } From f1404f7c466ca2168340485e29915789e884fbee Mon Sep 17 00:00:00 2001 From: Johan-Ng <44483400+Johan-Ng@users.noreply.github.com> Date: Sun, 13 Oct 2019 23:48:43 +0800 Subject: [PATCH 3/7] re open again --- resources/index.js | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 resources/index.js diff --git a/resources/index.js b/resources/index.js deleted file mode 100644 index e01b213..0000000 --- a/resources/index.js +++ /dev/null @@ -1,37 +0,0 @@ -import css from './css' -import daily from './daily' -import design from './design' -import frontend from './frontend' -import fullstack from './fullstack' -import general from './general' -import html from './html' -import javascript from './javascript' -import php from './php' -import podcasts from './podcasts' -import python from './python' -import ruby from './ruby' -import server from './server' -import utility from './utility' -import icons from './icons' -import accessibility from './accessibility' -import contentCreators from './contentCreators' - -export default [ - css, - daily, - design, - frontend, - fullstack, - general, - html, - javascript, - php, - podcasts, - python, - ruby, - server, - utility, - icons, - accessibility, - contentCreators, -] From 8fe5329b2e284fa32a286d8ac19e4a5aa9d672c5 Mon Sep 17 00:00:00 2001 From: Johan-Ng <44483400+Johan-Ng@users.noreply.github.com> Date: Sun, 13 Oct 2019 23:51:09 +0800 Subject: [PATCH 4/7] re opened --- resources/index.js | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 resources/index.js diff --git a/resources/index.js b/resources/index.js new file mode 100644 index 0000000..e01b213 --- /dev/null +++ b/resources/index.js @@ -0,0 +1,37 @@ +import css from './css' +import daily from './daily' +import design from './design' +import frontend from './frontend' +import fullstack from './fullstack' +import general from './general' +import html from './html' +import javascript from './javascript' +import php from './php' +import podcasts from './podcasts' +import python from './python' +import ruby from './ruby' +import server from './server' +import utility from './utility' +import icons from './icons' +import accessibility from './accessibility' +import contentCreators from './contentCreators' + +export default [ + css, + daily, + design, + frontend, + fullstack, + general, + html, + javascript, + php, + podcasts, + python, + ruby, + server, + utility, + icons, + accessibility, + contentCreators, +] From ae425ae93f1d6fbc2fef26c2d73ab01b95ca2c67 Mon Sep 17 00:00:00 2001 From: Johan-Ng <44483400+Johan-Ng@users.noreply.github.com> Date: Mon, 14 Oct 2019 23:41:17 +0800 Subject: [PATCH 5/7] changed the tags and typos --- resources/contentCreators.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/resources/contentCreators.json b/resources/contentCreators.json index 05d76ce..a652c89 100644 --- a/resources/contentCreators.json +++ b/resources/contentCreators.json @@ -7,63 +7,63 @@ "desc": "Traversy Media is owned by Brad Traversy. The channel has a lot of great tutorials to learn full web development and coding. It features online web development and programming tutorials for the latest web technologies including Node.js, Angular 2, React.js, PHP, Rails, HTML, CSS, and more.", "url": "https://www.youtube.com/user/TechGuyWeb", "categories": "", - "tags": ["Start from scratch", "Web Development crash courses", "Responsive portfolio website"] + "tags": ["startfromscratch", "webdevelopmentcrashcourses", "responsiveportfoliowebsite"] }, { "title": "The Net Ninja", "desc": "The Net Ninja is a channel to strengthen your web skills. It has many tutorials for designers and developers.", "url": "https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg", - "categories": "", - "tags": ["Object oriented JavaAcript", "Biginners", "CSS animation tutorial"] + "categories": "tutorial", + "tags": ["objectorientedjavascript", "beginners", "cssanimationtutorial"] }, { "title": "The Futur", "desc": "The mission of The Futur is to be the future of online education for creative entrepreneurs. It features design content on identity design and branding, user experience, logos and lettering, typography, the business of design, and plenty of case studies.", "url": "https://www.youtube.com/channel/UC-b3c7kxa5vU-bnmaROgvog", "categories": "Design", - "tags": ["UX/UI Web design", "Marketing & sales", "Logo design"] + "tags": ["uxuiwebdesign", "marketing&sales", "logodesign"] }, { "title": "Tutvid", "desc": "Nathaniel Dodson’s Tutvid is a site to learn advanced graphic design skills, with tutorials in Adobe Photoshop and Adobe Illustrator. Tutvid also includes tutorials to master animation and video with Adobe Premiere Pro, Adobe After Effects, and Adobe Lightroom. Tutvid’s “Daily Photoshop Tutorials” playlist covers tools, features, and tricks.", "url": "https://www.youtube.com/user/tutvid", "categories": "Graphic design", - "tags": ["Photoshop tutorial", "Video editing", "Web design tutorial"] + "tags": ["photoshoptutorial", "videoediting", "webdesigntutorial"] }, { "title": "CharliMarieTV", "desc": "Charli Marie TV is a channel from Charli Marie, a web and graphic designer in London. Videos are posted weekly about tools, projects, and concepts. There are also weekly videos about her life as a designer.", "url": "https://www.youtube.com/user/charlimarieTV", "categories": "Show", - "tags": ["Designer", "Design and build a webpage", "Custom ecommerce website"] + "tags": ["designer", "designandbuildawebpage", "customecommercewebsite"] }, { "title": "Funfunfunction", "desc": "Fun Fun Function is like a show about programming. Not a database of tutorials and courses, a show. A regular show with an different topic every week, with an entertaining host that explains things well, with the purpose of keeping you curious and excited about the programming craft. Basically, the purpose of Fun Fun Function is to keep programming fun.", "url": "https://www.youtube.com/channel/UCO1cgjhGzsSYb1rsB4bFe4Q", "categories": "Youtube show", - "tags": ["Machine learning", "Unit testing", "Live mob programming"] + "tags": ["machinelearning", "unittesting", "livemobprogramming"] }, { "title": "Mayuko", "desc": "Mayuko is a Senior iOS Software Engineer from San Diego. She makes Youtube videos about what life is like as a Software Engineer living and working in Silicon Valley. She aims to make the tech industry feel more accessible to those entering the industry.", "url": "https://www.youtube.com/user/hellomayuko", "categories": "Life experiences sharing", - "tags": ["Vlogs", "Tech Advice", "Software Engineering"] + "tags": ["vlogs", "techadvice", "softwareengineering"] }, { "title": "MDN Web Docs", "desc": "MDN Web Docs, previously Mozilla Developer Network and formerly Mozilla Developer Center, is the official Mozilla website for development documentation of web standards and Mozilla projects. It is a resource for developers, maintained by the community of developers and technical writers and hosting many documents on a wide variety of subjects.", "url": "https://developer.mozilla.org/en-US/", "categories": "Wiki site", - "tags": ["Web development", "Web technologies", "Mozilla"] + "tags": ["webdevelopment", "webtechnologies", "mozilla"] }, { "title": "Getify", "desc": "Getify writes about JavaScript, finding new and useful ways to teach it to more learners, and exploring and researching JavaScript through OSS coding.", "url": "https://twitter.com/getify?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor", "categories": "Twitter", - "tags": ["Short tips", "Guide for programming", "Debugging updates"] + "tags": ["shorttips", "guideforprogramming", "debuggingupdates"] } ] } From 7398f6c525e0b2e57e5df80e1fd0edaa37f2dbdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?well=C3=A1?= Date: Tue, 15 Oct 2019 13:13:47 +0200 Subject: [PATCH 6/7] =?UTF-8?q?=E2=99=BB=20fix=20tags,=20remove=20"categor?= =?UTF-8?q?ies",=20add=20new=20resources?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/contentCreators.json | 61 ++++++++++++++++++---------------- 1 file changed, 32 insertions(+), 29 deletions(-) diff --git a/resources/contentCreators.json b/resources/contentCreators.json index a652c89..0ff52d0 100644 --- a/resources/contentCreators.json +++ b/resources/contentCreators.json @@ -6,64 +6,67 @@ "title": "Traversy Media", "desc": "Traversy Media is owned by Brad Traversy. The channel has a lot of great tutorials to learn full web development and coding. It features online web development and programming tutorials for the latest web technologies including Node.js, Angular 2, React.js, PHP, Rails, HTML, CSS, and more.", "url": "https://www.youtube.com/user/TechGuyWeb", - "categories": "", - "tags": ["startfromscratch", "webdevelopmentcrashcourses", "responsiveportfoliowebsite"] + "tags": ["beginner", "fullstack", "frontend", "javascript", "mongodb", "node", "php", "wordpress", "tutorial", "programming"] }, { "title": "The Net Ninja", "desc": "The Net Ninja is a channel to strengthen your web skills. It has many tutorials for designers and developers.", "url": "https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg", - "categories": "tutorial", - "tags": ["objectorientedjavascript", "beginners", "cssanimationtutorial"] + "tags": ["javascript", "beginner", "css", "tutorial", "programming"] }, { "title": "The Futur", "desc": "The mission of The Futur is to be the future of online education for creative entrepreneurs. It features design content on identity design and branding, user experience, logos and lettering, typography, the business of design, and plenty of case studies.", "url": "https://www.youtube.com/channel/UC-b3c7kxa5vU-bnmaROgvog", - "categories": "Design", - "tags": ["uxuiwebdesign", "marketing&sales", "logodesign"] + "tags": ["marketing", "design", "logo", "tutorial", "business", "ui", "ux", "webdesign"] }, { "title": "Tutvid", "desc": "Nathaniel Dodson’s Tutvid is a site to learn advanced graphic design skills, with tutorials in Adobe Photoshop and Adobe Illustrator. Tutvid also includes tutorials to master animation and video with Adobe Premiere Pro, Adobe After Effects, and Adobe Lightroom. Tutvid’s “Daily Photoshop Tutorials” playlist covers tools, features, and tricks.", "url": "https://www.youtube.com/user/tutvid", - "categories": "Graphic design", - "tags": ["photoshoptutorial", "videoediting", "webdesigntutorial"] + "tags": ["photoshop", "tutorial", "videoediting", "webdesign", "programming"] }, { "title": "CharliMarieTV", "desc": "Charli Marie TV is a channel from Charli Marie, a web and graphic designer in London. Videos are posted weekly about tools, projects, and concepts. There are also weekly videos about her life as a designer.", "url": "https://www.youtube.com/user/charlimarieTV", - "categories": "Show", - "tags": ["designer", "designandbuildawebpage", "customecommercewebsite"] + "tags": ["design", "webdesign", "tutorial"] }, { "title": "Funfunfunction", "desc": "Fun Fun Function is like a show about programming. Not a database of tutorials and courses, a show. A regular show with an different topic every week, with an entertaining host that explains things well, with the purpose of keeping you curious and excited about the programming craft. Basically, the purpose of Fun Fun Function is to keep programming fun.", "url": "https://www.youtube.com/channel/UCO1cgjhGzsSYb1rsB4bFe4Q", - "categories": "Youtube show", - "tags": ["machinelearning", "unittesting", "livemobprogramming"] + "tags": ["machinelearning", "testing", "live"] }, - { - "title": "Mayuko", - "desc": "Mayuko is a Senior iOS Software Engineer from San Diego. She makes Youtube videos about what life is like as a Software Engineer living and working in Silicon Valley. She aims to make the tech industry feel more accessible to those entering the industry.", - "url": "https://www.youtube.com/user/hellomayuko", - "categories": "Life experiences sharing", - "tags": ["vlogs", "techadvice", "softwareengineering"] - }, - { - "title": "MDN Web Docs", - "desc": "MDN Web Docs, previously Mozilla Developer Network and formerly Mozilla Developer Center, is the official Mozilla website for development documentation of web standards and Mozilla projects. It is a resource for developers, maintained by the community of developers and technical writers and hosting many documents on a wide variety of subjects.", - "url": "https://developer.mozilla.org/en-US/", - "categories": "Wiki site", - "tags": ["webdevelopment", "webtechnologies", "mozilla"] - }, { "title": "Getify", "desc": "Getify writes about JavaScript, finding new and useful ways to teach it to more learners, and exploring and researching JavaScript through OSS coding.", - "url": "https://twitter.com/getify?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor", - "categories": "Twitter", - "tags": ["shorttips", "guideforprogramming", "debuggingupdates"] + "url": "https://twitter.com/getify", + "tags": ["tips", "programming", "javascript"] + }, + { + "title": "Steve Schoger", + "desc": "Steve Schoger is a visual designer from Canada. Many people know him as the guy who shares design tips on Twitter or refactors UI’s on YouTube.", + "url": "https://www.youtube.com/channel/UCxqiDtkXtOCNJdckODHk9YA", + "tags": ["tips", "webdesign", "ui"] + }, + { + "title": "DevTips", + "desc": "DevTips is a weekly show for YOU who want to be inspired 👍 and learn 🖖 about programming. Hosted by David and MPJ - two notorious bug generators 💖 and teachers 🤗. Exploring code together and learning programming along the way - yay!", + "url": "https://www.youtube.com/user/DevTipsForDesigners", + "tags": ["tips", "webdesign", "ui", "tutorial", "programming"] + }, + { + "title": "LevelUpTuts", + "desc": "840+ free video tutorials created, recorded, edited, published and maintained by Scott Tolinski.", + "url": "https://www.youtube.com/user/LevelUpTuts", + "tags": ["tips", "webdesign", "ui", "tutorial", "programming"] + }, + { + "title": "Wes Bos", + "desc": "HTML, CSS, JavaScript and WordPress web development tutorials!", + "url": "https://www.youtube.com/user/wesbos", + "tags": ["tips", "webdesign", "ui", "tutorial", "programming", "javascript", "wordpress"] } ] } From 39826fb5b3d3123555fe09527ac91b01d9ddf3ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?well=C3=A1?= Date: Tue, 15 Oct 2019 13:20:30 +0200 Subject: [PATCH 7/7] =?UTF-8?q?=E2=99=BB=20add=20back=20Mayuko?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/contentCreators.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/resources/contentCreators.json b/resources/contentCreators.json index 0ff52d0..d1051ce 100644 --- a/resources/contentCreators.json +++ b/resources/contentCreators.json @@ -67,6 +67,13 @@ "desc": "HTML, CSS, JavaScript and WordPress web development tutorials!", "url": "https://www.youtube.com/user/wesbos", "tags": ["tips", "webdesign", "ui", "tutorial", "programming", "javascript", "wordpress"] + }, + { + "title": "Mayuko", + "desc": "Mayuko is a Senior iOS Software Engineer from San Diego. She makes Youtube videos about what life is like as a Software Engineer living and working in Silicon Valley. She aims to make the tech industry feel more accessible to those entering the industry.", + "url": "https://www.youtube.com/user/hellomayuko", + "categories": "Life experiences sharing", + "tags": ["vlog", "techadvice", "programming"] } ] }