本文永久链接 - https://tonybai.com/2025/07/08/typed-struct-tags 大家好,我是Tony Bai。 Go 语言的结构体标签(Struct Tag)自诞生以来,一直是其强大反射能力的重要组成部分,广泛应用于 encoding/json、OR| tonybai.com
How does Suricata’s URL decoding work? It’s more complex than you think!| GreyNoise Labs
I recently tested the Deep Render AI codec and issued a report, which you can read here. The bottom line was that in the tested low-latency use case, the Deep Render AI codec substantially outperformed SVT-AV1 quality-wise and was only slightly behind VVenC. While the codec lacks features like bitrate control that are necessary for most …| Streaming Learning Center
本文永久链接 - https://tonybai.com/2025/05/15/go-json-v2 大家好,我是Tony Bai。 Go 语言标准库中的 encoding/json 包,无疑是我们日常开发中使用频率最高的包之一。它为 Go 社区服务了十多年,几乎无处不在| tonybai.com
If you’re optimizing x265 for speed, enabling Wavefront Parallel Processing (WPP) looks like a no-br| Streaming Learning Center
How to blog when you don't want to blog — start a garden!| Una's corner
If you're anything like me, you've wondered what would happen if you used a compression algorithm for something it was not designed for.| Una's corner
本文永久链接 - https://tonybai.com/2025/02/05/go-encoding-json-v2-proposal-json-processing-new-engine Go标准库中的encoding/json包,作为Go社区广泛使用的JSON处理工具,至今已走过十余年。凭借其将JSON数| tonybai.com
I'm running some 1-pass vs. 2-pass comparison testing with x265. Unlike with x264 (see tests here),| Streaming Learning Center
Announcing session 2 of Streaming Summer Bootcamp: Learn to Produce H.264 Video. Thu, Jul 11, 2024,| Streaming Learning Center
Creating batch files with variables is one of the more efficient ways to run FFmpeg. However, most p| Streaming Learning Center
I'm thrilled to introduce my newest course on LCEVC video enhancement! It’s designed to introduce ne| Streaming Learning Center
I implemented search and filtering for entities on our product at epilot. The users were heavily using the feature, however, a unique issue surfaced: difficulties in filtering file names containing diacritical marks like umlauts (Äpfel, über, schön, etc.). Intrigued, I delved into the logic to investigate. Initially, everything seemed in order. For instance, a file named “blöb”… Continue reading The ü/ü Conundrum The post The ü/ü Conundrum first appeared on Nishu Goel.| Nishu Goel
Magic happens when you attach HTML with certain format in mail and find totally different file on other end.| Random Ramblings
In Python 2, it's no problem to use the `rb` or `wb` file modes to open binary files and process them using standard string methods. Not so easy in Python 3| Kevin Chung