Monthly Archives: June 2026

How to Build a Case Converter Tool Using HTML, CSS, and JavaScript

If you’re looking to level up your front-end development skills by building a practical web utility, this is the guide for you. We’ll code a fully functional Case Converter Tool from scratch using only HTML, CSS, and vanilla JavaScript. This lightweight application allows users to paste their content and immediately transform it into standard formats […]

From Flutter to Backend: How to Build Production-Grade REST APIs with Dart and Dart Frog

Dart backend frameworks exist on a spectrum. At the minimal end sits Shelf, with raw primitives and full control. You wire everything yourself. At the maximal end sits Serverpod. It’s a full framework with code generation and opinionated conventions. The framework makes most structural decisions for you. Dart Frog lives in the middle, and for […]

How to Scale Laravel Applications for High-Traffic Production Systems

Your first scaling problem rarely arrives with a bang. For a while, everything is fine: pages load fast, the database barely breaks a sweat, and the team ships features without thinking much about infrastructure. Then traffic climbs. A campaign over-performs. A marketplace onboards a popular seller. A SaaS product signs a couple of enterprise accounts. […]

How to Start your Career in Tech with freeCodeCamp – Full Talk in Spanish

Technology is rapidly reshaping the world. Understanding how to use free learning resources and contribute to open source projects can be very helpful to start your career in this field. We just published a talk on the freeCodeCamp Spanish YouTube channel about how to leverage freeCodeCamp’s free learning resources and community to start your career […]

How Attribute-Based Access Control Helps You Write Better Authorization Rules

Every application that handles user data eventually hits the same problem: not all users should see the same things. A junior nurse should not be able to access every patient record in the hospital. A contractor should not be able to read internal financial reports. An employee logged in from an unrecognized device at 2AM […]

Backend Challenges Teams Face When Processing Repeat Payments

Modern payment systems look simple from the outside. A user clicks a button, enters payment details, and money moves from one account to another. But once payments happen repeatedly rather than once, the backend becomes much more complex. Subscriptions, memberships, SaaS billing, and donation platforms all depend on repeat transactions that happen automatically over time. […]

How to Preprocess Medical Images for Machine Learning – A Guide Using Chest X-Rays

Working with healthcare data introduces preprocessing challenges that go beyond those you might encounter with structured data. Some familiar techniques still apply, while others look very different once your data becomes medical images. In this article, you’ll learn how to prepare a real-world medical imaging dataset for machine learning, from initial data validation to a […]

Docker Full Course

We just posted a comprehensive Docker course now live on the freeCodeCamp.org YouTube channel! The ability to scale applications instantly and ship software reliably is an important skill. Containerization is at the heart of modern development. This hands-on, structured course is designed to take you from absolute scratch to becoming job-ready. Taught by instructor Eissa […]

Key Technical Design Decisions for Building an Educational App with LLMs

Recently, I spent time prototyping an educational app using Claude Code. The project is an open-source mobile app for educators to share, discover, and facilitate low-cost creative learning activities. One of the core features of the app is AI-assisted activity creation. Activity creation has always been a key aspect of the project, and in the […]