摘要: 安装 npm install gitbook-cli -g gitbook命令: gitbook init //初始化目录文件 gitbook help //列出gitbook所有的命令 gitbook --help //输出gitbook-cli的帮助信息 gitbook build //生成静态 阅读全文
posted @ 2023-02-12 17:05 快乐的提千万 阅读(392) 评论(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) 编辑
摘要: 一、技术 看视频教程入门(B站即可),看书深入,最重要的是实践。 二、怎么提问 很多新人不知道怎么提问,问了太简单的问题怕被人鄙视,更重要的是不知道问题是否简单。 其实也没有那么严格,程序员还是很愿意帮人解决问题的,可以装一下13并且很有成就感。 值得注意的是: 这个问题百度、谷歌是否有答案,对着教 阅读全文
posted @ 2023-02-11 17:58 快乐的提千万 阅读(308) 评论(0) 推荐(3) 编辑
摘要: 框架报500 1.chmod 777 -R storage 将日志目录权限设置下。 2.修改fastcgi,将代码目录包含进去。 fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/:/home/www/"; 阅读全文
posted @ 2023-02-10 17:11 快乐的提千万 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 在Laravel中使用分组求和,如果直接使用Laravel各数据库操作方法,应该会得出来如下代码式: DB::table('table_a') ->where('a','=',1) ->groupBy('b') ->select("sum(c) as d") ->get(); 但是,这么做会报错,因 阅读全文
posted @ 2023-02-10 17:10 快乐的提千万 阅读(75) 评论(0) 推荐(0) 编辑
摘要: broker的数量最好大于等于partition数量 一个partition最好对应一个硬盘,这样能最大限度发挥顺序写的优势。 一个broker如果对应多个partition,需要随机分发,顺序IO会退化成随机IO。 实验条件:3个 Broker,1个 Topic,无Replication,异步模式 阅读全文
posted @ 2023-02-10 16:14 快乐的提千万 阅读(2098) 评论(0) 推荐(0) 编辑