摘要: 1、快捷键 !产生html骨架 复制:光标落到一行Command +C 复制一行,command+V黏贴一行 向上复制一行:alt+shift+向上箭头(Mac为option+shift+向上箭头) N行相同的模块, 如一次输入10行div, 输入 div*10 回车。 保存:command+S 2 阅读全文
posted @ 2021-01-14 16:52 遐迩66 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 在 Node.js 中,创建一个模块非常简单,如下我们创建一个 main.js 文件,代码如下: var hello = require('./hello'); hello.world(); 以上实例中,代码 require('./hello') 引入了当前目录下的 hello.js 文件(./ 为 阅读全文
posted @ 2020-09-03 09:30 遐迩66 阅读(87) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010696334/article/details/107549802 1、首先学习ES6 (1)node js ES6, 全称 ECMAScript 6.0 ,是 JavaScript 的下一个版本标准,2015.06 发版。 Node.js 是运行在 阅读全文
posted @ 2020-09-02 10:23 遐迩66 阅读(221) 评论(0) 推荐(0) 编辑
摘要: http://www.woshipm.com/pmd/3339033.html 阅读全文
posted @ 2020-05-13 10:33 遐迩66 阅读(108) 评论(0) 推荐(0) 编辑
摘要: awk sed命令,文件处理,日志过滤相关,如t.txt 统计文件中hello出现的次数,txt文件的总行数 grep -o hello t.txt | wc -l //单词出现次数 cat logfile.txt | wc -l //行数 阅读全文
posted @ 2020-05-08 10:49 遐迩66 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 【jmeter】对于返回结果中文显示?问题 https://blog.csdn.net/qq_38112817/article/details/88397920 最后一步才是最关键,前两步修改完不起作用。即在http请求后面加上 utf-8 阅读全文
posted @ 2020-02-25 15:25 遐迩66 阅读(327) 评论(0) 推荐(0) 编辑
摘要: MAC 本用pip3命令安装openpyxl插件(或者其他插件)后,在Pycharm依然找不到 如下图所示,新建项目时,勾选继承包即可。 阅读全文
posted @ 2020-02-16 17:51 遐迩66 阅读(694) 评论(0) 推荐(0) 编辑
摘要: pip3版本已经是最新,安装openxl失败,提示 Could not find a version that satisfies the requirement openxl,No matching distribution found for openxl 用以下问答中的第3个答案解决,其他两种 阅读全文
posted @ 2020-02-15 22:55 遐迩66 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 开始学习python,因为MAC本自带2.7,版本较低,下载了python3.8,安装后按照之前博文的方法进行了升级。目前敲入python, 直接进入了python3.8. 但是发现pip3命令无法更新。执行pip3 install --upgrade pip时,报如下错误,蒙头晚上查了一圈方法,折 阅读全文
posted @ 2020-02-15 19:28 遐迩66 阅读(2723) 评论(0) 推荐(0) 编辑
摘要: 1、Python官网:https://www.python.org/下载包,并安装 2、查看python是否安装成功 : 在终端输入python出现>>>,代表安装成功,已进入python环境 3、mac自带Python,需查看版本号是否是Python3的版本,执行 python --version 阅读全文
posted @ 2020-02-05 11:50 遐迩66 阅读(1327) 评论(0) 推荐(0) 编辑