Why Is My Printify Order On Hold?

Original Source: https://ecommerce-platforms.com/articles/why-is-my-printify-order-on-hold

After an order is placed with Printify, the system will provide status updates as the product passes through the pre-production phase to production and shipping–and until it reaches the customer.

When an order is ‘on hold,’ it means production has not started. The hold may be due to the order not being completed and submitted, or that there is an issue that requires attention.

Order Statuses Explained

Any time you place an order on a print-on-demand platform (e.g. Printify or Printful), you can check the platform at any time to confirm the status of the order. With Printify, the possible order statuses you might encounter are:

Pre-production statuses:

On hold: Submit order

Sending to production

On hold: Action required

Production statuses:

In production

Has issues

Canceled: Canceled by Print Provider

Canceled: Various

Shipping statuses:

Ready to ship

Shipped

On the way

Available for pickup

Out for delivery

Delivery attempt

Shipping issue

Return to sender

Delivered

An ‘on hold’ status can happen during the pre-production stage.

A Closer Look at Pre-Production

Before an order is sent to one of Printify’s print providers, the system will verify that all necessary information was entered correctly, payment was processed, the products are available, no claim to intellectual property was filed, and that Printify vendors can deliver to the address provided.

If there is an issue and you have Printify Premium benefits, you can contact Printify Connect. This is a customer-support program that handles issues related to orders connected to your Premium account.

More About ‘On Hold: Submit Order’

Depending on the order approval settings of your account, the order may be automatically submitted or held for a designated period before being sent to Printify.

When you create an order manually, you can also submit it immediately or wait. During either of these scenarios, the order status will show as ‘On Hold: Submit Order.’

When an order is on hold, you can edit it (e.g., quantity, color, etc.) before submitting it. After submitting, the order status should be updated within a few minutes.

If it doesn’t show as ‘Sending to Production’ after thirty minutes, contact the Printify Support Team to ensure it went through correctly.

More About ‘On Hold: Action Required’

If you see this status pop up on an order, there is a problem. Check the sub-status for more information about what the issue is and how you can rectify the situation. Here are the possible reasons for an ‘On Hold: Action Required’ status:

Payment not received: Set up a payment method and ensure enough funds are available. Resubmit the order. If it happens again, try another payment method.

Out of stock: Cancel the order or select a replacement product or print provider.

Discontinued product: Cancel the order or select a replacement product or print provider.

Address issues: Correct the address and resubmit the order.

Canceled – IP reported: This status means your product was flagged as infringing on someone else’s intellectual property. You can remove the product in question and resubmit the rest of the order (if there is more). If your product is unique and you think it should not be flagged in error, submit an appeal with Printify.

Shipping restrictions apply: There are some locations in which Printify vendors can not deliver products.

What Happens Next?

After the ‘on hold’ status is removed, the order will be sent to production. If you are curious about how your experience stacks up against other print-on-demand platforms, read the reviews posted by ecommerce-platforms.com.

We are committed to helping entrepreneurs grow their businesses by rigorously evaluating online software solutions and providing unbiased advice.

Wondering whether Printify shipping is expensive? Be sure to read our latest post!

The post Why Is My Printify Order On Hold? appeared first on Ecommerce Platforms.

"Make something people want to steal," 7 tips for better menu design

Original Source: https://www.creativebloq.com/features/menu-design-tips

How to make your menu more enticing, plus why your menu needs to work on mobile.

The Forensics Of React Server Components (RSCs)

Original Source: https://smashingmagazine.com/2024/05/forensics-react-server-components/

This article is a sponsored by Sentry.io

In this article, we’re going to look deeply at React Server Components (RSCs). They are the latest innovation in React’s ecosystem, leveraging both server-side and client-side rendering as well as streaming HTML to deliver content as fast as possible.

We will get really nerdy to get a full understanding of how RFCs fit into the React picture, the level of control they offer over the rendering lifecycle of components, and what page loads look like with RFCs in place.

But before we dive into all of that, I think it’s worth looking back at how React has rendered websites up until this point to set the context for why we need RFCs in the first place.

The Early Days: React Client-Side Rendering

The first React apps were rendered on the client side, i.e., in the browser. As developers, we wrote apps with JavaScript classes as components and packaged everything up using bundlers, like Webpack, in a nicely compiled and tree-shaken heap of code ready to ship in a production environment.

The HTML that returned from the server contained a few things, including:

An HTML document with metadata in the <head> and a blank <div> in the <body> used as a hook to inject the app into the DOM;
JavaScript resources containing React’s core code and the actual code for the web app, which would generate the user interface and populate the app inside of the empty <div>.

A web app under this process is only fully interactive once JavaScript has fully completed its operations. You can probably already see the tension here that comes with an improved developer experience (DX) that negatively impacts the user experience (UX).

The truth is that there were (and are) pros and cons to CSR in React. Looking at the positives, web applications delivered smooth, quick transitions that reduced the overall time it took to load a page, thanks to reactive components that update with user interactions without triggering page refreshes. CSR lightens the server load and allows us to serve assets from speedy content delivery networks (CDNs) capable of delivering content to users from a server location geographically closer to the user for even more optimized page loads.

There are also not-so-great consequences that come with CSR, most notably perhaps that components could fetch data independently, leading to waterfall network requests that dramatically slow things down. This may sound like a minor nuisance on the UX side of things, but the damage can actually be quite large on a human level. Eric Bailey’s “Modern Health, frameworks, performance, and harm” should be a cautionary tale for all CSR work.

Other negative CSR consequences are not quite as severe but still lead to damage. For example, it used to be that an HTML document containing nothing but metadata and an empty <div> was illegible to search engine crawlers that never get the fully-rendered experience. While that’s solved today, the SEO hit at the time was an anchor on company sites that rely on search engine traffic to generate revenue.

The Shift: Server-Side Rendering (SSR)

Something needed to change. CSR presented developers with a powerful new approach for constructing speedy, interactive interfaces, but users everywhere were inundated with blank screens and loading indicators to get there. The solution was to move the rendering experience from the client to the server. I know it sounds funny that we needed to improve something by going back to the way it was before.

