摘要: 并行和并发 并行(parallel):指在同一时刻,有多条指令在多个处理器上同时执行。 并发(concurrency):指在同一时刻只能有一条指令执行,但多个进程指令被快速的轮换执行,使得在宏观上具有多个进程同时执行的效果,但在微观上并不是同时执行的,只是把时间分成若干段,使多个进程快速交替的执行。 阅读全文
posted @ 2023-02-12 17:10 快乐的提千万 阅读(59) 评论(0) 推荐(0) 编辑
摘要: Gogs环境要求 我以rhel6.3为例,已经属于生命周期边缘了 #安装git yum install -y git git --version git version 1.7.1 #安装mysql-server yum install -y mysql-server mysql --version 阅读全文
posted @ 2023-02-12 17:06 快乐的提千万 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 安装 npm install gitbook-cli -g gitbook命令: gitbook init //初始化目录文件 gitbook help //列出gitbook所有的命令 gitbook --help //输出gitbook-cli的帮助信息 gitbook build //生成静态 阅读全文
posted @ 2023-02-12 17:05 快乐的提千万 阅读(393) 评论(0) 推荐(0) 编辑
摘要: 安装 yum install supervisor touch /var/run/supervisor/supervisor.sock chmod 777 /var/run/supervisor/supervisor.sock supervisord supervisorctl start all 阅读全文
posted @ 2023-02-12 17:03 快乐的提千万 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 安装和配置必要的依赖项 yum install dnf sudo dnf install -y curl policycoreutils openssh-server #将SSH服务设置成开机自启动 sudo systemctl enable sshd sudo systemctl start ss 阅读全文
posted @ 2023-02-12 17:01 快乐的提千万 阅读(59) 评论(0) 推荐(0) 编辑
摘要: brew 参考:https://zhuanlan.zhihu.com/p/111014448 ## 更新 homebrew-cask cd "$(brew --repo)"/Library/Taps/homebrew/homebrew-cask # 更换源 git remote set-url or 阅读全文
posted @ 2023-02-12 16:58 快乐的提千万 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 原文: https://gist.github.com/berkorbay/6feda478a00b0432d13f1fc0a50467f1 sudo wget https://github.com/shiftkey/desktop/releases/download/release-3.1.1-l 阅读全文
posted @ 2023-02-12 16:49 快乐的提千万 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 预备 先看看这几个是干嘛的,相互的关系是啥。 nodejs是语言,类比到php。 npm是个包管理,类比到composer。 vue是个框架,类比到laravel。 webpack是个打包工具。 先下载nodejs 不会有人不知道下载地址吧,不会吧不会吧。 不会就去百度吧。。。 这里先默认你已经下载 阅读全文
posted @ 2023-02-12 16:49 快乐的提千万 阅读(46) 评论(0) 推荐(0) 编辑