1.运用场景 which is suitable for arbitrary types of information networks:undirected,directed,and/or weighted。 2.创新点 which suits arbitrary types of informa ...
分类:
Web程序 时间:
2020-05-31 15:40:41
阅读次数:
126
1.开启gzip: 主要配置gzip和gzip_types #user nginx; worker_processes 1; error_log /var/log/nginx/error.log warn; pid /var/run/nginx.pid; events { worker_connec ...
分类:
其他好文 时间:
2020-05-31 11:14:14
阅读次数:
189
react-native文档地址:https://reactnative.cn/ 一. 搭建开发环境: 文档地址:https://reactnative.cn/docs/getting-started 根据文档中的内容,安装Node,Python2,JDK, Android Studio, npm全 ...
分类:
其他好文 时间:
2020-05-29 18:03:29
阅读次数:
96
实体账户前端页面和后端部分修改,遇到了不少问题,大部分都解决了,晚上咨询了一个前端舍友,最后把所有问题都解决的差不多了。 上代码和注释 前台channel.html {% extends "base.html" %} {% load staticfiles %} {% block title %}实 ...
分类:
其他好文 时间:
2020-05-28 01:13:52
阅读次数:
75
问题: 今天遇到一个很奇怪的问题,我IDEA中的markdown文件无法预览。 环境: Mac:10.15.4 IDEA:2019.3.1 操作步骤: 1、首先查看是否文件类型关联了markdown文件: 查询指引:Preferences --> Editor --> File Types --> ...
分类:
其他好文 时间:
2020-05-26 23:27:01
阅读次数:
801
内存管理(一) 页(page) 内核把物理页作为内存管理的基本单位,尽管处理器最小的可寻址单位通常为字(甚至字节),但是,内存管理单元(MMU)通常以页为单位进行处理。从虚拟内存角度来看,页就是最小单位。大多数32位体系结构都支持4K的页。 内核用struct page结构表示系统中的每个物理页,该 ...
分类:
其他好文 时间:
2020-05-25 12:34:40
阅读次数:
85
SELECT 表名 = case when a.colorder=1 then d.name else '' end, 表说明 = case when a.colorder=1 then isnull(f.value,'') else '' end, -- 字段序号 = a.colorder, 字段 ...
分类:
数据库 时间:
2020-05-25 09:14:38
阅读次数:
78
Containers/Microservices容器/微服务Using the Official NGINX Imagedocker run --name my-nginx -p 80:80 -v /path/to/content:/usr/share/nginx/html:ro -d nginx ...
分类:
其他好文 时间:
2020-05-24 22:33:34
阅读次数:
66
c++获取文件信息——_stat函数的使用 _stat函数的功能 _stat函数用来获取指定路径的文件或者文件夹的信息。 函数声明 [cpp] view plain copy int _stat( const char *path, struct _stat *buffer ); 参数: path— ...
分类:
其他好文 时间:
2020-05-24 14:02:25
阅读次数:
119
使用这个结构体和方法时,需要引入:<sys/types.h><sys/stat.h>struct stat这个结构体是用来描述一个linux系统文件系统中的文件属性的结构。可以有两种方法来获取一个文件的属性:1、通过路径:int stat(const char *path, struct stat ...
分类:
其他好文 时间:
2020-05-24 13:23:03
阅读次数:
78