# Hotdry Blog

> 代码、系统与工程实践的长期写作记录，适合按文章、分类和归档路径持续检索。

## 页面摘要
- 路径: /page/746/
- 当前页: 746 / 843
- 每页文章数: 20
- 文章总数: 16860
- 分类数: 267
- 归档年份数: 4
- 归档月份数: 17

## 快速导航
- [分类索引](/categories/)
- [归档索引](/archive/)
- [关于](/about/)
- [RSS](/rss.xml)

## 本页文章
### [Postgres 中 Kalman 滤波器的实现](/posts/2025/09/30/kalman-filter-postgres-implementation/)
- 日期: 2025-09-30T18:17:27+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 使用 PL/pgSQL 和窗口函数在 Postgres 中实现 Kalman 滤波器，进行流式传感器数据的实时状态估计，包括自定义聚合的矩阵操作要点。

### [终端AI编码代理的多代理协调工程：并行任务执行、状态同步与低延迟反馈循环](/posts/2025/09/30/engineering-multi-agent-coordination-terminal-ai-coding-agents/)
- 日期: 2025-09-30T18:08:43+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 面向终端AI编码的多代理协调，给出并行执行、状态同步与反馈循环的工程参数与监控要点。

### [使用 ABS Actor 模型构建无锁并发系统](/posts/2025/09/30/building-lock-free-concurrent-systems-with-abs-actor-model/)
- 日期: 2025-09-30T18:04:08+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 利用 ABS 语言的 actor 模型，通过异步消息传递和行为类型化，实现可扩展的分布式应用的无锁并发系统构建要点和工程参数。

### [Rust 中的 Cap'n 协议实现：高效零拷贝消息序列化与低延迟 RPC](/posts/2025/09/30/rust-capn-protocol-implementation-efficient-zero-copy-serialization-for-low-latency-rpc/)
- 日期: 2025-09-30T17:48:52+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 探讨在 Rust 中移植 Cap'n 协议的核心实现，包括零拷贝序列化、动态 schema 支持以及 packed 二进制格式的处理，提供工程化参数和最佳实践。

### [在 ABS 语言中实现可验证的 Actor 程序用于无锁分布式系统](/posts/2025/09/30/implement-verifiable-actor-programs-abs-lock-free-distributed-systems/)
- 日期: 2025-09-30T17:33:06+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 聚焦行为类型和容错消息传递，提供 ABS 中 Actor 程序的验证与工程化参数。

### [Rust 中 Cap'n Proto 与 Serde 集成实现 Web RPC 的零开销序列化](/posts/2025/09/30/integrating-capn-proto-with-serde-in-rust-for-web-rpc/)
- 日期: 2025-09-30T17:18:36+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 通过 Cap'n Proto schema 与 Serde derive 宏的集成，实现 Rust web RPC 中的高效数据绑定和零开销序列化，支持动态客户端-服务器交互。

### [zlib Huffman 表畸形利用：触发 deflate 解码器缓冲区溢出实现代码执行](/posts/2025/09/30/zlib-huffman-table-exploit/)
- 日期: 2025-09-30T17:03:14+08:00
- 分类: [ai-security](/categories/ai-security/)
- 摘要: 探讨如何通过构造畸形 Huffman 表触发 zlib deflate 解码器的缓冲区溢出，实现代码执行。提供工程参数、监控要点与防护策略。

### [工程模块化原型：并发系统、实时网络与嵌入式应用的异步模式实践](/posts/2025/09/30/engineering-modular-prototypes-for-concurrent-systems-real-time-networking-embedded-apps/)
- 日期: 2025-09-30T16:48:48+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 基于 app-ideas 仓库，探讨模块化设计在并发系统中的工程实践，聚焦异步模式、状态管理和跨平台部署，提供参数配置与落地清单。

### [利用 Claude 3.5 Sonnet 的工具调用构建 RAG 结构化提取管道](/posts/2025/09/30/leverage-claude-3-5-sonnet-tool-calling-for-rag-structured-extraction/)
- 日期: 2025-09-30T16:33:34+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 基于 Claude 3.5 Sonnet 的工具调用能力，构建实时结构化 JSON 提取管道，提升 RAG 系统中的查询处理和数据验证效率。

### [Intel Xeon 6 内存子系统剖析：缓存设计、带宽扩展与延迟权衡](/posts/2025/09/30/intel-xeon-6-memory-subsystem-analysis/)
- 日期: 2025-09-30T16:17:18+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 探讨 Intel Xeon 6 的 L1/L2/L3 缓存架构、内存带宽扩展策略以及延迟优化，在 HPC 和 AI 推理管道中的应用参数与监控要点。

### [Claude Sonnet 并行工具调用集成：面向代理工作流的并发API编排](/posts/2025/09/30/integrating-parallel-tool-calling-claude-sonnet-agentic-workflows/)
- 日期: 2025-09-30T16:08:16+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 将Claude Sonnet 4.5的并行函数调用集成到代理工作流，实现多步推理的并发API调用，降低延迟，提供参数配置与监控要点。

### [代理式商业中无状态 JWT 令牌的即时结账续传工程化](/posts/2025/09/30/engineering-stateless-jwt-for-instant-checkout-resumption-in-agentic-commerce/)
- 日期: 2025-09-30T16:02:57+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 在AI代理驱动的商业场景下，探讨无状态JWT实现多步交易断线续传的工程参数、监控要点与回滚策略。