So, yes, React gained server-side rendering (SSR) capabilities. At one point, SSR was such a topic in the React community that it had a moment in the spotlight. The move to SSR brought significant changes to app development, specifically in how it influenced React behavior and how content could be delivered by way of servers instead of browsers.

Addressing CSR Limitations

Instead of sending a blank HTML document with SSR, we rendered the initial HTML on the server and sent it to the browser. The browser was able to immediately start displaying the content without needing to show a loading indicator. This significantly improves the First Contentful Paint (FCP) performance metric in Web Vitals.

Server-side rendering also fixed the SEO issues that came with CSR. Since the crawlers received the content of our websites directly, they were then able to index it right away. The data fetching that happens initially also takes place on the server, which is a plus because it’s closer to the data source and can eliminate fetch waterfalls if done properly.

Hydration

SSR has its own complexities. For React to make the static HTML received from the server interactive, it needs to hydrate it. Hydration is the process that happens when React reconstructs its Virtual Document Object Model (DOM) on the client side based on what was in the DOM of the initial HTML.

Note: React maintains its own Virtual DOM because it’s faster to figure out updates on it instead of the actual DOM. It synchronizes the actual DOM with the Virtual DOM when it needs to update the UI but performs the diffing algorithm on the Virtual DOM.

We now have two flavors of Reacts:

A server-side flavor that knows how to render static HTML from our component tree,
A client-side flavor that knows how to make the page interactive.

We’re still shipping React and code for the app to the browser because — in order to hydrate the initial HTML — React needs the same components on the client side that were used on the server. During hydration, React performs a process called reconciliation in which it compares the server-rendered DOM with the client-rendered DOM and tries to identify differences between the two. If there are differences between the two DOMs, React attempts to fix them by rehydrating the component tree and updating the component hierarchy to match the server-rendered structure. And if there are still inconsistencies that cannot be resolved, React will throw errors to indicate the problem. This problem is commonly known as a hydration error.

SSR Drawbacks

SSR is not a silver bullet solution that addresses CSR limitations. SSR comes with its own drawbacks. Since we moved the initial HTML rendering and data fetching to the server, those servers are now experiencing a much greater load than when we loaded everything on the client.

Remember when I mentioned that SSR generally improves the FCP performance metric? That may be true, but the Time to First Byte (TTFB) performance metric took a negative hit with SSR. The browser literally has to wait for the server to fetch the data it needs, generate the initial HTML, and send the first byte. And while TTFB is not a Core Web Vital metric in itself, it influences the metrics. A negative TTFB leads to negative Core Web Vitals metrics.

Another drawback of SSR is that the entire page is unresponsive until client-side React has finished hydrating it. Interactive elements cannot listen and “react” to user interactions before React hydrates them, i.e., React attaches the intended event listeners to them. The hydration process is typically fast, but the internet connection and hardware capabilities of the device in use can slow down rendering by a noticeable amount.

The Present: A Hybrid Approach

So far, we have covered two different flavors of React rendering: CSR and SSR. While the two were attempts to improve one another, we now get the best of both worlds, so to speak, as SSR has branched into three additional React flavors that offer a hybrid approach in hopes of reducing the limitations that come with CSR and SSR.

We’ll look at the first two — static site generation and incremental static regeneration — before jumping into an entire discussion on React Server Components, the third flavor.

Static Site Generation (SSG)

Instead of regenerating the same HTML code on every request, we came up with SSG. This React flavor compiles and builds the entire app at build time, generating static (as in vanilla HTML and CSS) files that are, in turn, hosted on a speedy CDN.

As you might suspect, this hybrid approach to rendering is a nice fit for smaller projects where the content doesn’t change much, like a marketing site or a personal blog, as opposed to larger projects where content may change with user interactions, like an e-commerce site.

SSG reduces the burden on the server while improving performance metrics related to TTFB because the server no longer has to perform heavy, expensive tasks for re-rendering the page.

Incremental Static Regeneration (ISR)

One SSG drawback is having to rebuild all of the app’s code when a content change is needed. The content is set in stone — being static and all — and there’s no way to change just one part of it without rebuilding the whole thing.

The Next.js team created the second hybrid flavor of React that addresses the drawback of complete SSG rebuilds: incremental static regeneration (ISR). The name says a lot about the approach in that ISR only rebuilds what’s needed instead of the entire thing. We generate the “initial version” of the page statically during build time but are also able to rebuild any page containing stale data after a user lands on it (i.e., the server request triggers the data check).

From that point on, the server will serve new versions of that page statically in increments when needed. That makes ISR a hybrid approach that is neatly positioned between SSG and traditional SSR.

At the same time, ISR does not address the “stale content” symptom, where users may visit a page before it has finished being generated. Unlike SSG, ISR needs an actual server to regenerate individual pages in response to a user’s browser making a server request. That means we lose the valuable ability to deploy ISR-based apps on a CDN for optimized asset delivery.

The Future: React Server Components

Up until this point, we’ve juggled between CSR, SSR, SSG, and ISR approaches, where all make some sort of trade-off, negatively affecting performance, development complexity, and user experience. Newly introduced React Server Components (RSC) aim to address most of these drawbacks by allowing us — the developer — to choose the right rendering strategy for each individual React component.

RSCs can significantly reduce the amount of JavaScript shipped to the client since we can selectively decide which ones to serve statically on the server and which render on the client side. There’s a lot more control and flexibility for striking the right balance for your particular project.

Note: It’s important to keep in mind that as we adopt more advanced architectures, like RSCs, monitoring solutions become invaluable. Sentry offers robust performance monitoring and error-tracking capabilities that help you keep an eye on the real-world performance of your RSC-powered application. Sentry also helps you gain insights into how your releases are performing and how stable they are, which is yet another crucial feature to have while migrating your existing applications to RSCs. Implementing Sentry in an RSC-enabled framework like Next.js is as easy as running a single terminal command.

But what exactly is an RSC? Let’s pick one apart to see how it works under the hood.

The Anatomy of React Server Components

This new approach introduces two types of rendering components: Server Components and Client Components. The differences between these two are not how they function but where they execute and the environments they’re designed for. At the time of this writing, the only way to use RSCs is through React frameworks. And at the moment, there are only three frameworks that support them: Next.js, Gatsby, and RedwoodJS.

Server Components

