Google Technical Writing Course
date: 2021-12-27 · Tags: #devEvery 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-readingWhy you should not set tcp_fastopen
anymore? Especially you want to bypass GFW
:(
Deep Dive into Flask's Application and Request Contexts
date: 2021-12-15 · Tags: #python, #good-readingHighlight:
The
current_app
andrequest
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.