1、 SuperCharger 2、 Indent Guides缩进辅助线 3、 Smooth Scroll平滑滚动 4、 va 5、 File Path On Footer 底部显示文件物理路径 ...
分类:
其他好文 时间:
2018-06-10 00:35:06
阅读次数:
166
import os os.mkdir(path):新建一个目录(文件夹)。 os.path.exists(path):判断一个路径是否存在 os.remove(file_path):删除指定文件 os.removedirs(dir_path):删除指定空目录(空文件夹)。 os.getcwd():获 ...
分类:
编程语言 时间:
2018-06-04 16:34:55
阅读次数:
151
./configure\--prefix=/usr/local/php\--with-config-file-path=/usr/local/php/etc/\--enable-inline-optimization\--enable-shared\--enable-opcache\--enable-fpm\--with-fpm-user=php\--with-fpm-group=web\--wi
分类:
Web程序 时间:
2018-06-02 22:54:34
阅读次数:
736
一、 测试: 如下图所示在nginx的返回的网页Respons中添加头字段. Request头解释: <1>$request_filename file path for the current request, based on the root or alias directives, and ...
分类:
其他好文 时间:
2018-06-02 21:34:02
阅读次数:
145
1. du -sm * | sort -n 把当前目录下的文件(或目录)按大小排序,看下哪个地方占用最多; 2. pwd 获取当前目录路径 3. tail -f file_path 显示文件最后几行内容(若文件内容变动,会动态更新后面几行) 4. pgrep process_name 获取进程ID ...
分类:
系统相关 时间:
2018-06-02 17:09:44
阅读次数:
222
1.读取文件 FILE *file = fopen(file_path,"rb"); 2.获取文件大小 fseeko(file,0,SEEK_END); uint64_t file_size = ftello(file); fseeko(file,0,SEEK_SET); 3.读取文件 size_t ...
分类:
其他好文 时间:
2018-05-30 15:08:53
阅读次数:
122
在创建一个vue项目启动时报错,报错的内容为: error in ./src/App.vue Module build failed: Error: No parser and no file path given, couldn’t infer a p arser. at UndefinedPar ...
分类:
其他好文 时间:
2018-05-28 19:46:18
阅读次数:
392
一、简单操作 click():点击 send_keys():输入 clear():清空 submit():提交表单 size:返回元素的尺寸 text:获取元素的文本 get_attribute():获取元素的属性值 title:获取当前页面标题 current_url:获取当前页面URL is_d ...
分类:
其他好文 时间:
2018-05-28 19:46:06
阅读次数:
239