This commit is contained in:
chuanqisun 2021-07-08 00:37:19 +00:00
parent e33e14a985
commit f2a9aa8d52
3 changed files with 328 additions and 334 deletions

View file

@ -21,13 +21,31 @@
"feedUrl": "https://css-tricks.com/feed/",
"siteUrl": "https://css-tricks.com",
"articles": [
{
"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 youre 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,
"title": "A Look at Building with Astro"
},
{
"id": "https://css-tricks.com/?p=343388",
"author": "Robin Rendle",
"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 dont have to do weird stuff, like this example from Manuel…\nThe post The Webs 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,
"title": "The Webs Worst Default"
},
{
"id": "https://css-tricks.com/?p=343438",
"author": "Chris Coyier",
"description": "I appreciate the clarity of this trick that Mikael Ainalem posted over on Reddit:\nIts a one-liner that toggles the class on the <body> so you can mock up different states and toggle between them on click.\n<body onclick=\"this.classList.toggle(\"active\");\"\nCould …\nThe post Body Toggle appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
"link": "https://css-tricks.com/body-toggle/",
"publishedOn": "2021-07-06T20:55:45.000Z",
"wordCount": 385,
"wordCount": 548,
"title": "Body Toggle"
},
{
@ -36,7 +54,7 @@
"description": "And maybe an optional follow-up if youre up for it.\nAutomattic, the makers of Jetpack and many other WordPress-y things, have sponsored my site (me = Chris Coyier; site = CSS-Tricks) for quite a while. I use Jetpack myself, …\nThe post Ive got one question about Jetpack for you. appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
"link": "https://css-tricks.com/ive-got-one-question-about-jetpack-for-you/",
"publishedOn": "2021-07-06T20:00:30.000Z",
"wordCount": 391,
"wordCount": 620,
"title": "Ive got one question about Jetpack for you."
},
{
@ -45,7 +63,7 @@
"description": "Normally, a project will have a set of pre-determined font sizes, usually as variables named in such a way that seeks some semblance of order and consistency. Any project of considerable size can use something like that. There are always …\nThe post The Dilemma of Naming Font Size Variables appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
"link": "https://css-tricks.com/the-dilemma-of-naming-font-size-variables/",
"publishedOn": "2021-07-06T14:41:22.000Z",
"wordCount": 2192,
"wordCount": 4083,
"title": "The Dilemma of Naming Font Size Variables"
},
{
@ -54,7 +72,7 @@
"description": "If you zone out every time someone mentions “Kubernetes,” “containers,” or “pods,” this article is for you. No complex diagrams involved!\nAs a front-end developer, you dont have to know how to configure an infrastructure from scratch. However, if you …\nThe post Kubernetes Explained Simply: Containers, Pods and Images appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
"link": "https://css-tricks.com/kubernetes-explained-simply-containers-pods-and-images/",
"publishedOn": "2021-07-05T14:17:33.000Z",
"wordCount": 1152,
"wordCount": 1193,
"title": "Kubernetes Explained Simply: Containers, Pods and Images"
},
{
@ -63,7 +81,7 @@
"description": "Web design is such a rectangle-based design medium that literally any deviation from it feels fresh. Michelle Barker gets into using math in various ways to programmatically draw lines, shapes, and animations that end up looking both beautiful and have …\nThe post Trigonometry in CSS and JavaScript: Beyond Triangles appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
"link": "https://tympanus.net/codrops/2021/06/04/trigonometry-in-css-and-javascript-beyond-triangles/",
"publishedOn": "2021-07-05T14:15:20.000Z",
"wordCount": 2661,
"wordCount": 2663,
"title": "Trigonometry in CSS and JavaScript: Beyond Triangles"
},
{
@ -137,24 +155,6 @@
"publishedOn": "2021-06-30T20:36:52.000Z",
"wordCount": 990,
"title": "How do you make a layout with pictures down one side of a page matched up with paragraphs on the other side?"
},
{
"id": "https://css-tricks.com/?p=343064",
"author": "Travis Almand",
"description": "The click event is quite simple and easy to use; you listen for the event and run code when the event is fired. It works on just about every HTML element there is, a core feature of the DOM API.…\nThe post When a Click is Not Just a Click appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
"link": "https://css-tricks.com/when-a-click-is-not-just-a-click/",
"publishedOn": "2021-06-30T14:45:42.000Z",
"wordCount": 4537,
"title": "When a Click is Not Just a Click"
},
{
"id": "https://css-tricks.com/?p=343182",
"author": "Chris Coyier",
"description": "I was working on a bug ticket the other day where it was reported that an icon was sitting low in a button. Just not aligned like it should be. I had to go on a little journey to figure …\nThe post Fixing a Bug in Low-Resolution Mode appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
"link": "https://css-tricks.com/fixing-a-bug-in-low-resolution-mode/",
"publishedOn": "2021-06-30T14:44:54.000Z",
"wordCount": 1103,
"title": "Fixing a Bug in Low-Resolution Mode"
}
]
},
@ -163,6 +163,20 @@
"feedUrl": "https://www.smashingmagazine.com/feed/",
"siteUrl": "https://www.smashingmagazine.com/",
"articles": [
{
"id": "https://smashingmagazine.com/2021/07/introduction-figma-interactive-components/",
"author": "hello@smashingmagazine.com (Emiliano Cicero)",
"description": "Interactive Components in Figma allows designers to create a component with states (hover, active, clicked, focus) and make it interactive so that every copy of the component will inherit those same interactions by default. Lets explore how it can reduce the time and effort needed to create interactions for your mock-ups.",
"link": "https://smashingmagazine.com/2021/07/introduction-figma-interactive-components/",
"publishedOn": "2021-07-07T11:00:00.000Z",
"wordCount": 4044,
"title": "An Introduction To Figma Interactive Components",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/1a8390d0-26c0-4476-bc00-19e8c89b60c5/introduction-figma-interactive-components.jpg",
"length": "0",
"type": "image/jpg"
}
},
{
"id": "https://smashingmagazine.com/2021/07/how-to-choose-a-headless-cms/",
"author": "hello@smashingmagazine.com (Emmanuel Tissera)",
@ -183,7 +197,7 @@
"description": "In this article, Ahmad Shadeed explains what HSL is, how to use it, and shares some of the useful use-cases and examples that you can use right away in your current projects.",
"link": "https://smashingmagazine.com/2021/07/hsl-colors-css/",
"publishedOn": "2021-07-05T10:30:00.000Z",
"wordCount": 1582,
"wordCount": 1583,
"title": "Using HSL Colors In CSS",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/73607a1e-fe7f-47ea-aada-df79342d823a/hsl-colors-css.jpg",
@ -197,7 +211,7 @@
"description": "With so many tools and approaches, email still has quite a few pain points, both for developers and email marketers. Email is difficult because it has too many aspects to set and a few instances with no common rules to follow.",
"link": "https://smashingmagazine.com/2021/07/email-testing-flow/",
"publishedOn": "2021-07-02T10:30:00.000Z",
"wordCount": 4197,
"wordCount": 4211,
"title": "Email Testing Flow As It Should Be",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/57a53d31-9651-4d88-b2fe-f8de70c08da1/email-testing-flow.jpg",
@ -211,7 +225,7 @@
"description": "When writing front-end tests, youll find a lot of pitfalls along the way. Lets explore common mistakes developers make, and how to avoid them. Testing doesnt need to be painful, after all.",
"link": "https://smashingmagazine.com/2021/07/frontend-testing-pitfalls/",
"publishedOn": "2021-07-01T12:30:00.000Z",
"wordCount": 4767,
"wordCount": 4756,
"title": "Its A (Front-End Testing) Trap! Six Common Testing Pitfalls And How To Solve Them",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/dc1434b9-70c3-4fb2-821e-2128e3373246/frontend-testing-pitfalls.jpg",
@ -225,7 +239,7 @@
"description": "The web is single-threaded. This makes it increasingly hard to write smooth and responsive apps. Workers have a bad rep, but can be an important and useful tool in any web developer's toolbelt for these kinds of problems. Lets get up to speed on Workers on the Web!",
"link": "https://smashingmagazine.com/2021/06/web-workers-2021/",
"publishedOn": "2021-06-30T12:00:00.000Z",
"wordCount": 4742,
"wordCount": 4726,
"title": "The State Of Web Workers In 2021",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/379e4510-b4ab-4fde-9a5d-122738be19b2/web-workers-2021.jpg",
@ -239,7 +253,7 @@
"description": "Lets welcome July with some fresh desktop wallpapers. Designed by artists and designers from around the world, they are available with and without a calendar. Enjoy!",
"link": "https://smashingmagazine.com/2021/06/desktop-wallpaper-calendars-july-2021/",
"publishedOn": "2021-06-30T09:30:00.000Z",
"wordCount": 3646,
"wordCount": 3682,
"title": "The Many Shades Of July (2021 Desktop Wallpapers Edition)",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/814b3b6e-1510-4c12-8504-433157173355/july-21-against-the-current-preview-opt.png",
@ -281,7 +295,7 @@
"description": "In this article, Manuel explains why Emmet is one of his favorite productivity tools for writing HTML and CSS, and how you can create custom Emmet snippets in Visual Studio Code to help you improve your front-end workflows even more.",
"link": "https://smashingmagazine.com/2021/06/custom-emmet-snippets-vscode/",
"publishedOn": "2021-06-28T10:30:00.000Z",
"wordCount": 2518,
"wordCount": 2512,
"title": "Creating Custom Emmet Snippets In VS Code",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/b7ff6227-3a15-4237-8e58-aa783fc9c485/custom-emmet-snippets-vscode.jpg",
@ -295,7 +309,7 @@
"description": "This article explains how we can connect different types of content in a Next.js application. With this technique, we can add any kind of one-to-one, one-to-many, or even many-to-many relationship to our projects.",
"link": "https://smashingmagazine.com/2021/06/creating-multi-author-blog-nextjs/",
"publishedOn": "2021-06-25T11:30:00.000Z",
"wordCount": 5448,
"wordCount": 5440,
"title": "Creating A Multi-Author Blog With Next.js",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/28d0f286-9b01-4f8d-aede-01248ba3491d/creating-multi-author-blog-nextjs.jpg",
@ -309,7 +323,7 @@
"description": "This article is a case study of how a UX audit affects a UI. It explains how a famous educational platform can be analyzed edX against Jakob Nielsens usability guidelines. To get started, Mark Lankmiller shares all of the criteria and metrics he used for his UX audit.",
"link": "https://smashingmagazine.com/2021/06/ux-audit-edtech-platform-case-study/",
"publishedOn": "2021-06-25T10:00:00.000Z",
"wordCount": 3481,
"wordCount": 3527,
"title": "How To Run A UX Audit For A Major EdTech Platform (Case Study)",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/d5116c31-3d66-47b0-aa81-1a6759c68b92/ux-audit-edtech-platform-case-study.jpg",
@ -351,7 +365,7 @@
"description": "Automated testing is an important part of any software project, including testing for accessibility. There are already tools for linting and integration testing accessibility, but what about end-to-end testing with real assistive technology? Since I hadnt seen this before, I set out to build Auto VO, a driver for the VoiceOver screen reader.",
"link": "https://smashingmagazine.com/2021/06/automating-screen-reader-testing-macos-autovo/",
"publishedOn": "2021-06-23T09:30:00.000Z",
"wordCount": 1398,
"wordCount": 1388,
"title": "Automating Screen Reader Testing On macOS Using Auto VO",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/c81018b9-c45e-4c21-9762-dff84dd2682c/automating-screen-reader-testing-macos-autovo.jpg",
@ -379,7 +393,7 @@
"description": "Do you have to process data manually because it is served through images or scanned documents? An image-to-text conversion makes it possible to extract text from images to automate the processing of texts on images, videos, and scanned documents. In this article, we look at how to convert an image to text with React and Tesseract.js(OCR), preprocess images, and deal with the limitations of Tesseract (OCR).",
"link": "https://smashingmagazine.com/2021/06/image-text-conversion-react-tesseract-js-ocr/",
"publishedOn": "2021-06-21T14:30:00.000Z",
"wordCount": 5349,
"wordCount": 5309,
"title": "Image To Text Conversion With React And Tesseract.js (OCR)",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/012f3fbe-980a-44fc-b973-a459f6d9bf1a/image-text-conversion-react-tesseract-js-ocr.jpg",
@ -407,7 +421,7 @@
"description": "Next.js has a file-based routing system in which each page automatically becomes a route based on its file name. This article will guide you through almost everything you need to know about Routing in Next.js and point you in the direction of related topics and concepts.",
"link": "https://smashingmagazine.com/2021/06/client-side-routing-next-js/",
"publishedOn": "2021-06-18T13:00:00.000Z",
"wordCount": 3960,
"wordCount": 3951,
"title": "Client-Side Routing In Next.js",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/a51f6c83-5e1a-4535-b28a-2018310ffc3b/client-side-routing-next-js.jpg",
@ -421,7 +435,7 @@
"description": "Image placement on the modern web is highly intentional, helping to communicate the overall purpose of a page or view. This means that nearly every image you declare needs to have an alternate description.",
"link": "https://smashingmagazine.com/2021/06/img-alt-attribute-alternate-description-decorative/",
"publishedOn": "2021-06-17T10:30:00.000Z",
"wordCount": 1635,
"wordCount": 1633,
"title": "Your Image Is Probably Not Decorative",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/95585fe9-52b8-4bd4-adac-a3580ef87b98/img-alt-attribute-alternate-description-decorative.jpg",
@ -435,7 +449,7 @@
"description": "In a new short series of posts, we highlight some of the useful tools and techniques for developers and designers. Recently weve covered HTML Emails and SVG Generators. This time we look into different kinds of tools to help you streamline your accessibility testing process. Dont miss the next one.",
"link": "https://smashingmagazine.com/2021/06/complete-guide-accessibility-tooling/",
"publishedOn": "2021-06-16T10:30:00.000Z",
"wordCount": 4104,
"wordCount": 4096,
"title": "A Complete Guide To Accessibility Tooling",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/0e0ea8e6-a4ad-489c-b062-749a22d5e38e/complete-guide-accessibility-tooling.jpg",
@ -477,7 +491,7 @@
"description": "Spoiler alert: tooltips, modals, tabs, carousels, and dropdown menus are some of the user interface components that require more than CSS. To ensure accessibility of your interface, JavaScript is a necessary addition to accomplish focus management, respond to keyboard events, and toggle ARIA attributes.",
"link": "https://smashingmagazine.com/2021/06/css-javascript-requirements-accessible-components/",
"publishedOn": "2021-06-14T10:30:00.000Z",
"wordCount": 3667,
"wordCount": 3668,
"title": "When CSS Isnt Enough: JavaScript Requirements For Accessible Components",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/9982fa1e-806c-4343-9de1-eb804a48451e/css-javascript-requirements-accessible-components.jpg",
@ -491,7 +505,7 @@
"description": "Design often revolves around visuals, but the other senses deserve love too. In this article, we tune in to audio features that are making sites sing.",
"link": "https://smashingmagazine.com/2021/06/web-design-done-well-audio/",
"publishedOn": "2021-06-11T15:00:00.000Z",
"wordCount": 1751,
"wordCount": 1735,
"title": "Web Design Done Well: Making Use Of Audio",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/bf0cbb26-546e-43b7-9b9a-9077259ea84b/making-use-of-audio.jpg",
@ -505,7 +519,7 @@
"description": "We dont need to write everything from scratch every single time. With boilerplates and starter kits, we can set up our projects faster, and get to work immediately.",
"link": "https://smashingmagazine.com/2021/06/useful-frontend-boilerplates-starter-kits/",
"publishedOn": "2021-06-10T15:00:00.000Z",
"wordCount": 5157,
"wordCount": 5149,
"title": "Useful Front-End Boilerplates And Starter Kits",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/598e7f3e-9dca-4922-b17d-76089efab46f/25-frontend-boilerplates-starter-kits.png",
@ -519,7 +533,7 @@
"description": "Building a faster website can be a rocket task these days. There are so many things to consider, so its challenging to get everything right. Here are some less-known tools that might help you get there.",
"link": "https://smashingmagazine.com/2021/06/three-frontend-auditing-tools/",
"publishedOn": "2021-06-10T11:15:00.000Z",
"wordCount": 874,
"wordCount": 826,
"title": "Three Front-End Auditing Tools I Discovered Recently",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/e21066b1-baa0-4a85-90ee-8074029d0a32/three-frontend-auditing-tools.jpg",
@ -533,27 +547,13 @@
"description": "What makes relational selector one of the most requested features and how are we, as developers, working around not having it? In this article, were going to check the early spec of the :has selector, and see how it should improve the CSS workflow once its released.",
"link": "https://smashingmagazine.com/2021/06/has-native-css-parent-selector/",
"publishedOn": "2021-06-09T10:30:00.000Z",
"wordCount": 2777,
"wordCount": 2778,
"title": "Meet <code>:has</code>, 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"
}
},
{
"id": "https://smashingmagazine.com/2021/06/image-optimization-book-release/",
"author": "hello@smashingmagazine.com (Vitaly Friedman)",
"description": "Its here! For the last year, weve been working with Addy Osmani on a new Smashing Book all around image optimization. And now its here. Meet “Image Optimization”, our deep-dive guide to understand how to deliver high-quality images on the web fast.",
"link": "https://smashingmagazine.com/2021/06/image-optimization-book-release/",
"publishedOn": "2021-06-08T12:00:00.000Z",
"wordCount": 2347,
"title": "From AVIF to WebP: A New Smashing Book By Addy Osmani",
"enclosure": {
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/b41ae541-7618-44f2-81cd-cc681c64d0d0/image-optimization-header.png",
"length": "0",
"type": "image/png"
}
}
]
},
@ -562,6 +562,51 @@
"feedUrl": "https://www.freecodecamp.org/news/rss/",
"siteUrl": "https://www.freecodecamp.org/news",
"articles": [
{
"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",
"link": "https://www.freecodecamp.org/news/what-is-a-javascript-object/",
"publishedOn": "2021-07-07T22:04:00.000Z",
"wordCount": 761,
"title": "What is a JavaScript Object? Key Value Pairs and Dot Notation Explained"
},
{
"id": "60ccd1794dc1a607ed7b4feb",
"author": null,
"description": "A lot of people want to learn machine learning these days. But the daunting bottom-up curriculum that most ML teachers propose is enough discourage a lot of newcomers. In this tutorial I flip the curriculum upside down and will outline what I think is the fastest and easiest way to",
"link": "https://www.freecodecamp.org/news/how-to-learn-machine-learning-practical-tips-and-resources/",
"publishedOn": "2021-07-07T17:28:00.000Z",
"wordCount": 5411,
"title": "How to Learn Machine Learning Tips and Resources to Learn ML the Practical Way"
},
{
"id": "60e25e17134ad707be00d947",
"author": null,
"description": "List comprehension is an easy to read, compact, and elegant way of creating a list from any existing iterable object. Basically, it's a simpler way to create a new list from the values in a list you already have. It is generally a single line of code enclosed in square",
"link": "https://www.freecodecamp.org/news/list-comprehension-in-python/",
"publishedOn": "2021-07-07T17:25:39.000Z",
"wordCount": 1592,
"title": "List Comprehension in Python Explained for Beginners"
},
{
"id": "60c38e76d3126007592d66cd",
"author": null,
"description": "I've carefully gone through over 50 resources, I've been through 10 JavaScript interviews, and I've landed a job at a unicorn startup. And throughout this entire process, I started to see a pattern in the most frequently asked JS interview questions. In this article, I have tried to list the",
"link": "https://www.freecodecamp.org/news/javascript-interview-prep-cheatsheet/",
"publishedOn": "2021-07-07T15:43:17.000Z",
"wordCount": 4364,
"title": "JavaScript Interview Prep Cheatsheet Ace Your Coding Interviews with These Concepts"
},
{
"id": "60d5ec446e1a1407b6b0bcae",
"author": null,
"description": "Binary search is a common algorithm used in programming languages and programs. It can be very useful for programmers to understand how it works. We just released a binary search course on the freeCodeCamp.org YouTube channel. You will learn how to implement binary search in C and C++, but",
"link": "https://www.freecodecamp.org/news/what-is-binary-search/",
"publishedOn": "2021-07-07T13:57:56.000Z",
"wordCount": 13488,
"title": "What is Binary Search?"
},
{
"id": "60e16e1b134ad707be00d6bc",
"author": null,
@ -599,58 +644,13 @@
"title": "How to Schedule a Job in Node Using node-cron"
},
{
"id": "60de3cf127f80207bcdbc9af",
"id": "60df6dd827f80207bcdbcf06",
"author": null,
"description": "We just published demos of several upcoming freeCodeCamp features and community initiatives. You can read about them here, and watch the entire Summit in the video embedded below. Here's what we cover in this jam-packed one hour community update.Announcement #1: Campfire ModeWe've built a new mode where you can",
"link": "https://www.freecodecamp.org/news/freecodecamp-july-2021-summit/",
"publishedOn": "2021-07-02T04:55:18.000Z",
"wordCount": 641,
"title": "freeCodeCamp July 2021 Summit Campfire Mode, Data Science Curriculum, Chapter, and Other New Features"
},
{
"id": "60dc72b527f80207bcdbbd8f",
"author": null,
"description": "In this article, I'm going to show you how to theme your website so users can customize certain elements to their tastes. We'll talk about website themes, how theming works, and we'll end with a demo so you can see it in action. Let's dive in. Table of Contents:What",
"link": "https://www.freecodecamp.org/news/website-theming-with-css-custom-properties-and-gatsbyjs/",
"publishedOn": "2021-07-01T18:19:21.000Z",
"wordCount": 3084,
"title": "What is Website Theming? How to Use CSS Custom Properties and Gatsby.js to Customize Your Site"
},
{
"id": "60c0897ad3126007592d5701",
"author": null,
"description": "Listing items on a web page is a common task you'll have to do as a web developer. You may have to list shopping cart items, the order of students based on their grades, dogs with the loudest bark and so on. So you need to know the different ways",
"link": "https://www.freecodecamp.org/news/html-list-how-to-use-bullet-points-ordered-and-unordered-lists/",
"publishedOn": "2021-07-01T18:02:56.000Z",
"wordCount": 1769,
"title": "HTML List How to Use Bullet Points, Ordered, and Unordered Lists"
},
{
"id": "60d5e7ae6e1a1407b6b0bc5a",
"author": null,
"description": "The backend of a website can be written in many different programming languages. It is becoming increasingly common for to use Python for the backend of a website. We just published a full backend web development with Python course on the freeCodeCamp.org YouTube channel. This comprehensive course is for",
"link": "https://www.freecodecamp.org/news/backend-web-development-with-python-full-course/",
"publishedOn": "2021-07-01T16:51:30.000Z",
"wordCount": 79275,
"title": "Backend Web Development with Python - Full Course"
},
{
"id": "60dc78e927f80207bcdbbddc",
"author": null,
"description": "Hello freeCodeCamp community! I'm Dilan, a PhD candidate in sociology at Boston University. I'm an absolute coding newbie, but I do know a bit about surveys. 😃 I have been working with freeCodeCamp founder Quincy Larson over the past few months to design the 2021 New Coder Survey. And I'm thrilled",
"link": "https://www.freecodecamp.org/news/2021-new-coder-survey/",
"publishedOn": "2021-07-01T04:36:31.000Z",
"wordCount": 942,
"title": "The 2021 New Coder Survey is Now Live and Here&#x27;s How We Designed It"
},
{
"id": "6063b8d69618b008528a9d79",
"author": null,
"description": "Today we're gonna learn how to use CSS's box-shadow property to make beautiful website components. Along the way, we'll create a button and get hands-on experience using this property. Let's get started. 🎖️ Table of Contents Why you should use the CSS box-shadow propertyThe syntax of the box-shadow propertyHow to make",
"link": "https://www.freecodecamp.org/news/css-box-shadow-property-with-examples/",
"publishedOn": "2021-06-30T18:49:49.000Z",
"wordCount": 956,
"title": "Learn the CSS Box-Shadow Property by Coding a Beautiful Button ✨"
"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"
}
]
}

