Latest Updates

Documenting code, one commit at a time.

Rate Limiting Strategies for API Integrations in Landing

Introduction

When integrating with external APIs, it's crucial to respect their rate limits to ensure stable performance and avoid being throttled or blocked. This post will explore a practical approach to managing rate limits when syncing data to an external service within the landing project.

The Problem: Exceeding Rate Limits

The landing project integrates with an external service

Read more

Implementing Middleware for Request Handling in PHP

Introduction

This post explores the implementation of middleware in PHP applications for request handling. Middleware provides a powerful mechanism to intercept and modify requests and responses, enabling developers to build more modular and maintainable applications.

Understanding Middleware

Middleware functions sit in between the application's core logic and the incoming requests.

Read more