osmosfeed-template/feed.atom
2021-11-14 00:43:25 +00:00

545 lines
No EOL
39 KiB
XML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<id>urn:2021-11-14T00:43:25.202Z</id>
<title>osmos::feed</title>
<updated>2021-11-14T00:43:25.202Z</updated>
<generator>osmosfeed 1.11.3</generator>
<link rel="alternate" href="index.html"/>
<entry>
<title type="html"><![CDATA[Other Looks at the Conditional Border Radius Trick]]></title>
<id>https://css-tricks.com/?p=356304</id>
<link href="https://css-tricks.com/other-looks-at-the-conditional-border-radius-trick/"/>
<updated>2021-11-12T23:54:00.000Z</updated>
<summary type="html"><![CDATA[Remember when Ahmad Shadeed wrote about that border-radius “toggle” he found in Facebooks CSS? It was interesting! I covered it. A few weeks after that surge of linkage, a couple of articles came out digging into it a little deeper. …
The post Other Looks at the Conditional Border Radius Trick 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 Write Good Commit Messages with Commitlint]]></title>
<id>618deac811d3cb08287a4ba3</id>
<link href="https://www.freecodecamp.org/news/how-to-use-commitlint-to-write-good-commit-messages/"/>
<updated>2021-11-12T20:11:06.000Z</updated>
<summary type="html"><![CDATA[We are often in a hurry to commit our changes in Git and so we write something random in our commit messages. In fact, I have seen people putting the date and time or even something like commit 1, commit 2 in their messages. This is not a good practice,]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Why Does my WiFi Keep Disconnecting? [Solved on Windows 10 PC]]]></title>
<id>618e136011d3cb08287a4c71</id>
<link href="https://www.freecodecamp.org/news/why-does-my-wifi-keep-disconnecting-solved-on-windows-10-pc/"/>
<updated>2021-11-12T17:47:24.000Z</updated>
<summary type="html"><![CDATA[When you're using your Windows machine, your WiFi might unexpectedly disconnect. This might be caused by various problems such as an outdated network adapter driver, outdated router software, and optimized power management in Windows 10. If your WiFi keeps disconnecting and you're looking for a solution, you've come to the]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Interactive Rebase: Clean up your Commit History]]></title>
<id>https://css-tricks.com/?p=355658</id>
<link href="https://css-tricks.com/interactive-rebase-clean-up-your-commit-history/"/>
<updated>2021-11-12T15:16:24.000Z</updated>
<summary type="html"><![CDATA[Interactive Rebase is the Swiss Army knife of Git commands: lots of use cases and lots of possibilities! It's really a great addition to any developer's tool chain, because it lets you revise your local commit history—before you share your work with the rest of the team. Let's see what you can do with an interactive rebase and then look at some practical examples.
The post Interactive Rebase: Clean up your Commit History appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
<author>
<name>Tobias Günther</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Useful React Hooks That You Can Use In Your Projects]]></title>
<id>https://smashingmagazine.com/2021/11/useful-react-hooks/</id>
<link href="https://smashingmagazine.com/2021/11/useful-react-hooks/"/>
<updated>2021-11-12T10:00:00.000Z</updated>
<summary type="html"><![CDATA[The React team introduced several hooks in React 16.8 which you can use from third-party providers in your application, or even create your own custom hook. In this tutorial, well take a look at some of the most useful hooks in React and how to use them.]]></summary>
<author>
<name>hello@smashingmagazine.com (Ifeanyi Dike)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Semantic menu context]]></title>
<id>https://css-tricks.com/?p=356652</id>
<link href="https://css-tricks.com/semantic-menu-context/"/>
<updated>2021-11-11T20:07:40.000Z</updated>
<summary type="html"><![CDATA[Scott digs into the history of the <menu> element. He traced it as far back as HTML 2 (!) in a 1994 changelog. The vibe then, it seems, was to mark up a list. I would suspect the intention …
The post Semantic menu context 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 Set Up Laravel 8 on Your Android Phone]]></title>
<id>618b035411d3cb08287a3f7d</id>
<link href="https://www.freecodecamp.org/news/how-to-setup-laravel-8-on-android-phone/"/>
<updated>2021-11-11T16:34:04.000Z</updated>
<summary type="html"><![CDATA[Hey, how are you doing? In this article, I'm going to show you how you can install Laravel 8 on your phone. To get the most out of this guide, you should have some knowledge of PHP and you should know what Laravel is. But if you don't, don't worry]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[What is Hoisting in JavaScript?]]></title>
<id>618ca60511d3cb08287a474b</id>
<link href="https://www.freecodecamp.org/news/what-is-hoisting-in-javascript/"/>
<updated>2021-11-11T16:12:59.000Z</updated>
<summary type="html"><![CDATA[In JavaScript, hoisting allows you to use functions and variables before they're declared. In this post, we'll learn what hoisting is and how it works. What is hoisting?Take a look at the code below and guess what happens when it runs: console.log(foo); var foo = 'foo'; It might]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[How to Dockerize a Flask Application]]></title>
<id>618a1b968bcfae07ca4e3a16</id>
<link href="https://www.freecodecamp.org/news/how-to-dockerize-a-flask-app/"/>
<updated>2021-11-11T16:04:40.000Z</updated>
<summary type="html"><![CDATA[These days, developers need to develop, ship, and run applications quicker than ever. And fortunately, there's a tool that helps you do that  Docker. With Docker, you can now easily ship, test, and deploy your code quickly while maintaining full control over your infrastructure. It significantly reduces how long it]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Easy Dark Mode (and Multiple Color Themes!) in React]]></title>
<id>https://css-tricks.com/?p=355683</id>
<link href="https://css-tricks.com/easy-dark-mode-and-multiple-color-themes-in-react/"/>
<updated>2021-11-11T15:28:04.000Z</updated>
<summary type="html"><![CDATA[I was working on a large React application for a startup, and aside from just wanting some good strategies to keep our styles organized, I wanted to give this whole “dark mode” thing a shot. With the huge ecosystem around …
The post Easy Dark Mode (and Multiple Color Themes!) in React appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
<author>
<name>Abram Thau</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Quickly Get Alerted to Front-End Errors and Performance Issues]]></title>
<id>https://css-tricks.com/?p=355516</id>
<link href="https://css-tricks.com/quickly-get-alerted-to-front-end-errors-and-performance-issues/"/>
<updated>2021-11-11T15:22:31.000Z</updated>
<summary type="html"><![CDATA[(This is a sponsored post.)
Measuring things is great. They say what you only fix what you measure. Raygun is great at measuring websites. Measuring performance, measuring errors and crashes, measuring code problems.
You know whats even better than …
The post Quickly Get Alerted to Front-End Errors and Performance Issues 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[From Good To Great In Dashboard Design: Research, Decluttering And Data Viz]]></title>
<id>https://smashingmagazine.com/2021/11/dashboard-design-research-decluttering-data-viz/</id>
<link href="https://smashingmagazine.com/2021/11/dashboard-design-research-decluttering-data-viz/"/>
<updated>2021-11-11T14:00:00.000Z</updated>
<summary type="html"><![CDATA[Dribbbleshots just might be the hotbed of questionable dashboards. Striking visuals, little context, and no research: all recipes for mediocrity. Mediocrity wont do. Well pursue greatness. And in that pursuit, well cover research, decluttering, and data visualization.]]></summary>
<author>
<name>hello@smashingmagazine.com (Adam Fard)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Dont Snore on CORS]]></title>
<id>https://css-tricks.com/?p=356058</id>
<link href="https://css-tricks.com/dont-snore-on-cors/"/>
<updated>2021-11-10T22:38:05.000Z</updated>
<summary type="html"><![CDATA[Whatever, I just needed a title. Everyones favorite web security feature has crossed my desk a bunch of times lately and I always feel like that is a sign I should write something because thats what blogging is.
The main …
The post Dont Snore on CORS 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[What is a PC? Computer Definition and Computer Basics for Beginners]]></title>
<id>6189613e8bcfae07ca4e3967</id>
<link href="https://www.freecodecamp.org/news/what-is-a-pc-computer-definition-and-computer-basics-for-beginners/"/>
<updated>2021-11-10T18:35:08.000Z</updated>
<summary type="html"><![CDATA[Computers have revolutionized our lives. They help us get repetitive tasks done quickly and accurately. And they are tireless and do not fear complexity. Computers are able to process data and perform operations at a rate of millions per second. They can get a task done much faster compared to]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[No Audio Output Device is Installed [Fixed on Windows 10 PC]]]></title>
<id>618bf06d11d3cb08287a4450</id>
<link href="https://www.freecodecamp.org/news/no-audio-output-device-is-installed-fixed-on-windows-10-pc/"/>
<updated>2021-11-10T18:27:53.000Z</updated>
<summary type="html"><![CDATA[If you use Windows 10, you might have encountered the error "no audio output device is installed". This error can be caused by a corrupt driver, overdue updates, or improper connection. In this article, I will show you 2 ways you can fix the "no audio output]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Python Reverse String String Reversal in Python Explained with Examples]]></title>
<id>615eb0160d91c9077974e918</id>
<link href="https://www.freecodecamp.org/news/python-reverse-string-string-reversal-in-python-explained-with-code-examples/"/>
<updated>2021-11-10T16:40:09.000Z</updated>
<summary type="html"><![CDATA[When you're working with Python strings, there are times when you'll have to reverse them, and work with their reversed copies instead. But since Python strings are immutable, you cannot modify or reverse them in place. In Python, there are a few different ways you can do this. And this]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Array vs Object Destructuring in JavaScript Whats the Difference?]]></title>
<id>61695ddc80d82d07c45a5220</id>
<link href="https://www.freecodecamp.org/news/array-vs-object-destructuring-in-javascript/"/>
<updated>2021-11-10T16:24:16.000Z</updated>
<summary type="html"><![CDATA[The destructuring assignment in JavaScript provides a neat and DRY way to extract values from your arrays and objects. This article aims to show you exactly how array and object destructuring assignments work in JavaScript. So, without any further ado, lets get started with array destructuring. What Is Array]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[React Authentication Tutorial How to Set Up Auth with Firebase V9 and React Router V6]]></title>
<id>618671f48bcfae07ca4e299e</id>
<link href="https://www.freecodecamp.org/news/react-firebase-authentication-and-crud-operations/"/>
<updated>2021-11-10T16:22:43.000Z</updated>
<summary type="html"><![CDATA[Hey everyone, in this tutorial we'll use React with Firebase V9 to setup authentication for an application. We will create Firebase functions for Login and Register, we will add toast messages for errors, and we will add private routes using session-based authentication. It's going to be fun. We will use]]></summary>
<author>
<name>freeCodeCamp.org</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Quick and Dirty Bootstrap Overrides at Runtime]]></title>
<id>https://css-tricks.com/?p=355649</id>
<link href="https://css-tricks.com/quick-and-dirty-bootstrap-overrides-at-runtime/"/>
<updated>2021-11-10T15:00:29.000Z</updated>
<summary type="html"><![CDATA[Oh, Bootstrap, that old standard web library that either you hate or you spend all your time defending as “its fine, its not that bad.” Regardless of what side you fall on, its a powerful UI framework thats everywhere, …
The post Quick and Dirty Bootstrap Overrides at Runtime appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
<author>
<name>Meredith Matthews</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[cleanup.pictures]]></title>
<id>https://css-tricks.com/?p=356208</id>
<link href="https://css-tricks.com/cleanup-pictures/"/>
<updated>2021-11-10T14:55:26.000Z</updated>
<summary type="html"><![CDATA[Nice domain, eh? Does just what it says on the tin: cleans up pictures. You draw over areas of the image you want cleaned up, and it does its best using weird science. Its like Photoshops Spot Healing Brush…
The post cleanup.pictures 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[Detecting Specific Text Input with HTML and CSS]]></title>
<id>https://css-tricks.com/?p=356142</id>
<link href="https://css-tricks.com/detecting-specific-text-input-with-html-and-css/"/>
<updated>2021-11-09T22:53:45.000Z</updated>
<summary type="html"><![CDATA[Louis Lazaris breaks down some bonafide CSS trickery from Jane. The Pen shows off interactivity where:
You have to press a special combination of keys on a keyboard.
Then type a secret password.
From there, a special message pops …
The post Detecting Specific Text Input with HTML and CSS 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[VideoPress for WordPress]]></title>
<id>https://css-tricks.com/?p=356370</id>
<link href="https://css-tricks.com/videopress-for-wordpress/"/>
<updated>2021-11-09T22:53:18.000Z</updated>
<summary type="html"><![CDATA[(This is a sponsored post.)
The leade here is that VideoPress makes video on WordPress way better. VideoPress is a part of Jetpack. And now, if VideoPress is the only thing you care about from the Jetpack world, you …
The post VideoPress for WordPress 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[React Suspense: Lessons Learned While Loading Data]]></title>
<id>https://css-tricks.com/?p=356187</id>
<link href="https://css-tricks.com/react-suspense-lessons-learned-while-loading-data/"/>
<updated>2021-11-09T15:20:10.000Z</updated>
<summary type="html"><![CDATA[Suspense is Reacts forthcoming feature that helps coordinate asynchronous actions—like data loading—allowing you to easily prevent inconsistent state in your UI. Ill provide a better explanation of what exactly that means, along with a quick introduction of Suspense, and then …
The post React Suspense: Lessons Learned While Loading Data appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
<author>
<name>Adam Rackis</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Localizing Your Next.js App]]></title>
<id>https://smashingmagazine.com/2021/11/localizing-your-nextjs-app/</id>
<link href="https://smashingmagazine.com/2021/11/localizing-your-nextjs-app/"/>
<updated>2021-11-09T13:00:00.000Z</updated>
<summary type="html"><![CDATA[Internationalized routing is not exactly a new feature on Next.js. In this article, we are not only checking what we get from this feature, but also how to leverage such functionalities to achieve the best user experience and a smooth developer experience as well.]]></summary>
<author>
<name>hello@smashingmagazine.com (Átila Fassina)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Automatically Transforming And Optimizing Images And Videos On Your WordPress Website]]></title>
<id>https://smashingmagazine.com/2021/11/transforming-optimizing-images-videos-wordpress-website/</id>
<link href="https://smashingmagazine.com/2021/11/transforming-optimizing-images-videos-wordpress-website/"/>
<updated>2021-11-09T09:30:00.000Z</updated>
<summary type="html"><![CDATA[In this article, Leonardo Losoviz explains how Cloudinarys integration can be used with WordPress to produce and deliver optimal digital experiences.]]></summary>
<author>
<name>hello@smashingmagazine.com (Leonardo Losoviz)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[CSS Grid Can Do Auto Height Transitions]]></title>
<id>https://css-tricks.com/?p=356204</id>
<link href="https://css-tricks.com/css-grid-can-do-auto-height-transitions/"/>
<updated>2021-11-08T19:01:31.000Z</updated>
<summary type="html"><![CDATA[Bonafide CSS trick alert! Nelson Menezes figured out a new way (that only works in Firefox for now) that is awfully clever.
Perhaps you know that CSS cannot animate to auto dimensions, which is super unfortunate. Animating from …
The post CSS Grid Can Do Auto Height Transitions 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[Icon Glassmorphism Effect in CSS]]></title>
<id>https://css-tricks.com/?p=322098</id>
<link href="https://css-tricks.com/icon-glassmorphism-effect-in-css/"/>
<updated>2021-11-08T14:57:42.000Z</updated>
<summary type="html"><![CDATA[I recently came across a cool effect known as glassmorphism in a Dribble shot. My first thought was I could quickly recreate it in a few minutes if I just use some emojis for the icons without wasting time …
The post Icon Glassmorphism Effect in CSS appeared first on CSS-Tricks. You can support CSS-Tricks by being an MVP Supporter.]]></summary>
<author>
<name>Ana Tudor</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Does the Next Generation of Static Site Generators Make Building Sites Better?]]></title>
<id>https://css-tricks.com/?p=356134</id>
<link href="https://css-tricks.com/does-the-next-generation-of-static-site-generators-make-building-sites-better/"/>
<updated>2021-11-08T14:56:23.000Z</updated>
<summary type="html"><![CDATA[Just ran across îles, a new static site generator mostly centered around Vue. The world has no particular shortage of static site generators, but its interesting to see what this “next generation” of SSGs seem to focus on or …
The post Does the Next Generation of Static Site Generators Make Building Sites Better? 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[Meet Hydrogen: A React Framework For Dynamic, Contextual And Personalized E-Commerce]]></title>
<id>https://smashingmagazine.com/2021/11/hydrogen-react-framework-dynamic-contextual-personalized-ecommerce/</id>
<link href="https://smashingmagazine.com/2021/11/hydrogen-react-framework-dynamic-contextual-personalized-ecommerce/"/>
<updated>2021-11-08T14:30:00.000Z</updated>
<summary type="html"><![CDATA[A great commerce experience is not a Lighthouse score or a set of Core Web Vitals figures (although both are important inputs), but its also a trilemma that carefully balances competing needs of delivering a great customer experience, dynamic storefront capabilities and long-term business objectives.]]></summary>
<author>
<name>hello@smashingmagazine.com (Ilya Grigorik)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Favicons: How to Make Sure Browsers Only Download the SVG Version]]></title>
<id>https://css-tricks.com/?p=355780</id>
<link href="https://css-tricks.com/favicons-how-to-make-sure-browsers-only-download-the-svg-version/"/>
<updated>2021-11-05T20:47:32.000Z</updated>
<summary type="html"><![CDATA[Šime Vidas DMd me the other day about this thread from subzey on Twitter. My HTML for favicons was like this:
<!-- Warning! Typo! --<link rel="icon" href="/favicon.ico" size="any"<link rel="icon" href="/favicon.svg" type="image/svg+xml"
The attribute size is a typo there, …
The post Favicons: How to Make Sure Browsers Only Download the SVG Version 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 Value Of Concept Testing As Part Of Product Design]]></title>
<id>https://smashingmagazine.com/2021/11/concept-testing-part-of-product-design/</id>
<link href="https://smashingmagazine.com/2021/11/concept-testing-part-of-product-design/"/>
<updated>2021-11-05T11:00:00.000Z</updated>
<summary type="html"><![CDATA[Concept testing ideas before moving into a detailed design is good UX practice. In this article, Victor Yocco presents details on how and when to engage in concept testing, as well as case studies providing details on the insights gained in two very different settings.]]></summary>
<author>
<name>hello@smashingmagazine.com (Victor Yocco)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Smashing Podcast Episode 43 With Matthew Phillips: What Is Astro?]]></title>
<id>https://smashingmagazine.com/2021/11/smashing-podcast-episode-43/</id>
<link href="https://smashingmagazine.com/2021/11/smashing-podcast-episode-43/"/>
<updated>2021-11-04T18:00:00.000Z</updated>
<summary type="html"><![CDATA[In this episode, were talking about Astro. Will this modern static site builder launch you into the stratosphere? Drew McLellan talks to developer Matthew Phillips to find out.]]></summary>
<author>
<name>hello@smashingmagazine.com (Drew McLellan)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[GraphQL On The Front-End (React And Apollo)]]></title>
<id>https://smashingmagazine.com/2021/11/graphql-frontend-react-apollo/</id>
<link href="https://smashingmagazine.com/2021/11/graphql-frontend-react-apollo/"/>
<updated>2021-11-04T11:30:00.000Z</updated>
<summary type="html"><![CDATA[Within the last decade, technologies like GraphQL have changed how we build web apps and how they communicate with each other. GraphQL provides certain benefits over REST APIs — lets find out what they are.]]></summary>
<author>
<name>hello@smashingmagazine.com (David Atanda)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[A Deep Dive Into Serverless UI With TypeScript]]></title>
<id>https://smashingmagazine.com/2021/11/deep-dive-into-serverless-ui-typescript/</id>
<link href="https://smashingmagazine.com/2021/11/deep-dive-into-serverless-ui-typescript/"/>
<updated>2021-11-03T11:30:00.000Z</updated>
<summary type="html"><![CDATA[Serverless UI is simply a free, open-source command-line utility for quickly building and deploying serverless applications on the AWS platform. In this article, we will learn and cover everything needed on using Serverless UI to deploy our projects or serverless applications to cloud services providers.]]></summary>
<author>
<name>hello@smashingmagazine.com (Ikeh Akinyemi)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Creating A Magento PWA: Customizing Themes vs. Coding From Scratch]]></title>
<id>https://smashingmagazine.com/2021/11/magento-pwa-customizing-themes-coding/</id>
<link href="https://smashingmagazine.com/2021/11/magento-pwa-customizing-themes-coding/"/>
<updated>2021-11-02T12:00:00.000Z</updated>
<summary type="html"><![CDATA[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.]]></summary>
<author>
<name>hello@smashingmagazine.com (Alex Husar)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[A Splash Of Color For Misty Days (November 2021 Desktop Wallpapers Edition)]]></title>
<id>https://smashingmagazine.com/2021/10/desktop-wallpaper-calendars-november-2021/</id>
<link href="https://smashingmagazine.com/2021/10/desktop-wallpaper-calendars-november-2021/"/>
<updated>2021-10-31T08:20:00.000Z</updated>
<summary type="html"><![CDATA[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. Lets make November colorful!]]></summary>
<author>
<name>hello@smashingmagazine.com (Cosima Mielke)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[50 Resources And Tools To Turbocharge Your Copywriting Skills]]></title>
<id>https://smashingmagazine.com/2021/10/resources-tools-turbocharge-copywriting-skills/</id>
<link href="https://smashingmagazine.com/2021/10/resources-tools-turbocharge-copywriting-skills/"/>
<updated>2021-10-29T10:00:00.000Z</updated>
<summary type="html"><![CDATA[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.]]></summary>
<author>
<name>hello@smashingmagazine.com (Freya Giles)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[How To Build An Amazon Product Scraper With Node.js]]></title>
<id>https://smashingmagazine.com/2021/10/building-amazon-product-scraper-nodejs/</id>
<link href="https://smashingmagazine.com/2021/10/building-amazon-product-scraper-nodejs/"/>
<updated>2021-10-28T11:00:00.000Z</updated>
<summary type="html"><![CDATA[The wealth of data that Amazon holds can make a huge difference when youre designing a product or hunting for a bargain. But, how can a developer get that data? Simple, by using a web scraper. Heres how to build your data extraction bot with Node.js.]]></summary>
<author>
<name>hello@smashingmagazine.com (Robert Sfichi)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Eye-Tracking In Mobile UX Research]]></title>
<id>https://smashingmagazine.com/2021/10/eye-tracking-mobile-ux-research/</id>
<link href="https://smashingmagazine.com/2021/10/eye-tracking-mobile-ux-research/"/>
<updated>2021-10-27T10:00:00.000Z</updated>
<summary type="html"><![CDATA[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 researchers toolbox.]]></summary>
<author>
<name>hello@smashingmagazine.com (Mariana Macedo)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Optimizing Next.js Applications With Nx]]></title>
<id>https://smashingmagazine.com/2021/10/optimizing-nextjs-applications-nx/</id>
<link href="https://smashingmagazine.com/2021/10/optimizing-nextjs-applications-nx/"/>
<updated>2021-10-26T10:00:00.000Z</updated>
<summary type="html"><![CDATA[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.]]></summary>
<author>
<name>hello@smashingmagazine.com (Melvin Kosisochukwu)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[A Deep Dive Into object-fit And background-size In CSS]]></title>
<id>https://smashingmagazine.com/2021/10/object-fit-background-size-css/</id>
<link href="https://smashingmagazine.com/2021/10/object-fit-background-size-css/"/>
<updated>2021-10-25T13:00:00.000Z</updated>
<summary type="html"><![CDATA[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. Lets dive in.]]></summary>
<author>
<name>hello@smashingmagazine.com (Ahmad Shadeed)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[An Introduction To Quasar Framework: Building Cross-Platform Applications]]></title>
<id>https://smashingmagazine.com/2021/10/introduction-quasar-framework-cross-platform-applications/</id>
<link href="https://smashingmagazine.com/2021/10/introduction-quasar-framework-cross-platform-applications/"/>
<updated>2021-10-23T11:00:00.000Z</updated>
<summary type="html"><![CDATA[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 well build will store and get its data from Firebase, meaning that we will also be seeing how to use Firebase in Quasar.]]></summary>
<author>
<name>hello@smashingmagazine.com (Joel Olawanle)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[How To Build A Real-Time Multi-User Game From Scratch]]></title>
<id>https://smashingmagazine.com/2021/10/real-time-multi-user-game/</id>
<link href="https://smashingmagazine.com/2021/10/real-time-multi-user-game/"/>
<updated>2021-10-22T09:30:00.000Z</updated>
<summary type="html"><![CDATA[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.]]></summary>
<author>
<name>hello@smashingmagazine.com (Martin Grubinger)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Respecting Users Motion Preferences]]></title>
<id>https://smashingmagazine.com/2021/10/respecting-users-motion-preferences/</id>
<link href="https://smashingmagazine.com/2021/10/respecting-users-motion-preferences/"/>
<updated>2021-10-21T10:30:00.000Z</updated>
<summary type="html"><![CDATA[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 theres no reason not to use it today to make your sites more accessible.]]></summary>
<author>
<name>hello@smashingmagazine.com (Michelle Barker)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Building The SSG Ive Always Wanted: An 11ty, Vite And JAM Sandwich]]></title>
<id>https://smashingmagazine.com/2021/10/building-ssg-11ty-vite-jam-sandwich/</id>
<link href="https://smashingmagazine.com/2021/10/building-ssg-11ty-vite-jam-sandwich/"/>
<updated>2021-10-20T11:00:00.000Z</updated>
<summary type="html"><![CDATA[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”.]]></summary>
<author>
<name>hello@smashingmagazine.com (Ben Holmes)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Building An API With Gatsby Functions]]></title>
<id>https://smashingmagazine.com/2021/10/building-api-gatsby-functions/</id>
<link href="https://smashingmagazine.com/2021/10/building-api-gatsby-functions/"/>
<updated>2021-10-19T14:00:00.000Z</updated>
<summary type="html"><![CDATA[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.]]></summary>
<author>
<name>hello@smashingmagazine.com (Paul Scanlon)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Smashing Podcast Episode 42 With Jeff Smith: What Is DevOps?]]></title>
<id>https://smashingmagazine.com/2021/10/smashing-podcast-episode-42/</id>
<link href="https://smashingmagazine.com/2021/10/smashing-podcast-episode-42/"/>
<updated>2021-10-19T10:00:00.000Z</updated>
<summary type="html"><![CDATA[In this episode, were talking about DevOps. What is it, and is it a string to add to your web development bow? Drew McLellan talks to expert Jeff Smith to find out.]]></summary>
<author>
<name>hello@smashingmagazine.com (Drew McLellan)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Solving CLS Issues In A Next.js-Powered E-Commerce Website (Case Study)]]></title>
<id>https://smashingmagazine.com/2021/10/nextjs-ecommerce-cls-case-study/</id>
<link href="https://smashingmagazine.com/2021/10/nextjs-ecommerce-cls-case-study/"/>
<updated>2021-10-18T14:00:00.000Z</updated>
<summary type="html"><![CDATA[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.]]></summary>
<author>
<name>hello@smashingmagazine.com (Arijit Mondal)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[A Simple But Effective Mental Health Routine For Programmers]]></title>
<id>https://smashingmagazine.com/2021/10/effective-mental-health-routine-programmers/</id>
<link href="https://smashingmagazine.com/2021/10/effective-mental-health-routine-programmers/"/>
<updated>2021-10-16T10:00:00.000Z</updated>
<summary type="html"><![CDATA[In this article, well 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.]]></summary>
<author>
<name>hello@smashingmagazine.com (Dave Oscar)</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[v1.11.3]]></title>
<id>https://github.com/osmoscraft/osmosfeed/releases/tag/v1.11.3</id>
<link href="https://github.com/osmoscraft/osmosfeed/releases/tag/v1.11.3"/>
<updated>2021-10-16T00:01:47.000Z</updated>
<summary type="html"><![CDATA[Fixed: broken links in documentation
Chore: Dependency updates
Thank you: @hirdot]]></summary>
<author>
<name>Release notes from osmosfeed</name>
</author>
</entry>
<entry>
<title type="html"><![CDATA[Tips And Tricks For Evaluating UX/UI Designers]]></title>
<id>https://smashingmagazine.com/2021/10/tips-tricks-evaluating-ux-ui-designers/</id>
<link href="https://smashingmagazine.com/2021/10/tips-tricks-evaluating-ux-ui-designers/"/>
<updated>2021-10-15T13:00:00.000Z</updated>
<summary type="html"><![CDATA[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.]]></summary>
<author>
<name>hello@smashingmagazine.com (Nataliya Sambir)</name>
</author>
</entry>
</feed>