新页面
- 2025年9月8日 (一) 14:09 未来住所设计 (历史 | 编辑) [312字节] Riguz(留言 | 贡献) (创建页面,内容为“= 装修 = ==布局== ==水电== ==网络== =区域设计= == 书房/工作室== == 客厅== == 卧室== == 厨房== == 洗手间== == 阳台== = 创意 = Category:House Design Category:Reminder”)
- 2025年8月17日 (日) 13:40 Ystack (历史 | 编辑) [3,436字节] Riguz(留言 | 贡献) (创建页面,内容为“ = Services and responsibilities == Auth / Identity (Keycloak) == Responsibility: Authentication, user identity, SSO, OIDC tokens. Data owned: Keycloak user record (sub), basic profile attributes. Notes: Other services store keycloak_id as foreign reference only. == Customer Service (customer profile / account)== Responsibility: canonical customer profile (name, emails, billing address, company, contact info), payment-customer mapping (e.g., providerCustomerId…”)
- 2025年8月13日 (三) 16:26 Quarkus get started (历史 | 编辑) [5,027字节] Riguz(留言 | 贡献) (创建页面,内容为“= Get started = == Install CLI== <syntaxhighlight lang="bash"> curl -Ls https://sh.jbang.dev | bash -s - trust add https://repo1.maven.org/maven2/io/quarkus/quarkus-cli/ curl -Ls https://sh.jbang.dev | bash -s - app install --fresh --force quarkus@quarkusio </syntaxhighlight> == Hello world == <syntaxhighlight lang="cpp"> quarkus create && cd code-with-quarkus </syntaxhighlight> <syntaxhighlight lang="cpp"> $ quarkus dev ... [INFO] Compiling 2 source files…”)
- 2025年8月13日 (三) 14:31 Quarkus vs vert.x (历史 | 编辑) [567字节] Riguz(留言 | 贡献) (创建页面,内容为“=Benchmark= Image:Quarkus-vertx-benchmark-json.png Image:Quarkus-vertx-benchmark-singlequery.png Image:Quarkus-vertx-benchmark-multiquery.png Image:Quarkus-vertx-benchmark-fortune.png Image:Quarkus-vertx-benchmark-update.png Category:Java Category:Reactive Category:Vert.x Category:Quarkus”)
- 2025年8月1日 (五) 03:55 LC3 virtual machine (历史 | 编辑) [107字节] Riguz(留言 | 贡献) (创建页面,内容为“* https://www.jmeiners.com/lc3-vm/ Category:JVM Category:Assemble”)
- 2025年8月1日 (五) 02:54 Web framework benchmark (历史 | 编辑) [50字节] Riguz(留言 | 贡献) (创建页面,内容为“ Category:Cocurrency Category:Performance”)
- 2025年7月30日 (三) 03:11 DDD guide (历史 | 编辑) [9,905字节] Riguz(留言 | 贡献) (创建页面,内容为“= 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. **…”)
- 2025年7月30日 (三) 01:22 Stackless and Stackful Coroutines (历史 | 编辑) [1,713字节] Riguz(留言 | 贡献) (创建页面,内容为“=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:38 Numbers Everyone Should Know (历史 | 编辑) [259字节] Riguz(留言 | 贡献) (创建页面,内容为“600px<ref>https://www.cs.cornell.edu/projects/ladis2009/talks/dean-keynote-ladis2009.pdf</ref> Category:Linux/Unix Category:Performance”)
- 2025年7月29日 (二) 01:43 Linux performance observability tools (历史 | 编辑) [342字节] Riguz(留言 | 贡献) (创建页面,内容为“<ref>https://www.brendangregg.com/linuxperf.html</ref> Category:Linux/Unix”)
- 2025年7月29日 (二) 01:16 Thread cost (历史 | 编辑) [691字节] Riguz(留言 | 贡献) (创建页面,内容为“ Category:Concurrent”)
- 2025年7月24日 (四) 11:13 Sqlite3 extension (历史 | 编辑) [1,242字节] Riguz(留言 | 贡献) (创建页面,内容为“ <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月1日 (二) 06:36 Sqlite3 advanced feature (历史 | 编辑) [2,667字节] Riguz(留言 | 贡献) (创建页面,内容为“<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:22 Adaptive design (历史 | 编辑) [41字节] Riguz(留言 | 贡献) (创建页面,内容为“Image:responsive-adaptive-design.jpg”)
- 2025年6月13日 (五) 01:15 STM32 boot mode (历史 | 编辑) [131字节] Riguz(留言 | 贡献) (创建页面,内容为“ Boot0 Boot1 Boot Mode 0 x Main Flash Memory 1 0 System Memory 1 1 Embedded SRAM”)