# Hotdry Blog

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

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

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

## 本页文章
### [耳蜗计算原理：从生物启发的信号处理到工程实现](/posts/2025/10/09/cochlear-computing-principles-engineering-applications/)
- 日期: 2025-10-09T20:02:13+08:00
- 分类: [general](/categories/general/)
- 摘要: 深入解析耳蜗的生物计算机制，探讨如何将听觉系统的频率分析、非线性放大和自归一化特性转化为工程应用，涵盖人工耳蜗、仿生信号处理和神经形态计算等关键技术。

### [Zig 中的 Cubyz：块状体素生成与多线程渲染工程实践](/posts/2025/10/09/cubyz-chunk-based-voxel-generation-multi-threaded-rendering-in-zig/)
- 日期: 2025-10-09T20:01:42+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 探讨 Cubyz 项目中基于块的程序化世界生成与多线程渲染管道的设计，实现大视野距离和实时体素操作的无性能损失。

### [Rust 中自定义 Vec<T> 的容量倍增、内联小向量存储与零拷贝增长优化](/posts/2025/10/09/rust-custom-vec-optimization-capacity-doubling-inline-small-vector-zero-copy-growth/)
- 日期: 2025-10-09T19:47:03+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 面向 Rust 低级数据结构工程，介绍自定义 Vec<T> 的容量倍增、内联存储与零拷贝增长策略，优化内存分配与缓存性能。

### [通过访客模式和重写规则工程化 Rustfmt 的可配置风格强制](/posts/2025/10/09/engineering-configurable-style-enforcement-rustfmt-visitor-rewrite-rules/)
- 日期: 2025-10-09T19:32:15+08:00
- 分类: [compiler-design](/categories/compiler-design/)
- 摘要: 探讨 Rustfmt 如何利用访客模式遍历 AST 和重写规则实现 idiomatic 格式化，并提供与构建工具集成的工程参数和配置清单。

### [Zig 中体素无限世界的块状世界生成与多线程渲染工程实践](/posts/2025/10/09/engineering-chunk-based-world-generation-multi-threaded-rendering-zig-voxel/)
- 日期: 2025-10-09T19:18:35+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 探讨使用 Zig 语言实现基于块的程序化体素世界生成、多线程渲染技术，支持物理模拟和大视距绘制，提供工程参数和优化要点。

### [n8n 中工程化低代码管道：多 LLM 工作流编排与工具集成](/posts/2025/10/09/engineering-low-code-pipelines-in-n8n-for-multi-llm-workflow-orchestration/)
- 日期: 2025-10-09T19:01:51+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 面向多模型 AI 工作流，给出 n8n 低代码管道的工程实践、集成参数与生产化要点。

### [实现《调试书籍》中的交互式调试练习：基于频谱的故障定位与 CI 管道中的自动化修复建议](/posts/2025/10/09/implementing-interactive-debugging-exercises-from-the-debugging-book/)
- 日期: 2025-10-09T18:47:18+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 基于《调试书籍》的交互式练习，实现频谱-based故障定位和自动化修复建议，集成到CI管道中，提供动态分析的参数和监控要点。

### [Stagehand 中的隐秘会话管理：会话池化、代理轮换与指纹规避](/posts/2025/10/09/stealth-session-management-stagehand/)
- 日期: 2025-10-09T18:33:06+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 利用 Stagehand 和 Browserbase 构建隐秘、可扩展的浏览器自动化系统，聚焦会话池化、代理轮换及指纹规避技术，实现数千并行 AI 会话。

### [Prettier 的诞生：使用 Recast 进行 AST 遍历的初始原型工程](/posts/2025/10/09/prettier-birth-prototype-recast/)
- 日期: 2025-10-09T18:17:04+08:00
- 分类: [compiler-design](/categories/compiler-design/)
- 摘要: 探讨 Prettier 初始原型的设计，使用 Recast 处理 AST 遍历与固定格式规则，解决团队代码风格争端，提供工程参数与集成清单。

### [CUA 沙箱中 API 钩子延迟与内存开销的定量分析：实现亚毫秒级拦截的优化策略](/posts/2025/10/09/cua-sandbox-api-hooking-overhead/)
- 日期: 2025-10-09T17:47:53+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 针对跨 OS 桌面代理的 CUA 沙箱，分析 API 钩子机制的性能开销，提供 sub-1ms 拦截的工程化优化参数与监控要点。

### [Rust 字长整数规范中的非加性解结：工程化并发内存访问模式](/posts/2025/10/09/rust-word-spec-memory-model-additivity/)
- 日期: 2025-10-09T17:32:02+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 面向并发系统，探讨 Rust word-sized integer spec 的非加性问题，并给出 AtomicUsize 等工具的工程化应用与参数配置。

