mirror of
https://github.com/osmoscraft/osmosfeed-template.git
synced 2026-03-11 14:44:24 +00:00
deploy: 1f5684a2ae
This commit is contained in:
parent
39188fe188
commit
cafb3781ae
3 changed files with 212 additions and 217 deletions
147
cache.json
147
cache.json
|
|
@ -21,6 +21,33 @@
|
|||
"feedUrl": "https://css-tricks.com/feed/",
|
||||
"siteUrl": "https://css-tricks.com",
|
||||
"articles": [
|
||||
{
|
||||
"id": "https://css-tricks.com/?p=343435",
|
||||
"author": "Chris Coyier",
|
||||
"description": "The name zero-width space is antithetical, but it’s not without uses. In text, maybe you’d use it around slashes because you want to be sure the words are treated individually but not have any physical space around the slash:…\nThe post Zero-Width Space appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
|
||||
"link": "https://css-tricks.com/zero-width-space/",
|
||||
"publishedOn": "2021-07-02T20:39:04.000Z",
|
||||
"wordCount": 727,
|
||||
"title": "Zero-Width Space"
|
||||
},
|
||||
{
|
||||
"id": "https://css-tricks.com/?p=342995",
|
||||
"author": "Sarah Drasner",
|
||||
"description": "Like it or not, meetings are essential to a good working environment and communication. Therefore, it’s crucial that we work on making them as productive as possible. Today we’ll explore myriad ways to keep meetings coordinated, well documented, and talk …\nThe post Good Meetings appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
|
||||
"link": "https://css-tricks.com/good-meetings/",
|
||||
"publishedOn": "2021-07-02T14:41:26.000Z",
|
||||
"wordCount": 3441,
|
||||
"title": "Good Meetings"
|
||||
},
|
||||
{
|
||||
"id": "https://css-tricks.com/?p=342994",
|
||||
"author": "Chris Coyier",
|
||||
"description": "This is a super niche blog post. But it’s been on my list forever to write down because this caused me grief for far too long.\nThe setup is that you can use WooCommerce to sell things on a WordPress …\nThe post The Trick to Enable Printify Shipping Notifications for Orders in WooCommerce? Customer Notes. appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
|
||||
"link": "https://css-tricks.com/the-trick-to-enable-printify-shipping-notifications-for-orders-in-woocommerce-customer-notes/",
|
||||
"publishedOn": "2021-07-02T00:02:51.000Z",
|
||||
"wordCount": 1151,
|
||||
"title": "The Trick to Enable Printify Shipping Notifications for Orders in WooCommerce? Customer Notes."
|
||||
},
|
||||
{
|
||||
"id": "https://css-tricks.com/?p=343637",
|
||||
"author": "Chris Coyier",
|
||||
|
|
@ -63,7 +90,7 @@
|
|||
"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": 4393,
|
||||
"wordCount": 4537,
|
||||
"title": "When a Click is Not Just a Click"
|
||||
},
|
||||
{
|
||||
|
|
@ -108,7 +135,7 @@
|
|||
"description": "I think we’re all largely aware of colors like this:\ncolor: OldLace;\nbackground: rebeccapurple;\nI guess you’d just call those “named colors” in CSS. \nThose aren’t the only kind of named colors there are though. Some of them are …\nThe post System *Things appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
|
||||
"link": "https://css-tricks.com/system-things/",
|
||||
"publishedOn": "2021-06-28T22:14:22.000Z",
|
||||
"wordCount": 1221,
|
||||
"wordCount": 1253,
|
||||
"title": "System *Things"
|
||||
},
|
||||
{
|
||||
|
|
@ -128,38 +155,6 @@
|
|||
"publishedOn": "2021-06-28T14:25:33.000Z",
|
||||
"wordCount": 2366,
|
||||
"title": "Positioning Overlay Content with CSS Grid"
|
||||
},
|
||||
{
|
||||
"id": "https://css-tricks.com/?p=343072",
|
||||
"author": "Chris Coyier",
|
||||
"description": "To make some terminology clear here:\nCMS = Content Management System\nCRM = Customer Relationship Management\nBoth are essentially database-backed systems for managing data. HubSpot is both, and much more. Where a CMS might be very focused on content and …\nThe post Scaling Organizations Should Consider Building a Website Backed by a CRM Platform appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
|
||||
"link": "https://css-tricks.com/scaling-organizations-should-consider-building-a-website-backed-by-a-crm-platform/",
|
||||
"publishedOn": "2021-06-28T13:29:00.000Z",
|
||||
"wordCount": 738,
|
||||
"title": "Scaling Organizations Should Consider Building a Website Backed by a CRM Platform"
|
||||
},
|
||||
{
|
||||
"id": "https://css-tricks.com/?p=342718",
|
||||
"author": "Chris Coyier",
|
||||
"description": "I am part of that 82% that got the answer to Lea Verou's quiz wrong. Stephen Shaw posted a similar quiz as well and it's a fun exercise sharpen your CSS chops.\nThe post Custom Property Brain Twisters appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
|
||||
"link": "https://css-tricks.com/custom-property-brain-twisters/",
|
||||
"publishedOn": "2021-06-25T18:39:46.000Z",
|
||||
"wordCount": 648,
|
||||
"title": "Custom Property Brain Twisters"
|
||||
},
|
||||
{
|
||||
"id": "https://css-tricks.com/?p=342911",
|
||||
"author": "Georgi Nikoloff",
|
||||
"description": "I recently had to create a widget in React that fetches data from multiple API endpoints. As the user clicks around, new data is fetched and marshalled into the UI. But it caused some problems.\nOne problem quickly became evident: …\nThe post How to Cancel Pending API Requests to Show Correct Data appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.",
|
||||
"link": "https://css-tricks.com/how-to-cancel-pending-api-requests-to-show-correct-data/",
|
||||
"publishedOn": "2021-06-25T14:33:33.000Z",
|
||||
"wordCount": 1099,
|
||||
"title": "How to Cancel Pending API Requests to Show Correct Data",
|
||||
"enclosure": {
|
||||
"url": "https://css-tricks.com/wp-content/uploads/2021/06/steam-api-deals.png,src:https://css-tricks.com/wp-content/uploads/2021/06/pending-networks-problem.mp4",
|
||||
"length": "0",
|
||||
"type": "video/mp4"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -168,13 +163,27 @@
|
|||
"feedUrl": "https://www.smashingmagazine.com/feed/",
|
||||
"siteUrl": "https://www.smashingmagazine.com/",
|
||||
"articles": [
|
||||
{
|
||||
"id": "https://smashingmagazine.com/2021/07/email-testing-flow/",
|
||||
"author": "hello@smashingmagazine.com (Andriy Zapisotskyi)",
|
||||
"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": 4207,
|
||||
"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",
|
||||
"length": "0",
|
||||
"type": "image/jpg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "https://smashingmagazine.com/2021/07/frontend-testing-pitfalls/",
|
||||
"author": "hello@smashingmagazine.com (Ramona Schwering)",
|
||||
"description": "When writing front-end tests, you’ll find a lot of pitfalls along the way. In sum, they can lead to lousy maintainability, slow execution time, and — in the worst case — tests you cannot trust. But it doesn’t have to be that way. In this article, I will talk about common mistakes developers make, at least in my experience, and, of course, how to avoid them. Testing doesn’t need to be painful, after all.",
|
||||
"description": "When writing front-end tests, you’ll find a lot of pitfalls along the way. Let’s explore common mistakes developers make, and how to avoid them. Testing doesn’t need to be painful, after all.",
|
||||
"link": "https://smashingmagazine.com/2021/07/frontend-testing-pitfalls/",
|
||||
"publishedOn": "2021-07-01T12:30:00.000Z",
|
||||
"wordCount": 4718,
|
||||
"wordCount": 4758,
|
||||
"title": "It’s 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",
|
||||
|
|
@ -188,7 +197,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. Let’s 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": 4738,
|
||||
"wordCount": 4689,
|
||||
"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",
|
||||
|
|
@ -202,7 +211,7 @@
|
|||
"description": "Let’s 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": 3688,
|
||||
"wordCount": 3696,
|
||||
"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",
|
||||
|
|
@ -244,7 +253,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": 2516,
|
||||
"wordCount": 2518,
|
||||
"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",
|
||||
|
|
@ -258,7 +267,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": 5451,
|
||||
"wordCount": 5446,
|
||||
"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",
|
||||
|
|
@ -272,7 +281,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 Nielsen’s 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": 3533,
|
||||
"wordCount": 3531,
|
||||
"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",
|
||||
|
|
@ -286,7 +295,7 @@
|
|||
"description": "In the dynamic and unpredictable environments in which we work, even the most carefully crafted solutions can have a short shelf life. When we accept that our work is impermanent and our problem-solving abilities are limited, our goal can shift from delivering full solutions to developing tools that empower our users to adaptively design for themselves.",
|
||||
"link": "https://smashingmagazine.com/2021/06/design-thinking-problem-solving-strategy/",
|
||||
"publishedOn": "2021-06-24T14:00:00.000Z",
|
||||
"wordCount": 4173,
|
||||
"wordCount": 4170,
|
||||
"title": "The Rise Of Design Thinking As A Problem Solving Strategy",
|
||||
"enclosure": {
|
||||
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/e5ea9274-2ff4-49d8-b259-a5f0904cec77/design-thinking-problem-solving-strategy.jpg",
|
||||
|
|
@ -342,7 +351,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": 5360,
|
||||
"wordCount": 5308,
|
||||
"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",
|
||||
|
|
@ -356,7 +365,7 @@
|
|||
"description": "Voice assistants are currently the most popular use case for voice user interfaces. However, due to the bad feedback loop resulting from voice assistants can only solve simple user tasks such as setting an alarm or playing music. In order for voice user interfaces to really break through, feedback to the user must be visual, not auditive.",
|
||||
"link": "https://smashingmagazine.com/2021/06/alternative-voice-ui-voice-assistants/",
|
||||
"publishedOn": "2021-06-18T15:00:00.000Z",
|
||||
"wordCount": 3423,
|
||||
"wordCount": 3407,
|
||||
"title": "An Alternative Voice UI To Voice Assistants",
|
||||
"enclosure": {
|
||||
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/8ebd2c76-ebe5-4885-be3e-f9acc3608072/alternative-voice-ui-voice-assistants.jpg",
|
||||
|
|
@ -370,7 +379,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": 3964,
|
||||
"wordCount": 3960,
|
||||
"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",
|
||||
|
|
@ -384,7 +393,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": 1636,
|
||||
"wordCount": 1634,
|
||||
"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",
|
||||
|
|
@ -398,7 +407,7 @@
|
|||
"description": "In a new short series of posts, we highlight some of the useful tools and techniques for developers and designers. Recently we’ve covered HTML Emails and SVG Generators. This time we look into different kinds of tools to help you streamline your accessibility testing process. Don’t miss the next one.",
|
||||
"link": "https://smashingmagazine.com/2021/06/complete-guide-accessibility-tooling/",
|
||||
"publishedOn": "2021-06-16T10:30:00.000Z",
|
||||
"wordCount": 4109,
|
||||
"wordCount": 4056,
|
||||
"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",
|
||||
|
|
@ -440,7 +449,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": 3670,
|
||||
"wordCount": 3669,
|
||||
"title": "When CSS Isn’t 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",
|
||||
|
|
@ -454,7 +463,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": 1747,
|
||||
"wordCount": 1698,
|
||||
"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",
|
||||
|
|
@ -468,7 +477,7 @@
|
|||
"description": "We don’t 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": 5159,
|
||||
"wordCount": 5107,
|
||||
"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",
|
||||
|
|
@ -496,7 +505,7 @@
|
|||
"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, we’re going to check the early spec of the :has selector, and see how it should improve the CSS workflow once it’s released.",
|
||||
"link": "https://smashingmagazine.com/2021/06/has-native-css-parent-selector/",
|
||||
"publishedOn": "2021-06-09T10:30:00.000Z",
|
||||
"wordCount": 2779,
|
||||
"wordCount": 2776,
|
||||
"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",
|
||||
|
|
@ -524,7 +533,7 @@
|
|||
"description": "In this guide, we’ll be taking a general look at the concepts of forward geocoding and reverse geocoding, and will build a mini-app that applies these concepts to display specific locations, using Mapbox and Vue.js 2.6.11 to achieve this.",
|
||||
"link": "https://smashingmagazine.com/2021/06/building-geocoding-app-vue-mapbox/",
|
||||
"publishedOn": "2021-06-07T11:00:00.000Z",
|
||||
"wordCount": 2440,
|
||||
"wordCount": 2428,
|
||||
"title": "How To Build A Geocoding App In Vue.js Using Mapbox",
|
||||
"enclosure": {
|
||||
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/20dc2361-e5a5-4a78-b380-2f5942ecfba8/building-geocoding-app-vue-mapbox.jpg",
|
||||
|
|
@ -538,27 +547,13 @@
|
|||
"description": "Modern browsers provide good support for JavaScript modules, but module bundlers such as webpack stay a critical part of the JavaScript toolchain. Let’s take a deep dive into what webpack is and how to use it in your development workflow.",
|
||||
"link": "https://smashingmagazine.com/2021/06/getting-started-webpack/",
|
||||
"publishedOn": "2021-06-04T10:00:00.000Z",
|
||||
"wordCount": 4410,
|
||||
"wordCount": 4418,
|
||||
"title": "Getting Started With Webpack",
|
||||
"enclosure": {
|
||||
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/66ba7a41-2a37-471b-9c60-66a3162d8f05/webpack-dependency-graph-opt.png",
|
||||
"length": "0",
|
||||
"type": "image/png"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "https://smashingmagazine.com/2021/06/managing-shared-state-vue3/",
|
||||
"author": "hello@smashingmagazine.com (Shawn Wildermuth)",
|
||||
"description": "Writing large-scale Vue applications can be a challenge. In this article, Shawn Wildermuth dives into the pros and cons of approaches like factories, shared objects, and using Vuex. He also explains what is coming in Vuex 5.0 that might change how we all use shared state in Vue 3.",
|
||||
"link": "https://smashingmagazine.com/2021/06/managing-shared-state-vue3/",
|
||||
"publishedOn": "2021-06-03T10:30:00.000Z",
|
||||
"wordCount": 3677,
|
||||
"title": "Managing Shared State In Vue 3",
|
||||
"enclosure": {
|
||||
"url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/0a70815d-28e5-44af-8306-0e992e99593a/managing-shared-state-vue3.jpg",
|
||||
"length": "0",
|
||||
"type": "image/jpg"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -567,6 +562,15 @@
|
|||
"feedUrl": "https://www.freecodecamp.org/news/rss/",
|
||||
"siteUrl": "https://www.freecodecamp.org/news",
|
||||
"articles": [
|
||||
{
|
||||
"id": "60de3cf127f80207bcdbc9af",
|
||||
"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,
|
||||
|
|
@ -647,15 +651,6 @@
|
|||
"publishedOn": "2021-06-29T19:47:13.000Z",
|
||||
"wordCount": 1079,
|
||||
"title": "Linux List Processes – How to Check Running Processes"
|
||||
},
|
||||
{
|
||||
"id": "60daf29027f80207bcdbb3fe",
|
||||
"author": null,
|
||||
"description": "Why do we need the timedelta object?When you're working with dates and times in Python, you'll often use the datetime module. In this post, we'll see how we can use the timedelta object in the datetime module. It denotes a span of time and can help when we need",
|
||||
"link": "https://www.freecodecamp.org/news/how-to-use-timedelta-objects-in-python/",
|
||||
"publishedOn": "2021-06-29T18:25:52.000Z",
|
||||
"wordCount": 926,
|
||||
"title": "How to Use timedelta Objects in Python to Work with Dates"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
117
feed.atom
117
feed.atom
|
|
@ -1,10 +1,64 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
<id>urn:2021-07-02T00:38:11.686Z</id>
|
||||
<id>urn:2021-07-03T00:38:44.111Z</id>
|
||||
<title>osmos::feed</title>
|
||||
<updated>2021-07-02T00:38:11.686Z</updated>
|
||||
<updated>2021-07-03T00:38:44.111Z</updated>
|
||||
<generator>osmosfeed 1.11.0</generator>
|
||||
<link rel="alternate" href="index.html"/>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[Zero-Width Space]]></title>
|
||||
<id>https://css-tricks.com/?p=343435</id>
|
||||
<link href="https://css-tricks.com/zero-width-space/"/>
|
||||
<updated>2021-07-02T20:39:04.000Z</updated>
|
||||
<summary type="html"><![CDATA[The name zero-width space is antithetical, but it’s not without uses. In text, maybe you’d use it around slashes because you want to be sure the words are treated individually but not have any physical space around the slash:…
|
||||
The post Zero-Width Space 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[Good Meetings]]></title>
|
||||
<id>https://css-tricks.com/?p=342995</id>
|
||||
<link href="https://css-tricks.com/good-meetings/"/>
|
||||
<updated>2021-07-02T14:41:26.000Z</updated>
|
||||
<summary type="html"><![CDATA[Like it or not, meetings are essential to a good working environment and communication. Therefore, it’s crucial that we work on making them as productive as possible. Today we’ll explore myriad ways to keep meetings coordinated, well documented, and talk …
|
||||
The post Good Meetings appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
|
||||
<author>
|
||||
<name>Sarah Drasner</name>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[Email Testing Flow As It Should Be]]></title>
|
||||
<id>https://smashingmagazine.com/2021/07/email-testing-flow/</id>
|
||||
<link href="https://smashingmagazine.com/2021/07/email-testing-flow/"/>
|
||||
<updated>2021-07-02T10:30:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[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.]]></summary>
|
||||
<author>
|
||||
<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>
|
||||
<link href="https://css-tricks.com/the-trick-to-enable-printify-shipping-notifications-for-orders-in-woocommerce-customer-notes/"/>
|
||||
<updated>2021-07-02T00:02:51.000Z</updated>
|
||||
<summary type="html"><![CDATA[This is a super niche blog post. But it’s been on my list forever to write down because this caused me grief for far too long.
|
||||
The setup is that you can use WooCommerce to sell things on a WordPress …
|
||||
The post The Trick to Enable Printify Shipping Notifications for Orders in WooCommerce? Customer Notes. 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[CSS for Web Vitals]]></title>
|
||||
<id>https://css-tricks.com/?p=343637</id>
|
||||
|
|
@ -76,7 +130,7 @@ The post Hack the “Deploy to Netlify” Button Using Environment Variables to
|
|||
<id>https://smashingmagazine.com/2021/07/frontend-testing-pitfalls/</id>
|
||||
<link href="https://smashingmagazine.com/2021/07/frontend-testing-pitfalls/"/>
|
||||
<updated>2021-07-01T12:30:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[When writing front-end tests, you’ll find a lot of pitfalls along the way. In sum, they can lead to lousy maintainability, slow execution time, and — in the worst case — tests you cannot trust. But it doesn’t have to be that way. In this article, I will talk about common mistakes developers make, at least in my experience, and, of course, how to avoid them. Testing doesn’t need to be painful, after all.]]></summary>
|
||||
<summary type="html"><![CDATA[When writing front-end tests, you’ll find a lot of pitfalls along the way. Let’s explore common mistakes developers make, and how to avoid them. Testing doesn’t need to be painful, after all.]]></summary>
|
||||
<author>
|
||||
<name>hello@smashingmagazine.com (Ramona Schwering)</name>
|
||||
</author>
|
||||
|
|
@ -222,16 +276,6 @@ The post Chromium spelling and grammar features appeared first on CSS-Tricks. Yo
|
|||
<name>freeCodeCamp.org</name>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[How to Use timedelta Objects in Python to Work with Dates]]></title>
|
||||
<id>60daf29027f80207bcdbb3fe</id>
|
||||
<link href="https://www.freecodecamp.org/news/how-to-use-timedelta-objects-in-python/"/>
|
||||
<updated>2021-06-29T18:25:52.000Z</updated>
|
||||
<summary type="html"><![CDATA[Why do we need the timedelta object?When you're working with dates and times in Python, you'll often use the datetime module. In this post, we'll see how we can use the timedelta object in the datetime module. It denotes a span of time and can help when we need]]></summary>
|
||||
<author>
|
||||
<name>freeCodeCamp.org</name>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[:nth-child Between Two Fixed Indexes]]></title>
|
||||
<id>https://css-tricks.com/?p=342736</id>
|
||||
|
|
@ -302,20 +346,6 @@ The post Positioning Overlay Content with CSS Grid appeared first on CSS-Tricks.
|
|||
<name>Ryan Mulligan</name>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[Scaling Organizations Should Consider Building a Website Backed by a CRM Platform]]></title>
|
||||
<id>https://css-tricks.com/?p=343072</id>
|
||||
<link href="https://css-tricks.com/scaling-organizations-should-consider-building-a-website-backed-by-a-crm-platform/"/>
|
||||
<updated>2021-06-28T13:29:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[To make some terminology clear here:
|
||||
CMS = Content Management System
|
||||
CRM = Customer Relationship Management
|
||||
Both are essentially database-backed systems for managing data. HubSpot is both, and much more. Where a CMS might be very focused on content and …
|
||||
The post Scaling Organizations Should Consider Building a Website Backed by a CRM Platform 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[Creating Custom Emmet Snippets In VS Code]]></title>
|
||||
<id>https://smashingmagazine.com/2021/06/custom-emmet-snippets-vscode/</id>
|
||||
|
|
@ -326,29 +356,6 @@ The post Scaling Organizations Should Consider Building a Website Backed by a CR
|
|||
<name>hello@smashingmagazine.com (Manuel Matuzović)</name>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[Custom Property Brain Twisters]]></title>
|
||||
<id>https://css-tricks.com/?p=342718</id>
|
||||
<link href="https://css-tricks.com/custom-property-brain-twisters/"/>
|
||||
<updated>2021-06-25T18:39:46.000Z</updated>
|
||||
<summary type="html"><![CDATA[I am part of that 82% that got the answer to Lea Verou's quiz wrong. Stephen Shaw posted a similar quiz as well and it's a fun exercise sharpen your CSS chops.
|
||||
The post Custom Property Brain Twisters 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 Cancel Pending API Requests to Show Correct Data]]></title>
|
||||
<id>https://css-tricks.com/?p=342911</id>
|
||||
<link href="https://css-tricks.com/how-to-cancel-pending-api-requests-to-show-correct-data/"/>
|
||||
<updated>2021-06-25T14:33:33.000Z</updated>
|
||||
<summary type="html"><![CDATA[I recently had to create a widget in React that fetches data from multiple API endpoints. As the user clicks around, new data is fetched and marshalled into the UI. But it caused some problems.
|
||||
One problem quickly became evident: …
|
||||
The post How to Cancel Pending API Requests to Show Correct Data appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
|
||||
<author>
|
||||
<name>Georgi Nikoloff</name>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[Creating A Multi-Author Blog With Next.js]]></title>
|
||||
<id>https://smashingmagazine.com/2021/06/creating-multi-author-blog-nextjs/</id>
|
||||
|
|
@ -578,14 +585,4 @@ Thank you @PiyushLosalka]]></summary>
|
|||
<name>hello@smashingmagazine.com (Nwani Victory)</name>
|
||||
</author>
|
||||
</entry>
|
||||
<entry>
|
||||
<title type="html"><![CDATA[Managing Shared State In Vue 3]]></title>
|
||||
<id>https://smashingmagazine.com/2021/06/managing-shared-state-vue3/</id>
|
||||
<link href="https://smashingmagazine.com/2021/06/managing-shared-state-vue3/"/>
|
||||
<updated>2021-06-03T10:30:00.000Z</updated>
|
||||
<summary type="html"><![CDATA[Writing large-scale Vue applications can be a challenge. In this article, Shawn Wildermuth dives into the pros and cons of approaches like factories, shared objects, and using Vuex. He also explains what is coming in Vuex 5.0 that might change how we all use shared state in Vue 3.]]></summary>
|
||||
<author>
|
||||
<name>hello@smashingmagazine.com (Shawn Wildermuth)</name>
|
||||
</author>
|
||||
</entry>
|
||||
</feed>
|
||||
165
index.html
165
index.html
|
|
@ -15,6 +15,88 @@
|
|||
|
||||
<body>
|
||||
<!-- %after-body-begin.html% -->
|
||||
<section class="daily-content">
|
||||
<h2 class="daily-heading"><time datatime="2021-07-02">2021-07-02</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">Zero-Width Space</summary>
|
||||
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/zero-width-space/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(2 min)</span>
|
||||
<span>The name zero-width space is antithetical, but it’s not without uses. In text, maybe you’d use it around slashes because you want to be sure the words are treated individually but not have any physical space around the slash:…
|
||||
The post Zero-Width Space 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">Good Meetings</summary>
|
||||
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/good-meetings/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(11 min)</span>
|
||||
<span>Like it or not, meetings are essential to a good working environment and communication. Therefore, it’s crucial that we work on making them as productive as possible. Today we’ll explore myriad ways to keep meetings coordinated, well documented, and talk …
|
||||
The post Good Meetings 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 Trick to Enable Printify Shipping Notifications for Orders in WooCommerce? Customer Notes.</summary>
|
||||
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/the-trick-to-enable-printify-shipping-notifications-for-orders-in-woocommerce-customer-notes/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(4 min)</span>
|
||||
<span>This is a super niche blog post. But it’s been on my list forever to write down because this caused me grief for far too long.
|
||||
The setup is that you can use WooCommerce to sell things on a WordPress …
|
||||
The post The Trick to Enable Printify Shipping Notifications for Orders in WooCommerce? Customer Notes. 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">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's what we cover in this jam-packed one hour community update.Announcement #1: Campfire ModeWe'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>
|
||||
<section class="articles-per-source">
|
||||
<article>
|
||||
<details class="article-expander">
|
||||
<summary class="article-expander__title">Email Testing Flow As It Should Be</summary>
|
||||
<a class="article-summary-link article-summary-box-outer" href="https://smashingmagazine.com/2021/07/email-testing-flow/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(14 min)</span>
|
||||
<span>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.</span>
|
||||
</div>
|
||||
</a>
|
||||
</details>
|
||||
</article>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="daily-content">
|
||||
<h2 class="daily-heading"><time datatime="2021-07-01">2021-07-01</time></h2>
|
||||
<ul class="sources card">
|
||||
|
|
@ -123,7 +205,7 @@ The post Hack the “Deploy to Netlify” Button Using Environment Variables to
|
|||
<a class="article-summary-link article-summary-box-outer" href="https://smashingmagazine.com/2021/07/frontend-testing-pitfalls/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(16 min)</span>
|
||||
<span>When writing front-end tests, you’ll find a lot of pitfalls along the way. In sum, they can lead to lousy maintainability, slow execution time, and — in the worst case — tests you cannot trust. But it doesn’t have to be that way. In this article, I will talk about common mistakes developers make, at least in my experience, and, of course, how to avoid them. Testing doesn’t need to be painful, after all.</span>
|
||||
<span>When writing front-end tests, you’ll find a lot of pitfalls along the way. Let’s explore common mistakes developers make, and how to avoid them. Testing doesn’t need to be painful, after all.</span>
|
||||
</div>
|
||||
</a>
|
||||
</details>
|
||||
|
|
@ -324,17 +406,6 @@ The post :nth-child Between Two Fixed Indexes appeared first on CSS-Tricks. You
|
|||
</a>
|
||||
</details>
|
||||
</article>
|
||||
<article>
|
||||
<details class="article-expander">
|
||||
<summary class="article-expander__title">How to Use timedelta Objects in Python to Work with Dates</summary>
|
||||
<a class="article-summary-link article-summary-box-outer" href="https://www.freecodecamp.org/news/how-to-use-timedelta-objects-in-python/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(3 min)</span>
|
||||
<span>Why do we need the timedelta object?When you're working with dates and times in Python, you'll often use the datetime module. In this post, we'll see how we can use the timedelta object in the datetime module. It denotes a span of time and can help when we need</span>
|
||||
</div>
|
||||
</a>
|
||||
</details>
|
||||
</article>
|
||||
</section>
|
||||
</li>
|
||||
<li class="source">
|
||||
|
|
@ -415,21 +486,6 @@ The post Positioning Overlay Content with CSS Grid appeared first on CSS-Tricks.
|
|||
</a>
|
||||
</details>
|
||||
</article>
|
||||
<article>
|
||||
<details class="article-expander">
|
||||
<summary class="article-expander__title">Scaling Organizations Should Consider Building a Website Backed by a CRM Platform</summary>
|
||||
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/scaling-organizations-should-consider-building-a-website-backed-by-a-crm-platform/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(2 min)</span>
|
||||
<span>To make some terminology clear here:
|
||||
CMS = Content Management System
|
||||
CRM = Customer Relationship Management
|
||||
Both are essentially database-backed systems for managing data. HubSpot is both, and much more. Where a CMS might be very focused on content and …
|
||||
The post Scaling Organizations Should Consider Building a Website Backed by a CRM Platform 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">
|
||||
|
|
@ -454,37 +510,6 @@ The post Scaling Organizations Should Consider Building a Website Backed by a CR
|
|||
<section class="daily-content">
|
||||
<h2 class="daily-heading"><time datatime="2021-06-25">2021-06-25</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">Custom Property Brain Twisters</summary>
|
||||
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/custom-property-brain-twisters/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(2 min)</span>
|
||||
<span>I am part of that 82% that got the answer to Lea Verou's quiz wrong. Stephen Shaw posted a similar quiz as well and it's a fun exercise sharpen your CSS chops.
|
||||
The post Custom Property Brain Twisters 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">How to Cancel Pending API Requests to Show Correct Data</summary>
|
||||
<a class="article-summary-link article-summary-box-outer" href="https://css-tricks.com/how-to-cancel-pending-api-requests-to-show-correct-data/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(4 min)</span>
|
||||
<span>I recently had to create a widget in React that fetches data from multiple API endpoints. As the user clicks around, new data is fetched and marshalled into the UI. But it caused some problems.
|
||||
One problem quickly became evident: …
|
||||
The post How to Cancel Pending API Requests to Show Correct Data 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.smashingmagazine.com/">Articles on Smashing Magazine — For Web Designers And Developers</a></h3>
|
||||
|
|
@ -915,31 +940,9 @@ Thank you @PiyushLosalka</span>
|
|||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section class="daily-content">
|
||||
<h2 class="daily-heading"><time datatime="2021-06-03">2021-06-03</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">Managing Shared State In Vue 3</summary>
|
||||
<a class="article-summary-link article-summary-box-outer" href="https://smashingmagazine.com/2021/06/managing-shared-state-vue3/">
|
||||
<div class="article-summary-box-inner">
|
||||
<span class="article-reading-time">(12 min)</span>
|
||||
<span>Writing large-scale Vue applications can be a challenge. In this article, Shawn Wildermuth dives into the pros and cons of approaches like factories, shared objects, and using Vuex. He also explains what is coming in Vuex 5.0 that might change how we all use shared state in Vue 3.</span>
|
||||
</div>
|
||||
</a>
|
||||
</details>
|
||||
</article>
|
||||
</section>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<time id="build-timestamp" datetime="2021-07-02T00:38:11.660Z">2021-07-02T00:38:11.660Z</time>
|
||||
<time id="build-timestamp" datetime="2021-07-03T00:38:44.069Z">2021-07-03T00:38:44.069Z</time>
|
||||
<span><a class="footer-link" href="https://github.com/osmoscraft/osmosfeed">osmosfeed 1.11.0</a></span>
|
||||
</footer>
|
||||
<script src="index.js"></script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue