If a file is larger than 5MB size limit for pushing t, the files must be tracked and updated using git lfs. Note: Please follow the instructions here( ...
分类:
其他好文 时间:
2021-01-11 10:39:35
阅读次数:
0
server { listen 80; listen 443 ssl http2; server_name www.baidu.com; charset utf-8; fastcgi_intercept_errors on; include filter.forbid; error_page 404 ...
分类:
其他好文 时间:
2021-01-08 11:29:22
阅读次数:
0
应用背景: 本人是医疗软件的开发者, 有许多要跟其他厂商交互的数据, 这次是要接收来自平台的xml格式的数据。 使用dom4j一样可以解析,但是这样的话后期不容易维护,而且程序可读性也差。(其实主要还是不能用Alt+/快捷键打出代码哈哈) 我的实现思路是先用xml样例生成xsd说明文件,然后再用xj ...
分类:
编程语言 时间:
2021-01-06 12:23:17
阅读次数:
0
1. 工具 -> 选项 2. 文件编辑器 -> 选项对应的语言(Basic, C#, C/C++....) -> 行为 -> 使用垂直滚动条的缩略图模式(M) 效果: ...
分类:
其他好文 时间:
2021-01-06 11:41:06
阅读次数:
0
后缀名 MIME名称*.3gpp audio/3gpp, video/3gpp*.ac3 audio/ac3*.asf allpication/vnd.ms-asf*.au audio/basic*.css text/css*.csv text/csv*.doc application/msword ...
分类:
其他好文 时间:
2021-01-05 11:42:32
阅读次数:
0
在nginx配置中添加 location / { try_files $uri $uri/ @router; index index.html; } location @router { rewrite ^.*$ /index.html last; } ...
分类:
其他好文 时间:
2021-01-04 11:32:56
阅读次数:
0
今天执行:net start MongoDB 开启服务时,出现服务名无效问题。 百度搜了一些文章,终于找到了解决办法: 1、新建db文件夹和log文件夹 2、新建mongo.config文件 dbpath=D:\Program Files\MongoDB\Server\4.2\data\db log ...
分类:
数据库 时间:
2021-01-04 11:27:12
阅读次数:
0
Linux df(英文全拼:disk free) 命令用于显示目前在 Linux 系统上的文件系统磁盘使用情况统计。 文件-h, --human-readable 使用人类可读的格式(预设值是不加这个选项的...) [root@rdrssitapp03 ~]# df -h Filesystem Si ...
分类:
系统相关 时间:
2021-01-04 11:13:56
阅读次数:
0
继上一篇《Linux Userspace Kernelspace内存分布》之后,在分析一下内存优化的方法。 https://www.cnblogs.com/tangtangworld/p/11738090.html 后面还有一篇进程空内存使用分布进一步分析的方法,看后面有没有时间,这几天被几个Ker ...
分类:
系统相关 时间:
2021-01-04 11:05:48
阅读次数:
0
在这篇文章中,我们将探索如何使用.NET 5中的新source generator特性,使用MediatR库和CQRS模式自动为系统生成API。 中介者模式 中介模式是在应用程序中解耦模块的一种方式。在基于web的应用程序中,它通常用于将前端与业务逻辑的解耦。 在.NET平台上,MediatR库是该 ...
分类:
Web程序 时间:
2021-01-04 10:32:26
阅读次数:
0