新页面
- 2025年8月13日 (三) 16:26 Quarkus get started (历史 | 编辑) [3,897字节] 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,648字节] 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”)
- 2025年6月5日 (四) 02:07 STM32 core board (历史 | 编辑) [1,069字节] Riguz(留言 | 贡献) (创建页面,内容为“ Category:STM32 Category:ARM Category:Embedded”)
- 2025年5月7日 (三) 01:33 Free LLM API (历史 | 编辑) [14字节] Riguz(留言 | 贡献) (创建页面,内容为“ * GLM-4-Flash”)
- 2025年5月6日 (二) 16:06 Ubuntu let's encryt nginx (历史 | 编辑) [1,171字节] Riguz(留言 | 贡献) (创建页面,内容为“ = Wild certificate = <syntaxhighlight lang="bash"> sudo certbot certonly --manual --preferred-challenges=dns -d *.fn.quillgen.com </syntaxhighlight> 600px To verify: https://toolbox.googleapps.com/apps/dig/#TXT/_acme-challenge.fn.quillgen.com Category:Linux/Unix”)
- 2025年5月6日 (二) 13:24 Install knative (历史 | 编辑) [5,121字节] Riguz(留言 | 贡献) (创建页面,内容为“=Knative Serving= == Install serving == <syntaxhighlight lang="bash"> kubectl apply -f https://github.com/knative/serving/releases/download/knative-v1.18.0/serving-crds.yaml kubectl apply -f https://github.com/knative/serving/releases/download/knative-v1.18.0/serving-core.yaml kubectl apply -f https://github.com/knative/net-kourier/releases/download/knative-v1.18.0/kourier.yaml kubectl patch configmap/config-network \ --namespace knative-serving \ --type m…”)
- 2025年5月6日 (二) 03:15 Interesting AI features (历史 | 编辑) [135字节] Riguz(留言 | 贡献) (创建页面,内容为“ * smart head shot. https://headshot.wps.com/”) 最初创建为“Interesting AI”
- 2025年4月28日 (一) 15:12 Ufw (历史 | 编辑) [359字节] Riguz(留言 | 贡献) (创建页面,内容为“<syntaxhighlight lang="bash"> $ sudo ufw status numbered Status: active To Action From -- ------ ---- [ 1] OpenSSH ALLOW IN Anywhere [ 2] 22 ALLOW IN Anywhere sudo ufw delete 6 sudo ufw allow 6443 </syntaxhighlight> Category:Linux/Unix”)
- 2025年4月27日 (日) 14:18 Kubernetes storage class (历史 | 编辑) [4,503字节] Riguz(留言 | 贡献) (创建页面,内容为“=NFS = <syntaxhighlight lang="bash"> apt install nfs-common # try to mount it mount -t nfs -o vers=3,nolock,proto=tcp,noresvport 10.19.31.01:/cfs-xxx /mnt/tmpnfs </syntaxhighlight> <syntaxhighlight lang="bash"> sudo ctr images pull registry.k8s.io/sig-storage/nfsplugin:v4.6.0 sudo ctr images pull registry.k8s.io/sig-storage/csi-provisioner:v3.6.2 sudo ctr images pull registry.k8s.io/sig-storage/csi-snapshotter:v6.3.2 sudo ctr images pull registry.k8s.io/sig-s…”)
- 2025年4月27日 (日) 14:03 Ubuntu kubernetes installation (历史 | 编辑) [7,870字节] Riguz(留言 | 贡献) (创建页面,内容为“=System preparation= <syntaxhighlight lang="python"> $ cat /etc/lsb-release DISTRIB_ID=Ubuntu DISTRIB_RELEASE=24.04 DISTRIB_CODENAME=noble DISTRIB_DESCRIPTION="Ubuntu 24.04.2 LTS" </syntaxhighlight> ==Updrage== <syntaxhighlight lang="bash"> sudo apt update sudo apt upgrade do-release-upgrade </syntaxhighlight> == Mount data disk (Optional) == <syntaxhighlight lang="bash"> mkfs.xfs /dev/vdb lsof /var mv /var/ /var0 mkdir /mnt/newvar/ mount /dev/vdb /mnt/newva…”)
- 2025年4月18日 (五) 15:20 Monitor kubernetes (历史 | 编辑) [2,232字节] Riguz(留言 | 贡献) (创建页面,内容为“=kube-prometheus-stack = To monitor your Kubernetes cluster (including Knative functions and OpenEBS storage), here's a lightweight yet comprehensive setup using Prometheus, Grafana, and Alertmanager via the kube-prometheus-stack. This stack is optimized for single-node clusters and includes preconfigured dashboards/alerts. <syntaxhighlight lang="python"> helm repo add prometheus-community https://prometheus-community.github.io/helm-charts helm re…”)
- 2025年4月16日 (三) 05:29 Walle architecture (历史 | 编辑) [52字节] Riguz(留言 | 贡献) (创建页面,内容为“ * Physical machine: 4C8G”)
- 2025年4月13日 (日) 00:57 C++ Core Guidelines (历史 | 编辑) [96字节] Riguz(留言 | 贡献) (创建页面,内容为“ <ref>https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#main</ref> Category:C++”)
- 2025年4月9日 (三) 08:46 Kafka data lose (历史 | 编辑) [1,881字节] Riguz(留言 | 贡献) (创建页面,内容为“= Will kafka lose data? = Kafka’s event hubs are designed to be resilient. When certain failures occur, they should be able to recover. However, there are still risks that you have to consider. == Incorrect configuration == * Retention time too short: Kafka allows you to configure how long messages are kept before deletion. If the retention.ms (retention time in milliseconds) is set too short, messages will be deleted sooner than expected. A simple mistake…”)
- 2025年4月9日 (三) 08:33 Kafka rebalance (历史 | 编辑) [2,382字节] Riguz(留言 | 贡献) (创建页面,内容为“The concept of rebalancing is fundamental to Kafka's consumer group architecture. When a consumer group is created, the group coordinator assigns partitions to each consumer in the group. Each consumer is responsible for consuming data from its assigned partitions. However, as consumers join or leave the group or new partitions are added to a topic, the partition assignments become unbalanced. This is where rebalancing comes into play<ref>https://www.redpanda.c…”)
- 2025年4月6日 (日) 13:40 ESP32 partition (历史 | 编辑) [1,642字节] Riguz(留言 | 贡献) (创建页面,内容为“<syntaxhighlight lang="bash"> FAILED: esp-idf/esptool_py/CMakeFiles/app_check_size /Users/riguz/Workspace/embedded/esp32/esp32-agent/build/esp-idf/esptool_py/CMakeFiles/app_check_size cd /Users/riguz/Workspace/embedded/esp32/esp32-agent/build/esp-idf/esptool_py && /Users/riguz/.espressif/python_env/idf5.5_py3.12_env/bin/python /Users/riguz/esp/esp-idf/components/partition_table/check_sizes.py --offset 0x8000 partition --type app /Users/riguz/Workspace/embedded/…”)
- 2025年4月5日 (六) 12:50 ESP32 connect to WIFI (历史 | 编辑) [3,009字节] Riguz(留言 | 贡献) (创建页面,内容为“ Wi-Fi Station<ref>https://github.com/espressif/esp-idf/tree/v5.4.1/examples/wifi/getting_started/station</ref> Category:ESP32 Category:Embedded”)
- 2025年4月5日 (六) 05:54 STM32 development environment (历史 | 编辑) [10,581字节] Riguz(留言 | 贡献) (创建页面,内容为“ == MDK-ARM (Windows) == Windows7x64 virtual machine on Mac * Download and install [https://www.keil.com/demo/eval/arm.htm mdk-arm] * [https://aka.ms/vs/17/release/vc_redist.x64.exe VC_redist.x64.exe] The pack installer seems useless. Just close it, and the install link is somehow disabled. Download [https://www.keil.arm.com/devices/stmicroelectronics-stm32f103ze/processors/ stm32f103ze] DFP and install === MDK4.7 === MDK 4.72 + keygen (Menu/License manag…”)
- 2025年4月3日 (四) 01:52 ESP32 spi oled display (历史 | 编辑) [339字节] Riguz(留言 | 贡献) (创建页面,内容为“<ref>https://www.electronicshub.org/esp32-oled-display</ref> Category:ESP32 Category:Embedded”)
- 2025年4月3日 (四) 01:51 ESP32 pins (历史 | 编辑) [493字节] Riguz(留言 | 贡献) (创建页面,内容为“= ESP32-S3-DevKitC-1 v1.1 = <ref>https://docs.espressif.com/projects/esp-dev-kits/en/latest/esp32s3/esp32-s3-devkitc-1/user_guide.html#esp32-s3-devkitc-1-v1-1</ref> 600px Category:ESP32 Category:Embedded”)
- 2025年4月1日 (二) 04:17 ESP32 wifi config (历史 | 编辑) [195字节] Riguz(留言 | 贡献) (创建页面,内容为“* 统一配网<ref>https://docs.espressif.com/projects/esp-idf/zh_CN/stable/esp32s3/api-reference/provisioning/provisioning.html</ref> Category:ESP32 Category:Embedded”)
- 2025年3月30日 (日) 12:06 ESP32 max98357a audio output (历史 | 编辑) [1,808字节] Riguz(留言 | 贡献) (创建页面,内容为“= Hardware connection = 小智AI终端DIY面包板WIFI-LCD彩屏接线教程<ref>https://rcnv1t9vps13.feishu.cn/wiki/Zq62wST38iuNxZkwg9JcjkSSnSd</ref> 电源和地线: * 将MAX98357A的VCC引脚连接到ESP32-S3的3.3V输出。 * 将MAX98357A的GND引脚连接到ESP32-S3的GND。 I2S信号线: * BCLK:ESP32-S3的I2S位时钟引脚(如GPIO2)→ MAX98357A的BCLK。 * LRC/WS:ESP32-S3的I2S左右声道时钟引脚(如GPIO1)→ MAX98357A…”)
- 2025年3月29日 (六) 15:51 ESP32 led blink (历史 | 编辑) [2,811字节] Riguz(留言 | 贡献) (创建页面,内容为“<ref>https://github.com/espressif/esp-idf/tree/master/examples/get-started/blink</ref> Based on hello world project. = Add depndencies= Add gpio driver: <syntaxhighlight lang="cmake"> idf_component_register(SRCS "hello_world_main.c" PRIV_REQUIRES spi_flash REQUIRES driver INCLUDE_DIRS "") </syntaxhighlight> Add lib: <syntaxhighlight lang="cpp"> idf.py add-dependency espressif/led_strip i…”)
- 2025年3月29日 (六) 13:55 Mac find process listening to port (历史 | 编辑) [425字节] Riguz(留言 | 贡献) (创建页面,内容为“ <syntaxhighlight lang="bash"> $ lsof -P -i:6666 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME openocd 4228 riguz 3u IPv4 0x163b8cdfd65fd7d7 0t0 TCP localhost:6666 (LISTEN) $ netstat -vanp tcp | grep 6666 tcp4 0 0 127.0.0.1.6666 *.* LISTEN 131072 131072 4228 0 0x0100 0x00000006 </syntaxhighlight> Category:Linux Category:Mac”)
- 2025年3月29日 (六) 02:09 ESP32 setup development environment (历史 | 编辑) [4,971字节] Riguz(留言 | 贡献) (创建页面,内容为“<ref>https://docs.espressif.com/projects/esp-idf/en/stable/esp32/get-started/linux-macos-setup.html#get-started-prerequisites</ref> = Development on Mac= ==Install Prerequisites == <syntaxhighlight lang="cpp"> brew install cmake ninja dfu-util </syntaxhighlight> ==Get ESP-IDF== Need to install [https://github.com/espressif/esp-idf esp-idf] Category:ESP32”)
- 2025年3月27日 (四) 15:03 Stm32 led blink (历史 | 编辑) [10,300字节] Riguz(留言 | 贡献) (创建页面,内容为“= STM32 development settings on Mac = Category:Stm32 Category:ARM Category:ARM”)
- 2025年3月26日 (三) 14:11 Agent design (历史 | 编辑) [54字节] Riguz(留言 | 贡献) (创建页面,内容为“ESP32 N16R8 MAX98357/ ICS 43434/inmp441”)
- 2025年3月24日 (一) 03:14 Python no module named pip (历史 | 编辑) [151字节] Riguz(留言 | 贡献) (创建页面,内容为“ Python/pythonxx._pth <syntaxhighlight lang="bash"> python38.zip . # Uncomment to run site.main() automatically import site # 👈 </syntaxhighlight>”)
- 2025年3月20日 (四) 16:17 WeChat sns dump (历史 | 编辑) [656字节] Riguz(留言 | 贡献) (创建页面,内容为“= Get data in db= == Prerequisits == * Mac WeChat Version 3.6.1 (24205) == Get Sqlcipher key == <ref>https://xferris.cn/dao-chu-wei-xin-bei-fen-de-mac/</ref> == Find SNS(朋友圈) db == <syntaxhighlight lang="bash"> cd ~/Library/Containers/com.tencent.xinWeChat/Data/Library find . -name "*.db" -type f -print0 | xargs -0 du -h | sort -rh | head -n 10 4.1M ./Caches/com.tencent.xinWeChat/2.0b4.0.9/e7627004a3f2051a5be7c61023d0e5b7/Sns/Data/sns.db 3.1M ./A…”)
- 2025年3月20日 (四) 15:24 LLDB debug app (历史 | 编辑) [1,548字节] Riguz(留言 | 贡献) (创建页面,内容为“== Disable SIP == <syntaxhighlight lang="bash"> # in recovery mode, restart and hold cmd + R csrutil disable </syntaxhighlight> == Attach process == <syntaxhighlight lang="bash"> # sudo lldb -p $(pgrep WeChat) sudo lldb -p $(pgrep cryptowl) Password: (lldb) process attach --pid 4673 Process 4673 stopped </syntaxhighlight> == set break point == <syntaxhighlight lang="bash"> (lldb) br set -n sqlite3_key Breakpoint 1: 2 locations. (lldb) br set -n sqlite3_key_v…”)
- 2025年3月20日 (四) 05:45 ML-KEM (历史 | 编辑) [2,321字节] Riguz(留言 | 贡献) (创建页面,内容为“<syntaxhighlight lang="python"> from kyber_py.kyber import Kyber512,Kyber768,Kyber1024 from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes from cryptography.hazmat.primitives import padding import binascii import os import sys def go_encrypt(msg,method,mode): cipher = Cipher(method, mode) encryptor = cipher.encryptor() ct = encryptor.update(msg) + encryptor.finalize() return (ct) def go_decrypt(ct,method,mode): cipher =…”)
- 2025年3月11日 (二) 02:51 Scikit learn getting started (历史 | 编辑) [115字节] Riguz(留言 | 贡献) (创建页面,内容为“ Category:Deep Learning”)
- 2025年3月10日 (一) 05:47 Bitwarden key generation (历史 | 编辑) [1,488字节] Riguz(留言 | 贡献) (创建空白页面)
- 2025年3月5日 (三) 09:03 Typst cheatsheet (历史 | 编辑) [444字节] Riguz(留言 | 贡献) (创建空白页面)
- 2025年3月5日 (三) 08:53 Source han sans download guide (历史 | 编辑) [38字节] Riguz(留言 | 贡献) (创建页面,内容为“ 600px”)
- 2025年2月26日 (三) 07:48 Quarkus (历史 | 编辑) [514字节] Riguz(留言 | 贡献) (创建页面,内容为“ Category:Java”)
- 2025年2月26日 (三) 01:50 PostgreSQL query cheat sheet (历史 | 编辑) [215字节] Riguz(留言 | 贡献) (创建页面,内容为“ Category:SQL Category:Database Category:PostgreSQL”)
- 2025年2月13日 (四) 01:41 Maven update dependency version (历史 | 编辑) [240字节] Riguz(留言 | 贡献) (创建页面,内容为“ Category:Java”)
- 2024年12月28日 (六) 11:20 Rust futures (历史 | 编辑) [1,745字节] Riguz(留言 | 贡献) (创建页面,内容为“ Category:Rust”)