### [工程化分布式 AlphaFold 推理管道：GPU 编排加速分子生物学假设生成](/posts/2025/09/30/engineering-distributed-alphafold-inference-pipelines-with-gpu-orchestration/)
- 日期: 2025-09-30T15:47:56+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 探讨构建分布式 AlphaFold 推理系统，利用 GPU 编排加速蛋白质结构预测，支持分子生物学中的快速假设生成与验证。提供架构设计、优化参数及工程实践要点。

### [Implementing Verifiable Actor Programs in ABS for Scalable Distributed Systems](/posts/2025/09/30/implementing-verifiable-actor-programs-in-abs-for-scalable-distributed-systems/)
- 日期: 2025-09-30T15:33:07+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: Explore orthogonal persistence and future references in ABS to achieve lock-free concurrency in distributed actor-based systems.

### [Starlink卫星信号高精度地理定位：多普勒偏移与多径误差工程处理](/posts/2025/09/30/high-precision-geolocation-with-starlink-signals-engineering-doppler-shifts-and-multipath-errors/)
- 日期: 2025-09-30T15:18:41+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 针对偏远地区移动设备，利用Starlink LEO卫星信号实现米级定位，详述多普勒补偿与多径缓解的参数与策略。

### [Engineering Graph-Based AST Traversal and Semantic Indexing for AI Agents in HumanLayer](/posts/2025/09/30/engineering-graph-based-ast-traversal-and-semantic-indexing-for-ai-agents-in-humanlayer/)
- 日期: 2025-09-30T15:03:27+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 在 HumanLayer 项目中，探讨基于图的 AST 遍历和语义索引技术，帮助 AI 代理高效导航大型代码库，提供具体参数配置和优化策略，确保工程落地。

### [使用 Procasm 进行过程化 x86 汇编代码生成：自动寄存器分配与优化](/posts/2025/09/30/procedural-assembly-generation-with-procasm/)
- 日期: 2025-09-30T14:49:19+08:00
- 分类: [compiler-design](/categories/compiler-design/)
- 摘要: Procasm 作为一种过程化 DSL，简化了 x86 汇编的动态生成过程。本文聚焦自动寄存器分配、内联展开和优化通道，提供可落地工程参数与实践清单。

### [基于 Rust 的 Cap'n Web：Web 环境中零拷贝 RPC 协议构建](/posts/2025/09/30/building-rust-capn-web-zero-copy-rpc-protocol/)
- 日期: 2025-09-30T14:48:49+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 面向 Web 环境，给出 Rust capn-rs 实现 Cap'n Web 的零拷贝 RPC 配置与动态分发要点。

### [在 Redisearch 中实现向量量化：压缩高维嵌入以支持 AI 推荐系统的高效搜索](/posts/2025/09/30/implementing-vector-quantization-in-redisearch-for-ai-recommendations/)
- 日期: 2025-09-30T14:18:12+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 介绍向量量化在 Redisearch 中的应用，通过压缩高维嵌入实现高效存储和快速相似搜索，适用于 AI 推荐系统。

### [并发系统、实时网络与嵌入式实践的模块化应用原型](/posts/2025/09/30/modular-app-prototypes-for-concurrent-systems-real-time-networking-embedded-practice/)
- 日期: 2025-09-30T14:08:17+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 从 app-ideas 仓库精选模块化原型，用于练习并发、实时网络和嵌入式约束，提供工程化参数和动手清单，帮助构建可扩展技能。

## 热门分类
- [ai-systems](/categories/ai-systems/): 5960 篇
- [systems-engineering](/categories/systems-engineering/): 4056 篇
- [systems](/categories/systems/): 1860 篇
- [ai-security](/categories/ai-security/): 868 篇
- [application-security](/categories/application-security/): 842 篇
- [compiler-design](/categories/compiler-design/): 699 篇
- [security](/categories/security/): 526 篇
- [ai-engineering](/categories/ai-engineering/): 329 篇
- [compilers](/categories/compilers/): 322 篇
- [web](/categories/web/): 205 篇
- [general](/categories/general/): 198 篇
- [mlops](/categories/mlops/): 81 篇

## 最近归档
### [2026 年](/archive/2026/)
- 年度文章数: 6466
- 月份概览: [2026-04](/archive/2026/04/) (494)、[2026-03](/archive/2026/03/) (905)、[2026-02](/archive/2026/02/) (2318)、[2026-01](/archive/2026/01/) (2749)

### [2025 年](/archive/2025/)
- 年度文章数: 10386
- 月份概览: [2025-12](/archive/2025/12/) (2684)、[2025-11](/archive/2025/11/) (2842)、[2025-10](/archive/2025/10/) (2885)、[2025-09](/archive/2025/09/) (1967)、[2025-08](/archive/2025/08/) (1)、[2025-07](/archive/2025/07/) (1)

### [2024 年](/archive/2024/)
- 年度文章数: 5
- 月份概览: [2024-10](/archive/2024/10/) (2)、[2024-09](/archive/2024/09/) (2)、[2024-07](/archive/2024/07/) (1)

### [2023 年](/archive/2023/)
- 年度文章数: 3
- 月份概览: [2023-10](/archive/2023/10/) (2)、[2023-03](/archive/2023/03/) (1)
