自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(595)
  • 资源 (14)
  • 收藏
  • 关注

原创 Creating Skills in Claude Code

摘要: Claude Code的"Skills"功能允许用户通过自定义提示模板快速调用常用指令。技能定义存储在全局(~/.claude/settings.json)或项目级(.claude/settings.json)配置文件中,格式为包含名称、描述和提示文本的JSON对象。使用时只需在聊天中输入/技能名,Claude会自动展开完整提示。示例包括代码审查和生成提交信息等实用功能。技能本质是提示扩展,重启Claude Code可使修改生效。该功能提高了与AI协作的效率。(148字)

2026-03-06 10:17:30 29

原创 Commit Hash from debug.ReadBuildInfo()

【代码】Commit Hash from debug.ReadBuildInfo()

2026-01-30 11:01:55 378

原创 ACME Protocol

(注:文档部分内容由 AI 生成)

2025-11-21 10:42:11 791

原创 Connection Tracking (Conntrack)

(Jin Qing’s Column, Oct., 2025)Connection tracking (often called “conntrack”) monitors and records the state of network connections passing through the system. It enables the kernel to track the lifecycle of connections (such as TCP, UDP, or ICMP sessions)

2025-10-16 16:17:21 975

原创 Test obfs4proxy with ssh

【代码】Test obfs4proxy with ssh。

2025-09-17 13:36:50 289

转载 Deep Packet Inspection (DPI)

From: https://www.pluggabletransports.info/how/Deep Packet Inspection (DPI) inspects each packet based on the header of its request and the data it carries. It can identify the type of protocol the connection is using even if it was encrypted. DPI is not a

2025-09-10 16:40:38 96

转载 Import std module

From: https://learn.microsoft.com/en-us/cpp/cpp/tutorial-import-stl-named-module?view=msvc-170#standard-library-named-module-considerationsDon’t mix and match importing header units and named modules. For example, don’t import ; and import std; in the same

2025-06-24 10:06:00 123

转载 C++ Modules and Namespaces

From: https://accu.org/conf-docs/PDFs_2021/hendrik_niemeyer_a_practical_introduction_to_cpp20_modules.pdf

2025-06-21 14:45:44 79

原创 Dyn Compatible

【代码】Dyn Compatible。

2025-04-25 14:25:55 390

原创 Make Trait Dyn Compatible

【代码】Make Trait Dyn Compatible。

2025-04-24 10:59:28 441

原创 Search in Rotated Sorted Array

【代码】Search in Rotated Sorted Array。

2025-04-21 19:21:35 429

转载 Canary Deployment with NGINX Ingress

【代码】Canary Deployment with NGINX Ingress。

2025-04-15 19:46:27 99

转载 AI-driven Development

From: https://gradientflow.com/vibe-coding-and-chop-what-you-need-to-know/Vibe coding is a programming paradigm where developers describe desired software functionality in natural language.An AI coding assistant then generates the majority of the underlyi

2025-04-12 11:52:45 155

转载 Generics and Associated Types

【代码】Generics and Associated Types。

2025-04-11 21:40:40 91

原创 A simple example of HRBT

【代码】A simple example of HRBT。

2025-04-10 21:39:02 303

转载 What is Service Discovery in Microservices

From: https://www.geeksforgeeks.org/what-is-service-discovery-in-microservices/Service discovery in microservices is the process of dynamically locating and identifying available services within a distributed system.Service discovery typically works as:

2025-04-07 21:38:18 124

转载 Permutate in Golang

【代码】Permutate in Golang。

2025-04-06 16:48:55 89

转载 Git squash or not

From: https://www.reddit.com/r/programming/comments/whav9l/should_you_squash_merge_or_merge_commit/Should You Squash Merge or Merge Commit?Depends on what the branch is. Massive feature worked on by multiple people? You probably want that history. Just mer

2025-02-06 14:07:51 106

原创 Rust Closure Variable Capture

【代码】Rust Closure Variable Capture。

2025-01-21 12:04:09 464

