nginx.conf的五大组成部分 1.全局部分(https://coding.net/u/aminglinux/p/nginx/git/blob/master/3z/global.md) 2.event,网络部分(https://coding.net/u/aminglinux/p/nginx/gi ...
分类:
其他好文 时间:
2019-03-04 09:18:44
阅读次数:
172
内核空间 应用程序不允许访问 3G 栈空间 局部变量 RW 运行时的堆空间 malloc 全局的数据空间(初始化的,未初始化)static RW data(数据段) 、bss(未初始化的数据段) 只读数据段 (“Hello world”) R text(代码段) 代码段(code) R text / ...
分类:
系统相关 时间:
2019-03-03 20:58:29
阅读次数:
219
常见样式问题七、word-break、word-wrap、white-space区别:https://blog.csdn.net/c11073138/article/details/79534394 首先推荐下MDN网站,在上面可以学习html、css、js。对于css而言,可以查看详细的语法、使用 ...
分类:
其他好文 时间:
2019-02-27 17:54:23
阅读次数:
223
一、背景与边框 1.background-clip: border-box|padding-box|content-box; background-clip 属性规定背景被裁剪到指定位置。 border: 10px solid hsla(0,0%,100%,.5);background: white ...
分类:
Web程序 时间:
2019-02-26 19:16:44
阅读次数:
219
Spring Boot Guides Examples(1~3) 参考网址:https://spring.io/guides 创建一个RESTful Web Service 使用Eclipse 创建一个 Spring Boot项目 直接找到,spring boot自动创建的application类, ...
分类:
编程语言 时间:
2019-02-25 21:43:11
阅读次数:
143
题目如下: On an 8 x 8 chessboard, there is one white rook. There also may be empty squares, white bishops, and black pawns. These are given as characters ...
分类:
其他好文 时间:
2019-02-25 19:03:29
阅读次数:
229
# Sublime Text 编辑器的设定 > gloal setting ```{ "caret_style": "smooth", "default_line_ending": "unix", "draw_white_space": "all", "font_face": "Consolas",... ...
分类:
其他好文 时间:
2019-02-24 19:04:04
阅读次数:
224
A,B很简单,跳过了。 C题规律相当明显,可以直接对$2^n 1$打表,也可以不打表直接算最大因数。 D题两种操作转化一下DP即可。 E题考虑查分数组不变的性质。 F题考虑dfs时动态维护每个叶子的深度,从一个节点走向它的孩子相当于孩子对应的区间加,不包含孩子的区间减。 H题虽然不那么神仙,但是代码 ...
分类:
其他好文 时间:
2019-02-22 23:28:09
阅读次数:
175
原文地址:https://segmentfault.com/a/1190000015107942 HTML code: CSS code: ...
分类:
Web程序 时间:
2019-02-21 00:21:45
阅读次数:
192
import sys import getopt import os import multiprocessing def list_all_file(path): """ list all files of a directory :param path: :return: """ file_li... ...
分类:
编程语言 时间:
2019-02-20 21:35:35
阅读次数:
290