Remove Database Remove Magazine Remove Network Remove Storage
article thumbnail

Five Data-Loading Patterns To Improve Frontend Performance

Smashing Magazine

The resource loading waterfall is a cascade of files downloaded from the network server to the client to load your website from start to finish. It essentially describes the lifetime of each file you download to load your page from the network. You can see this by opening your browser and looking in the Networking tab.

article thumbnail

USENIX LISA 2018: CFP Now Open

Brendan Gregg

Apart from networking, attending conferences like LISA in person is an effective way to upgrade your skills: you can block out work interruptions and absorb new knowledge that's been neatly summarized into sessions. We first met each other at LISA, in addition to making many other important industry connections over the years.

DevOps 43
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

USENIX LISA 2018: CFP Now Open

Brendan Gregg

Apart from networking, attending conferences like LISA in person is an effective way to upgrade your skills: you can block out work interruptions and absorb new knowledge that's been neatly summarized into sessions. We first met each other at LISA, in addition to making many other important industry connections over the years.

DevOps 40
article thumbnail

Are Imposter Domains Re-Publishing Your Website?

Smashing Magazine

Another kind of content publishing tool is a service that fetches a web page, checks it against databases for any potential copyright violation or plagiarism , and displays the page with markup to identify any potentially offending content. These are page views loaded from a previously-viewed web page that was saved to device local storage.

Website 89
article thumbnail

How Improving Website Performance Can Help Save The Planet

Smashing Magazine

The Green Web Foundation maintains an ever-growing database of web hosts who are either wholly powered by renewable energy or are at least committed to being carbon neutral. This includes the work done by the server, the client and the intermediary communications networks that transmit data between the two. Reduce Network Requests.

article thumbnail

Understanding Weak Reference In JavaScript

Smashing Magazine

Let’s illustrate this with some snippets: let smashing = {name: "magazine"}; // The object can be accessed from the reference. // Overwrite the reference smashing. let smashing = {name: "magazine"}; let arr = [smashing]; // Overwrite the reference. smashing = null; console.log(array[0]) // {name: 'magazine'}. Additional Data.

Cache 116
article thumbnail

How To Optimize Progressive Web Apps: Going Beyond The Basics

Smashing Magazine

You can find a comprehensive Beginner’s Guide To Progressive Web Apps on Smashing Magazine that focuses on building the core of PWAs. IndexedDB is an in-browser NoSQL storage system that you can use to cache and retrieve the required data to make your PWA work offline. Optimizing Based On Network Usage. Let’s look at each one.

Cache 123