2024-06-20
生活
00

准则一:股市不可能天天挣钱的,尤其是A股,所以一定要多观察再买入

准则二:买股票不要临时起意从而买入,一定是按照自己的买入体系,提前分析看好的

准则三: 同一个票短期内一旦卖出后,及时出现反转,也一定不要再买入了

2024-07-08
linux相关
00

提示

以下内容的目的,只是为了学习合法的知识

准备
  • 域名
  • 国外服务器(目前使用的是搬瓦工的服务器)
申请域名证书
服务搭建
  1. 通过gost搭建http2服务
2024-06-05
linux相关
00

centos安装supervisor详细教程

解释说明

sh
supervisor:要安装的软件的名称。 supervisord:装好supervisor软件后,supervisord用于启动supervisor服务。 supervisorctl:用于管理supervisor配置文件中program。

安装

使用yum命令安装 切换为root用户

sh
yum install epel-release # 如果已安装EPEL源,请跳过 yum install -y supervisor systemctl enable supervisord # 开机自启动 systemctl start supervisord # 启动supervisord服务 systemctl status supervisord # 查看supervisord服务状态 ps -ef|grep supervisord # 查看是否存在supervisord进程
2024-11-07
golang
00

相关信息

icoding(vscode)无法跳转方法排查

背景

  • vscode配置golang项目,发现无法进行代码跳转,同时提示找不到goroot的路径

解决方法

  • 执行 go env 获取正确的gopath和goroot的路径
  • 配置到settings.json中
2024-10-18
golang
00

sync

通过sync使程序只执行一次

golan