原创 Convert IO traits between tokio, hyper and futures

【代码】Convert IO traits between tokio, hyper and futures。

2025-01-17 10:13:18 232

原创 Change Future into Async Function

Change。

2024-12-26 14:35:46 423

转载 Rust integration tests in a separate crate

【代码】Rust integration tests in a separate crate。

2024-12-17 15:44:27 140

转载 Separate Rust Unit Test

【代码】Separate Rust Unit Test。

2024-12-15 10:41:25 120

原创 Compare smol-hyper and hyper-futures for impl Read

【代码】Compare smol-hyper and hyper-futures for impl Read。

2024-11-29 15:04:12 400

转载 Inventing the Service Trait

【代码】Inventing the Service Trait。

2024-11-28 10:48:35 110

原创 How to set_default() using config-rs crate

【代码】How to set_default() using config-rs crate。

2024-11-07 20:07:06 651

原创 Return Consumed Argument on Error

【代码】Return Consumed Argument on Error。

2024-11-05 11:02:08 392

原创 Rust Empty Type

【代码】【无标题】

2024-09-19 13:46:47 665

原创 async Lifetimes

【代码】async Lifetimes。

2024-09-18 12:11:18 338

原创 Rust Pin

(Jin Qing’s Column, Sep., 2024)From: https://doc.rust-lang.org/std/pin/index.htmlRust can pin data location in memory, that means its address can not be changed.Pinned data guarantees the memory location is always valid.Safe code can not move pinned data

2024-09-14 12:10:25 650

转载 Debugging or Logging

From: Do you prefer debugging or adding logs? : r/node (reddit.com)Debugging is useful when you know there’s an ongoing issue that’s easy to reproduce and debug.Logging is useful when there’s a small amount of sporadic failure that you can use a trace log

2024-09-05 21:03:32 135

原创 mvcc_cell code review

【代码】mvcc_cell code review。

2024-08-21 21:01:00 648

转载 MVCC can not eliminate locking

singlemultiplecannotFrom:

2024-08-20 16:57:44 133

转载 Concurrency Control

From: database replication - Optimistic vs Multi Version Concurrency Control - Differences? - Stack OverflowThere are 2 main concurrency control approaches:One widely known algorithm of pessimistic concurrency control is the 2-phase locking.Two widely know

2024-08-20 10:12:52 157

转载 Developers Should Be Released from Basic Kubernetes O&M Work

From: Why Should I&O Team Be Prepared to Take over Kubernetes Deployment and O&M?Kubernetes, being a relatively new technology, has a steep learning curve. Most developers are responsible for performing basic Kubernetes operation and management (O&M) tasks

2024-08-05 12:11:04 111

转载 Mock, Stub, Spy and other Test Doubles

From: https://medium.com/@matiasglessi/mock-stub-spy-and-other-test-doubles-a1869265ac47

2024-07-26 13:22:08 195

转载 Avoid allocating on every line

【代码】Avoid allocating on every line。

2024-07-04 10:24:57 136

转载 Inline the hot call

【代码】Inline the hot call。

2024-07-03 17:20:04 140

转载 Thou shalt not log too much or too little

From: The 10 commandments of loggingThat might sound stupid, but there is a right balance for the amount of log.One way to overcome this issue is during development to log as much as possible (do not confuse this with logging added to debug the program). T

2024-06-26 14:59:26 106

转载 Logging in the critical path by sampling

From: Logging Wisdom: How to LogA common reason for not logging is request heavy processes where you couldn’t possibly do a bunch of logging for every request. Here, many just skip logging entirely and instead resort to reporting aggregates — such as peri

2024-06-26 13:48:36 112

test.obj navmesh input

https://blog.csdn.net/jq0123/article/details/128510751

2023-01-01

Boost.Python中文文档

