Building a Minimal Single Sign-On (SSO) System from Scratch
Imagine you own a successful e-commerce website that sells audio equipment, serving millions of users. One day, your business analyst suggests that music streaming is…
Read more →Imagine you own a successful e-commerce website that sells audio equipment, serving millions of users. One day, your business analyst suggests that music streaming is…
Read more →While browsing a forum, I noticed an ASCII art image, which made me wonder how such images are created. It turns out that the process…
Read more →A lot of what I do involves data processing. I retrieve resources like database records or files, then iterate through each one to process it.
Read more →I was browsing some Laravel project codebases when I came across code that looked like this: $participants = collect([...]); $team2Participants = $participants->filter->belongsToTeam(2); $totalScore = $team2Participants->sum->score;…
Read more →When working with large datasets, inserting a massive number of records into a database can become painfully slow. Fortunately, MySQL provides an optimized solution: the…
Read more →When developing your Laravel application, you want to avoid unnecessarily making duplicate requests for performance reasons. However, it can be challenging to identify how many…
Read more →