Mac 连接Svn https证书信任问题
终端输入
1svn ls https://xxxx
(R)eject, accept (t)emporarily or accept (p)ermanently? p
R 拒绝t 本次接受p 永久接受
caniuse-lite is outdated.
Building for production…Browserslist: caniuse-lite is outdated. Please run next command `yarn upgrade caniuse-lite browserslist`
删除yarn.lock
yarn install
小米路由3G刷老毛子
准备:
小米路由3G
Windows或Mac电脑网线连接路由
U盘(FAT/FAT32格式)
注:
使用网线连接路由后进行操作不保证内容的正确性,不承担带来的风险和后果
一、刷开发版ROM
下载地址:http://www1.miwifi.com/miwifi_download.html
打开192.168.31.1
升级固件,选择刚刚下载的文件
二、刷SSH
下载地址及方法(需登录绑定路由):https://d.miwifi.com/rom/ssh
请将下载的工具包bin文件复制到U盘(FAT/FAT32格式)的根目录下,保证文件名为miwifi_ssh.bin;
断开小米路由器的电源,将U盘插入USB接口;
按住reset按钮之后重新接入电源,指示灯变为黄色闪烁状态即可松开reset键;
等待3-5秒后安装完成之后,小米路由器会自动重启,之后您就可以尽情折腾啦 :)
三、刷breed注:Windows电脑需要安装xshell,MAC直接使用终端
输入: ssh root@192.168.31.1 回车
输入步骤二的root密码,回 ...
gitstats代码统计
12345678910brew install gnuplotgit clone https://github.com/hoxu/gitstats.gitpython gitstats/gitstats "git路径" "git路径" "生成路径"如: python gitstats/gitstats -c project_name="name" -c start_date=2017-10-1 "git/code1" "git/code2" out统计git/code1,git/code2代码,时间从2017-10-1号开始,项目名为name,输出至out目录
1234567891011121314// 一些参数:{ 'max_domains': 10, 'max_ext_length': 10, 'style': 'gitstats.css', 'max_auth ...
Fire TV stick 4K
准备
梯子
电视HDMI输入
开箱
设置
软件安装
电脑安装ADB
下载apk
$ adb connect 192.168.1.xx(盒子IP)
$ adb install -r xxx.apk
成功
图
安卓 position: absolute; position: fixed;和键盘冲突的问题
解决方式一修改为relative或static
解决方式二设置absolute时固定父元素高度(px)
解决方式三弹出键盘时隐藏内容
12345@media (max-height: 500px) { .class { display: none; }}
nginx 配置https
update: 2018-08-20
已支持泛域名申请:https://certbot.eff.org/
Trying to get a wildcard certificate? Please use the dropdown menus below to get instructions specific to your system, and read those instructions carefully.
12345$ sudo apt-get update$ sudo apt-get install software-properties-common$ sudo add-apt-repository ppa:certbot/certbot$ sudo apt-get update$ sudo apt-get install python-certbot-nginx
12$ service nginx stop$ certbot certonly --standalone --email your@email.com -d yourdomain.com
安装参 ...
Git Commit Msg
12345<type>(<scope>): <subject><body><footer>
Example
123456fix(middleware): ensure Range headers adhere more closely to RFC 2616Add one new dependency, use `range-parser` (Express dependency) to computerange. It is more well-tested in the wild.Fixes #2310
Allowed values:
feat 针对用户来时的新功能
fix 针对用户来说的bug修复
docs 文档更新
style 代码格式化,添加分号对代码没有影响的提交
refactor 代码重构,如变更一个变量名
test 测试代码修改
chore 更新注释等
ci 配置更新
Example values:
init
runner
watcher
config
web-server
proxy
M ...
yarn puppeteer错误
error /app/node_modules/puppeteer: Command failed.Exit code: 1Command: node install.jsArguments:Directory: /app/node_modules/puppeteerOutput:ERROR: Failed to download Chromium r579032! Set “PUPPETEER_SKIP_CHROMIUM_DOWNLOAD” env variable to skip download.{ Error: connect ETIMEDOUT 216.58.221.240:443 at Object._errnoException (util.js:992:11) at _exceptionWithHostPort (util.js:1014:20) at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1186:14) code: ‘ET ...
npm version
12345678版本示例:1.2.3 MAJOR.MINOR.PATCH:1.2.3┬ ┬ ┬│ │ ││ │ └ 补丁版本:bug修复,向后兼容│ └── 次要版本:新增功能,向后兼容└──── 主要版本:修改不向后兼容的api
示例1234567 1.2.3 =1.2.3 >1.2.3 <1.2.3>=1.2.3Note:1.2.3-rc1不在范围内
版本范围
声明
结果
备注
~1.2.3
is >=1.2.3 <1.3.0
^1.2.3
is >=1.2.3 <2.0.0
^0.2.3
is >=0.2.3 <0.3.0
(0.x.x 不限定后两位版本)
^0.0.1
is =0.0.1
(0.0.x不限定第三位版本)
^1.2
is >=1.2.0 <2.0.0
(等同于^1.2.0)
~1.2
is >=1.2.0 <1.3.0
(等同于~1.2.0)
^1
is >=1 ...