Boost.Python文档中文翻译。译者:金庆,2008.6.16。请关注:Boost文档翻译项目 ( http://groups.google.com/group/boost_doc_translation?hl=zh-CN )欢迎访问:金庆的专栏 ( http://blog.csdn.net/jq0123 )

2008-06-16

Wmvcopy的源程序

详见: 金庆的专栏 - windows media format SDK 切割wmv/wma文件 http://blog.csdn.net/jq0123/article/details/1538545 这个例子实现了输入一个时间范围参数进行wmv切割的功能,是从A秒到B秒的切割。 完整VC工程文件。

2011-11-24

XMPP测试工具Peek

http://blog.csdn.net/jq0123/article/details/52921845 《XMPP高级编程-使用JavaScript和jQuery》一书中第4章写的一个调试控制台,可以用来发送xml节,并显示接收到的xml节。

2016-10-25

LuaPbIntf VS2015工程带依赖库

支持 proto3 的 lua 绑定库 LuaPbIntf, 完整的工程文件. http://blog.csdn.net/jq0123/article/details/70701120

2017-05-26

behaviac-3.5.19.zip

腾讯开源的行为树

2017-01-23

BehaviacDemo.zip

行为树demo

2017-01-23

grpc-lua 代码及示例Windows执行程序

Lua gRPC (https://github.com/jinq0123/grpc-lua) 编译成功后的示例Windows可执行程序。请执行 examples/helloworld/run_*.bat.

2018-04-13

grpc-lua 示例 CentOS 7.4 执行程序打包

https://github.com/jinq0123/grpc-lua 是 Lua gRPC 库。 https://github.com/jinq0123/grpc-lua/issues/4 macos,ubuntu,centos都不能编译成功 能不能把编译好的.so上传一份啊 该zip包是按README编译生成并实测通过的示例程序打包。

2018-04-13

go1.9.2.windows-amd64.msi

来自 https://studygolang.com/dl 推荐下载 Microsoft Windows Windows XP SP2 or later, Intel 64-bit 处理器 go1.9.2.windows-amd64.msi (90MB) go1.9.2.windows-amd64.msi Installer Windows x86-64 90MB daeb761aa6fdb22dc3954fd911963b347c44aa5c6ba974b9c01be7cbbd6922ba λ certutil -hashfile go1.9.2.windows-amd64.msi SHA256 SHA256 哈希(文件 go1.9.2.windows-amd64.msi): da eb 76 1a a6 fd b2 2d c3 95 4f d9 11 96 3b 34 7c 44 aa 5c 6b a9 74 b9 c0 1b e7 cb bd 69 22 ba CertUtil: -hashfile 命令成功完成。

2017-10-26

跨服与跨区的设计.ppt

跨服与跨区的设计 PPT 上海C++游戏服务器群 2014.11.9 沙龙讲义。 自我介绍 -------- 巨人网络 万王之王3 冒牌天神 ZTJ 金庆的专栏 跨区的概念 跨区的作用?人气 互动 单区限时开放,跨区全天开放。 设计理念 多服架构 各服作用 各个连接的作用 登录流程? 跨服流程 多区架构 分布式Xs服 跨区流程 实际上是扩展的跨服请求 跨区流程设计 跨区重连 客户端重登设计 登录转区 禁止双登 角色数据转移 潜在问题

2014-12-05

RPCZ中的智能指针单例代码

代码说明见: RPCZ中的智能指针单例 http://blog.csdn.net/jq0123/article/details/44023961

2015-03-02

gloox 1.0.17 released

https://camaya.net/gloox/ gloox is a rock-solid, full-featured Jabber/XMPP client library, written in clean ANSI C++. It makes writing spec-compliant clients easy and allows for hassle-free integration of Jabber/XMPP functionality into existing applications. gloox is released under the GNU GPLv3. Commercial licensing and support are available.

2016-09-12

VC6的完整编译工程与结果

CVS代码与VC6的完整编译工程与结果。

2007-08-17

gloox_1_0_17_API_Documentation

gloox 1.0.17 doxygen 生成文档。 gloox API Documentation。 https://camaya.net/api/gloox-1.0.17/

2016-09-13

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除