Qu’est-ce qu’un contenu de très bonne qualité ?

(Ce contenu a été rédigé par ChatGPT) Un contenu de très bonne qualité est celui qui répond aux attentes du public, fournit des informations précises et pertinentes, et se démarque des autres contenus similaires sur le marché. Pour créer un contenu de qualité supérieure et surpasser vos concurrents, suivez ces conseils :

A quoi sert ChatGPT ?

ChatGPT, développé par OpenAI, est un modèle de langage à base d’IA qui est conçu pour générer du texte en réponse à des entrées de texte. Il est important de noter que, bien que ChatGPT soit capable de générer des réponses dans une variété de contextes, il a des limitations. Par exemple, il n’a pas […]

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 […]

« Previous PageNext Page »