188
feed.atom
View file

@ -1,10 +1,92 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>urn:2021-07-07T00:40:44.176Z</id>
<id>urn:2021-07-08T00:37:18.783Z</id>
<title>osmos::feed</title>
<updated>2021-07-07T00:40:44.176Z</updated>
<updated>2021-07-08T00:37:18.783Z</updated>
<generator>osmosfeed 1.11.0</generator>
<link rel="alternate" href="index.html"/>
<entry>
<title type="html"><![CDATA[What is a JavaScript Object? Key Value Pairs and Dot Notation Explained]]></title>
<id>60e521aa134ad707be00e41d</id>
<link href="https://www.freecodecamp.org/news/what-is-a-javascript-object/"/>
<updated>2021-07-07T22:04:00.000Z</updated>
<summary type="html"><![CDATA[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]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[A Look at Building with Astro]]></title>
<id>https://css-tricks.com/?p=343495</id>
<link href="https://css-tricks.com/a-look-at-building-with-astro/"/>
<updated>2021-07-07T21:06:35.000Z</updated>
<summary type="html"><![CDATA[Astro is a brand new framework for building websites. To me, the big thing is that it allows you to build a site like youre using a JavaScript framework (and you are), but the output is a zero-JavaScript static site. …
The post A Look at Building with Astro appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
<author>
<name>Chris Coyier</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[How to Learn Machine Learning Tips and Resources to Learn ML the Practical Way]]></title>
<id>60ccd1794dc1a607ed7b4feb</id>
<link href="https://www.freecodecamp.org/news/how-to-learn-machine-learning-practical-tips-and-resources/"/>
<updated>2021-07-07T17:28:00.000Z</updated>
<summary type="html"><![CDATA[A lot of people want to learn machine learning these days. But the daunting bottom-up curriculum that most ML teachers propose is enough discourage a lot of newcomers. In this tutorial I flip the curriculum upside down and will outline what I think is the fastest and easiest way to]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[List Comprehension in Python Explained for Beginners]]></title>
<id>60e25e17134ad707be00d947</id>
<link href="https://www.freecodecamp.org/news/list-comprehension-in-python/"/>
<updated>2021-07-07T17:25:39.000Z</updated>
<summary type="html"><![CDATA[List comprehension is an easy to read, compact, and elegant way of creating a list from any existing iterable object. Basically, it's a simpler way to create a new list from the values in a list you already have. It is generally a single line of code enclosed in square]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[JavaScript Interview Prep Cheatsheet Ace Your Coding Interviews with These Concepts]]></title>
<id>60c38e76d3126007592d66cd</id>
<link href="https://www.freecodecamp.org/news/javascript-interview-prep-cheatsheet/"/>
<updated>2021-07-07T15:43:17.000Z</updated>
<summary type="html"><![CDATA[I've carefully gone through over 50 resources, I've been through 10 JavaScript interviews, and I've landed a job at a unicorn startup. And throughout this entire process, I started to see a pattern in the most frequently asked JS interview questions. In this article, I have tried to list the]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[The Webs Worst Default]]></title>
<id>https://css-tricks.com/?p=343388</id>
<link href="https://css-tricks.com/the-webs-worst-default/"/>
<updated>2021-07-07T14:30:34.000Z</updated>
<summary type="html"><![CDATA[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 dont have to do weird stuff, like this example from Manuel…
The post The Webs Worst Default appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
<author>
<name>Robin Rendle</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[What is Binary Search?]]></title>
<id>60d5ec446e1a1407b6b0bcae</id>
<link href="https://www.freecodecamp.org/news/what-is-binary-search/"/>
<updated>2021-07-07T13:57:56.000Z</updated>
<summary type="html"><![CDATA[Binary search is a common algorithm used in programming languages and programs. It can be very useful for programmers to understand how it works. We just released a binary search course on the freeCodeCamp.org YouTube channel. You will learn how to implement binary search in C and C++, but]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[An Introduction To Figma Interactive Components]]></title>
<id>https://smashingmagazine.com/2021/07/introduction-figma-interactive-components/</id>
<link href="https://smashingmagazine.com/2021/07/introduction-figma-interactive-components/"/>
<updated>2021-07-07T11:00:00.000Z</updated>
<summary type="html"><![CDATA[Interactive Components in Figma allows designers to create a component with states (hover, active, clicked, focus) and make it interactive so that every copy of the component will inherit those same interactions by default. Lets explore how it can reduce the time and effort needed to create interactions for your mock-ups.]]></summary>
<author>
<name>hello@smashingmagazine.com (Emiliano Cicero)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[How to Automatically Upload an Android App Bundle to the Play Store]]></title>
<id>60e16e1b134ad707be00d6bc</id>
@ -82,6 +164,16 @@ The post The Dilemma of Naming Font Size Variables appeared first on CSS-Tricks.
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Get Ready to Pass CISSP Exam]]></title>
<id>60df6dd827f80207bcdbcf06</id>
<link href="https://www.freecodecamp.org/news/get-ready-to-pass-cissp-exam/"/>
<updated>2021-07-06T13:55:00.000Z</updated>
<summary type="html"><![CDATA[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]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[How To Choose A Headless CMS]]></title>
<id>https://smashingmagazine.com/2021/07/how-to-choose-a-headless-cms/</id>
@ -169,16 +261,6 @@ The post Good Meetings appeared first on CSS-Tricks. You can support CSS-Tricks
<name>hello@smashingmagazine.com (Andriy Zapisotskyi)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[freeCodeCamp July 2021 Summit Campfire Mode, Data Science Curriculum, Chapter, and Other New Features]]></title>
<id>60de3cf127f80207bcdbc9af</id>
<link href="https://www.freecodecamp.org/news/freecodecamp-july-2021-summit/"/>
<updated>2021-07-02T04:55:18.000Z</updated>
<summary type="html"><![CDATA[We just published demos of several upcoming freeCodeCamp features and community initiatives. You can read about them here, and watch the entire Summit in the video embedded below. Here's what we cover in this jam-packed one hour community update.Announcement #1: Campfire ModeWe've built a new mode where you can]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[The Trick to Enable Printify Shipping Notifications for Orders in WooCommerce? Customer Notes.]]></title>
<id>https://css-tricks.com/?p=342994</id>
@ -214,36 +296,6 @@ The post App Platform on Digital Ocean appeared first on CSS-Tricks. You can sup
<name>Chris Coyier</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[What is Website Theming? How to Use CSS Custom Properties and Gatsby.js to Customize Your Site]]></title>
<id>60dc72b527f80207bcdbbd8f</id>
<link href="https://www.freecodecamp.org/news/website-theming-with-css-custom-properties-and-gatsbyjs/"/>
<updated>2021-07-01T18:19:21.000Z</updated>
<summary type="html"><![CDATA[In this article, I'm going to show you how to theme your website so users can customize certain elements to their tastes. We'll talk about website themes, how theming works, and we'll end with a demo so you can see it in action. Let's dive in. Table of Contents:What]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[HTML List How to Use Bullet Points, Ordered, and Unordered Lists]]></title>
<id>60c0897ad3126007592d5701</id>
<link href="https://www.freecodecamp.org/news/html-list-how-to-use-bullet-points-ordered-and-unordered-lists/"/>
<updated>2021-07-01T18:02:56.000Z</updated>
<summary type="html"><![CDATA[Listing items on a web page is a common task you'll have to do as a web developer. You may have to list shopping cart items, the order of students based on their grades, dogs with the loudest bark and so on. So you need to know the different ways]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Backend Web Development with Python - Full Course]]></title>
<id>60d5e7ae6e1a1407b6b0bc5a</id>
<link href="https://www.freecodecamp.org/news/backend-web-development-with-python-full-course/"/>
<updated>2021-07-01T16:51:30.000Z</updated>
<summary type="html"><![CDATA[The backend of a website can be written in many different programming languages. It is becoming increasingly common for to use Python for the backend of a website. We just published a full backend web development with Python course on the freeCodeCamp.org YouTube channel. This comprehensive course is for]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Hack the “Deploy to Netlify” Button Using Environment Variables to Make a Customizable Site Generator]]></title>
<id>https://css-tricks.com/?p=343092</id>
@ -267,16 +319,6 @@ The post Hack the “Deploy to Netlify” Button Using Environment Variables to
<name>hello@smashingmagazine.com (Ramona Schwering)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[The 2021 New Coder Survey is Now Live and Here&#x27;s How We Designed It]]></title>
<id>60dc78e927f80207bcdbbddc</id>
<link href="https://www.freecodecamp.org/news/2021-new-coder-survey/"/>
<updated>2021-07-01T04:36:31.000Z</updated>
<summary type="html"><![CDATA[Hello freeCodeCamp community! I'm Dilan, a PhD candidate in sociology at Boston University. I'm an absolute coding newbie, but I do know a bit about surveys. 😃 I have been working with freeCodeCamp founder Quincy Larson over the past few months to design the 2021 New Coder Survey. And I'm thrilled]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[How do you make a layout with pictures down one side of a page matched up with paragraphs on the other side?]]></title>
<id>https://css-tricks.com/?p=343224</id>
@ -288,38 +330,6 @@ The post How do you make a layout with pictures down one side of a page matched
<name>Chris Coyier</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Learn the CSS Box-Shadow Property by Coding a Beautiful Button ✨]]></title>
<id>6063b8d69618b008528a9d79</id>
<link href="https://www.freecodecamp.org/news/css-box-shadow-property-with-examples/"/>
<updated>2021-06-30T18:49:49.000Z</updated>
<summary type="html"><![CDATA[Today we're gonna learn how to use CSS's box-shadow property to make beautiful website components. Along the way, we'll create a button and get hands-on experience using this property. Let's get started. 🎖️ Table of Contents Why you should use the CSS box-shadow propertyThe syntax of the box-shadow propertyHow to make]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[When a Click is Not Just a Click]]></title>
<id>https://css-tricks.com/?p=343064</id>
<link href="https://css-tricks.com/when-a-click-is-not-just-a-click/"/>
<updated>2021-06-30T14:45:42.000Z</updated>
<summary type="html"><![CDATA[The click event is quite simple and easy to use; you listen for the event and run code when the event is fired. It works on just about every HTML element there is, a core feature of the DOM API.…
The post When a Click is Not Just a Click appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
<author>
<name>Travis Almand</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Fixing a Bug in Low-Resolution Mode]]></title>
<id>https://css-tricks.com/?p=343182</id>
<link href="https://css-tricks.com/fixing-a-bug-in-low-resolution-mode/"/>
<updated>2021-06-30T14:44:54.000Z</updated>
<summary type="html"><![CDATA[I was working on a bug ticket the other day where it was reported that an icon was sitting low in a button. Just not aligned like it should be. I had to go on a little journey to figure …
The post Fixing a Bug in Low-Resolution Mode appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
<author>
<name>Chris Coyier</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[The State Of Web Workers In 2021]]></title>
<id>https://smashingmagazine.com/2021/06/web-workers-2021/</id>
@ -569,14 +579,4 @@ Thank you @PiyushLosalka]]></summary>
<name>hello@smashingmagazine.com (Adrian Bece)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[From AVIF to WebP: A New Smashing Book By Addy Osmani]]></title>
<id>https://smashingmagazine.com/2021/06/image-optimization-book-release/</id>
<link href="https://smashingmagazine.com/2021/06/image-optimization-book-release/"/>
<updated>2021-06-08T12:00:00.000Z</updated>
<summary type="html"><![CDATA[Its here! For the last year, weve been working with Addy Osmani on a new Smashing Book all around image optimization. And now its here. Meet “Image Optimization”, our deep-dive guide to understand how to deliver high-quality images on the web fast.]]></summary>
<author>
<name>hello@smashingmagazine.com (Vitaly Friedman)</name>
</author>
</entry>
</feed>

View file

@ -15,6 +15,119 @@
<body>
<!-- %after-body-begin.html% -->
<section class="daily-content">
<h2 class="daily-heading"><time datatime="2021-07-07">2021-07-07</time></h2>
<ul class="sources card">
<li class="source">
<section>
<h3 class="source-name"><a class="source-name__link" href="https://css-tricks.com">CSS-Tricks</a></h3>
<section class="articles-per-source">
<article>
<details class="article-expander">
<summary class="article-expander__title">A Look at Building with Astro</summary>
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/a-look-at-building-with-astro/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(8 min)</span>
<span>Astro is a brand new framework for building websites. To me, the big thing is that it allows you to build a site like youre using a JavaScript framework (and you are), but the output is a zero-JavaScript static site. …
The post A Look at Building with Astro appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.</span>
</div>
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">The Webs Worst Default</summary>
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/the-webs-worst-default/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(4 min)</span>
<span>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 dont have to do weird stuff, like this example from Manuel…
The post The Webs Worst Default appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.</span>
</div>
</a>
</details>
</article>
</section>
</li>
<li class="source">
<section>
<h3 class="source-name"><a class="source-name__link" href="https://www.freecodecamp.org/news">freeCodeCamp.org</a></h3>
<section class="articles-per-source">
<article>
<details class="article-expander">
<summary class="article-expander__title">What is a JavaScript Object? Key Value Pairs and Dot Notation Explained</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/what-is-a-javascript-object/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(3 min)</span>
<span>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</span>
</div>
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">How to Learn Machine Learning Tips and Resources to Learn ML the Practical Way</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/how-to-learn-machine-learning-practical-tips-and-resources/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(18 min)</span>
<span>A lot of people want to learn machine learning these days. But the daunting bottom-up curriculum that most ML teachers propose is enough discourage a lot of newcomers. In this tutorial I flip the curriculum upside down and will outline what I think is the fastest and easiest way to</span>
</div>
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">List Comprehension in Python Explained for Beginners</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/list-comprehension-in-python/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(5 min)</span>
<span>List comprehension is an easy to read, compact, and elegant way of creating a list from any existing iterable object. Basically, it&#x27;s a simpler way to create a new list from the values in a list you already have. It is generally a single line of code enclosed in square</span>
</div>
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">JavaScript Interview Prep Cheatsheet Ace Your Coding Interviews with These Concepts</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/javascript-interview-prep-cheatsheet/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(15 min)</span>
<span>I&#x27;ve carefully gone through over 50 resources, I&#x27;ve been through 10 JavaScript interviews, and I&#x27;ve landed a job at a unicorn startup. And throughout this entire process, I started to see a pattern in the most frequently asked JS interview questions. In this article, I have tried to list the</span>
</div>
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">What is Binary Search?</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/what-is-binary-search/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(45 min)</span>
<span>Binary search is a common algorithm used in programming languages and programs. It can be very useful for programmers to understand how it works. We just released a binary search course on the freeCodeCamp.org YouTube channel. You will learn how to implement binary search in C and C++, but</span>
</div>
</a>
</details>
</article>
</section>
</li>
<li class="source">
<section>
<h3 class="source-name"><a class="source-name__link" href="https://www.smashingmagazine.com/">Articles on Smashing Magazine — For Web Designers And Developers</a></h3>
<section class="articles-per-source">
<article>
<details class="article-expander">
<summary class="article-expander__title">An Introduction To Figma Interactive Components</summary>
<a class="article-summary-link article-summary-box-outer" href="https://smashingmagazine.com/2021/07/introduction-figma-interactive-components/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(13 min)</span>
<span>Interactive Components in Figma allows designers to create a component with states (hover, active, clicked, focus) and make it interactive so that every copy of the component will inherit those same interactions by default. Lets explore how it can reduce the time and effort needed to create interactions for your mock-ups.</span>
</div>
</a>
</details>
</article>
</section>
</li>
</ul>
</section>
<section class="daily-content">
<h2 class="daily-heading"><time datatime="2021-07-06">2021-07-06</time></h2>
<ul class="sources card">
@ -27,7 +140,7 @@
<summary class="article-expander__title">Body Toggle</summary>
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/body-toggle/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(1 min)</span>
<span class="article-reading-time">(2 min)</span>
<span>I appreciate the clarity of this trick that Mikael Ainalem posted over on Reddit:
Its a one-liner that toggles the class on the so you can mock up different states and toggle between them on click.
&lt;body onclick&#x3D;&quot;this.classList.toggle(&quot;active&quot;);&quot;
@ -42,7 +155,7 @@ The post Body Toggle appeared first on CSS-Tricks. You can support CSS-Tricks by
<summary class="article-expander__title">Ive got one question about Jetpack for you.</summary>
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/ive-got-one-question-about-jetpack-for-you/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(1 min)</span>
<span class="article-reading-time">(2 min)</span>
<span>And maybe an optional follow-up if youre up for it.
Automattic, the makers of Jetpack and many other WordPress-y things, have sponsored my site (me &#x3D; Chris Coyier; site &#x3D; CSS-Tricks) for quite a while. I use Jetpack myself, …
The post Ive got one question about Jetpack for you. appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.</span>
@ -55,7 +168,7 @@ The post Ive got one question about Jetpack for you. appeared first on CSS-Tr
<summary class="article-expander__title">The Dilemma of Naming Font Size Variables</summary>
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/the-dilemma-of-naming-font-size-variables/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(7 min)</span>
<span class="article-reading-time">(14 min)</span>
<span>Normally, a project will have a set of pre-determined font sizes, usually as variables named in such a way that seeks some semblance of order and consistency. Any project of considerable size can use something like that. There are always …
The post The Dilemma of Naming Font Size Variables appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.</span>
</div>
@ -112,6 +225,17 @@ The post The Dilemma of Naming Font Size Variables appeared first on CSS-Tricks.
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">Get Ready to Pass CISSP Exam</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/get-ready-to-pass-cissp-exam/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(365 min)</span>
<span>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</span>
</div>
</a>
</details>
</article>
</section>
</li>
<li class="source">
@ -256,23 +380,6 @@ The post The Trick to Enable Printify Shipping Notifications for Orders in WooCo
</article>
</section>
</li>
<li class="source">
<section>
<h3 class="source-name"><a class="source-name__link" href="https://www.freecodecamp.org/news">freeCodeCamp.org</a></h3>
<section class="articles-per-source">
<article>
<details class="article-expander">
<summary class="article-expander__title">freeCodeCamp July 2021 Summit Campfire Mode, Data Science Curriculum, Chapter, and Other New Features</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/freecodecamp-july-2021-summit/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(2 min)</span>
<span>We just published demos of several upcoming freeCodeCamp features and community initiatives. You can read about them here, and watch the entire Summit in the video embedded below. Here&#x27;s what we cover in this jam-packed one hour community update.Announcement #1: Campfire ModeWe&#x27;ve built a new mode where you can</span>
</div>
</a>
</details>
</article>
</section>
</li>
<li class="source">
<section>
<h3 class="source-name"><a class="source-name__link" href="https://www.smashingmagazine.com/">Articles on Smashing Magazine — For Web Designers And Developers</a></h3>
@ -340,56 +447,6 @@ The post Hack the “Deploy to Netlify” Button Using Environment Variables to
</article>
</section>
</li>
<li class="source">
<section>
<h3 class="source-name"><a class="source-name__link" href="https://www.freecodecamp.org/news">freeCodeCamp.org</a></h3>
<section class="articles-per-source">
<article>
<details class="article-expander">
<summary class="article-expander__title">What is Website Theming? How to Use CSS Custom Properties and Gatsby.js to Customize Your Site</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/website-theming-with-css-custom-properties-and-gatsbyjs/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(10 min)</span>
<span>In this article, I&#x27;m going to show you how to theme your website so users can customize certain elements to their tastes. We&#x27;ll talk about website themes, how theming works, and we&#x27;ll end with a demo so you can see it in action. Let&#x27;s dive in. Table of Contents:What</span>
</div>
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">HTML List How to Use Bullet Points, Ordered, and Unordered Lists</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/html-list-how-to-use-bullet-points-ordered-and-unordered-lists/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(6 min)</span>
<span>Listing items on a web page is a common task you&#x27;ll have to do as a web developer. You may have to list shopping cart items, the order of students based on their grades, dogs with the loudest bark and so on. So you need to know the different ways</span>
</div>
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">Backend Web Development with Python - Full Course</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/backend-web-development-with-python-full-course/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(264 min)</span>
<span>The backend of a website can be written in many different programming languages. It is becoming increasingly common for to use Python for the backend of a website. We just published a full backend web development with Python course on the freeCodeCamp.org YouTube channel. This comprehensive course is for</span>
</div>
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">The 2021 New Coder Survey is Now Live and Here&#x27;s How We Designed It</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/2021-new-coder-survey/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(3 min)</span>
<span>Hello freeCodeCamp community! I&#x27;m Dilan, a PhD candidate in sociology at Boston University. I&#x27;m an absolute coding newbie, but I do know a bit about surveys. 😃 I have been working with freeCodeCamp founder Quincy Larson over the past few months to design the 2021 New Coder Survey. And I&#x27;m thrilled</span>
</div>
</a>
</details>
</article>
</section>
</li>
<li class="source">
<section>
<h3 class="source-name"><a class="source-name__link" href="https://www.smashingmagazine.com/">Articles on Smashing Magazine — For Web Designers And Developers</a></h3>
@ -428,47 +485,6 @@ The post How do you make a layout with pictures down one side of a page matched
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">When a Click is Not Just a Click</summary>
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/when-a-click-is-not-just-a-click/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(15 min)</span>
<span>The click event is quite simple and easy to use; you listen for the event and run code when the event is fired. It works on just about every HTML element there is, a core feature of the DOM API.…
The post When a Click is Not Just a Click appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.</span>
</div>
</a>
</details>
</article>
<article>
<details class="article-expander">
<summary class="article-expander__title">Fixing a Bug in Low-Resolution Mode</summary>
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/fixing-a-bug-in-low-resolution-mode/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(4 min)</span>
<span>I was working on a bug ticket the other day where it was reported that an icon was sitting low in a button. Just not aligned like it should be. I had to go on a little journey to figure …
The post Fixing a Bug in Low-Resolution Mode appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.</span>
</div>
</a>
</details>
</article>
</section>
</li>
<li class="source">
<section>
<h3 class="source-name"><a class="source-name__link" href="https://www.freecodecamp.org/news">freeCodeCamp.org</a></h3>
<section class="articles-per-source">
<article>
<details class="article-expander">
<summary class="article-expander__title">Learn the CSS Box-Shadow Property by Coding a Beautiful Button ✨</summary>
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/css-box-shadow-property-with-examples/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(3 min)</span>
<span>Today we&#x27;re gonna learn how to use CSS&#x27;s box-shadow property to make beautiful website components. Along the way, we&#x27;ll create a button and get hands-on experience using this property. Let&#x27;s get started. 🎖️ Table of Contents Why you should use the CSS box-shadow propertyThe syntax of the box-shadow propertyHow to make</span>
</div>
</a>
</details>
</article>
</section>
</li>
<li class="source">
@ -923,31 +939,9 @@ Thank you @PiyushLosalka</span>
</li>
</ul>
</section>
<section class="daily-content">
<h2 class="daily-heading"><time datatime="2021-06-08">2021-06-08</time></h2>
<ul class="sources card">
<li class="source">
<section>
<h3 class="source-name"><a class="source-name__link" href="https://www.smashingmagazine.com/">Articles on Smashing Magazine — For Web Designers And Developers</a></h3>
<section class="articles-per-source">
<article>
<details class="article-expander">
<summary class="article-expander__title">From AVIF to WebP: A New Smashing Book By Addy Osmani</summary>
<a class="article-summary-link article-summary-box-outer" href="https://smashingmagazine.com/2021/06/image-optimization-book-release/">
<div class="article-summary-box-inner">
<span class="article-reading-time">(8 min)</span>
<span>Its here! For the last year, weve been working with Addy Osmani on a new Smashing Book all around image optimization. And now its here. Meet “Image Optimization”, our deep-dive guide to understand how to deliver high-quality images on the web fast.</span>
</div>
</a>
</details>
</article>
</section>
</li>
</ul>
</section>
<footer>
<time id="build-timestamp" datetime="2021-07-07T00:40:44.160Z">2021-07-07T00:40:44.160Z</time>
<time id="build-timestamp" datetime="2021-07-08T00:37:18.757Z">2021-07-08T00:37:18.757Z</time>
<span><a class="footer-link" href="https://github.com/osmoscraft/osmosfeed">osmosfeed 1.11.0</a></span>
</footer>
<script src="index.js"></script>