diff --git a/cache.json b/cache.json index 533ab12..149f0c4 100644 --- a/cache.json +++ b/cache.json @@ -21,13 +21,40 @@ "feedUrl": "https://css-tricks.com/feed/", "siteUrl": "https://css-tricks.com", "articles": [ + { + "id": "https://css-tricks.com/?p=344024", + "author": "Chris Coyier", + "description": "Wes has a heck of a set of “notes” for learning JavaScript. It’s organized like a curriculum, meaning if you teach JavaScript, you could do a lot worse. It’s actually more like 85 really fleshed-out blog posts organized into sections …\nThe post Beginner JavaScript Notes appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", + "link": "https://wesbos.com/javascript", + "publishedOn": "2021-07-08T22:25:22.000Z", + "wordCount": 700, + "title": "Beginner JavaScript Notes" + }, + { + "id": "https://css-tricks.com/?p=343623", + "author": "Amit Sheen", + "description": "The wonderful company I work for, Payoneer, has a new logo, and my job was to recreate it and animate it for a loader component in our app. I’ll explain exactly how I did it, share the problems I …\nThe post My Struggle to Use and Animate a Conic Gradient in SVG appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", + "link": "https://css-tricks.com/my-struggle-to-use-and-animate-a-conic-gradient-in-svg/", + "publishedOn": "2021-07-08T14:35:38.000Z", + "wordCount": 1712, + "title": "My Struggle to Use and Animate a Conic Gradient in SVG" + }, + { + "id": "https://css-tricks.com/?p=343574", + "author": "Fortune Ikechi", + "description": "Command line tools are one of the most popular applications we have today. We use command line tools every day, and they range from git, npm or yarn. Command line tools are very fast and useful for automating applications and …\nThe post Building a Command Line Tool with Nodejs and Fauna appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", + "link": "https://css-tricks.com/building-a-command-line-tool-with-nodejs-and-fauna/", + "publishedOn": "2021-07-08T14:35:09.000Z", + "wordCount": 1131, + "title": "Building a Command Line Tool with Nodejs and Fauna" + }, { "id": "https://css-tricks.com/?p=343495", "author": "Chris Coyier", "description": "Astro is a brand new framework for building websites. To me, the big thing is that it allows you to build a site like you’re using a JavaScript framework (and you are), but the output is a zero-JavaScript static site. …\nThe post A Look at Building with Astro appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", "link": "https://css-tricks.com/a-look-at-building-with-astro/", "publishedOn": "2021-07-07T21:06:35.000Z", - "wordCount": 2391, + "wordCount": 2622, "title": "A Look at Building with Astro" }, { @@ -36,7 +63,7 @@ "description": "There are a lot of great defaults when it comes to browsers and the web. Think about all the accessibility features that are baked into HTML so that you don’t have to do weird stuff, like this example from Manuel…\nThe post The Web’s Worst Default appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", "link": "https://css-tricks.com/the-webs-worst-default/", "publishedOn": "2021-07-07T14:30:34.000Z", - "wordCount": 1322, + "wordCount": 1562, "title": "The Web’s Worst Default" }, { @@ -45,7 +72,7 @@ "description": "I appreciate the clarity of this trick that Mikael Ainalem posted over on Reddit:\nIt’s a one-liner that toggles the class on the
so you can mock up different states and toggle between them on click.\n:has, A Native CSS Parent Selector (And More)", - "enclosure": { - "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/89aef48d-9be9-45df-a7f4-775168deb8dd/has-native-css-parent-selector.jpg", - "length": "0", - "type": "image/jpg" - } } ] }, @@ -562,10 +562,37 @@ "feedUrl": "https://www.freecodecamp.org/news/rss/", "siteUrl": "https://www.freecodecamp.org/news", "articles": [ + { + "id": "60e59724134ad707be00e5d1", + "author": null, + "description": "This post will show you how to build the Feature Toggle mechanism in your Next.JS application. We are going to use Next.JS, React, and TypeScript. We will deploy our application to Vercel to demonstrate the real-life example. You can find the code and video in the summary at", + "link": "https://www.freecodecamp.org/news/how-to-use-feature-toggles-in-next-js-and-react/", + "publishedOn": "2021-07-08T17:13:58.000Z", + "wordCount": 2850, + "title": "Build Your Own Feature Toggle with Next.js and React in Under 30 Minutes" + }, + { + "id": "60e3ae66134ad707be00dbdb", + "author": null, + "description": "Developing web pages used to involve writing HTML, CSS, and a little scripting code like JavaScript for functionality. But over time, we've developed new and more advanced technologies and frameworks to create webpages. We now use things like reusable components, routing, and rendering to the document object model (DOM). These", + "link": "https://www.freecodecamp.org/news/build-accessible-vue-applications/", + "publishedOn": "2021-07-08T16:23:19.000Z", + "wordCount": 1935, + "title": "How to Build Accessible Vue Applications" + }, + { + "id": "60df723627f80207bcdbcf36", + "author": null, + "description": "According to Google trends, React is the most popular JavaScript frontend framework. Unless you're in the U.S. state of Nebraska, that is. 😀 Google Trends (React vs Angular)React is a declarative, efficient, and flexible JavaScript library for building user interfaces. We just released a full React course on the", + "link": "https://www.freecodecamp.org/news/learn-react-js-in-this-free-7-hour-course/", + "publishedOn": "2021-07-08T15:44:30.000Z", + "wordCount": 68137, + "title": "Learn React JS in This Free 7-Hour Course" + }, { "id": "60e521aa134ad707be00e41d", "author": null, - "description": "Objects are one of the most valuable things you can learn in Javascript. You can use them to take your programs to the next level. An object is a collection of data – or key value pairs – which consist of variables and functions that you can access using dot notation. Now", + "description": "Objects are one of the most valuable things you can learn in JavaScript. You can use them to take your programs to the next level. An object is a collection of data – or key value pairs – which consist of variables and functions that you can access using dot notation. Now", "link": "https://www.freecodecamp.org/news/what-is-a-javascript-object/", "publishedOn": "2021-07-07T22:04:00.000Z", "wordCount": 761, @@ -624,33 +651,6 @@ "publishedOn": "2021-07-06T16:02:13.000Z", "wordCount": 2286, "title": "How to Authenticate Users and Implement CORS in Node.js Apps" - }, - { - "id": "60df35f027f80207bcdbccea", - "author": null, - "description": "Let's look at five JavaScript tips you can use today to instantly improve your React applications. Because React is a JavaScript library, any improvements that we make in our JavaScript skills will directly improve the applications that we build with React. For this reason, I've put together a number of", - "link": "https://www.freecodecamp.org/news/javascript-tips-to-improve-your-react-code-today/", - "publishedOn": "2021-07-06T15:12:00.000Z", - "wordCount": 1570, - "title": "5 JavaScript Tips to Improve Your React Code" - }, - { - "id": "60aa196411ffb70827ef5f43", - "author": null, - "description": "In this article, you will learn how to schedule a job in Node using node-cron. Node-cron is a handy npm package which you can use to schedule jobs to run at specific times or intervals. It is most suitable for scheduling repetitive jobs such as email notifications, file downloads, and", - "link": "https://www.freecodecamp.org/news/schedule-a-job-in-node-with-nodecron/", - "publishedOn": "2021-07-06T14:27:26.000Z", - "wordCount": 2989, - "title": "How to Schedule a Job in Node Using node-cron" - }, - { - "id": "60df6dd827f80207bcdbcf06", - "author": null, - "description": "Earning the Certified Information Systems Security Professional (CISSP) Certification proves you have what it takes to effectively design, implement and manage a best-in-class cybersecurity program. The CISSP is one of the most valuable Cyber Security Certificates in the market today. We just posted a 13-hour course on the freeCodeCamp.org", - "link": "https://www.freecodecamp.org/news/get-ready-to-pass-cissp-exam/", - "publishedOn": "2021-07-06T13:55:00.000Z", - "wordCount": 109640, - "title": "Get Ready to Pass CISSP Exam" } ] } diff --git a/feed.atom b/feed.atom index e45f893..5dc00d5 100644 --- a/feed.atom +++ b/feed.atom @@ -1,16 +1,89 @@