19. Turns out companies are reimagining the entire SDLC around agents
企业正围绕智能体重构整个软件开发生命周期,迈向工程师零代码编写时代。
20. I wanted to read engineering blogs on my Kindle, so
开发者用AI编码工具制作了PageStack,可将网页博客转为EPUB供Kindle阅读。
21. Wrote a deep dive on how databases actually execute JOINs
详解数据库执行JOIN的各类算法及查询规划器选择依据。
22. No matter how many blogs, books, or papers you read,
原型制作是理解任何事物的最快方式,核心在于找到最小可行代码并迭代。
23. Say you are building a news aggregator (like Google News
MinHash与LSH技术用于大规模新闻去重,通过近似Jaccard相似度高效识别重复文档。
24. TDD was ahead of its time
测试驱动开发因编码智能体普及将复兴,由人写测试、AI实现功能。
25. Deleting a large number of rows (say, a million) in
大批量删除行会锁库拖垮数据库,应分批删除并间隔执行。
26. Today, I was going through a GitHub blog from 2017,
GitHub 通过文本清洗、分类器、tf-idf 和去重,自动为仓库推荐主题标签。
27. Google just released TimesFM (a Time Series Foundation Model) -
谷歌发布200M参数的时序基础模型TimesFM,零样本预测新数据,性能匹敌甚至超越专门训练的模型。
28. Here's something counterintuitive about B+ trees - inserting keys in
顺序插入B+树虽快但导致内部碎片化,随机插入更省空间。
29. In 2022, I started exploring database internals out of pure
2022年起因好奇探索数据库内核,现约七成文章围绕此主题。
30. Go 1.26 just dropped :) and there's some interesting stuff
Go 1.26发布,新增new表达式初始化、默认Green Tea GC等特性。
31. In C, you can define two interesting macros - likely() and unlikely
C语言likely和unlikely宏通过编译器提示优化分支预测,提升性能但需谨慎使用。
32. Most systems detect node or master failures using simple polling,
多数系统用简单轮询检测节点故障,但存在误报与延迟的权衡问题。
33. Renaming of a file is an atomic operation, and this
文件重命名的原子性保障了数据库写入的完整性与崩溃安全。
34. Anthropic spun up 16 Opus 4
Anthropic用16个AI代理并行开发出能编译Linux内核的Rust编译器,耗资2万美元。
35. Rows in PostgreSQL are immutable and stored on the 'heap
PostgreSQL行存于堆中,CTID标识物理位置,更新时变化致索引需同步更新。
36. Read replicas are great for scaling reads, but what if
用代理管理只读副本,实现弹性伸缩与高可用。
37. GitHub stores millions of repositories the same way they exist
GitHub用三副本多数派写入机制存储仓库,确保数据不丢失。
企业正围绕智能体重构整个软件开发生命周期,迈向工程师零代码编写时代。
20. I wanted to read engineering blogs on my Kindle, so
开发者用AI编码工具制作了PageStack,可将网页博客转为EPUB供Kindle阅读。
21. Wrote a deep dive on how databases actually execute JOINs
详解数据库执行JOIN的各类算法及查询规划器选择依据。
22. No matter how many blogs, books, or papers you read,
原型制作是理解任何事物的最快方式,核心在于找到最小可行代码并迭代。
23. Say you are building a news aggregator (like Google News
MinHash与LSH技术用于大规模新闻去重,通过近似Jaccard相似度高效识别重复文档。
24. TDD was ahead of its time
测试驱动开发因编码智能体普及将复兴,由人写测试、AI实现功能。
25. Deleting a large number of rows (say, a million) in
大批量删除行会锁库拖垮数据库,应分批删除并间隔执行。
26. Today, I was going through a GitHub blog from 2017,
GitHub 通过文本清洗、分类器、tf-idf 和去重,自动为仓库推荐主题标签。
27. Google just released TimesFM (a Time Series Foundation Model) -
谷歌发布200M参数的时序基础模型TimesFM,零样本预测新数据,性能匹敌甚至超越专门训练的模型。
28. Here's something counterintuitive about B+ trees - inserting keys in
顺序插入B+树虽快但导致内部碎片化,随机插入更省空间。
29. In 2022, I started exploring database internals out of pure
2022年起因好奇探索数据库内核,现约七成文章围绕此主题。
30. Go 1.26 just dropped :) and there's some interesting stuff
Go 1.26发布,新增new表达式初始化、默认Green Tea GC等特性。
31. In C, you can define two interesting macros - likely() and unlikely
C语言likely和unlikely宏通过编译器提示优化分支预测,提升性能但需谨慎使用。
32. Most systems detect node or master failures using simple polling,
多数系统用简单轮询检测节点故障,但存在误报与延迟的权衡问题。
33. Renaming of a file is an atomic operation, and this
文件重命名的原子性保障了数据库写入的完整性与崩溃安全。
34. Anthropic spun up 16 Opus 4
Anthropic用16个AI代理并行开发出能编译Linux内核的Rust编译器,耗资2万美元。
35. Rows in PostgreSQL are immutable and stored on the 'heap
PostgreSQL行存于堆中,CTID标识物理位置,更新时变化致索引需同步更新。
36. Read replicas are great for scaling reads, but what if
用代理管理只读副本,实现弹性伸缩与高可用。
37. GitHub stores millions of repositories the same way they exist
GitHub用三副本多数派写入机制存储仓库,确保数据不丢失。