From 7ce685981a1b39ae4d103630519172f7546fc34f Mon Sep 17 00:00:00 2001 From: chuanqisun Date: Wed, 3 Nov 2021 00:41:26 +0000 Subject: [PATCH] deploy: 1f5684a2ae67184fc44cacebc2a14d1ec87ed0f6 --- cache.json | 226 +++++++++++++++++++++---------------------- feed.atom | 205 ++++++++++++++++++++------------------- index.html | 275 ++++++++++++++++++++++++++--------------------------- 3 files changed, 355 insertions(+), 351 deletions(-) diff --git a/cache.json b/cache.json index 5d0a47c..fb9ee28 100644 --- a/cache.json +++ b/cache.json @@ -21,13 +21,49 @@ "feedUrl": "https://css-tricks.com/feed/", "siteUrl": "https://css-tricks.com", "articles": [ + { + "id": "https://css-tricks.com/?p=354619", + "author": "Chris Coyier", + "description": "First, check out how incredibly easy it is to write a Cloudflare Worker to proxy another URL:\naddEventListener(\"fetch\", (event) ={\n event.respondWith(\n fetch(\"https://css-tricks.com\")\n );\n});\nIt doesn’t have any error handling or anything, but hey, it works:\nNow imagine how …\nThe post Proxying Third-Party JavaScript as First-Party JavaScript (and the Potential Effect on Analytics) appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", + "link": "https://css-tricks.com/proxying-third-party-javascript-as-first-party-javascript-and-the-potential-effect-on-analytics/", + "publishedOn": "2021-11-02T22:50:37.000Z", + "wordCount": 1137, + "title": "Proxying Third-Party JavaScript as First-Party JavaScript (and the Potential Effect on Analytics)" + }, + { + "id": "https://css-tricks.com/?p=355016", + "author": "Chris Coyier", + "description": "I keep bookmarking Adam’s GUI Challenges posts/videos and, before I even have a chance to review and link them up, another one is already published! Fortunately, the homepage for them on web.dev is a nice roundup. \nFor example, a recent …\nThe post GUI Challenges appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", + "link": "https://web.dev/shows/gui-challenges/", + "publishedOn": "2021-11-02T21:28:22.000Z", + "wordCount": 547, + "title": "GUI Challenges" + }, + { + "id": "https://css-tricks.com/?p=354734", + "author": "Tobias Günther", + "description": "This article is part of our “Advanced Git” series. Be sure to follow us on Twitter or sign up for our newsletter to hear about the next articles!\nMost developers understand that it’s important to use branches in Git. In …\nThe post Rebase vs. Merge: Integrating Changes in Git appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", + "link": "https://css-tricks.com/rebase-vs-merge-integrating-changes-in-git/", + "publishedOn": "2021-11-02T14:19:12.000Z", + "wordCount": 2057, + "title": "Rebase vs. Merge: Integrating Changes in Git" + }, + { + "id": "https://css-tricks.com/?p=355395", + "author": "Chris Coyier", + "description": "High five to Jeremy on the big release of Responsible JavaScript on A Book Apart. There is a lot of talk about how the proliferation of JavaScript has had a negative impact on the web, but now we have …\nThe post Responsible JavaScript appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", + "link": "https://css-tricks.com/responsible-javascript-2/", + "publishedOn": "2021-11-02T14:17:55.000Z", + "wordCount": 692, + "title": "Responsible JavaScript" + }, { "id": "https://css-tricks.com/?p=354978", "author": "Chris Coyier", "description": "There are thousands of articles out there about buttons and links on the web; the differences and how to use them properly. Hey, I don’t mind. I wrote my own as well¹.\nIt’s such a common mistake on …\nThe post Buttons vs. Links appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", "link": "https://css-tricks.com/buttons-vs-links/", "publishedOn": "2021-11-01T22:58:12.000Z", - "wordCount": 650, + "wordCount": 944, "title": "Buttons vs. Links" }, { @@ -36,7 +72,7 @@ "description": "A big heaping 19-minute bowl of not-too-hot, not-too-cold baby bear porridge website building from Rich Harris. \nI’ve certainly overheard more than my fair share of arguments about Single Page Apps (SPAs) vs Multi-Page Apps (MPAs). Although it’s only recently that …\nThe post Have Single-Page Apps Ruined the Web? (“Transitional Apps”) appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", "link": "https://css-tricks.com/have-single-page-apps-ruined-the-web-transitional-apps/", "publishedOn": "2021-11-01T21:43:10.000Z", - "wordCount": 576, + "wordCount": 610, "title": "Have Single-Page Apps Ruined the Web? (“Transitional Apps”)" }, { @@ -72,7 +108,7 @@ "description": "There has been a lot of talk about automated social images lately. GitHub has created its own. A WordPress plugin has been acquired by Jetpack. There is definitely interest! People like Ryan Filler and Zach Leatherman have implemented …\nThe post Create Your Own Automated Social Images With Resoc appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", "link": "https://css-tricks.com/create-your-own-automated-social-images-with-resoc/", "publishedOn": "2021-10-29T14:14:55.000Z", - "wordCount": 3495, + "wordCount": 3620, "title": "Create Your Own Automated Social Images With Resoc" }, { @@ -99,7 +135,7 @@ "description": "Merge conflicts... Nobody likes them. Some of us even fear them. But they are a fact of life when you're working with Git, especially when you're teaming up with other developers. In most cases, merge conflicts aren't as scary as you might think. In this fourth part of our “Advanced Git” series we'll talk about when they can happen, what they actually are, and how to solve them.\nThe post Merge Conflicts: What They Are and How to Deal with Them​ appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", "link": "https://css-tricks.com/merge-conflicts-what-they-are-and-how-to-deal-with-them/", "publishedOn": "2021-10-28T14:07:12.000Z", - "wordCount": 1996, + "wordCount": 2001, "title": "Merge Conflicts: What They Are and How to Deal with Them​" }, { @@ -117,44 +153,8 @@ "description": "I ran across this 30 seconds of code website the other day, and they have a CSS section which is really good! The first example snippet I looked at was this “floating section headers” example, reminding me yet again how …\nThe post Sticky Definition Lists appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", "link": "https://css-tricks.com/sticky-definition-lists/", "publishedOn": "2021-10-27T23:17:18.000Z", - "wordCount": 630, + "wordCount": 658, "title": "Sticky Definition Lists" - }, - { - "id": "https://css-tricks.com/?p=354857", - "author": "Chris Coyier", - "description": "A look from Christian Kozalla on the HTML element and using it to create a nice-looking and accessible modal. \nCodePen Embed Fallback\nI’m attracted to the element as it’s one of those “you get a lot for free” …\nThe post How to Implement and Style the Dialog Element appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", - "link": "https://css-tricks.com/how-to-implement-and-style-the-dialog-element/", - "publishedOn": "2021-10-27T20:17:48.000Z", - "wordCount": 1053, - "title": "How to Implement and Style the Dialog Element" - }, - { - "id": "https://css-tricks.com/?p=353842", - "author": "Mark Noonan", - "description": "Cypress is an automated test runner for browser-based applications and pages. I’ve used it for years to write end-to-end tests for web projects, and was happy to see recently that individual component testing had come to Cypress. I work on …\nThe post Testing Vue Components With Cypress appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", - "link": "https://css-tricks.com/testing-vue-components-with-cypress/", - "publishedOn": "2021-10-27T14:25:04.000Z", - "wordCount": 4750, - "title": "Testing Vue Components With Cypress" - }, - { - "id": "https://css-tricks.com/?p=354365", - "author": "Chris Coyier", - "description": "We’ve covered URL schemes: \nA URL Scheme is like “http://…” or “ftp://…”. Those seem like a very low-level concept that you don’t have much control over, but actually, you do!\nI’d call it non-trivial, but developers can register new …\nThe post On Browser-Specific URL Schemes appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", - "link": "https://css-tricks.com/on-browser-specific-url-schemes/", - "publishedOn": "2021-10-26T20:06:29.000Z", - "wordCount": 1355, - "title": "On Browser-Specific URL Schemes" - }, - { - "id": "https://css-tricks.com/?p=353747", - "author": "Hilman Ramadhan", - "description": "If you have a page that includes a lot of information, it’s a good idea to let users search for what they might be looking for. I’m not talking about searching a database or even searching JSON data — I’m …\nThe post In-Page Filtered Search With Vanilla JavaScript appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.", - "link": "https://css-tricks.com/in-page-filtered-search-with-vanilla-javascript/", - "publishedOn": "2021-10-26T14:11:59.000Z", - "wordCount": 1906, - "title": "In-Page Filtered Search With Vanilla JavaScript" } ] }, @@ -163,13 +163,27 @@ "feedUrl": "https://www.smashingmagazine.com/feed/", "siteUrl": "https://www.smashingmagazine.com/", "articles": [ + { + "id": "https://smashingmagazine.com/2021/11/magento-pwa-customizing-themes-coding/", + "author": "hello@smashingmagazine.com (Alex Husar)", + "description": "This article sheds the spotlight on Magento PWAs and explains why business owners are getting them (often instead of native applications). Alex Husar introduces ways of how progressive web applications can be developed on Magento, as well as go over the major pros and cons of each development path.", + "link": "https://smashingmagazine.com/2021/11/magento-pwa-customizing-themes-coding/", + "publishedOn": "2021-11-02T12:00:00.000Z", + "wordCount": 5953, + "title": "Creating A Magento PWA: Customizing Themes vs. Coding From Scratch", + "enclosure": { + "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/77155632-96bd-44a8-af99-50ebad7534e6/magento-pwa-customizing-themes-coding.jpg", + "length": "0", + "type": "image/jpg" + } + }, { "id": "https://smashingmagazine.com/2021/10/desktop-wallpaper-calendars-november-2021/", "author": "hello@smashingmagazine.com (Cosima Mielke)", "description": "November is just around the corner, and with it, a new collection of desktop wallpapers to celebrate the beginning of the month. Designed by creatives from all across the globe, they come in versions with and without a calendar. Let’s make November colorful!", "link": "https://smashingmagazine.com/2021/10/desktop-wallpaper-calendars-november-2021/", "publishedOn": "2021-10-31T08:20:00.000Z", - "wordCount": 2379, + "wordCount": 2374, "title": "A Splash Of Color For Misty Days (November 2021 Desktop Wallpapers Edition)", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/7a2a341f-4f72-4716-91c6-ed6da6add2fd/nov-21-no-shave-november-preview-opt.png", @@ -183,7 +197,7 @@ "description": "Stop wasting time and effort writing copy that falls flat. Raise your copywriting game and boost your powers of persuasion with these rich and informative online resources.", "link": "https://smashingmagazine.com/2021/10/resources-tools-turbocharge-copywriting-skills/", "publishedOn": "2021-10-29T10:00:00.000Z", - "wordCount": 2505, + "wordCount": 2502, "title": "50 Resources And Tools To Turbocharge Your Copywriting Skills", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/376436ee-7e40-4d99-ad14-e934df9f92c9/resources-tools-turbocharge-copywriting-skills.jpg", @@ -197,7 +211,7 @@ "description": "The wealth of data that Amazon holds can make a huge difference when you’re designing a product or hunting for a bargain. But, how can a developer get that data? Simple, by using a web scraper. Here’s how to build your data extraction bot with Node.js.", "link": "https://smashingmagazine.com/2021/10/building-amazon-product-scraper-nodejs/", "publishedOn": "2021-10-28T11:00:00.000Z", - "wordCount": 3177, + "wordCount": 3162, "title": "How To Build An Amazon Product Scraper With Node.js", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/069a1796-0f8d-4936-bfc0-4aa988ef0594/building-amazon-product-scraper-nodejs.jpg", @@ -211,7 +225,7 @@ "description": "Thanks to technology, eye-tracking has become more accessible to UX research as it allows researchers to get insights about users ’visual attention. This article explores the latest trends in the eye-tracking market and how the methodology can be included in the UX researcher’s toolbox.", "link": "https://smashingmagazine.com/2021/10/eye-tracking-mobile-ux-research/", "publishedOn": "2021-10-27T10:00:00.000Z", - "wordCount": 3505, + "wordCount": 3516, "title": "Eye-Tracking In Mobile UX Research", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/3012986b-e407-4c49-8186-13a99528ef13/eye-tracking-mobile-ux-research.jpg", @@ -225,7 +239,7 @@ "description": "Nx is a build framework that facilitates optimization, efficient scaling of applications, and other features such as shared libraries and components. In this article, we will be looking at how we can effectively scale Next.js applications by using Nx.", "link": "https://smashingmagazine.com/2021/10/optimizing-nextjs-applications-nx/", "publishedOn": "2021-10-26T10:00:00.000Z", - "wordCount": 3029, + "wordCount": 3021, "title": "Optimizing Next.js Applications With Nx", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/32b5517f-415c-43ed-98a6-70215d408f7a/optimizing-nextjs-applications-nx.jpg", @@ -239,7 +253,7 @@ "description": "In this article, we will go through how `object-fit` and `background-size` work, when we can use them, and why, along with some practical use cases and recommendations. Let’s dive in.", "link": "https://smashingmagazine.com/2021/10/object-fit-background-size-css/", "publishedOn": "2021-10-25T13:00:00.000Z", - "wordCount": 2034, + "wordCount": 2032, "title": "A Deep Dive Into object-fit And background-size In CSS", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/19e7f717-46d5-4949-96f4-671f4744d0e1/object-fit-background-size-css.jpg", @@ -253,7 +267,7 @@ "description": "Quasar is an open-source Vue.js-based cross-platform framework that allows you, as a developer, to easily build apps for both desktop and mobile using technologies such as Cordova and Electron and writing your code once. The app we’ll build will store and get its data from Firebase, meaning that we will also be seeing how to use Firebase in Quasar.", "link": "https://smashingmagazine.com/2021/10/introduction-quasar-framework-cross-platform-applications/", "publishedOn": "2021-10-23T11:00:00.000Z", - "wordCount": 4928, + "wordCount": 4909, "title": "An Introduction To Quasar Framework: Building Cross-Platform Applications", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/e64d5e62-7c13-430a-90c6-f21b1c0325fe/introduction-quasar-framework-cross-platform-applications.jpg", @@ -267,7 +281,7 @@ "description": "This article highlights the process, technical decisions and lessons learned behind building the real-time game Autowuzzler. Learn how to share game state across multiple clients in real-time with Colyseus, do physics calculations with Matter.js, store data in Supabase.io and build the front-end with SvelteKit.", "link": "https://smashingmagazine.com/2021/10/real-time-multi-user-game/", "publishedOn": "2021-10-22T09:30:00.000Z", - "wordCount": 4638, + "wordCount": 4633, "title": "How To Build A Real-Time Multi-User Game From Scratch", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/f27da7cf-e0e3-4ed4-a845-6fd61fdb0e70/real-time-multi-user-game.jpg", @@ -281,7 +295,7 @@ "description": "The `prefers-reduced-motion` media query has excellent support in all modern browsers going back a couple of years. In this article, Michelle Barker explains why there’s no reason not to use it today to make your sites more accessible.", "link": "https://smashingmagazine.com/2021/10/respecting-users-motion-preferences/", "publishedOn": "2021-10-21T10:30:00.000Z", - "wordCount": 2885, + "wordCount": 2880, "title": "Respecting Users’ Motion Preferences", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/df53065e-5b99-4a67-ad0c-2cd67b07dc2a/respecting-users-motion-preferences.jpg", @@ -295,7 +309,7 @@ "description": "Back in January 2020, Ben Holmes set out to do what just about every web developer does each year: rebuild his personal site. In this article, he shares his story of how he set out to build his own build pipeline from absolute ground zero and created “Slinkity”.", "link": "https://smashingmagazine.com/2021/10/building-ssg-11ty-vite-jam-sandwich/", "publishedOn": "2021-10-20T11:00:00.000Z", - "wordCount": 5041, + "wordCount": 5038, "title": "Building The SSG I’ve Always Wanted: An 11ty, Vite And JAM Sandwich", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/1ff6275f-bf33-480f-bdd4-690e94f96314/building-ssg-11ty-vite-jam-sandwich.jpg", @@ -309,7 +323,7 @@ "description": "In this tutorial, Paul Scanlon explains how to build an API by using Gatsby Functions and what you need to keep in mind when deploying it to Gatsby Cloud.", "link": "https://smashingmagazine.com/2021/10/building-api-gatsby-functions/", "publishedOn": "2021-10-19T14:00:00.000Z", - "wordCount": 2524, + "wordCount": 2528, "title": "Building An API With Gatsby Functions", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/110c2aa7-7744-48d6-a234-9e67e903cbe5/building-api-gatsby-functions.jpg", @@ -337,7 +351,7 @@ "description": "Cumulative Layout Shift is one of the hardest core web vital to debug. In this article, we go through different tools to investigate CLS, when to use them(and when not), and solutions to some of the CLS issues we faced in our Next.js-based e-commerce website.", "link": "https://smashingmagazine.com/2021/10/nextjs-ecommerce-cls-case-study/", "publishedOn": "2021-10-18T14:00:00.000Z", - "wordCount": 2136, + "wordCount": 2126, "title": "Solving CLS Issues In A Next.js-Powered E-Commerce Website (Case Study)", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/8e522651-eaf2-45e7-a544-9da7beb7b23e/nextjs-ecommerce-cls-case-study.jpg", @@ -351,7 +365,7 @@ "description": "In this article, we’ll look at why taking care of our work-life balance is important, how to develop a simple and effective mental health routine, and the most common and efficient techniques you can use to make your custom routine.", "link": "https://smashingmagazine.com/2021/10/effective-mental-health-routine-programmers/", "publishedOn": "2021-10-16T10:00:00.000Z", - "wordCount": 2846, + "wordCount": 2841, "title": "A Simple But Effective Mental Health Routine For Programmers", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/c36dd2b2-f807-42a7-b8d1-9e6e9a00b3e7/effective-mental-health-routine-for-programmers.jpg", @@ -365,7 +379,7 @@ "description": "Customers may start using your app because you offer a unique product, but user experience is what makes them stay. For that, you need excellent UX designers, and the know-how to spot them when hiring.", "link": "https://smashingmagazine.com/2021/10/tips-tricks-evaluating-ux-ui-designers/", "publishedOn": "2021-10-15T13:00:00.000Z", - "wordCount": 4023, + "wordCount": 4020, "title": "Tips And Tricks For Evaluating UX/UI Designers", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/727cbd89-cbf4-4a29-af64-ac51d777ffba/tips-tricks-evaluating-ux-ui-designers.jpg", @@ -379,7 +393,7 @@ "description": "Writing CSS has probably never been more fun and exciting than it is today. In this post we’ll take a look at common problems and use cases we all have to face in our work and how to solve them with modern CSS. If you’re interested, we’ve also just recently covered [CSS auditing tools](https://www.smashingmagazine.com/2021/03/css-auditing-tools/), [CSS generators](https://www.smashingmagazine.com/2021/03/css-generators/), [front-end boilerplates](https://www.smashingmagazine.com/2021/06/useful-frontend-boilerplates-starter-kits/) and [VS code extensions](https://www.smashingmagazine.com/2021/05/useful-vs-code-extensions-web-developers/) — you might find them useful, too.", "link": "https://smashingmagazine.com/2021/10/modern-css-solutions-for-common-problems/", "publishedOn": "2021-10-14T12:00:00.000Z", - "wordCount": 3526, + "wordCount": 3520, "title": "Smart CSS Solutions For Common UI Challenges", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/e3bf0115-0bc9-41b7-b027-3ea8b6b7e848/transition-css-gradients-opt.png", @@ -407,7 +421,7 @@ "description": "React with JSX is a fantastic tool for making easy-to-use components. Typescript components make it an absolute pleasure for developers to integrate your components into their apps and explore your APIs. Learn about three lesser-known React APIs that can take your components to the next level, and help you build even better React Components in this article.", "link": "https://smashingmagazine.com/2021/10/react-apis-building-flexible-components-typescript/", "publishedOn": "2021-10-12T12:00:00.000Z", - "wordCount": 2353, + "wordCount": 2347, "title": "Useful React APIs For Building Flexible Components With TypeScript", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/8fbb65d7-6494-4494-9a78-099e178b83da/react-apis-building-flexible-components-typescript.jpg", @@ -435,7 +449,7 @@ "description": "A “dark pattern” is a deceptive UX pattern that tricks users into doing things they may not really want to do. In this article, Alvaro Montoro does a little experiment to find out how much privacy is taken away from users across three different browsers.", "link": "https://smashingmagazine.com/2021/10/autofill-dark-pattern/", "publishedOn": "2021-10-11T10:00:00.000Z", - "wordCount": 3742, + "wordCount": 3730, "title": "The Autofill Dark Pattern", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/8722ec01-912f-4013-8b8a-2ba0ab43cc20/autofill-dark-pattern.jpg", @@ -449,7 +463,7 @@ "description": "Most animation libraries like GSAP and Framer Motion are built purely with JavaScript or TypeScript, unlike AnimXYZ, which is labelled “the first composable CSS animation toolkit”, built mainly with SCSS While a simple library, it can be used to achieve a lot of awesome animation on the web in a short amount of time and little code.", "link": "https://smashingmagazine.com/2021/10/composable-css-animation-vue-animxyz/", "publishedOn": "2021-10-09T10:00:00.000Z", - "wordCount": 2815, + "wordCount": 2812, "title": "Composable CSS Animation In Vue With AnimXYZ", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/0b5365f4-e57d-4fa8-96ed-1742adb243ec/composable-css-animation-vue-animxyz.jpg", @@ -463,7 +477,7 @@ "description": "In this article, we’ll be building an interactive fiction experience in which a user can insert words that match parts of speech given by the content creator. Let’s go!", "link": "https://smashingmagazine.com/2021/10/static-first-madlib-generator-portable-text-netlify-builder-functions/", "publishedOn": "2021-10-08T10:00:00.000Z", - "wordCount": 7094, + "wordCount": 7098, "title": "Building A Static-First MadLib Generator With Portable Text And Netlify On-Demand Builder Functions", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/d9de142e-09f1-4257-99f5-606cc09b8c00/static-first-madlib-generator-portable-text-netlify-builder-functions.jpg", @@ -477,7 +491,7 @@ "description": "Every once in a while, we publish [freebies](https://www.smashingmagazine.com/category/freebies/) related to different occasions and themes. We hope that with this icon set, every designer will be able to find their own use case and contribute to saving lives. Free for personal and commercial use.", "link": "https://smashingmagazine.com/2021/10/freebie-coronavirus-icon-set/", "publishedOn": "2021-10-07T09:00:00.000Z", - "wordCount": 1007, + "wordCount": 1004, "title": "Freebie: COVID-19 Icon Set (56 Icons, AI, EPS, SVG, PNG)", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/ef22f452-44d9-49ae-94f9-c7f1c57a8378/coronavirus.png", @@ -491,7 +505,7 @@ "description": "Debugging in CSS means figuring out what might be the problem when you have unexpected layout results. We’ll look at a few categories bugs often fit into, see how we can evaluate the situation, and explore techniques that help prevent these bugs.", "link": "https://smashingmagazine.com/2021/10/guide-debugging-css/", "publishedOn": "2021-10-06T10:00:00.000Z", - "wordCount": 5476, + "wordCount": 5472, "title": "A Guide To CSS Debugging", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/334beb39-13a4-4159-ab77-86c7dac406d8/guide-debugging-css.jpg", @@ -505,27 +519,13 @@ "description": "Have you ever struggled with testing cloud services locally? Specifically, have you ever struggled with locally testing an API that uses API Gateway and Lambda, with the Serverless framework, on AWS? In this article, Tom Hudson shares a quick overview of how easy it is to quickly set up your project to test locally before deploying to AWS.", "link": "https://smashingmagazine.com/2021/10/local-testing-serverless-api-gateway-lambda/", "publishedOn": "2021-10-05T10:00:00.000Z", - "wordCount": 1795, + "wordCount": 1788, "title": "Local Testing A Serverless API (API Gateway And Lambda)", "enclosure": { "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/d43ff4a2-4767-4595-9f46-f1ca18f64060/local-testing-serverless-api-gateway-lambda.jpg", "length": "0", "type": "image/jpg" } - }, - { - "id": "https://smashingmagazine.com/2021/10/build-expandable-accessible-gallery/", - "author": "hello@smashingmagazine.com (Silvestar Bistrović)", - "description": "In this article, we’ll be looking at how to set up a gallery that is expandable as well as accessible with a few tips and tricks along the way. Let’s get started!", - "link": "https://smashingmagazine.com/2021/10/build-expandable-accessible-gallery/", - "publishedOn": "2021-10-04T10:00:00.000Z", - "wordCount": 2609, - "title": "How To Build An Expandable Accessible Gallery", - "enclosure": { - "url": "http://cloud.netlifyusercontent.com/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/8271f985-0b13-4db2-afd6-3f6026272fc2/build-expandable-accessible-gallery.jpg", - "length": "0", - "type": "image/jpg" - } } ] }, @@ -534,6 +534,42 @@ "feedUrl": "https://www.freecodecamp.org/news/rss/", "siteUrl": "https://www.freecodecamp.org/news", "articles": [ + { + "id": "617fffad8bcfae07ca4df6d2", + "author": null, + "description": "Apple devices work well and connect readily with other Apple devices. But they have a hard time communicating with devices running other operating systems like Windows and Linux. If you have both Apple and Windows devices, you might want to share files between them over a local network. And this", + "link": "https://www.freecodecamp.org/news/what-is-bonjour-on-my-computer/", + "publishedOn": "2021-11-02T18:23:02.000Z", + "wordCount": 1000, + "title": "What is Bonjour on my Computer? Windows 10 Bonjour Program PC Guide" + }, + { + "id": "61810f888bcfae07ca4e007b", + "author": null, + "description": "If your work requires a lot of precision, like graphic design and gaming, then you might want to adjust how fast or slow your external mouse or keyboard is. In this guide, I will show you how you can make your mouse more sensitive or less sensitive by changing its", + "link": "https://www.freecodecamp.org/news/how-to-change-mouse-dpi-settings-in-windows-10/", + "publishedOn": "2021-11-02T17:05:06.000Z", + "wordCount": 553, + "title": "How to Change Mouse DPI Settings in Windows 10" + }, + { + "id": "61653c74804854468fda9148", + "author": null, + "description": "As someone who offers a service as a freelancer, you have a major say in how you price a website project. But how do you go about charging for a website project? Sure, you can bill by the hour, but is there a better way? In this article, we are", + "link": "https://www.freecodecamp.org/news/different-ways-to-charge-for-a-website/", + "publishedOn": "2021-11-02T16:37:58.000Z", + "wordCount": 2312, + "title": "The Different Ways to Charge for a Website Project – Freelance Developer Guide" + }, + { + "id": "617ce33033422e07df3678a3", + "author": null, + "description": "In this article we will talk about Browser extensions – what they are, how they work, and how you can build your own. We will finish by actually writing our own extension (Super Fun!) which allows us to copy any code snippet to our clipboard with a click of a single", + "link": "https://www.freecodecamp.org/news/write-your-own-browser-extensions/", + "publishedOn": "2021-11-02T15:57:40.000Z", + "wordCount": 1529, + "title": "How to Write Your Own Browser Extension [Example Project Included]" + }, { "id": "613f3cba852f4307d372c7e0", "author": null, @@ -587,42 +623,6 @@ "publishedOn": "2021-11-01T15:47:46.000Z", "wordCount": 1378, "title": "How to Use CodePen – A Beginner's Guide" - }, - { - "id": "6176aeb3d48e1707b6d7b0ab", - "author": null, - "description": "The modern age of Web Development is incredible. We have a plethora of frameworks and libraries to help us work more efficiently, tons of quality resources to learn from, and numerous projects to inspire us. My decade-long journey as a web developer may not be very different from many of", - "link": "https://www.freecodecamp.org/news/how-to-improve-your-web-development-workflow/", - "publishedOn": "2021-11-01T15:47:31.000Z", - "wordCount": 1588, - "title": "How to Improve and Automate Your Web Development Workflow" - }, - { - "id": "61353325d6679a07b7d4318c", - "author": null, - "description": "Hello everyone, today we will talk about Ansible, a fantastic software tool that allows you to automate cross-platform computer support in a simple but effective way. Table of Contents What is Ansible? How Does Ansible Work? Ansible's Architecture Plugins Modules Inventories Playbook Benefits of Using Ansible Why is Ansible so", - "link": "https://www.freecodecamp.org/news/what-is-ansible/", - "publishedOn": "2021-10-29T20:42:16.000Z", - "wordCount": 1647, - "title": "What is Ansible? A Tool to Automate Parts of Your Job" - }, - { - "id": "6178555333422e07df364ee9", - "author": null, - "description": "Many developers have written a demo login application at some point in time. We all start with the simple user defined ID and password. We then try to implement something like a social login with, say, Google or Twitter. There is, of course, a more complex process involved in setting", - "link": "https://www.freecodecamp.org/news/how-to-use-social-login-with-oauth-for-more-secure-apps/", - "publishedOn": "2021-10-29T14:50:00.000Z", - "wordCount": 985, - "title": "How to Use Social Login with OAuth to Make Your Apps More Secure" - }, - { - "id": "617a55f533422e07df366544", - "author": null, - "description": "React.js is a scalable open-source JavaScript library and is one of the most commonly used front-end frameworks out there today. It's dynamic and is easy to get started with if you want to create interactive web applications with reusable components. There are lots of reasons to use React.js", - "link": "https://www.freecodecamp.org/news/best-practices-for-security-of-your-react-js-application/", - "publishedOn": "2021-10-28T23:44:02.000Z", - "wordCount": 2235, - "title": "How to Secure Your React.js Application" } ] } diff --git a/feed.atom b/feed.atom index 2f700bc..03e417f 100644 --- a/feed.atom +++ b/feed.atom @@ -1,10 +1,113 @@ - urn:2021-11-02T00:45:18.677Z + urn:2021-11-03T00:41:26.047Z osmos::feed - 2021-11-02T00:45:18.677Z + 2021-11-03T00:41:26.047Z osmosfeed 1.11.3 + + <![CDATA[Proxying Third-Party JavaScript as First-Party JavaScript (and the Potential Effect on Analytics)]]> + https://css-tricks.com/?p=354619 + + 2021-11-02T22:50:37.000Z + + + Chris Coyier + + + + <![CDATA[GUI Challenges]]> + https://css-tricks.com/?p=355016 + + 2021-11-02T21:28:22.000Z + + + Chris Coyier + + + + <![CDATA[What is Bonjour on my Computer? Windows 10 Bonjour Program PC Guide]]> + 617fffad8bcfae07ca4df6d2 + + 2021-11-02T18:23:02.000Z + + + freeCodeCamp.org + + + + <![CDATA[How to Change Mouse DPI Settings in Windows 10]]> + 61810f888bcfae07ca4e007b + + 2021-11-02T17:05:06.000Z + + + freeCodeCamp.org + + + + <![CDATA[The Different Ways to Charge for a Website Project – Freelance Developer Guide]]> + 61653c74804854468fda9148 + + 2021-11-02T16:37:58.000Z + + + freeCodeCamp.org + + + + <![CDATA[How to Write Your Own Browser Extension [Example Project Included]]]> + 617ce33033422e07df3678a3 + + 2021-11-02T15:57:40.000Z + + + freeCodeCamp.org + + + + <![CDATA[Rebase vs. Merge: Integrating Changes in Git]]> + https://css-tricks.com/?p=354734 + + 2021-11-02T14:19:12.000Z + + + Tobias Günther + + + + <![CDATA[Responsible JavaScript]]> + https://css-tricks.com/?p=355395 + + 2021-11-02T14:17:55.000Z + + + Chris Coyier + + + + <![CDATA[Creating A Magento PWA: Customizing Themes vs. Coding From Scratch]]> + https://smashingmagazine.com/2021/11/magento-pwa-customizing-themes-coding/ + + 2021-11-02T12:00:00.000Z + + + hello@smashingmagazine.com (Alex Husar) + + <![CDATA[Buttons vs. Links]]> https://css-tricks.com/?p=354978 @@ -89,16 +192,6 @@ The post Have Single-Page Apps Ruined the Web? (“Transitional Apps”) appeare freeCodeCamp.org - - <![CDATA[How to Improve and Automate Your Web Development Workflow]]> - 6176aeb3d48e1707b6d7b0ab - - 2021-11-01T15:47:31.000Z - - - freeCodeCamp.org - - <![CDATA[So, You Want to Build an @mention Autocomplete Feature?]]> https://css-tricks.com/?p=354588 @@ -131,16 +224,6 @@ The post CSS-ing Candy Ghost Buttons appeared first on CSS-Tricks. You can suppo hello@smashingmagazine.com (Cosima Mielke) - - <![CDATA[What is Ansible? A Tool to Automate Parts of Your Job]]> - 61353325d6679a07b7d4318c - - 2021-10-29T20:42:16.000Z - - - freeCodeCamp.org - - <![CDATA[Some Articles About Accessibility I’ve Saved Recently IV]]> https://css-tricks.com/?p=354581 @@ -153,16 +236,6 @@ The post Some Articles About Accessibility I’ve Saved Recently IV appeared fir Chris Coyier - - <![CDATA[How to Use Social Login with OAuth to Make Your Apps More Secure]]> - 6178555333422e07df364ee9 - - 2021-10-29T14:50:00.000Z - - - freeCodeCamp.org - - <![CDATA[Create Your Own Automated Social Images With Resoc]]> https://css-tricks.com/?p=354296 @@ -184,16 +257,6 @@ The post Create Your Own Automated Social Images With Resoc appeared first on CS hello@smashingmagazine.com (Freya Giles) - - <![CDATA[How to Secure Your React.js Application]]> - 617a55f533422e07df366544 - - 2021-10-28T23:44:02.000Z - - - freeCodeCamp.org - - <![CDATA[Okhsv and Okhsl]]> https://css-tricks.com/?p=354922 @@ -260,30 +323,6 @@ The post Sticky Definition Lists appeared first on CSS-Tricks. You can support C Chris Coyier - - <![CDATA[How to Implement and Style the Dialog Element]]> - https://css-tricks.com/?p=354857 - - 2021-10-27T20:17:48.000Z - HTML element and using it to create a nice-looking and accessible modal. -CodePen Embed Fallback -I’m attracted to the element as it’s one of those “you get a lot for free” … -The post How to Implement and Style the Dialog Element appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]> - - Chris Coyier - - - - <![CDATA[Testing Vue Components With Cypress]]> - https://css-tricks.com/?p=353842 - - 2021-10-27T14:25:04.000Z - - - Mark Noonan - - <![CDATA[Eye-Tracking In Mobile UX Research]]> https://smashingmagazine.com/2021/10/eye-tracking-mobile-ux-research/ @@ -294,30 +333,6 @@ The post Testing Vue Components With Cypress appeared first on CSS-Tricks. You c hello@smashingmagazine.com (Mariana Macedo) - - <![CDATA[On Browser-Specific URL Schemes]]> - https://css-tricks.com/?p=354365 - - 2021-10-26T20:06:29.000Z - - - Chris Coyier - - - - <![CDATA[In-Page Filtered Search With Vanilla JavaScript]]> - https://css-tricks.com/?p=353747 - - 2021-10-26T14:11:59.000Z - - - Hilman Ramadhan - - <![CDATA[Optimizing Next.js Applications With Nx]]> https://smashingmagazine.com/2021/10/optimizing-nextjs-applications-nx/ @@ -540,14 +555,4 @@ Thank you: @hirdot]]> hello@smashingmagazine.com (Tom Hudson) - - <![CDATA[How To Build An Expandable Accessible Gallery]]> - https://smashingmagazine.com/2021/10/build-expandable-accessible-gallery/ - - 2021-10-04T10:00:00.000Z - - - hello@smashingmagazine.com (Silvestar Bistrović) - - \ No newline at end of file diff --git a/index.html b/index.html index f13a8b6..9ae954d 100644 --- a/index.html +++ b/index.html @@ -15,6 +15,141 @@ +
+

+ +

@@ -215,34 +339,6 @@ The post Create Your Own Automated Social Images With Resoc appeared first on CS -
  • -
    -

    freeCodeCamp.org

    -
    - - -
    -
  • Articles on Smashing Magazine — For Web Designers And Developers

    @@ -320,23 +416,6 @@ The post Building an Angular Data Grid With Filtering appeared first on CSS-Tric
  • -
  • -
    -

    freeCodeCamp.org

    -
    - -
    -
  • Articles on Smashing Magazine — For Web Designers And Developers

    @@ -375,32 +454,6 @@ The post Sticky Definition Lists appeared first on CSS-Tricks. You can support C - -
  • @@ -425,38 +478,6 @@ The post Testing Vue Components With Cypress appeared first on CSS-Tricks. You c

    -
    -

    - -