April 25, 2020
vscode
rollup
vscode 脚手架1npm install -g yo generator-code
Read more
April 25, 2020
自动部署
静态站点
托管
GitHub Pages
优点
可配置自定义域名,且域名不用备案
可强制https访问,一键配置开启
Github Action 支持push 触发构建
每个账户,2000min/month 构建资源,下月自动清零,重新计算
缺点
不能自定义ssl 证书,但是不影响使用
...
Read more
April 24, 2020
shell
脚本
shell 编写shell 开头
以sh后缀
开头#注释,表明采用何种解释器 1#!/bin/bash
添加作者等说明 123456 #/bin/bash<<ABC author:cheonghu date:2020-04-24 desc:shell demo ...
Read more
April 24, 2020
angular
ui-grid
方案一
直接使用新的libary,改用ag-grid
ag-grid具体参考
方案二使用背景
技术需要升级angularjs → angular8
没有可用的Ui组件
或者有可用的Ui组件,但是由于某些限制,譬如公司级别技术要求,不给使用
只能使用angular directive
...
Read more
April 21, 2020
shell
脚本
tar
上传tar包1$ scp xxx.tar.gz <user>@xx.xx.xx.xx:/home/data
移动包路径123echo "1.mv tar.gz to data/www"mv ./$tarDir /data/www echo -e "m ...
Read more
April 20, 2020
canvas
介绍canvas vs svg
canvas 适用于动态创建的位图,缩放失真。
svg 适用于静态描述的矢量图,缩放不失真。
canvas 基于”状态”绘制图形,譬如,strokeStyle、fillStyle、lineWidth等
svg基于dom,可以直接在html中展示
绘图四步骤
...
Read more