Why HTTP/3 uses UDP protocol under QUIC instead of TCP?
HTTP/3's use of UDP provides several advantages over TCP, including faster connections, better performance on high-latency networks, and improved security.
Programming Elixir ≥1.6: Functional | Concurrent | Pragmatic | Fun by Dave Thomas.
Some of Dave’s words I found particularly interesting, insightful, or inspiring.
“But mostly, I want you to have fun.”
“…you can think about programming in a different way.”
“You no longer have to think too hard about protecting your data consistency in a multithreaded environment.”
“I don’t want to hide data. I want to transform it.”
Behavioral data describes what customers do minute by minute, second by second. And, because it’s granular, contextual, and explanatory, it provides the strongest predictor of customer intent.
I often get to argument with various linux guys about AT&T versus Intel syntax.
There are many things I dislike on AT&T syntax, so I decided to write them all down in
this article.
For privacy reasons, the web platform is moving away from supporting 3rd-party cookies, first with lockdowns, and eventually with removal of support in late 2023 the second half of 2024. Background…
Inside NASA’s big plan to bring the internet to the moon
NASA is planning to build a number of infrastructure on the moon, including a human habitat, a new space station—and a web service that can connect it all.
Most of the kernel's code is written in C and intended to be run directly
on the underlying hardware. That situation is changing in a few ways,
though; one of those is the ability to write kernel code for the BPF
virtual machine. The 6.3 kernel release will include a new API making the red-black tree data structure available to BPF
programs. Beyond being an interesting feature in its own right, this new
API shows how BPF is bringing a different approach to kernel programming —
and to the C language in general.
Last week, I wrote about putting the right feature at the right place. I used rate limiting as an example, moving it from a library inside the application to the API Gateway. Today, I’ll use another example: authentication and authorization. Securing a Spring Boot application I’ll keep using Spring Boot in the following because I’m familiar with it. The Spring Boot application offers a REST endpoint to check employees' salaries. The specific use case is taken from the Open
Today I want to speak about – Python’s Quest for Simplicity. Specifically around Python tooling, where we will look at the past, present, and future of a typical Python project. Past First, let's step back in time (a few years) and look at a traditional Python project ... This looks pretty