xiaobin_hlj80

https://blog.csdn.net/xiaobin_HLJ80 http://blog.chinaunix.net/uid/31552151.html

导航

2025年12月6日

Try Value

摘要: Get Value by Key GetValueOrDefault .net core TryGetValue fx GetValueOrDefault Dictionary<string, string> m_kbd = new Dictionary<string, string>(); res 阅读全文

posted @ 2025-12-06 14:19 xiaobin80 阅读(245) 评论(0) 推荐(0)

2025年11月4日

计算文件CRC32数值

摘要: 我们经常要计算文件的CRC32值。 经常用的工具为:HashCalc fstream 使用方法: 1.打开文件 open(const char* filename, ios_base::openmode mode = ios_base::in | ios_base::out) 2.定位文件(读) s 阅读全文

posted @ 2025-11-04 20:20 xiaobin80 阅读(71) 评论(0) 推荐(0)

2020年5月17日

docker ce on Debian

摘要: Note: # - requires given linux commands to be executed with root privileges either directly as a root user or by use of sudo command $ - requires give 阅读全文

posted @ 2020-05-17 23:10 xiaobin80 阅读(180) 评论(0) 推荐(0)

2020年4月7日

使用hugo在gitee上写blog

摘要: 1. 安装hugo 1)下载 Hugo Releases,选择hugo_xxx_Windows-64bit.zip(xxx位版本)。 2)设置路径 我的电脑-》属性-》高级系统设置-》环境变量 在path中加入hugo的解压后的目录。 例如: D:\program\hugo_0.92.0 2. 使用 阅读全文

posted @ 2020-04-07 03:23 xiaobin80 阅读(1255) 评论(0) 推荐(0)

2018年12月6日

spring cloud gateway - RequestRateLimiter

摘要: 1. Official website 5.7 RequestRateLimiter GatewayFilter Factory The RequestRateLimiter GatewayFilter Factory is uses a RateLimiter implementation to 阅读全文

posted @ 2018-12-06 19:22 xiaobin80 阅读(5532) 评论(0) 推荐(0)

2018年4月13日

postman使用

摘要: 1: Get Token 1) Basic Auth (AuthorizationServerConfig.java) Username: devglan-client passoword: devglan-secret 2) grant info (x-www-formurlencoded) ro 阅读全文

posted @ 2018-04-13 03:09 xiaobin80 阅读(164) 评论(0) 推荐(0)

2016年4月15日

改进的冒泡算法

摘要: 在百度百科中的代码: void bubble_sort(int a[], int n) { int i, j, temp; for (j = 0; j < n - 1; j++) for (i = 0; i < n - 1 - j; i++) { if(a[i] > a[i + 1]) { temp 阅读全文

posted @ 2016-04-15 09:42 xiaobin80 阅读(243) 评论(0) 推荐(0)

2016年2月14日

Create User - mysql

摘要: Create User MariaDB [(none)]> CREATE USER 'DBAdmin'@'localhost' IDENTIFIED BY 'mypasswd';Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> CREATE 阅读全文

posted @ 2016-02-14 17:58 xiaobin80 阅读(325) 评论(0) 推荐(0)

2016年1月9日

COM调用 – VB、PB

摘要: 本文使用Delphi和C++创建CRC32的COM文件(Dll)。 VB: V9.0 PB: V8.0 Delphi创建的文件,提供给VB9调用;C++创建的文件,提供给PB8调用。 一、VB部分 COM文件:FCN.dll 注册:regsvr32 x:\yyy\FCN.dll 1. 校验值文件 描 阅读全文

posted @ 2016-01-09 01:08 xiaobin80 阅读(1355) 评论(0) 推荐(0)

2015年8月13日

J-Link clone问题

摘要: 在上一篇《修复山寨版的J-Link》,中已经介绍了恢复的步骤。 但是,在使用J-Link驱动(V4.94J)升级后,会出现下面情况。 The connected emulator is a j-link clone. 修改固件文件(J-link_V8.bin)可以解决这个问题。 使用UltraEdit打开此文件。 1. 修改FF00h行 由原来的 76 B4 32 01 FF FF ... 阅读全文

posted @ 2015-08-13 21:34 xiaobin80 阅读(1551) 评论(0) 推荐(0)