Which cold emailing platforms can you connect to your branded email address?

Which cold emailing platform can you connect to your professional email?

Don’t use mainstream email marketing platforms for cold outreach! Before we dive into today’s topic, let me make a very important point: even if you’re legally allowed to send prospection emails to B2B professional email addresses (not personal email addresses), you can’t use mainstream email marketing platforms such as Brevo (SendinBlue), Mailchimp, Mailerlite or Mailjet […]

How to shorten a long IPv6 IP Address to use it in Cloudflare IP lists

How to shorten a long IPv6 IP Address to use it in Cloudflare IP lists

Cloudflare WAF Firewall Security Rules are a great way to restrict access to specific URLs / URIs on your website (for instance the admin page (wp-admin) and the rest API path (wp-json/wp/v2)). I would suggest to limit access to those pages to both your personal IP and your hosting server’s IP. In order to prevent […]

How to fix “openai.error.RateLimitError: The server had an error”

fix openai.error .RateLimitError

If you’re a regular user of the OpenAI GPT API, you might have recently faced a very annoying issue, causing your Python script to fail 👇 or maybe this version, which I’ve seen more often over the last few weeks: There’s no rational reason explaining this “RateLimitError” (except of course if you’re actually flooding the […]

How to export all your blog posts as a CSV using Python and SQLite.

How to export all your blog posts as a CSV with Python and SQLite

A friend asked me if I could help him export all of his blog posts in a CSV format as he was considering migrating his content to another platform. The example in this article explains how to export content created on Bloggi.co but you can apply the same basic principles to any blogging platform accessible […]

I asked ChatGPT to fix a nasty bug: broken images not showing up in Safari

I asked ChatGPT to fix a nasty bug in Safari. It worked

Recent changes in my website’s implementation, now serving WebP images by default to improve its loading speed, had caused a very nasty issue: all the images on my website were broken in Safari, none was showing up. 😢 Everything was fine in Chrome, Brave, FireFox and other browsers but when I tried to open my […]

Transform any website into an API with Python / BeautifulSoup

Transform any website into an API with Python BeautifulSoup

I love APIs. They’re an amazing source of data for all kinds of creative projects. But what if a website doesn’t provide an official API? Can you still collect some data programmatically on a regular basis? If you want to transform (almost) any public-facing website into an API, you can leverage the power of Python, […]

How to create dynamic images for your WordPress posts using Python

How to create dynamic images for your WordPress posts using Python

You know the importance of having a nice featured image for your WordPress posts. That’s how those articles will be previewed on social media and it’s also a smart way to get traffic from Google Images. You can create dynamic images with SaaS such as Bannerbear, which does a great job in offering you no-code […]

How to find related entities to expand your blog posts?

How to find related entities to expand your blog posts

When you’re writing an article, a good SEO practice is to cover the semantic field around the topic you’re addressing, i.e. broaden the scope of your research while staying on topic. You should include and develop relevant entities related to your subject. Using Google Search to find related queries & questions Let’s say for instance […]

How to create your own ChatGPT with OpenAI + Google Sheets + Kaggle Notebooks

your own ChatGPT with OPEN AI Google Sheets Kaggle

BREAKING NEWS: There is now an official API for ChatGPT. You can follow the steps in this tutorial and replace the call to GPT-3 by a call to the ChatGPT API. ChatGPT is all the rage. Everyone has started using the conversation AI interface released in November 2022 by OpenAI. While it provides a great […]

How to start using Python on your Mac

Install run Python on your Mac

Despite the tremendous advances in the no-code scene, I’ve been noticing an interesting trend: more and more people want to start using Python to enhance their automation skills. I’ve already published a few tutorials explaining how to connect Python to Google Sheets or to WordPress but I thought it would be worth spending some time […]