Daily Shaarli

All links of one day in a single page.

October 11, 2021

Hello IPv6: a minimal tutorial for IPv4 users

An extensive introduction to IPv6 concepts.

IPv6 has always baffled me on how it works. There are too many unfamiliar terms and mechanisms such that I never felt confident enough to start using IPv6. This article solves much of my confusion.

Kixunil/dont_panic - Ensures that code can't panic at compile time.

A clever idea. It uses an unsafe non-existent function to induce link-time error. Normally, if the call to this non-existence function is proven unreachable by the compiler, then the call to this function will be removed and won't catch any errors. Otherwise it raises a link-time error instead of runtime error.