摘要: crontab -e 会打开 /var/spool/cron/crontabs/username文件(如果没有username,这个文件还是root) Linux(Debian)使用crontab设置定时任务 - 个人文章 - SegmentFault 思否 阅读全文
posted @ 2024-09-04 22:38 nanahome 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://certbot.eff.org/instructions?ws=nginx&os=snap certbot --nginx 自动续期 certbot renew --pre-hook "systemctl stop nginx" --post-hook "systemctl star 阅读全文
posted @ 2024-09-01 00:53 nanahome 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1、如何从 Ubuntu 22.04 升级到 Ubuntu 24.04 如何从 Ubuntu 22.04 升级到 Ubuntu 24.04 ? - 软件简史 - SegmentFault 思否 2、升级你的Ubuntu Linux内核版本 超级用户指南:轻松升级你的Ubuntu Linux内核版本 阅读全文
posted @ 2024-08-21 00:43 nanahome 阅读(21) 评论(0) 推荐(0) 编辑
摘要: WEJDK学习站 (injdk.cn) https://www.injdk.cn/ 阅读全文
posted @ 2024-06-08 20:41 nanahome 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 1 <build> 2 <resources> 3 <resource> 4 <directory>src/main/java</directory> 5 <includes> 6 <include>**/*.yml</include> 7 <include>**/*.properties</inc 阅读全文
posted @ 2024-05-27 17:07 nanahome 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 按照昨天的教程。 https://www.electronjs.org/zh/docs/latest/tutorial/quick-start npm install --save-dev electron 进行到这一步,出问题了。无法安装成功。外网访问问题。 使用npm安装electron不成功的 阅读全文
posted @ 2023-10-25 10:43 nanahome 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 需要开发一个桌面版的软件,选择electron实现。 技术选型: 桌面软件开发框架大赏 https://zhuanlan.zhihu.com/p/547806659 quick-start https://www.electronjs.org/zh/docs/latest/tutorial/quic 阅读全文
posted @ 2023-10-23 15:13 nanahome 阅读(9) 评论(0) 推荐(0) 编辑
摘要: https://repo.huaweicloud.com/openjdk/ 更多镜像。 https://mirrors.huaweicloud.com/home https://mirrors.tuna.tsinghua.edu.cn/ 阅读全文
posted @ 2023-10-08 15:27 nanahome 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 原来看教程上都是用 go get 获取软件包。提示如下,意思是go get要被废弃了。 我的版本是,go version go1.20.4 windows/amd64 go get -u github.com/kataras/irisgo: go.mod file not found in curr 阅读全文
posted @ 2023-09-27 01:41 nanahome 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 在VSCode配置golang开发环境时,我们一般使用golang提供的go插件,而这个插件会使用go get命令去从golang.org下载对应的包。因为众所周知的原因,这个过程经常会失败,因此必须要为go get更换国内镜像源。 由于历史原因,go的软件包会通过GOPATH和module两种方式 阅读全文
posted @ 2023-09-27 01:29 nanahome 阅读(2520) 评论(0) 推荐(0) 编辑