Laravel Featured Queues at scale: idempotency, retries, dead letters — a practical guide A hands-on guide to building reliable queue systems in production: idempotency, smart retries, backoff strategies, and dead-letter queues—without duplicate jobs, retry storms, or hidden failures.
MySql The Pros and Cons of Implementing Polymorphic Relationships in SQL Databases Polymorphic relationships offer flexibility in databases but risk data integrity and increase query complexity. Use them sparingly, with checks for integrity and consider alternatives to maintain performance and integrity.
MySql Quick Guide: Testing MySQL Connection Without the MySQL CLI Explore various methods to test MySQL connections directly from the command line. From telnet to Python scripts, ensure your database is reachable.
MySql Securely Connect to Amazon RDS using SSH Tunneling and Table Plus Discover how to securely connect to an Amazon RDS instance without exposing it to the public. This guide walks you through SSH tunneling, setting up a bastion host, and ensuring optimal security practices.
Start-up Making the Right Tech Stack Choice for Your Business Starting a new company or launching a new product? Choosing the right tech stack is crucial. Learn the 5 proven strategies for selecting the optimal tech stack for your startup, including considering your target market, analyzing the job market, scalability, costs and community.
Laravel How to export large datasets to CSV in Laravel? Exporting large datasets in Laravel & Laravel Livewire can be challenging, as you need to be mindful of memory limits and processing time.
Scaling The Importance of Code Quality for Business Success Every company relies on software to function effectively, whether a traditional business or a technology company. Code quality becomes increasingly crucial for a company's success as software continues to shape our world.
Accessibility If you don’t understand why accessibility is so important, please watch! If you don’t understand (yet) why accessibility is so important, please watch this video of a blind person navigating through a website using a screen reader, it will change the way you write and structure HTML.
Laravel Testing Laravel apps with multiple domains When testing Laravel applications that use multiple domains tests get tricky. Imagine an application with the following structure: * API: api.domain.com * Backend: manage.domain.com * Client domains: client1domain.com,client2domain.com, etc.. Route::domain(config('app.domains.api'))->group(function() { Route::get('/', 'Api\ApiIndexController@index')->