### [通过 Zen MCP Server 统一 API 编排 Claude 与 Codex 代理：共享 Redis 状态与动态故障转移](/posts/2025/10/09/claude-codex-orchestration-with-zen-mcp-server/)
- 日期: 2025-10-09T17:16:46+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 面向生产级多模型 AI 管道，给出 Zen MCP Server 中 Claude 和 Codex 代理的统一编排、共享状态与故障转移的工程参数与监控要点。

### [React Foundation：统一 React 生态系统以实现跨平台开发](/posts/2025/10/09/react-foundation-unifying-the-react-ecosystem-for-cross-platform-development/)
- 日期: 2025-10-09T17:02:42+08:00
- 分类: [application-security](/categories/application-security/)
- 摘要: React Foundation 通过统一 React 和 React Native 的基础架构，实现共享组件库和工具链，消除框架孤岛，支持高效的跨平台开发管道。

### [Rust 中字长整数规格分析：用于精确低级建模、优化与并发原语](/posts/2025/10/09/analyzing-word-sized-integers-in-rust-for-low-level-modeling/)
- 日期: 2025-10-09T16:46:52+08:00
- 分类: [compiler-design](/categories/compiler-design/)
- 摘要: 探讨 Rust usize 和 isize 的规格及其在低级内存建模、编译优化和并发原语中的应用，提供工程化参数和监控要点。

### [Analyzing Floating-Point Instruction Fusion and Register Pressure in LLVM Backend for Go ARM64](/posts/2025/10/09/analyzing-floating-point-instruction-fusion-and-register-pressure-in-llvm-backend-for-go-arm64/)
- 日期: 2025-10-09T16:32:19+08:00
- 分类: [compiler-design](/categories/compiler-design/)
- 摘要: 探讨 LLVM 后端在 Go ARM64 编译中的浮点指令融合策略与寄存器压力管理，提供预防误编译的工程参数与监控要点。

### [Prettier 的解析器-打印器架构：构建强意见代码格式化器](/posts/2025/10/09/prettier-parser-printer-architecture/)
- 日期: 2025-10-09T16:16:52+08:00
- 分类: [compiler-design](/categories/compiler-design/)
- 摘要: 基于递归下降解析器和美化打印器的 Prettier 实现，探讨如何强制一致代码风格并自动化重构配置冲突。

### [SurfSense 中 Confluence/Notion 与 YouTube 的混合 RAG 集成](/posts/2025/10/09/surfsense-confluence-notion-youtube-hybrid-rag-integration/)
- 日期: 2025-10-09T16:06:58+08:00
- 分类: [ai-systems](/categories/ai-systems/)
- 摘要: 面向混合 RAG 检索，给出 Confluence/Notion API 与 YouTube 字幕的集成参数与语义搜索实现要点。

### [ThingsBoard 中使用自定义 JS 规则链实现实时 IoT 事件过滤、外部 API 数据丰富与 Kafka 流动态告警路由](/posts/2025/10/09/custom-js-rule-chains-thingsboard-iot-filtering-enrichment-kafka/)
- 日期: 2025-10-09T16:02:26+08:00
- 分类: [systems-engineering](/categories/systems-engineering/)
- 摘要: 探讨 ThingsBoard 规则引擎中自定义 JS 脚本的应用，包括事件过滤、外部 API 数据丰富，以及通过 Kafka 流实现动态告警路由的工程实践与参数配置。

### [实现SIMD指令调度以提升编译器自动向量化：在计算密集型应用中的高效并行执行](/posts/2025/10/09/simd-instruction-scheduling-autovectorization/)
- 日期: 2025-10-09T15:49:21+08:00
- 分类: [compiler-design](/categories/compiler-design/)
- 摘要: 探讨通过优化SIMD指令调度来增强编译器自动向量化功能，实现无需手动内联函数的计算密集型应用的并行加速，提供工程参数和监控要点。

### [通过 SIMD 指令调度提升编译器自动向量化效率](/posts/2025/10/09/Boosting-Compiler-Autovectorization-with-SIMD-Instruction-Scheduling/)
- 日期: 2025-10-09T15:48:07+08:00
- 分类: [compiler-design](/categories/compiler-design/)
- 摘要: 在计算密集型应用中，利用指令调度优化编译器生成的 SIMD 代码，实现高效并行执行。提供实用参数和工程实践，避免手动 intrinsics。

## 热门分类
- [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)
