Comment choisir la couturière idéale pour votre projet ?

Introduction La couture, un art ancestral, est un domaine qui fascine et passionne. Tout comme moi, qui suis tombé amoureux de cet univers dès mon enfance, vous pourriez avoir ce désir de créer des vêtements qui vous ressemblent ou qui correspondent à une vision précise. À travers mon expérience personnelle et professionnelle, je souhaite vous […]

Comment Peindre un Plafond : Guide Pratique et Astuces

Peindre un plafond peut sembler intimidant, mais avec les bonnes techniques, c’est une tâche à la portée de tous. Ce guide vous fournira toutes les informations nécessaires pour transformer votre plafond en un élément d’attraction de votre maison. Pourquoi Peindre son Plafond ? Amélioration esthétique : Un plafond fraîchement peint peut revitaliser toute une pièce, […]

How to increase maximum upload file size in LiteSpeed/WordPress/Ubuntu 20

Unlike Apache, LiteSpeed requires to restart each service interacting with it. PHP isn’t excluded of this rule, so you must restart it too after changing the php.ini file. 1/ Edit the following line (here for php8): /usr/local/lsws/lsphp80/etc/php/8.0/litespeed/php.ini For instance with nano: nano /usr/local/lsws/lsphp80/etc/php/8.0/litespeed/php.ini 2/ Change upload_max_filesize & post_max_size (you might consider increasing max_execution_time & max_input_time […]

Tutorial: WebPageTest Private Instance with Google Cloud Compute (GCP)

Bulk test isn’t available in public WebPageTest offer.I’ve quickly made the tutorial which you can reuse to create your own instance, for a price starting from $1 per month if you are careful 🙂 1/ Setup the main server 2/ Setup agent template 3/ Start an agent in the desired location 4/ Start a test […]

Add column with domain name to CSV file with Python

A script to add a column containing only the domain name to an existing CSV file. It extract it from a column containing an URL. It works with .co.uk and other country code top-level domain. Just change “5” by the column containing the URL. Also don’t forget to adjust. Here is it setup for semi-colon for […]

Extract domain name with Python

tldextract is the best library to extract the domain name with Python. Here is how it looks in action: import tldextractext = tldextract.extract(‘http://forums.bbc.com’)print(ext.registered_domain) Which would output: bbc.co.uk

Deep diving in Search Console data

Bellow a list of interesting ressources to play with Search Console data. I’ve put in bold what makes the dashboard somehow different. Feel free to comment to complete this list. Using DataStudio Search Console: Data Studio template to run a risk-free analysis – Dashboard – by Alice Roussel Group keywords by number of words Group […]

Ecommerce Conversion Rate with Google Analytics API

To get the ecommerce conversion rate with Google Analytics API, you can use the metric ga:transactionsPerVisit or ga:transactionsPerSession depending of API version you are using. Enjoy ! 🙂

Finding the LCP node with Chrome DevTools

Official documentation about Largest Contentful Paint is super interesting and explicit. But it misses one thing: How to identify the largest node / block / image /text ? Chrome DevTools allows you to find which node you should optimize. Simply follow the steps below. Open Chrome Open the page you want to find the LCP […]

Google and Canonical URL

In this post I will change the canonical URL in the <head>, just to see how Google and Googlebot behave between discovery of the URL discovered in the tag. The canonical tag looks like this: I’ve changed the URL in this example on purpose, in order to make sure that Googlebot discovers the URL only […]

« Previous PageNext Page »