Plurrrr

Fri 17 Jun 2022

HTTP/3 Deep Dive

A new iteration of HTTP, the protocol that powers the World Wide Web, is now with us. Designated HTTP/3, it’s been in development since 2018 and is currently in the Internet Draft stage of the Standards Track.

Source: HTTP/3 Deep Dive, an article by Jerry Bartlett.

Go’s new sorting algorithm: pdqsort

I’ve always found Go’s standard library very approachable to read. Parts of the standard library include concepts that are self-contained and do not require too much prior context to dive into. When I read that the sorting algorithm for Go has changed¹ to something called “pdqsort”, I thought it would be nice to go take a look and learn about it.

Source: Go’s new sorting algorithm: pdqsort.