xiaobin_hlj80

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

导航

2020年5月17日

docker ce on Ubuntu

摘要: 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 阅读(158) 评论(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 阅读(1214) 评论(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 阅读(5261) 评论(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 阅读(150) 评论(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 阅读(221) 评论(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 阅读(302) 评论(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 阅读(1206) 评论(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 阅读(1120) 评论(0) 推荐(0) 编辑

修复山寨版的J-Link

摘要: Fixed J-Link 1. Erase (1) Power On (2) Jump "ERASE"(JP3) (3) Wait for 5s (4) Break "ERASE"(JP3) (5) Power Off 2. TST (1) Jump "TST"(JP1) (2) Power On (3) Wait for 10s (4) Power... 阅读全文

posted @ 2015-08-13 17:03 xiaobin80 阅读(1111) 评论(0) 推荐(0) 编辑

2015年8月8日

系统节拍的使用

摘要: 我们在使用SysTick时,首先要确定时钟周期;然后才能使用它。 SysTick的最大计数值为:2^24(2的24次方) 超过此值,系统自动置0。 在配置的时候,如果超过此值;不启动SysTick。 #define SYSTICK_MAXCOUNT ((1 SysTick_LOAD_RELOAD_Msk) return (1); ... 阅读全文

posted @ 2015-08-08 03:11 xiaobin80 阅读(667) 评论(0) 推荐(0) 编辑