├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── scraper └── medium │ ├── getArticle.js │ ├── getAuthor.js │ ├── index.js │ └── sitemap.json ├── src ├── components │ └── header.js ├── layouts │ ├── index.css │ └── index.js ├── pages │ ├── 404.js │ └── index.js ├── resource │ └── articles │ │ ├── an-introduction-to-dynamic-list-rendering-in-vue-js.md │ │ ├── feedback-fail-discover-the-risk-of-agiles-data-driven-achilles-heel.md │ │ ├── how-i-crushed-my-fear-of-open-source-and-started-my-own-project-and-how-you-can-too.md │ │ ├── how-i-went-from-33-year-old-museum-tour-guide-to-professional-web-developer-ux-designer-my.md │ │ ├── how-to-choose-the-right-container-orchestration-and-how-to-deploy-it.md │ │ ├── how-to-get-started-with-freertos-and-esp8266.md │ │ ├── how-to-handle-environment-specific-settings-in-your-javascript-apps.md │ │ ├── learn-to-create-a-line-chart-using-d3-js.md │ │ ├── the-basics-of-destructuring-props-in-react.md │ │ └── working-with-the-devtools-console-and-console-api-an-overview.md └── templates │ └── Article.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/README.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/package.json -------------------------------------------------------------------------------- /scraper/medium/getArticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/scraper/medium/getArticle.js -------------------------------------------------------------------------------- /scraper/medium/getAuthor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/scraper/medium/getAuthor.js -------------------------------------------------------------------------------- /scraper/medium/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/scraper/medium/index.js -------------------------------------------------------------------------------- /scraper/medium/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/scraper/medium/sitemap.json -------------------------------------------------------------------------------- /src/components/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/components/header.js -------------------------------------------------------------------------------- /src/layouts/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/layouts/index.css -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/resource/articles/an-introduction-to-dynamic-list-rendering-in-vue-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/an-introduction-to-dynamic-list-rendering-in-vue-js.md -------------------------------------------------------------------------------- /src/resource/articles/feedback-fail-discover-the-risk-of-agiles-data-driven-achilles-heel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/feedback-fail-discover-the-risk-of-agiles-data-driven-achilles-heel.md -------------------------------------------------------------------------------- /src/resource/articles/how-i-crushed-my-fear-of-open-source-and-started-my-own-project-and-how-you-can-too.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/how-i-crushed-my-fear-of-open-source-and-started-my-own-project-and-how-you-can-too.md -------------------------------------------------------------------------------- /src/resource/articles/how-i-went-from-33-year-old-museum-tour-guide-to-professional-web-developer-ux-designer-my.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/how-i-went-from-33-year-old-museum-tour-guide-to-professional-web-developer-ux-designer-my.md -------------------------------------------------------------------------------- /src/resource/articles/how-to-choose-the-right-container-orchestration-and-how-to-deploy-it.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/how-to-choose-the-right-container-orchestration-and-how-to-deploy-it.md -------------------------------------------------------------------------------- /src/resource/articles/how-to-get-started-with-freertos-and-esp8266.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/how-to-get-started-with-freertos-and-esp8266.md -------------------------------------------------------------------------------- /src/resource/articles/how-to-handle-environment-specific-settings-in-your-javascript-apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/how-to-handle-environment-specific-settings-in-your-javascript-apps.md -------------------------------------------------------------------------------- /src/resource/articles/learn-to-create-a-line-chart-using-d3-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/learn-to-create-a-line-chart-using-d3-js.md -------------------------------------------------------------------------------- /src/resource/articles/the-basics-of-destructuring-props-in-react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/the-basics-of-destructuring-props-in-react.md -------------------------------------------------------------------------------- /src/resource/articles/working-with-the-devtools-console-and-console-api-an-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/resource/articles/working-with-the-devtools-console-and-console-api-an-overview.md -------------------------------------------------------------------------------- /src/templates/Article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/src/templates/Article.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freeCodeCamp/news-legacy/HEAD/yarn.lock --------------------------------------------------------------------------------