Posts with Tag

Google Search

While I’m cautious about purchasing expensive licenses, for some businesses, the cheapest option, Business Basic for £4.90 per user per month, is more than enough!

Every now and then, I discover new “hidden” features that I can use with just a basic license, and this time was no different.

Setting up computers in businesses, I always default to Google Search. Frankly, Bing just hasn’t kept pace, despite the recent AI hype. For most users, Google’s familiarity boosts productivity, which is key in any business environment.

What I hate is that Microsoft, with every other Microsoft Edge update, forces Bing back as the default search engine.

Read More about Managing Microsoft Edge settings in a business environment with Microsoft 365
Blog WebDev
Where Helpful Content Update did not do as much, Core update did!
Published
Read Time 5 min.

When Google is releasing their search engine updates, there is always a lot of action and a lot of discussions around. Everybody is looking for the impact of the update on their website and position in search engines.

By the end of August 2022, Google comes with a Helpful Content Update (HCU). This highly appreciated (by content creators) update suppose to penalise low-content websites and those generated by AI. I have been happy about it and knew, that none of my websites will be affected, and I was right!

Hugo Blog
Revisiting YummyRecipes.uk after 3 months (a Hugo based website)
Published
Read Time 6 min.

Just today, on the 23rd of July Yummy Recipes UK is celebrating the third month from the lunch of the website. We (me, from the development side, and my friend, from the content) didn’t see what was coming.

At the lunch the ambitions were high, but also reality brings us down a bit, as we saw plenty of cooking websites around that we will need to compete with.

During the first two months social media, mainly Facebook, dominates in popularity. Over 1000 people on average viewed each recipe that we shared, whereas our website got only a portion of visits.

WebDev
Improving website performance by loading fonts the smart way
Published
Updated
Read Time 6 min.

My site, until recently, was using a system font stack, mostly because I would like to have the lightest website possible.

My featured images, heavily optimized, still account for large LCP (Largest Contentful Paint) and adding custom fonts, in the most common way, can increase the overall weight of the website.

I am happy with my site, but on others, I need to use specified fonts to get the right visual experience across all user devices. In that case, I need to load additional fonts to accomplish that.

The fonts not only add weight to the website but also can hurt CLS (Cumulative Layout Shift) if loaded incorrectly. As CLS is part of essential Core Web Vitals, its poor score can drop a website significantly in Google Search results.

Ironically, Google, on their Google Fonts website provides information (code) on how to implement the desired font in our website. The problem is, that their solution will have a huge negative impact on your website.

Not only they are loaded from an external source, but the speed of loading of your website and external fonts can also vary and cause, ironically, CLS, that Google will penalise you on.

A widely recommended method is to self-host your fonts (even these from Google). This, in most cases, may improve an impact on CLS, but not always. There are plenty of factors in how these fonts are delivered. If our hosting is poor and we are not using CDN (Content Delivery Network) then we can see worse results than loading fonts directly as Google advised.

Self-hosting fonts are the right approach, but it requires a couple of tweaks before it will work well for us in matters of web performance.

Let’s start with, how to load them correctly.

WebDev
Implementing JavaScript Delay for Cookie Consent Banner
Published
Updated
Read Time 5 min.

Over some time I have been looking for ideal Cookie Consent Banner implementation on my websites. The main goal was to make sure it’s not causing CLS (Cumulative Layout Shift) resulting in poor Core Web Vitals (and downgrading website in Google Search).

I found the solution that worked for me for some time.

Together with other optimisation works I managed to achieve my goal, however, from time to time I saw a spike in PageSpeed Insight for some pages and I couldn’t figure out what else I could do to make sure that Cookie Banner (Bar) is not causing CLS.

Categories