What happens when you update your DNS?
– jvns.ca
Julia Evans wrote a quick exploration of what’s happening behind the scenes when you update a DNS record.
Read more [jvns.ca]
Posts tagged with explanation
– jvns.ca
Julia Evans wrote a quick exploration of what’s happening behind the scenes when you update a DNS record.
Read more [jvns.ca]
I've often asked myself this question.
Read more [superuser.com]
Join 9,500+ smart developers
Get my monthly newsletter with what I learn from running Spatie, building Oh Dear, and maintaining 300+ open source packages. Practical takes on Laravel, PHP, and AI that you can actually use.
No spam. Unsubscribe anytime. You can also follow me on X.
"Freek publishes a super resourceful and practical newsletter. A must for anyone in the Laravel space"
In an awesome series of video tweets, Mohammed Said explains some of the most confusing Queue configuration keys.
Read more [divinglaravel.com]
A nice site that clearly breaks down and explains how a regex works
Read more [ihateregex.io]
You can think of algebraic effects as resumeable try catch blocks ?. In a new post on his blog React dev Dan Abramov explains the concept.
Read more [overreacted.io]
?? Laravel Core Adventures - Did you know?
— Christoph Rumpel ? (@christophrumpel) May 17, 2019
Ever wondered what "hydrate" means? I've been there. Then I realized it's just a fancy word for filling an object with data.
In this Eloquent Builder example, Laravel fills a new collection object with models from an array. pic.twitter.com/D5t0EVnksM
Read more [twitter.com]
JavaScript has two zeros: −0 and +0. This post explains why that is and where it matters in practice.
Read more [2ality.com]
Liam Hammett explains what bitmask constants are and how they work.
PHP has a handful of core functions that can accept boolean arguments in the form of constants that have a binary value. These can be combined together in a single function argument, essentially passing multiple boolean flags in a very compact manner. They work a bit differently to how most people implement options in their userland functions, so let’s take a look at how they work.
Read more [medium.com]