Server Components are designed to be executed on the server, and their code is never shipped to the browser. The HTML output and any props they might be accepting are the only pieces that are served. This approach has multiple performance benefits and user experience enhancements:

Server Components allow for large dependencies to remain on the server side.
Imagine using a large library for a component. If you’re executing the component on the client side, it means that you’re also shipping the full library to the browser. With Server Components, you’re only taking the static HTML output and avoiding having to ship any JavaScript to the browser. Server Components are truly static, and they remove the whole hydration step.
Server Components are located much closer to the data sources — e.g., databases or file systems — they need to generate code.
They also leverage the server’s computational power to speed up compute-intensive rendering tasks and send only the generated results back to the client. They are also generated in a single pass, which avoids request waterfalls and HTTP round trips.
Server Components safely keep sensitive data and logic away from the browser.
That’s thanks to the fact that personal tokens and API keys are executed on a secure server rather than the client.
The rendering results can be cached and reused between subsequent requests and even across different sessions.
This significantly reduces rendering time, as well as the overall amount of data that is fetched for each request.

This architecture also makes use of HTML streaming, which means the server defers generating HTML for specific components and instead renders a fallback element in their place while it works on sending back the generated HTML. Streaming Server Components wrap components in <Suspense> tags that provide a fallback value. The implementing framework uses the fallback initially but streams the newly generated content when it‘s ready. We’ll talk more about streaming, but let’s first look at Client Components and compare them to Server Components.

Client Components

Client Components are the components we already know and love. They’re executed on the client side. Because of this, Client Components are capable of handling user interactions and have access to the browser APIs like localStorage and geolocation.

The term “Client Component” doesn’t describe anything new; they merely are given the label to help distinguish the “old” CSR components from Server Components. Client Components are defined by a “use client” directive at the top of their files.

“use client”
export default function LikeButton() {
const likePost = () => {
// …
}
return (
<button onClick={likePost}>Like</button>
)
}

In Next.js, all components are Server Components by default. That’s why we need to explicitly define our Client Components with “use client”. There’s also a “use server” directive, but it’s used for Server Actions (which are RPC-like actions that invoked from the client, but executed on the server). You don’t use it to define your Server Components.

You might (rightfully) assume that Client Components are only rendered on the client, but Next.js renders Client Components on the server to generate the initial HTML. As a result, browsers can immediately start rendering them and then perform hydration later.

The Relationship Between Server Components and Client Components

Client Components can only explicitly import other Client Components. In other words, we’re unable to import a Server Component into a Client Component because of re-rendering issues. But we can have Server Components in a Client Component’s subtree — only passed through the children prop. Since Client Components live in the browser and they handle user interactions or define their own state, they get to re-render often. When a Client Component re-renders, so will its subtree. But if its subtree contains Server Components, how would they re-render? They don’t live on the client side. That’s why the React team put that limitation in place.

But hold on! We actually can import Server Components into Client Components. It’s just not a direct one-to-one relationship because the Server Component will be converted into a Client Component. If you’re using server APIs that you can’t use in the browser, you’ll get an error; if not — you’ll have a Server Component whose code gets “leaked” to the browser.

This is an incredibly important nuance to keep in mind as you work with RSCs.

The Rendering Lifecycle

Here’s the order of operations that Next.js takes to stream contents:

The app router matches the page’s URL to a Server Component, builds the component tree, and instructs the server-side React to render that Server Component and all of its children components.
During render, React generates an “RSC Payload”. The RSC Payload informs Next.js about the page and what to expect in return, as well as what to fall back to during a <Suspense>.
If React encounters a suspended component, it pauses rendering that subtree and uses the suspended component’s fallback value.
When React loops through the last static component, Next.js prepares the generated HTML and the RSC Payload before streaming it back to the client through one or multiple chunks.
The client-side React then uses the instructions it has for the RSC Payload and client-side components to render the UI. It also hydrates each Client Component as they load.
The server streams in the suspended Server Components as they become available as an RSC Payload. Children of Client Components are also hydrated at this time if the suspended component contains any.

We will look at the RSC rendering lifecycle from the browser’s perspective momentarily. For now, the following figure illustrates the outlined steps we covered.

We’ll see this operation flow from the browser’s perspective in just a bit.

RSC Payload

The RSC payload is a special data format that the server generates as it renders the component tree, and it includes the following:

The rendered HTML,
Placeholders where the Client Components should be rendered,
References to the Client Components’ JavaScript files,
Instructions on which JavaScript files it should invoke,
Any props passed from a Server Component to a Client Component.

There’s no reason to worry much about the RSC payload, but it’s worth understanding what exactly the RSC payload contains. Let’s examine an example (truncated for brevity) from a demo app I created:

