Search
You’re Definitely Going To Want To Preload Destiny 2: The Final Shape
30.5.2024
Destiny 2’s upcoming expansion The Final Shape is going to be a big deal, as it will conclude the series’ 10-year story to this point, but it’s also going to be quite literally enormous. This week, Bungie finally revealed just how much space The Final Shape is going to take up on your hardware,...
New Xbox Feature Could Save Players Loads Of Time
16.5.2024
Modern games get patched all the time, and there are few things more low-key annoying than sitting down to dig into a meaty RPG or hop into a quick deathmatch only to see you’ve got to download an 8GB update. You start scrolling TikTok or dropping memes in the group chat and by the time you realize...
Here’s How Much Space You Need To Clear For Final Fantasy VII Rebirth
27.2.2024
Final Fantasy VII Rebirth, part two of the trilogy remaking one of the greatest RPGs of all time, arrives on PS5 on February 28, 2024. As is customary these days when it comes to large games, you can all but count on needing to make some space on that SSD of yours. Read on to find out just how...
Get Ready To Clear Your Disk Space For Starfield
17.8.2023
As someone who regularly hears “uh, you need to pay for that” or “ma’am, you need a license to drive this,” I’m accustomed to people interrupting my fun with strange, made up rules. And it looks like Starfield will also hit me with a warning I’m more than used to by now: “You need to clear storage...
You Can Preload Starfield On PC, Xbox Starting This Month
16.8.2023
Starfield, Bethesda’s gigantic space-based RPG with over 1,000 planets, has gone gold, meaning it’s passed certification and will soon be ready to hit store shelves both physical and digital. As such, the studio announced that preloading on PC and Xbox will start very soon.Read more
Pre-Caching Image with React Suspense
21.9.2020
Suspense is an exciting, upcoming feature of React that will enable developers to easily allow their components to delay rendering until they’re “ready,” leading to a much smoother user experience. “Ready,” in this context, can mean a number of things. For example, your data loading...
Let’s Make One of Those Fancy Scrolling Animations Used on Apple Product Pages
22.5.2020
Apple is well-known for the sleek animations on their product pages. For example, as you scroll down the page products may slide into view, MacBooks fold open and iPhones spin, all while showing off the hardware, demonstrating the software and telling interactive stories of how the products...
When CSS Blocks
28.2.2020
Tim Kadlec:
One particular pattern [for loading non-critical CSS] I’ve seen is the preload/polyfill pattern. With this approach, you load any stylesheets as preloads instead, and then use their onload events to change them back to a stylesheet once the browser has them ready.
So you're...
Jaké novinky přinese PHP 7.4
7.10.2019
Vydání PHP 7.4 je plánováno na 28. listopadu 2019. Přináší hromadu zajímavých věcí - Typed Properties, Array Functions, Preload, FFI a pár dalších vylepšení. Sice přibyly i nějaké deprecations, ale typicky se týkají podivného chování, takže upgrade by měl být snadný
Preloading Pages Just Before They are Needed
27.9.2019
The typical journey for a person browsing a website: view a page, click a link, browser loads new page. That's assuming no funny business like a Single Page App, which still follows that journey, but the browser doesn't load a new page — the client fakes it for the sake of a snappier...
A More Accessible Portals Demo
31.7.2019
The point of the <portal> element (behind a flag in Chrome Canary) is that you can preload another whole page (like <iframe>), but then have APIs to animate it to the current page. So "Single Page App"-like functionality (SPA), but natively. I think that's pretty cool. I'm a fan...
Preload, prefetch and other link tags
24.4.2019
Ivan Akulov has collected a whole bunch of information and know-how on making things load a bit more quickly with preload and prefetch. That's great in and of itself, but he also points to something new to me – the as attribute:
<link rel="preload" href="/style.css" as="style"...
A Bit of Performance
28.2.2019
Here’s a great post by Roman Komarov on what he learned by improving the performance of his personal website. There’s a couple of neat things he does to tackle font loading in particular, such as adding the <link rel="preload"> tags for fonts. This will encourage those font files...
Quicklink
3.1.2019
We're in the future now so, of course, we're working on ways to speed up the web with fancy new tactics above and beyond the typical make-pages-slimmer-and-cached-like-crazy techniques.
One tactic, from years ago, was InstantClick:
Before visitors click on a link, they hover over that link. Between...