Latest Updates

Documenting code, one commit at a time.

Handling Stale Stripe Customer IDs During Checkout

Introduction

In a recent update to our eCommerce platform, we faced an issue with handling stale Stripe customer IDs during the checkout process. When users referenced a deleted Stripe customer, our application would encounter errors that disrupted the checkout experience. To improve the user journey, we implemented a solution that gracefully handles this scenario.

The Challenge

Read more

Enhancing GitHub Sync Handling: A Dive into Recent Improvements

Introduction

In our ongoing effort to enhance the GitHub sync functionality in the devlog-ist project, we identified issues relating to the accuracy and efficiency of code review scheduling. The recent update aimed to address these challenges by refining the code review sync process and improving the user experience.

The Problem

Previously, our system suffered from two major limitations:

Read more

Enforcing Strict Type Checking in PHP Configuration

Introduction

In our ongoing efforts to improve code quality and maintainability within our PHP projects, we have taken the step of enforcing strict type checking in configuration files. This was recently implemented in the resend.php configuration file, a critical aspect of our application.

The Challenge

PHP, being a loosely typed language, allows type juggling, which can lead to

Read more

Enhancing Badge Management with Filament

Introduction

The badge management system has been overhauled to provide a more intuitive and user-friendly experience. This update introduces the ability to manually assign badges to users, complete with visibility settings and date tracking.

Development

The UsersRelationManager class was created to handle user-badge relationships. This class extends Filament's RelationManager and

Read more

Enhancing Platform Security and Accessibility

Introduction

Our platform's latest updates focus on enhancing security and accessibility. This is achieved through a series of critical fixes and improvements, ensuring a more robust and user-friendly experience.

Key Fixes and Improvements

  • WCAG Violations: Removed focus ring override to comply with accessibility standards.
  • reCAPTCHA Configuration: Fixed site key references for
Read more

Enhancing LinkedIn Publishing with Error Handling and Internationalization

Introduction

Our LinkedIn publishing feature required enhancements to improve user experience and adherence to project standards. This post details the implementation of error handling for post scheduling and internationalization of new error messages.

The Challenge

  • Unique constraint violations when scheduling posts for the same day needed proper handling
  • Error messages required
Read more

Enhancing URL Handling with Tenant Domain Extraction

Introduction

Our application required a more efficient and accurate method for extracting tenant domains to handle URL redirection. The previous implementation had limitations in handling both subdomain-only and full domain formats.

The Challenge

The legacy system had issues with:

  • Incorrect subdomain extraction
  • Inconsistent URL construction
  • Potential errors in redirecting users to
Read more

Enhancing GitHub Service with Carbon and Notifications

Introduction

Our team has been working on improving the GitHub service in our application. One of the key areas of focus was enhancing the date handling and introducing a notifications system.

The Challenge

The existing GitHub service had limitations in terms of date management and lacked a notifications system. This made it difficult to keep track of recent activities and notify users

Read more
Laravel PHP

Implementación de un Logger Multi-Tenant con Streams Divididos en Laravel

Introducción

El desarrollo de aplicaciones multi-tenant ha ganado popularidad en los últimos años, ya que permite a las empresas ofrecer servicios personalizados a diferentes clientes mientras comparten recursos comunes. Uno de los desafíos en este tipo de desarrollo es la implementación de un sistema de logging efectivo que pueda manejar y separar los registros de cada tenant de manera

Read more

Análisis de Ventajas y Desventajas de la Arquitectura Multi-Tenant

Introducción

La arquitectura multi-tenant es un enfoque en el que una sola instancia de una aplicación puede ser utilizada por múltiples clientes o inquilinos. Este enfoque ha ganado popularidad en la última década debido a su eficiencia y escalabilidad. En este artículo, analizaremos los pros y los contras de utilizar una arquitectura multi-tenant.

Desarrollo

Ventajas

Read more