Latest Updates

Documenting code, one commit at a time.

PHP

Improving Test Suite Reliability with Artisan

When running test suites, reliability is paramount. Unexpected timeouts can lead to failed builds and wasted developer time. A recent update addresses this issue by switching from composer phpunit to php artisan test for executing tests in our project.

The Problem: Composer Timeouts

The default process-timeout in Composer, often around 300 seconds, proved insufficient for our test suite,

Read more
JavaScript PHP

Enhancing User Portfolios with Recommendations and LinkedIn Integration

Introduction

We've recently enhanced our platform to allow users to solicit professional recommendations for their portfolios, featuring a seamless integration with LinkedIn. This system allows users to request recommendations, and for recommenders to easily provide them while promoting the user's portfolio on their LinkedIn feed.

Key Features

Streamlined Recommendation Requests

Read more

Unifying Generation Workflows for Enhanced Security and Reliability

This post details how we streamlined our content generation process to improve security, consistency, and maintainability.

The Challenge

Previously, our application used separate code paths for generating content based on user prompts versus automatic generation. This divergence led to inconsistencies in security auditing, resource management, and error handling.

Read more

Fixing Placeholders in Our Application

Sometimes, during development, placeholder values can inadvertently slip into the final application. This post discusses how we addressed such an issue in our vlog index page, specifically focusing on unresolved :app_name placeholders.

The Problem: Unresolved Placeholders

Unresolved placeholders are problematic because they present a poor user experience and can sometimes expose internal

Read more

The Hidden Cost of Unused Placeholder Fixes

We've all been there: a quick fix for an apparent issue, like an unresolved placeholder in a user-facing section. But what happens when the fix itself introduces more complexity than it resolves?

Recently, we addressed an issue where the :app_name placeholder wasn't being correctly rendered on the /earn hero section of our application.

Read more

Enhancing Theme Preview Performance

Introduction

This post discusses recent improvements made to the theme preview functionality in our application. The focus was on optimizing the user experience by reducing the preview size and removing unnecessary UI elements.

Theme Preview Optimization

A key area of improvement was reducing the size of the theme preview. A smaller preview renders faster, especially on devices with

Read more

Enhancing User Experience: A Small Change with a Big Impact

Introduction

Recently, we made a seemingly small change to our application's navigation, specifically related to the 'Earn' link. This modification involved adding a '$' symbol to the link across all supported languages. While simple, this update reflects our ongoing commitment to improving clarity and user experience.

The Change: Adding the '$' Symbol

The core of the update involved

Read more

Enhancing User Experience: Interactive Theme Previews

Introduction

We aimed to enhance the user experience on our application's welcome page by replacing static theme links with an interactive, inline preview feature. This allows users to visualize theme changes directly without navigating to external sites.

The Challenge

Previously, users had to click on external links to preview different themes. This process was disruptive and

Read more

Enhancing Content Security: Integrating Security Audits into the Publishing Workflow

Ensuring the security and integrity of published content is paramount. We've recently integrated a mandatory security audit step into our content generation and publishing pipeline to bolster these efforts.

The Challenge: Maintaining Content Integrity

AI-generated content offers numerous benefits, but also introduces potential security risks. It's crucial to implement safeguards to prevent

Read more

Enhancing Resource Management with Filament Relation Managers

Filament is a powerful tool for rapidly building admin panels. A common requirement is displaying related data directly within a resource's edit page. Let's explore how to use Filament's relation managers to achieve this, enhancing the user experience and data accessibility.

Displaying Related Data with Relation Managers

Relation managers in Filament provide an elegant way to display and

Read more