Derniers Articles

How to Test a FullStack Next.js Application?
Friday, January 31, 2025

Do you think you're testing your Next.js app properly? But what happens when you have React Server Components and Server Actions?

Should You Become a FullStack Developer?
Wednesday, January 29, 2025

Don't Become a FULLSTACK Developer! That’s what we hear everywhere.

Next.js: Optimizing Dynamic Routes
Tuesday, January 28, 2025

Are you using static rendering (SSG) with Next.js to optimize performance? That’s a great start! But what about your dynamic routes? Are they optimized?

🚫 LinkedIn, X, and YouTube are banned!
Friday, January 24, 2025

Either I work hard, or I fully enjoy my time—but I hate wasting hours mindlessly behind a screen. Right now, my days are super packed! 💻🔥

Optimistic UI: Two Approaches for React Applications
Tuesday, January 21, 2025

Is your app feeling slow? ⏳ Have you considered implementing an Optimistic UI approach? The idea is simple: Be optimistic.

Being technically skilled is great. But it won’t make you rich.
Friday, January 17, 2025

Being technically skilled is great. But it won’t make you rich. We love technical topics, don’t we?

Understanding Functions in JavaScript: The Key to Organizing Your Code
Thursday, January 16, 2025

- Explanation of functions, their syntax, and their usage. - Examples of simple functions with parameters and return values.

The 5 Essential JavaScript Concepts for Beginners
Thursday, January 16, 2025

- Variables (`let`, `const`), loops (`for`, `while`), conditions (`if`, `else`), events, and arrays. - Small exercises to practice each concept.

Manipulating the DOM: Making Your Site Interactive with JavaScript
Thursday, January 16, 2025

- Explanation of what the DOM is and how to use JavaScript to interact with HTML elements. - Example: Modifying the text or styles of an element with `document.querySelector`.

Managing Events in JavaScript: Adding Interactivity to Your Web Pages
Thursday, January 16, 2025

- Introduction to events such as `click`, `mouseover`, or `keyup`. - Practical example: create a button that changes color when clicked.

Those learning to code with AI are starting at a disadvantage.
Thursday, January 16, 2025

💻 Those learning to code with AI are starting at a disadvantage. It might sound counterintuitive, but tools like Copilot, Claude, Cursor, and other generative AIs don’t really help junior developers. 🤖

💸 Get into debt before becoming a freelancer 💼
Wednesday, January 15, 2025

Since I became a real estate investor, I’ve realized one thing: 💡 Cash is king.

Zustand and Tanstack Query Are Dead Because of Next.js
Tuesday, January 14, 2025

Zustand and Tanstack Query Are Dead Because of Next.js

Mondays suck
Monday, January 13, 2025

Mondays suck! Just 5 more days until the weekend...

Apparently, You Need to Talk About AI on LinkedIn in 2025!
Friday, January 10, 2025

The numbers speak for themselves: my early posts would get between 200 and 300 impressions, while posts about AI sometimes reach over 35,000 impressions. 😲

Understanding and Managing Props Drilling in React: A Practical Guide
Thursday, January 9, 2025

- What is Props Drilling? - The Limitations of Props Drilling. - Practical Exercise: Master Props Drilling.

React vs Next.js: Which technology should you choose for your next project?
Thursday, January 9, 2025

- Comparison of the strengths and weaknesses of React and Next.js. - Use cases for each technology: SPA, SSR, ISR, integrated APIs. - Tips for choosing based on the type of project and performance needs.

The 5 Common Mistakes Beginners Make in TypeScript (and How to Avoid Them)
Wednesday, January 8, 2025

- Explain common mistakes - Concrete examples with tailored solutions. - Bonus: How to set up a React/Next.js project with TypeScript optimally.

Flexbox for Beginners: Create Modern Layouts in No Time
Wednesday, January 8, 2025

- Explanation of the basic concepts of Flexbox: containers and flexible items. - Step-by-step guide to align elements horizontally and vertically. - Example: a simple layout with a menu and content.

CSS Box Model: Understanding Margins, Borders, Padding, and Content
Wednesday, January 8, 2025

- Detailed explanation of the CSS box model. - Illustrations to show how each property affects an element. - Example: styling a card or a button with margins, borders, and shadows.

Create a Navigation Bar with HTML and CSS: Simple and Elegant
Wednesday, January 8, 2025

- Building a basic navigation bar with HTML. - Styling with CSS to add colors, a hover effect, and a horizontal layout. - Adding a responsive menu with a hamburger icon.

AI is Taking Jobs
Wednesday, January 8, 2025

AI is Taking Jobs

Freelance: How to Find "Premium" Clients
Sunday, January 5, 2025

If you want to reach €10k/month (and more) as a freelancer, the key is to work with premium clients: those who understand the value of your work, pay well, and see you as a long-term partner.

If I had to learn to code from scratch in 2025 (with and against AI)
Friday, January 3, 2025

**If I Had to Learn to Code from Scratch in 2025 (With and Against AI)**

My Resolutions for 2025 (By ChatGPT)
Thursday, January 2, 2025

I don't like New Year's resolutions because, let’s be honest, no one really sticks to them. Instead, I prefer concrete action plans.

I hate LinkedIn. Or rather, I used to hate LinkedIn.
Thursday, January 2, 2025

I hate LinkedIn. Or rather, I *used* to hate LinkedIn. But this year, everything changes. Since I left France for Bali, I’ve logged in no more than 5 times a year.

Getting Started with Next.js 15: Complete Guide
Friday, December 13, 2024

Next.js 15 is the latest version of this powerful framework that allows you to build modern web applications with optimal user experiences.

Getting Started with React and Vite: The Complete Guide
Friday, December 13, 2024

React is one of the most popular JavaScript libraries for building modern, dynamic user interfaces. When paired with Vite, an ultra-fast bundler,

Getting Started with TypeScript: The Basics Explained
Friday, December 13, 2024

TypeScript is an extension of JavaScript that adds static typing to your code. This helps catch errors at compile time, making your code more robust and maintainable.

The 5 Things You Must Master in Modern JavaScript (ES6+)
Friday, December 13, 2024

Since the release of ECMAScript 6 (ES6), JavaScript has undergone a spectacular evolution. New features make the language more powerful, expressive,

Structure Your HTML/CSS Project: Best Practices
Wednesday, December 11, 2024

- File organization: folder structure (HTML, CSS, images). - Using naming conventions for classes and IDs. - Tips for keeping your code clean and readable.

The Essential HTML Tags Every Beginner Should Know
Wednesday, December 11, 2024

- List and description of essential tags. - Tips for properly structuring your content with these tags. - Example: create a small personal introduction page.

Getting Started with HTML: Create Your First Web Page in 10 Minutes
Wednesday, December 11, 2024

markdown Copier le code - Introduction to basic HTML tags: `<html>`, `<head>`, `<body>`. - Simple explanations for adding text, images, and links. - Example of a basic web page with code to copy and paste.

HTML and CSS: Where to Start? Complete Beginner's Guide
Wednesday, December 11, 2024

- What are HTML and CSS? - CSS: The style and appearance. - How to get started with HTML and CSS? - Key concepts to master.

Flexbox vs Grid: Which Method Should You Choose for Your Layouts ?
Monday, December 9, 2024

markdown Copier le code - Flexbox: The solution for one-dimensional alignments. - Grid: The power of two-dimensional layouts. - Similarities between Flexbox and Grid.