Google Technical Writing Course

date: 2021-12-27 · Tags: #dev

Every engineer is also a writer. --- Technical Writing Courses

Notes in Chinese: [笔记] Google(英文)技术写作课(2020)

The Sad Story of TCP Fast Open

date: 2021-12-15 · Tags: #network, #good-reading

Why you should not set tcp_fastopen anymore? Especially you want to bypass GFW :(

The Sad Story of TCP Fast Open

Deep Dive into Flask's Application and Request Contexts

date: 2021-12-15 · Tags: #python, #good-reading

Highlight:

The current_app and request proxies are not actually global variables; they point to global objects that are implemented as context-locals, so the proxies are always unique to each worker.

Deep Dive into Flask's Application and Request Contexts