May 14, 2020
shell
脚本
shell 文件权限shell 开头
以sh后缀
开头#注释,表明采用何种解释器 1#!/bin/bash
添加作者等说明 123456 #/bin/bash<<ABC author:cheonghu date:2020-05-06 desc:shell de ...
Read more
May 12, 2020
canvas
介绍canvas vs svg
canvas 适用于动态创建的位图,缩放失真。
svg 适用于静态描述的矢量图,缩放不失真。
canvas 基于”状态”绘制图形,譬如,strokeStyle、fillStyle、lineWidth等
svg基于dom,可以直接在html中展示
绘图四步骤
...
Read more
May 9, 2020
jenkins
软件开发过程瀑布流开发
持续集成
持续集成工具
jenkinsjenkins介绍
java语言开发
支持插件
为持续构建而生
jekins安装
拉取镜像 1docker pull jenkinsci/blueocean
容器启动 12345678910# --rm \ stop后会删除d ...
Read more
May 7, 2020
docker
nginx
本地nginx 配置https访问产线api安装nginx 12$ brew search nginx$ brew install nginx
自签证书 1234567891011 # 其中,证书,不设置任何密码,便于nginx使用openssl genrsa -des3 -passout ...
Read more
May 6, 2020
shell
脚本
shell 文件权限shell 开头
以sh后缀
开头#注释,表明采用何种解释器 1#!/bin/bash
添加作者等说明 123456 #/bin/bash<<ABC author:cheonghu date:2020-05-06 desc:shell de ...
Read more
April 28, 2020
angular
directive
UI
ui-grid升级方案
详情请移步这里ui-grid升级
核心code 1234567891011 @Directive({ selector: 'hero-detail'})export class HeroDetailDirective exte ...
Read more