doc https://mermaid.js.org/intro/
流程图
1 | graph LR; |
1 | graph TB; |
doc https://mermaid.js.org/intro/
1 | graph LR; |
1 | graph TB; |
1 | public static void main(String[] args) { |
用stream的filter来替代if/else业务逻辑
1 | for(int i=0;i<10;i++){ |
ps (process status) 命令用于显示当前进程的状态,类似于 windows 的任务管理器
1 | $ ps -ef | grep key |
key 运行进程的关键字 (如:ps -ef | grep tomcat)
UID 启动进程的用户名
PID 进程pid
PPID
C
STIME 开始启动时间
TTY 终端号
TIME 运行时间
CMD 启动进程的命令
-o 格式输出
1 | ❯ ps -eo pid,lstart,etime,user,cmd | grep mysql |
/hexo/_config.yml
1 | permalink: :title// |
/_posts
1 | $ tree -L 2 ./_posts/ |
1 | [点击查看md写flow文章](/markdown/flow) |
[] 自定义链接标题
()绝对地址,permalink的值
1 | {% post_link tool/text/markdown/flow/ '点击查看md写flow文章' %} |
点击查看md写flow文章post_link 相对路径 ‘标题’
锚点链接
1 | [跳到本页的开头](#id-sample) |
锚点链接
1 | [跳到其他页指定位置](permalink的值#id-sample) |
1 | 锚点<p id="id-sample" hidden/> |
提供内网穿透服务,可以在自己主机部署服务供外网访问
github https://github.com/inconshreveable/ngrok
官网注册获取authtoken
生成配置
1 | ./ngrok authtoken ******** |