Latest Updates

Documenting code, one commit at a time.

Multi-Tenancy with PostgreSQL Schemas in Laravel

Introduction

When building multi-tenant applications, choosing the right architecture is critical. This post explores how to leverage PostgreSQL schemas within a Laravel application to achieve tenant isolation, enhance security, and improve scalability.

The Multi-Tenant Challenge

Traditional multi-tenant approaches often involve sharing a single database and distinguishing tenants by a

Read more
PHP Service Layer

Navigating Merge Conflicts in Collaborative Projects

When working on collaborative projects like the landing page project, merge conflicts are almost inevitable. Understanding how to resolve them effectively is crucial for maintaining a smooth workflow.

Understanding Merge Conflicts

Merge conflicts arise when multiple developers modify the same lines of a file or when one developer modifies a file while another deletes it.

Read more

Mejora en la Generación de Publicaciones a Partir de Commits

Introducción

En el proyecto landing, nos esforzamos constantemente por mejorar la calidad y relevancia del contenido generado automáticamente a partir de los commits. Uno de los desafíos que enfrentamos fue la generación de publicaciones sin un diff asociado, lo que resultaba en contenido carente de contexto y, en algunos casos, alucinaciones de la IA.

El Problema

La generación

Read more