xiaobin_hlj80

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

导航

2025年11月4日

Introduction to MFC Applications

摘要: https://www.functionx.com/visualc/Lesson02.htm OS: Windwos 10 1809(LTSC) Visual C++ Projects and Files Creating a New Project Microsoft Visual C++ all 阅读全文

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

Introduction to Microsoft Visual C++/MFC

摘要: https://www.functionx.com/visualc/Lesson01.htm OS: Windows 10 1809(LTSC) The Microsoft Visual C++ Environment Introduction Microsoft Visual C++ is a p 阅读全文

posted @ 2025-11-04 17:54 xiaobin80 阅读(6) 评论(0) 推荐(0)

Combo-box Control - ComboExo example

摘要: Create a new ComboExo using VS2013 MFC Application Wizard design dialog event ComboExo example - visualc The original example was written using VC6.0; 阅读全文

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

2025年11月2日

MS Visual Studio Installers and ISO direct links

摘要: 迅雷(非会员)可以下载: 2025-11-02The following Visual Studio versions (ISO direct links) can be downloaded via Xunlei (for non-members):Visual Studio 2008,Visua 阅读全文

posted @ 2025-11-02 08:52 xiaobin80 阅读(2) 评论(0) 推荐(0)

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 阅读(162) 评论(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 阅读(1232) 评论(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 阅读(5497) 评论(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 阅读(154) 评论(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 阅读(229) 评论(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 阅读(310) 评论(0) 推荐(0)