生成流程图 flowchart.js 代码 ```flow st=>start: User login op=>operation: Operation cond=>condition: Successful Yes or No? e=>end: Into admin s[......]继续阅读

2019年12月9日 1条评论 110点热度 0人点赞 痴者工良 阅读全文

生成流程图 flowchart.js 代码 ```flow st=>start: User login op=>operation: Operation cond=>condition: Successful Yes or No? e=>end: Into admin s[......]继续阅读

2019年12月9日 1条评论 3459点热度 0人点赞 痴者工良 阅读全文

After the program is closed, the port is already in use. Using netstat -npla | grep {port_number} you can see the occupied port and process ID, but us[......] 继续阅读

2019年12月7日 1条评论 138点热度 1人点赞 痴者工良 阅读全文

程序关闭后,端口已经被占用,使用 netstat -npla | grep {端口号} 可以看到被占用的端口及进程号,但是使用 kill 却提示找不到进程。 1、强制杀死该端口进程 sudo fuser -k -n tcp 80 2、根据PID关闭某个被占用的端口 netst[......]继续阅读

2019年12月7日 1条评论 5615点热度 1人点赞 痴者工良 阅读全文

Using JSON to store time requires converting it to an object in the following format: 2019-12-06T17:15:52Z The 'Z' indicates the time zone. For examp[......] 继续阅读

2019年12月6日 2条评论 154点热度 0人点赞 痴者工良 阅读全文

使用Json存储时间需要转为对象时, 要使用如下面的格式 2019-12-06T17:15:52Z Z 表示时区 使用示例: 表示北京时间 2019-12-06T17:15:52+08:00 但是前端、C#时间转换和数据库的时间处理,协调起来会比较麻烦,JSON和字符串转时间也会麻烦。 根据笔者的校[......] 继续阅读

2019年12月6日 2条评论 4070点热度 0人点赞 痴者工良 阅读全文

In asynchronous methods, you cannot directly use Thread.Sleep(1000); You should use await Task.Delay(1000); [......] 继续阅读

2019年12月6日 1条评论 110点热度 4人点赞 痴者工良 阅读全文

使用异步的方法中,不能直接使用 Thread.Sleep(1000); 要使用 await Task.Delay(1000); [......] 继续阅读

2019年12月6日 1条评论 3888点热度 4人点赞 痴者工良 阅读全文

在需要分页的位置,输入 <div STYLE="page-break-after: always;"></div> 在导出PDF时即可分页。 [......] 继续阅读

2019年12月2日 0条评论 104点热度 7人点赞 痴者工良 阅读全文

在需要分页的位置,输入 <div STYLE="page-break-after: always;"></div> 在导出PDF时即可分页 [......] 继续阅读

2019年12月2日 0条评论 8071点热度 7人点赞 痴者工良 阅读全文

.NET Core Using Sonarqube Issues Simple Way to Run Sonarqube docker run -d --name sonarqube -p 9000:9000 sonarqube The default username and password a[......] 继续阅读

2019年12月2日 2条评论 104点热度 3人点赞 痴者工良 阅读全文

.NET Core 使用 Sonarqube 问题 运行 Sonarqube 的简单方法 docker run -d --name sonarqube -p 9000:9000 sonarqube 默认账号密码是 admim 登陆后创建项目和 token,直接按照提示选择 C#.NET。 .NET[......] 继续阅读

2019年12月2日 2条评论 6119点热度 3人点赞 痴者工良 阅读全文

Exploring char and string in C# [TOC] 1. System.Char Character char is an alias for System.Char. System.Char occupies two bytes, which is 16 binary bi[......] 继续阅读

2019年12月1日 2条评论 108点热度 0人点赞 痴者工良 阅读全文

探究 C# 中的 char 、 string(一) [TOC] 1. System.Char 字符 char 是 System.Char 的别名。 System.Char 占两个字节,16个二进制位。 System.Char 用来表示、存储一个 Unicode 字符。 System.Char 的表示[......] 继续阅读

2019年12月1日 2条评论 2778点热度 0人点赞 痴者工良 阅读全文
189101112