2025年7月30日 (星期三)
- 03:142025年7月30日 (三) 03:14 差异 历史 −178 小 DDD guide 无编辑摘要
- 03:112025年7月30日 (三) 03:11 差异 历史 +6,554 新 DDD guide 创建页面,内容为“= Domain-Driven Design (DDD) Guide = This guide provides an overview of key concepts and best practices for implementing Domain-Driven Design (DDD), focusing on the separation of concerns between the domain model, repository, and persistence layer. == Key Principles of DDD == 1. **Focus on the Domain**: - The domain model represents the core business logic and rules. - It should be independent of technical concerns like persistence or frameworks. 2. **…”
- 01:302025年7月30日 (三) 01:30 差异 历史 +904 小 Kotlin coroutines →全局协程像守护线程 当前
- 01:262025年7月30日 (三) 01:26 差异 历史 +20 小 Stackless and Stackful Coroutines →Stackless Coroutines 当前
- 01:262025年7月30日 (三) 01:26 差异 历史 +25 小 Kotlin coroutines 无编辑摘要
- 01:242025年7月30日 (三) 01:24 差异 历史 +538 小 Stackless and Stackful Coroutines 无编辑摘要
- 01:222025年7月30日 (三) 01:22 差异 历史 +1,155 新 Stackless and Stackful Coroutines 创建页面,内容为“=Stacked Coroutines= These are coroutines that rely on the program's call stack for managing their state. When a coroutine calls another coroutine, the caller's state is saved on the stack, and the callee's state is pushed onto the stack. This allows for a natural nesting of coroutine calls. Example: Traditional thread-based systems or languages like C++ with stackful coroutines. Advantages: Easier to implement and debug because they follow the natural call…”
2025年7月29日 (星期二)
- 02:392025年7月29日 (二) 02:39 差异 历史 +89 小 Numbers Everyone Should Know 无编辑摘要 当前
- 02:382025年7月29日 (二) 02:38 差异 历史 +1 小 Numbers Everyone Should Know 无编辑摘要
- 02:382025年7月29日 (二) 02:38 差异 历史 0 新 文件:Numbers-io.png 无编辑摘要 当前
- 02:382025年7月29日 (二) 02:38 差异 历史 +169 新 Numbers Everyone Should Know 创建页面,内容为“600px<ref>https://www.cs.cornell.edu/projects/ladis2009/talks/dean-keynote-ladis2009.pdf</ref> Category:Linux/Unix Category:Performance”
- 01:562025年7月29日 (二) 01:56 差异 历史 −1 小 Linux Extended BPF (eBPF) 无编辑摘要 当前
- 01:552025年7月29日 (二) 01:55 差异 历史 0 小 Linux Extended BPF (eBPF) Riguz移动页面EBPF至Linux Extended BPF (eBPF),不留重定向
- 01:552025年7月29日 (二) 01:55 差异 历史 +114 小 Linux Extended BPF (eBPF) 无编辑摘要
- 01:502025年7月29日 (二) 01:50 差异 历史 +2 小 Linux performance observability tools 无编辑摘要 当前
- 01:502025年7月29日 (二) 01:50 差异 历史 0 新 文件:Linux perf tools full.svg 无编辑摘要 当前
- 01:502025年7月29日 (二) 01:50 差异 历史 0 新 文件:Linux observability sar.png 无编辑摘要 当前
- 01:502025年7月29日 (二) 01:50 差异 历史 0 新 文件:Linux tuning tools.png 无编辑摘要 当前
- 01:492025年7月29日 (二) 01:49 差异 历史 +4 小 Linux performance observability tools 无编辑摘要
- 01:492025年7月29日 (二) 01:49 差异 历史 0 新 文件:Linux benchmarking tools.png 无编辑摘要 当前
- 01:482025年7月29日 (二) 01:48 差异 历史 0 新 文件:Linux static tools.png 无编辑摘要 当前
- 01:482025年7月29日 (二) 01:48 差异 历史 +209 小 Linux performance observability tools 无编辑摘要
- 01:472025年7月29日 (二) 01:47 差异 历史 0 新 文件:Linux observability tools.png 无编辑摘要 当前
- 01:472025年7月29日 (二) 01:47 差异 历史 +48 小 Linux performance observability tools 无编辑摘要
- 01:432025年7月29日 (二) 01:43 差异 历史 +79 新 Linux performance observability tools 创建页面,内容为“<ref>https://www.brendangregg.com/linuxperf.html</ref> Category:Linux/Unix”
- 01:372025年7月29日 (二) 01:37 差异 历史 0 小 MediaWiki:Common.css 无编辑摘要
- 01:352025年7月29日 (二) 01:35 差异 历史 +16 小 MediaWiki:Common.css 无编辑摘要
- 01:292025年7月29日 (二) 01:29 差异 历史 +47 小 MediaWiki:Common.css 无编辑摘要
- 01:272025年7月29日 (二) 01:27 差异 历史 +666 小 Thread cost 无编辑摘要 当前
- 01:162025年7月29日 (二) 01:16 差异 历史 +25 新 Thread cost 创建页面,内容为“ Category:Concurrent”
2025年7月24日 (星期四)
- 11:142025年7月24日 (四) 11:14 差异 历史 +265 小 Sqlite3 extension 无编辑摘要 当前
- 11:132025年7月24日 (四) 11:13 差异 历史 +977 新 Sqlite3 extension 创建页面,内容为“ <syntaxhighlight lang="cpp"> →** This routine does the work of opening a database on behalf of ** sqlite3_open() and sqlite3_open16(). The database filename "zFilename" ** is UTF-8 encoded.: static int openDatabase( const char *zFilename, →Database filename UTF-8 encoded: sqlite3 **ppDb, →OUT: Returned database handle: unsigned int flags, →Operational flags: const char *zVfs →Name of the VFS to use: ){ // ... /*…”
2025年7月17日 (星期四)
- 14:322025年7月17日 (四) 14:32 差异 历史 −72 小 Invoke SqlCipher using Flutter ffi →源码编译 当前
2025年7月1日 (星期二)
- 06:362025年7月1日 (二) 06:36 差异 历史 +2,667 新 Sqlite3 advanced feature 创建页面,内容为“<syntaxhighlight lang="sql"> CREATE TABLE Notes ( id UUID PRIMARY KEY, title TEXT, content JSON NOT NULL, content_checksum TEXT NOT NULL, content_plaintext TEXT NOT NULL, classification CHAR(1) NOT NULL CHECK (classification IN ('C', 'S', 'T')), -- C = Confidential, S = Secret, T = Top Secret created_at DATETIME DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME DEFAULT CURRENT_TIMESTAMP, d…” 当前
2025年6月27日 (星期五)
- 01:232025年6月27日 (五) 01:23 差异 历史 +1 小 Adaptive design 无编辑摘要 当前
- 01:232025年6月27日 (五) 01:23 差异 历史 0 新 文件:Responsive-adaptive-design.jpg 无编辑摘要 当前
- 01:222025年6月27日 (五) 01:22 差异 历史 +40 新 Adaptive design 创建页面,内容为“Image:responsive-adaptive-design.jpg”
2025年6月19日 (星期四)
- 15:462025年6月19日 (四) 15:46 差异 历史 +139 小 STM32 development environment →STM32 for Vscode 当前
- 14:372025年6月19日 (四) 14:37 差异 历史 +51 小 STM32 boot mode 无编辑摘要 当前
2025年6月13日 (星期五)
- 01:152025年6月13日 (五) 01:15 差异 历史 +80 新 STM32 boot mode 创建页面,内容为“ Boot0 Boot1 Boot Mode 0 x Main Flash Memory 1 0 System Memory 1 1 Embedded SRAM”
2025年6月12日 (星期四)
- 07:162025年6月12日 (四) 07:16 差异 历史 +188 小 STM32 core board →Schematic 当前
- 03:302025年6月12日 (四) 03:30 差异 历史 +223 小 STM32 core board →Power
- 01:202025年6月12日 (四) 01:20 差异 历史 +598 小 STM32 core board 无编辑摘要
2025年6月11日 (星期三)
- 06:302025年6月11日 (三) 06:30 差异 历史 +46 小 首页 →PROJECTS
- 06:202025年6月11日 (三) 06:20 差异 历史 0 小 Collaborative editing Riguz移动页面Operational Transform至Collaborative editing,不留重定向 当前
- 06:192025年6月11日 (三) 06:19 差异 历史 +25 小 Collaborative editing →YATA/Yjs
2025年6月7日 (星期六)
- 16:312025年6月7日 (六) 16:31 差异 历史 +35 小 STM32 development environment →ST Link v3 minie
- 16:312025年6月7日 (六) 16:31 差异 历史 0 新 文件:Stlinkv3minie.jpg 无编辑摘要 当前
- 16:262025年6月7日 (六) 16:26 差异 历史 +113 小 STM32 development environment →ST Link v2
- 16:252025年6月7日 (六) 16:25 差异 历史 −600 小 STM32 development environment →STM32CubeMX