1:HL[“/_next/static/media/c9a5bc6a7c948fb0-s.p.woff2″,”font”,{“crossOrigin”:””,”type”:”font/woff2″}]
2:HL[“/_next/static/css/app/layout.css?v=1711137019097″,”style”]
0:”$L3″
4:HL[“/_next/static/css/app/page.css?v=1711137019097″,”style”]
5:I[“(app-pages-browser)/./node_modules/next/dist/client/components/app-router.js”,[“app-pages-internals”,”static/chunks/app-pages-internals.js”],””]
8:”$Sreact.suspense”
a:I[“(app-pages-browser)/./node_modules/next/dist/client/components/layout-router.js”,[“app-pages-internals”,”static/chunks/app-pages-internals.js”],””]
b:I[“(app-pages-browser)/./node_modules/next/dist/client/components/render-from-template-context.js”,[“app-pages-internals”,”static/chunks/app-pages-internals.js”],””]
d:I[“(app-pages-browser)/./src/app/global-error.jsx”,[“app/global-error”,”static/chunks/app/global-error.js”],””]
f:I[“(app-pages-browser)/./src/components/clearCart.js”,[“app/page”,”static/chunks/app/page.js”],”ClearCart”]
7:[“$”,”main”,null,{“className”:”page_main__GlU4n”,”children”:[[“$”,”$Lf”,null,{}],[“$”,”$8″,null,{“fallback”:[“$”,”p”,null,{“children”:”🌀 loading products…”}],”children”:”$L10″}]]}]
c:[[“$”,”meta”,”0″,{“name”:”viewport”,”content”:”width=device-width, initial-scale=1″}]…
9:[“$”,”p”,null,{“children”:[“🛍️ “,3]}]
11:I[“(app-pages-browser)/./src/components/addToCart.js”,[“app/page”,”static/chunks/app/page.js”],”AddToCart”]
10:[“$”,”ul”,null,{“children”:[[“$”,”li”,”1″,{“children”:[“Gloves”,” – $”,20,[“$…

To find this code in the demo app, open your browser’s developer tools at the Elements tab and look at the <script> tags at the bottom of the page. They’ll contain lines like:

self.__next_f.push([1,”PAYLOAD_STRING_HERE”]).

Every line from the snippet above is an individual RSC payload. You can see that each line starts with a number or a letter, followed by a colon, and then an array that’s sometimes prefixed with letters. We won’t get into too deep in detail as to what they mean, but in general:

HL payloads are called “hints” and link to specific resources like CSS and fonts.
I payloads are called “modules,” and they invoke specific scripts. This is how Client Components are being loaded as well. If the Client Component is part of the main bundle, it’ll execute. If it’s not (meaning it’s lazy-loaded), a fetcher script is added to the main bundle that fetches the component’s CSS and JavaScript files when it needs to be rendered. There’s going to be an I payload sent from the server that invokes the fetcher script when needed.
“$” payloads are DOM definitions generated for a certain Server Component. They are usually accompanied by actual static HTML streamed from the server. That’s what happens when a suspended component becomes ready to be rendered: the server generates its static HTML and RSC Payload and then streams both to the browser.

Streaming

Streaming allows us to progressively render the UI from the server. With RSCs, each component is capable of fetching its own data. Some components are fully static and ready to be sent immediately to the client, while others require more work before loading. Based on this, Next.js splits that work into multiple chunks and streams them to the browser as they become ready. So, when a user visits a page, the server invokes all Server Components, generates the initial HTML for the page (i.e., the page shell), replaces the “suspended” components’ contents with their fallbacks, and streams all of that through one or multiple chunks back to the client.

The server returns a Transfer-Encoding: chunked header that lets the browser know to expect streaming HTML. This prepares the browser for receiving multiple chunks of the document, rendering them as it receives them. We can actually see the header when opening Developer Tools at the Network tab. Trigger a refresh and click on the document request.

We can also debug the way Next.js sends the chunks in a terminal with the curl command:

curl -D – –raw localhost:3000 > chunked-response.txt

You probably see the pattern. For each chunk, the server responds with the chunk’s size before sending the chunk’s contents. Looking at the output, we can see that the server streamed the entire page in 16 different chunks. At the end, the server sends back a zero-sized chunk, indicating the end of the stream.

The first chunk starts with the <!DOCTYPE html> declaration. The second-to-last chunk, meanwhile, contains the closing </body> and </html> tags. So, we can see that the server streams the entire document from top to bottom, then pauses to wait for the suspended components, and finally, at the end, closes the body and HTML before it stops streaming.

Even though the server hasn’t completely finished streaming the document, the browser’s fault tolerance features allow it to draw and invoke whatever it has at the moment without waiting for the closing </body> and </html> tags.

Suspending Components

We learned from the render lifecycle that when a page is visited, Next.js matches the RSC component for that page and asks React to render its subtree in HTML. When React stumbles upon a suspended component (i.e., async function component), it grabs its fallback value from the <Suspense> component (or the loading.js file if it’s a Next.js route), renders that instead, then continues loading the other components. Meanwhile, the RSC invokes the async component in the background, which is streamed later as it finishes loading.

At this point, Next.js has returned a full page of static HTML that includes either the components themselves (rendered in static HTML) or their fallback values (if they’re suspended). It takes the static HTML and RSC payload and streams them back to the browser through one or multiple chunks.

As the suspended components finish loading, React generates HTML recursively while looking for other nested <Suspense> boundaries, generates their RSC payloads and then lets Next.js stream the HTML and RSC Payload back to the browser as new chunks. When the browser receives the new chunks, it has the HTML and RSC payload it needs and is ready to replace the fallback element from the DOM with the newly-streamed HTML. And so on.

In Figures 7 and 8, notice how the fallback elements have a unique ID in the form of B:0, B:1, and so on, while the actual components have a similar ID in a similar form: S:0 and S:1, and so on.

Along with the first chunk that contains a suspended component’s HTML, the server also ships an $RC function (i.e., completeBoundary from React’s source code) that knows how to find the B:0 fallback element in the DOM and replace it with the S:0 template it received from the server. That’s the “replacer” function that lets us see the component contents when they arrive in the browser.

The entire page eventually finishes loading, chunk by chunk.

Lazy-Loading Components

If a suspended Server Component contains a lazy-loaded Client Component, Next.js will also send an RSC payload chunk containing instructions on how to fetch and load the lazy-loaded component’s code. This represents a significant performance improvement because the page load isn’t dragged out by JavaScript, which might not even be loaded during that session.

At the time I’m writing this, the dynamic method to lazy-load a Client Component in a Server Component in Next.js does not work as you might expect. To effectively lazy-load a Client Component, put it in a “wrapper” Client Component that uses the dynamic method itself to lazy-load the actual Client Component. The wrapper will be turned into a script that fetches and loads the Client Component’s JavaScript and CSS files at the time they’re needed.

TL;DR

I know that’s a lot of plates spinning and pieces moving around at various times. What it boils down to, however, is that a page visit triggers Next.js to render as much HTML as it can, using the fallback values for any suspended components, and then sends that to the browser. Meanwhile, Next.js triggers the suspended async components and gets them formatted in HTML and contained in RSC Payloads that are streamed to the browser, one by one, along with an $RC script that knows how to swap things out.

The Page Load Timeline

By now, we should have a solid understanding of how RSCs work, how Next.js handles their rendering, and how all the pieces fit together. In this section, we’ll zoom in on what exactly happens when we visit an RSC page in the browser.

The Initial Load

As we mentioned in the TL;DR section above, when visiting a page, Next.js will render the initial HTML minus the suspended component and stream it to the browser as part of the first streaming chunks.

To see everything that happens during the page load, we’ll visit the “Performance” tab in Chrome DevTools and click on the “reload” button to reload the page and capture a profile. Here’s what that looks like:

When we zoom in at the very beginning, we can see the first “Parse HTML” span. That’s the server streaming the first chunks of the document to the browser. The browser has just received the initial HTML, which contains the page shell and a few links to resources like fonts, CSS files, and JavaScript. The browser starts to invoke the scripts.

After some time, we start to see the page’s first frames appear, along with the initial JavaScript scripts being loaded and hydration taking place. If you look at the frame closely, you’ll see that the whole page shell is rendered, and “loading” components are used in the place where there are suspended Server Components. You might notice that this takes place around 800ms, while the browser started to get the first HTML at 100ms. During those 700ms, the browser is continuously receiving chunks from the server.

Bear in mind that this is a Next.js demo app running locally in development mode, so it’s going to be slower than when it’s running in production mode.

The Suspended Component

Fast forward few seconds and we see another “Parse HTML” span in the page load timeline, but this one it indicates that a suspended Server Component finished loading and is being streamed to the browser.

We can also see that a lazy-loaded Client Component is discovered at the same time, and it contains CSS and JavaScript files that need to be fetched. These files weren’t part of the initial bundle because the component isn’t needed until later on; the code is split into their own files.

This way of code-splitting certainly improves the performance of the initial page load. It also makes sure that the Client Component’s code is shipped only if it’s needed. If the Server Component (which acts as the Client Component’s parent component) throws an error, then the Client Component does not load. It doesn’t make sense to load all of its code before we know whether it will load or not.

Figure 12 shows the DOMContentLoaded event is reported at the end of the page load timeline. And, just before that, we can see that the localhost HTTP request comes to an end. That means the server has likely sent the last zero-sized chunk, indicating to the client that the data is fully transferred and that the streaming communication can be closed.

The End Result

The main localhost HTTP request took around five seconds, but thanks to streaming, we began seeing page contents load much earlier than that. If this was a traditional SSR setup, we would likely be staring at a blank screen for those five seconds before anything arrives. On the other hand, if this was a traditional CSR setup, we would likely have shipped a lot more of JavaScript and put a heavy burden on both the browser and network.

This way, however, the app was fully interactive in those five seconds. We were able to navigate between pages and interact with Client Components that have loaded as part of the initial main bundle. This is a pure win from a user experience standpoint.

Conclusion

RSCs mark a significant evolution in the React ecosystem. They leverage the strengths of server-side and client-side rendering while embracing HTML streaming to speed up content delivery. This approach not only addresses the SEO and loading time issues we experience with CSR but also improves SSR by reducing server load, thus enhancing performance.

I’ve refactored the same RSC app I shared earlier so that it uses the Next.js Page router with SSR. The improvements in RSCs are significant:

Looking at these two reports I pulled from Sentry, we can see that streaming allows the page to start loading its resources before the actual request finishes. This significantly improves the Web Vitals metrics, which we see when comparing the two reports.

The conclusion: Users enjoy faster, more reactive interfaces with an architecture that relies on RSCs.

The RSC architecture introduces two new component types: Server Components and Client Components. This division helps React and the frameworks that rely on it — like Next.js — streamline content delivery while maintaining interactivity.

However, this setup also introduces new challenges in areas like state management, authentication, and component architecture. Exploring those challenges is a great topic for another blog post!

Despite these challenges, the benefits of RSCs present a compelling case for their adoption. We definitely will see guides published on how to address RSC’s challenges as they mature, but, in my opinion, they already look like the future of rendering practices in modern web development.

Choosing Between “What You Do Best” vs. “What You Like Best”

Original Source: https://www.hongkiat.com/blog/job-proficiency-vs-passion/

Occupation, profession or what we call nowadays “a job”, is one of the most important things in a person’s life.

When people started settling in cities and villages, a person’s job defined his status in the society. Surnames like Miller, Smith and Schneider were derived from occupations i.e. Miller (people who worked in mills), Smith (iron workers) and Schneider (dressmaker or tailor). Even today, the influence of job in our life sustains its behemoth significance.

In the professional world there might be some people who are good at their jobs and are fully satisfied with what they do. However, most job holders these days are discontent with some elements of their job.

Proficiency vs. Passion

Here’s an example: a friend of mine suffers from a unique case of job discontentment.

Although she is quite proficient in her work as an iOS developer and is being handsomely remunerated for it, her heart is stuck in pursuing a career in art and graphic design. If she were to leave that well-established career, many would deem her action as utter foolishness.

Still there are some who might tell her to “follow her heart”. Hence this article is a kind of “thinking out loud’ post for those who find themselves in the dilemma of choosing a job they are good at versus a job that they actually want to do.

Going with a Job You Are Good At
1. Skill Level

Pros – Being good at a job is synonymous with having a higher skill level in it.

Being the master of the art makes you an important part of the whole mechanics of your organization. Based on your skills, you are able to take up new challenges, work out solutions, and produce profitable results, all of which make your superiors nothing but happy.

Cons – From hardcore skills like engineering and designing to more embedded skills like business development and public relations, every craft has a saturation point.

No matter how proficient you are at doing something, there comes a time when you simply grow out of it. After reaching this level, you just keep reproducing work on already existing skill templates with very little room for learning anything further.

2. Financial Gains

Pros – Who doesn’t like money? When you are good at something and find the right place to put it to use, money comes running after you like crazy.

The story becomes especially interesting when you get paid for something you could easily do in your sleep, i.e., based on your skills you do not have to work too hard to reach your goal.

financial gainsfinancial gains

Cons – In almost every career there is a limit on the amount of income you can earn on each level. There are certain careers in which, no matter how high your expertise is, there is not much chance of increased financial gains once you reach the maximum income threshold.

Of course, you can take up after-office freelance work, but it will only leave you exhausted. Moreover, no matter how good you are in your body of work, being paid well for it depends a lot on your luck, apart from your talents. For everyone who is making a good living doing something they are good at, there are countless other equally talented people who are not able to do so just because they didn’t get a good chance to.

3. Career Longevity

Pros – Being adept in a specific field can certainly vouch for the longevity of your career in it.

The better you are in a certain job, the longer you will stay in it, and the longer you stay in a certain career, the greater will your credibility and reputation be. Furthermore, if you are good in your job and you make your superiors realize it, your vulnerability towards a layoff consequently decreases.

Cons – When you are proficient in a job, you tend to stay in it for a long time.

But career longevity can sometimes cause monotony and boredom, especially when it spreads over decades in a row. After all, the days of retiring from a company that you joined fresh out of college are long gone.

Going with a Job You Want to Do
1. Professional Gratification

Pros – There is no match for professional gratification, and what better way to achieve it than doing what you really want to do. Your interest in a job directly spells your devotion and dedication towards it.

professional gratificationprofessional gratification

Even if you have to compromise a bit over certain other factors, the mere feeling of satisfaction makes up for most of the missing elements. However, in a scenario when you are not able to do the job of your passion, you may keep coming to the office each day, but gradually your energy keeps dropping and your frustration level keeps on rising.

Cons – Professional gratification is a key factor in the success of your career; however, when you are responsible for the upbringing of your family or any other obligations, then moving to a whole new career just because you seek self-contentment could leave you nothing but heartbroken as well as financially broke.

Another downside can be that sometimes being too passionate about work can negatively impact your work-life balance, affecting your health, personal life, and family.

2. Refreshing New Start

Pros – Regardless of how excelled you have become in your job, when you go for the career of your dreams, the new start be like a fresh breeze in your professional life. The new start can revitalize your enthusiasm and can give you fresh-out-of-college energy towards work.

Cons – A job is no joke. Right from the beginning of your life in the professional field, one focuses all his or her energy on getting settled in the field and getting to the top of their game.

If the new start pushes you from the corner office, which you have earned with your dedication and hard work, to a newbie’s cubicle, then the decision of pursuing a new career should be properly calculated before you take the next step.

3. Increased Motivation

Pros – Working in your favorite field makes you more motivated towards your job.

No matter how late you start in a field, the sheer joy of handling certain tasks and the desire to complete tasks with passion, quickly takes you to the next level. This factor plays a key role in getting you to the top of the ladder in a job that you are fond of and consequently shows more motivation in it.

motivationmotivation

Cons – To get motivated is easy, but staying motivated is where the problem starts. One can easily say catchy phrases like, “fulfil your dreams” and “be your own master”, but to actually commit yourself to doing something every day might be more arduous than you think.

When you take what you love to do and make it into something you depend upon for survival for yourself and your family, the motivation can disappear quickly. Not to forget, turning your passion into a profession means you have clients, bosses, deadlines, and obligations, which automatically takes all the fun out of it.

Conclusion

Some people have a lifelong dream of doing something or having a certain career. However, the unforgiving waves of circumstances can make you make decisions that you might not deem as the right one.

So, is it alright to continue down the path life has taken you, especially when you have so well-established yourself in it, or should you go back and try to have a second go at your childhood dreams? The answer to this question highly depends on your own priorities.

My iOS developer friend has decided to continue her career in development while developing her graphic design interest by learning front-end interface design for iOS apps. The idea is to facilitate a smooth transition into a new career. Maybe, with a little strategy and calculation (and of course, some luck), you too can manage to achieve a bit of both, instead of all of each.

The post Choosing Between “What You Do Best” vs. “What You Like Best” appeared first on Hongkiat.

Collective #835

Original Source: https://tympanus.net/codrops/collective/collective-835/

Latency numbers every frontend developer should know * Putting React In The Browser * Franken UI

Exploring Sisense AI Assistant's UX and Branding Excellence

Original Source: https://abduzeedo.com/exploring-sisense-ai-assistants-ux-and-branding-excellence

Exploring Sisense AI Assistant’s UX and Branding Excellence
Exploring Sisense AI Assistant's UX and Branding Excellence

abduzeedo0502—24

Discover how Sisense AI Assistant excels in SaaS and UX/UI design, enhancing user experience with smart branding and intuitive interfaces. Learn from this UX case study.

In the ever-evolving world of business intelligence, standing out through innovative design is paramount. The Sisense AI Assistant, designed by Rondesignlab, is an exemplar of effective UX/UI design tailored for the SaaS sector. This UX case study dives into how Sisense leverages robust design principles to enhance data interaction and user engagement.

Sisense, a seasoned player in the business intelligence software arena, offers a powerful platform that transforms diverse data sets into actionable insights and interactive reports. At the core of Sisense’s strategy is a commitment to user-friendly design, which allows users to easily navigate massive datasets and derive meaningful patterns and trends.

One standout feature is the AI-powered data exploration tool, which intelligently analyzes user behavior to recommend relevant data points and visualizations. This proactive approach not only enhances the analytical process but also customizes the user experience, making it more intuitive and responsive.

Further solidifying its market position is Sisense’s strong brand identity. The logo, featuring a bold and modern typeface, acts as a visual anchor, communicating the software’s cutting-edge capabilities. More than just a logo, it is part of a comprehensive brand strategy that includes detailed guidelines covering the use of logos, fonts, colors, and overall brand voice. These guidelines ensure that every point of communication is coherent, reflecting the sophistication and clarity of Sisense as a brand.

For designers and developers involved in SaaS projects, the Sisense AI Assistant serves as an inspiring benchmark. It showcases how strategic design can facilitate better data management and decision-making processes. By prioritizing clarity and user adaptability, Sisense not only meets the analytical needs of its users but also ensures that interactions with the platform are seamless and productive.

This case study exemplifies how integrating AI with thoughtful UX design can revolutionize user interaction within business intelligence tools. For those looking to enhance their platforms, it offers valuable lessons in balancing functionality with aesthetic precision, ensuring that every user experience is both engaging and efficient.

Branding and UX design artifacts
Sisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI Designux UI design SAAS finance dashboard app CRM ai ASSISTANTSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI DesignSisense App - Business SaaS & UX UI Design

For more information make sure to check out Rondesignlab at https://rondesignlab.com/ 

Using AI to Predict Design Trends

Original Source: https://www.webdesignerdepot.com/ai-predict-design-trends/

Design trends evolve at a blistering pace, especially in web design. On multi-month projects, you might work on a cutting-edge design after the kick-off meeting, only to launch a dated-looking site.

Cloud Native: How Ampere Is Improving Nightly Arm64 Builds

Original Source: https://www.sitepoint.com/cloud-native-how-ampere-is-improving-nightly-arm64-builds/?utm_source=rss

Learn how the CNCF make their nightly native arm64 builds more secure, more efficiently use resources, and be much faster. 

Continue reading
Cloud Native: How Ampere Is Improving Nightly Arm64 Builds
on SitePoint.

Longing For May (2024 Wallpapers Edition)

Original Source: https://smashingmagazine.com/2024/04/desktop-wallpaper-calendars-may-2024/

Inspiration lies everywhere, and as a matter of fact, we discovered one of the best ways to spark new ideas: desktop wallpapers. Since more than 13 years already, we challenge you, our dear readers, to put your creative skills to the test and create wallpaper calendars for our monthly wallpapers posts. No matter if you’re into illustration, lettering, or photography, the wallpapers series is the perfect opportunity to get your ideas flowing and create a small artwork to share with people all around the world. Of course, it wasn’t any different this month.

In this post, you’ll find desktop wallpapers created by artists and designers who took on the creativity challenge. They come in versions with and without a calendar for May 2024 and can be downloaded for free. As a little bonus goodie, we also compiled a selection of favorites from our wallpapers archives at the end of the post. Maybe you’ll spot one of your almost-forgotten favorites from the past in here, too? A big thank-you to everyone who shared their designs with us this month! Happy May!

You can click on every image to see a larger preview,
We respect and carefully consider the ideas and motivation behind each and every artist’s work. This is why we give all artists the full freedom to explore their creativity and express emotions and experience through their works. This is also why the themes of the wallpapers weren’t anyhow influenced by us but rather designed from scratch by the artists themselves.
Submit a wallpaper!
Did you know that you could get featured in our next wallpapers post, too? We are always looking for creative talent.

A Symphony Of Dedication On Labour Day

“On Labour Day, we celebrate the hard-working individuals who contribute to the growth of our communities. Whether in busy urban areas or peaceful rural settings, this day recognizes the unsung heroes driving our advancement. Let us pay tribute to the workers, craftsmen, and visionaries shaping our shared tomorrow.” — Designed by PopArt Studio from Serbia.

preview
with calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Navigating The Amazon

“We are in May, the spring month par excellence, and we celebrate it in the Amazon jungle.” — Designed by Veronica Valenzuela Jimenez from Spain.

preview
with calendar: 640×480, 800×480, 1024×768, 1280×720, 1280×800, 1440×900, 1600×1200, 1920×1080, 1920×1440, 2560×1440
without calendar: 640×480, 800×480, 1024×768, 1280×720, 1280×800, 1440×900, 1600×1200, 1920×1080, 1920×1440, 2560×1440

Popping Into Spring

“Spring has sprung, and what better metaphor than toast popping up and out of a fun-colored toaster!” — Designed by Stephanie Klemick from Emmaus Pennsylvania, USA.

preview
with calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Duck

Designed by Madeline Scott from the United States.

preview
with calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Cruising Into Spring

“When I think of spring, I think of finally being able to drive with the windows down and enjoying the fresh air!” — Designed by Vanessa Mancuso from the United States.

preview
with calendar: 320×480, 480×800, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1440, 2560×1440
without calendar: 320×480, 480×800, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1440, 2560×1440

Lava Is In The Air

Designed by Ricardo Gimenes from Sweden.

preview
with calendar: 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440, 3840×2160
without calendar: 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440, 3840×2160

Love Myself

Designed by Design-Studio from India.

preview
with calendar: 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440
without calendar: 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Bat Traffic

Designed by Ricardo Gimenes from Sweden.

preview
with calendar: 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440, 3840×2160
without calendar: 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440, 3840×2160

Springtime Sips

“May is a month where the weather starts to warm and reminds us summer is approaching, so I created a bright cocktail-themed wallpaper since sipping cocktails in the sun is a popular warm weather activity!” — Designed by Hannah Coates from Baltimore, MD.

preview
with calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Hello May

“The longing for warmth, flowers in bloom, and new beginnings is finally over as we welcome the month of May. From celebrating nature on the days of turtles and birds to marking the days of our favorite wine and macarons, the historical celebrations of the International Workers’ Day, Cinco de Mayo, and Victory Day, to the unforgettable ‘May the Fourth be with you’. May is a time of celebration — so make every May day count!” — Designed by PopArt Studio from Serbia.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1440×900, 1440×1050, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

ARRR2-D2

Designed by Ricardo Gimenes from Sweden.

preview
without calendar: 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440, 3840×2160

May Your May Be Magnificent

“May should be as bright and colorful as this calendar! That’s why our designers chose these juicy colors.” — Designed by MasterBundles from Ukraine.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

The Monolith

Designed by Ricardo Gimenes from Sweden.

preview
without calendar: 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440, 3840×2160

Blooming May

“In spring, especially in May, we all want bright colors and lightness, which was not there in winter.” — Designed by MasterBundles from Ukraine.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

The Mushroom Band

“My daughter asked me to draw a band of mushrooms. Here it is!” — Designed by Vlad Gerasimov from Georgia.

preview
without calendar: 800×480, 800×600, 1024×600, 1024×768, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1440×960, 1600×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440, 2560×1600, 2880×1800, 3072×1920, 3840×2160, 5120×2880

Poppies Paradise

Designed by Nathalie Ouederni from France.

preview
without calendar: 320×480, 1024×768, 1280×1024, 1440×900, 1680×1200, 1920×1200, 2560×1440

Lake Deck

“I wanted to make a big painterly vista with some mountains and a deck and such.” — Designed by Mike Healy from Australia.

preview
without calendar: 1280×960, 1440×900, 1680×1050, 1920×1080, 2560×1440, 2560×1600, 2880×1800

Make A Wish

Designed by Julia Versinina from Chicago, USA.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Enjoy May!

“Springtime, especially Maytime, is my favorite time of the year. And I like popsicles — so it’s obvious isn’t it?” — Designed by Steffen Weiß from Germany.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Celestial Longitude Of 45°

“Lixia is the 7th solar term according to the traditional East Asian calendars, which divide a year into 24 solar terms. It signifies the beginning of summer in East Asian cultures. Usually begins around May 5 and ends around May 21.” — Designed by Hong, Zi-Cing from Taiwan.

preview
without calendar: 1024×768, 1080×1920, 1280×720, 1280×800, 1280×960, 1366×768, 1400×1050, 1680×1050, 1920×1080, 1920×1200, 2560×1440

Stone Dahlias

Designed by Rachel Hines from the United States.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×1024, 1366×768, 1400×900, 1400×1050, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Understand Yourself

“Sunsets in May are the best way to understand who you are and where you are heading. Let’s think more!” — Designed by Igor Izhik from Canada.

preview
without calendar: 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Sweet Lily Of The Valley

“The ‘lily of the valley’ came earlier this year. In France, we celebrate the month of May with this plant.” — Designed by Philippe Brouard from France.

preview
without calendar: 800×480, 1024×768, 1024×1024, 1280×720, 1280×1024, 1440×900, 1920×1080, 1920×1440, 2560×1440

Today, Yesterday, Or Tomorrow

Designed by Alma Hoffmann from the United States.

preview
without calendar: 1024×768, 1024×1024, 1280×800, 1280×1024, 1366×768, 1440×900, 1680×1050, 1920×1080, 1920×1200, 2560×1440

Add Color To Your Life!

“This month is dedicated to flowers, to join us and brighten our days giving a little more color to our daily life.” — Designed by Verónica Valenzuela from Spain.

preview
without calendar: 800×480, 1024×768, 1152×864, 1280×800, 1280×960, 1440×900, 1680×1200, 1920×1080, 2560×1440

The Green Bear

Designed by Pedro Rolo from Portugal.

preview
without calendar: 1024×768, 1280×800, 1440×900, 1680×1200, 1920×1080, 2560×1440

Lookout At Sea

“I wanted to create something fun and happy for the month of May. It’s a simple concept, but May is typically the time to adventure out into the world and enjoy the best of Spring.” — Designed by Alexander Jubinski from the United States.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Tentacles

Designed by Julie Lapointe from Canada.

preview
without calendar: 320×480, 1024×768, 1280×800, 1280×1024, 1440×900, 1680×1050, 1920×1200

Spring Gracefulness

“We don’t usually count the breaths we take, but observing nature in May, we can’t count our breaths being taken away.” — Designed by Ana Masnikosa from Belgrade, Serbia.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Geo

Designed by Amanda Focht from the United States.

preview
without calendar: 320×480, 640×480, 800×480, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1680×1200, 1920×1080, 1920×1440, 2560×1440

Blast Off!

“Calling all space cadets, it’s time to celebrate National Astronaut Day! Today we honor the fearless explorers who venture beyond our planet and boldly go where no one has gone before.” — Designed by PopArt Studio from Serbia.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×900, 1400×1050, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Colorful

Designed by <a href=https://www.lotum.de>Lotum from Germany.

<a href=https://archive.smashing.media/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/e8daeb22-0fff-4b2a-b51a-2a6202c6e26e/may-12-colorful-31-full.png>

<a href=https://archive.smashing.media/assets/344dbf88-fdf9-42bb-adb4-46f01eedd629/5fbaaed8-cc91-407e-911b-95c851771e57/may-12-colorful-31-preview-opt.png>preview
without calendar: <a href=https://smashingmagazine.com/files/wallpapers/may-12/may-12-colorful__31-nocal-320×480.jpg>320×480, <a href=https://smashingmagazine.com/files/wallpapers/may-12/may-12-colorful__31-nocal-640×960.jpg>640×960, <a href=https://smashingmagazine.com/files/wallpapers/may-12/may-12-colorful__31-nocal-1024×1024.jpg>1024×1024, <a href=https://smashingmagazine.com/files/wallpapers/may-12/may-12-colorful__31-nocal-1280×800.jpg>1280×800, <a href=https://smashingmagazine.com/files/wallpapers/may-12/may-12-colorful__31-nocal-1280×1024.jpg>1280×1024, <a href=https://smashingmagazine.com/files/wallpapers/may-12/may-12-colorful__31-nocal-1440×900.jpg>1440×900, <a href=https://smashingmagazine.com/files/wallpapers/may-12/may-12-colorful__31-nocal-1680×1050.jpg>1680×1050, <a href=https://smashingmagazine.com/files/wallpapers/may-12/may-12-colorful__31-nocal-1920×1200.jpg>1920×1200

Who Is Your Mother?

“Someone who wakes up early in the morning, cooks you healthy and tasty meals, does your dishes, washes your clothes, sends you off to school, sits by your side and cuddles you when you are down with fever and cold, and hugs you when you have lost all hopes to cheer you up. Have you ever asked your mother to promise you never to leave you? No. We never did that because we are never insecure and our relationship with our mothers is never uncertain. We have sketched out this beautiful design to cherish the awesomeness of motherhood. Wishing all a happy Mothers Day!” — Designed by Acodez IT Solutions from India.

preview
without calendar: 320×480, 640×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440

Asparagus Say Hi!

“In my part of the world, May marks the start of seasonal produce, starting with asparagus. I know spring is finally here and summer is around the corner when locally-grown asparagus shows up at the grocery store.” — Designed by Elaine Chen from Toronto, Canada.

preview
without calendar: 320×480, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1366×768, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1200, 1920×1440, 2560×1440

May The Force Be With You

“Yoda is my favorite Star Wars character and ‘may’ has funny double meaning.” — Designed by Antun Hirsman from Croatia.

preview
without calendar: 1280×800, 1280×1024, 1440×900, 1680×1050, 1680×1200, 1920×1080, 1920×1440, 2560×1440

Birds Of May

“Inspired by a little-known ‘holiday’ on May 4th known as ‘Bird Day’. It is the first holiday in the United States celebrating birds. Hurray for birds!” — Designed by Clarity Creative Group from Orlando, FL.

preview
without calendar: 320×480, 640×480, 640×960, 640×1136, 800×480, 800×600, 1024×768, 1024×1024, 1152×864, 1280×720, 1280×800, 1280×960, 1280×1024, 1400×1050, 1440×900, 1600×1200, 1680×1050, 1680×1200, 1920×1080, 1920×1200, 1920×1440, 2560×1440