自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Dyn Compatible

【代码】Dyn Compatible。

2025-04-25 14:25:55 272

原创 Make Trait Dyn Compatible

【代码】Make Trait Dyn Compatible。

2025-04-24 10:59:28 197

原创 Search in Rotated Sorted Array

【代码】Search in Rotated Sorted Array。

2025-04-21 19:21:35 302

转载 Canary Deployment with NGINX Ingress

【代码】Canary Deployment with NGINX Ingress。

2025-04-15 19:46:27 25

转载 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 28

转载 Generics and Associated Types

【代码】Generics and Associated Types。

2025-04-11 21:40:40 32

原创 A simple example of HRBT

【代码】A simple example of HRBT。

2025-04-10 21:39:02 237

转载 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 29

转载 Permutate in Golang

【代码】Permutate in Golang。

2025-04-06 16:48:55 32

转载 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 44

原创 Rust Closure Variable Capture

【代码】Rust Closure Variable Capture。

2025-01-21 12:04:09 392

原创 Convert IO traits between tokio, hyper and futures

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

2025-01-17 10:13:18 168

原创 Change Future into Async Function

Change。

2024-12-26 14:35:46 369

转载 Rust integration tests in a separate crate

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

2024-12-17 15:44:27 72

转载 Separate Rust Unit Test

【代码】Separate Rust Unit Test。

2024-12-15 10:41:25 47

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

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

2024-11-29 15:04:12 345

转载 Inventing the Service Trait

【代码】Inventing the Service Trait。

2024-11-28 10:48:35 60

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

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

2024-11-07 20:07:06 579

原创 Return Consumed Argument on Error

【代码】Return Consumed Argument on Error。

2024-11-05 11:02:08 334

原创 Rust Empty Type

【代码】【无标题】

2024-09-19 13:46:47 603

原创 async Lifetimes

【代码】async Lifetimes。

2024-09-18 12:11:18 302

原创 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 606

转载 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 103

原创 mvcc_cell code review

【代码】mvcc_cell code review。

2024-08-21 21:01:00 609

转载 MVCC can not eliminate locking

singlemultiplecannotFrom:

2024-08-20 16:57:44 101

转载 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 114

转载 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 79

转载 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 97

转载 Avoid allocating on every line

【代码】Avoid allocating on every line。

2024-07-04 10:24:57 104

转载 Inline the hot call

【代码】Inline the hot call。

2024-07-03 17:20:04 99

转载 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 68

转载 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 77

转载 Naming Conventions for Traits

(Jin Qing’s Column, Jan., 2024)From: https://github.com/rust-lang/api-guidelines/discussions/28If the trait has a single self-explanatory method (or a set of nearly identical methods), name it after the method: Clone, Hash, Default, Into, Write, ToOwned, A

2024-01-17 08:59:48 165

原创 Using anyhow::ensure!()

【代码】Using anyhow::ensure!()

2023-12-13 09:03:16 230

原创 Snapshot test with insta

【代码】Snapshot test with insta。

2023-12-02 15:12:34 214

原创 Tensorboard‘s sample_per_plugin

【代码】Tensorboard‘s sample_per_plugin。

2023-06-21 12:01:08 538

原创 Rust generic type parameter and `impl Trait` parameter

(Jin Qing’s Column, Jun., 2023)See: https://doc.rust-lang.org/reference/types/impl-trait.htmlGeneric type parameter and parameter are almost equivalent: is just a syntactic sugar for generic type parameter.It is a little simpler by omitting the generic

2023-06-20 20:04:18 1142

原创 Unity WebGL Calls Rust Wasm

【代码】Unity WebGL Calls Rust Wasm。

2023-05-16 09:11:14 704

原创 Compile Unity jslib in command

【代码】Compile Unity jslib in command。

2023-05-15 11:20:48 286

原创 Fix navmesh countour

【代码】Fix navmesh countour。

2023-01-01 10:28:46 758 1

test.obj navmesh input

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

2023-01-01

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

LuaPbIntf VS2015工程带依赖库

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

2017-05-26

BehaviacDemo.zip

行为树demo

2017-01-23

behaviac-3.5.19.zip

腾讯开源的行为树

2017-01-23

XMPP测试工具Peek

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

2016-10-25

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

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

RPCZ中的智能指针单例代码

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

2015-03-02

跨服与跨区的设计.ppt

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

2014-12-05

Wmvcopy的源程序

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

2011-11-24

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

VC6的完整编译工程与结果

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

2007-08-17

空空如也

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

TA关注的人

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