2024年出梅第二天,温度依旧高
出梅了,没有雨了,气温瞬间提升,昨日38°,今日37°,似乎身体还没有适应高温……,慢慢就会耐受。
重新安装
#2024.7.5莫名其妙的无法访问,重置了镜像,所有的重新安装了。希望以后平平安安,减少折腾!!!
干掉Xshell6/7 升级的死循环
出现提示”要继续使用此程序,您必须应用最新的更新或使用新版本”重启后显示已是新版本,然后一直循环。
解决办法:
用二进制修改器修改安装目录下文件nslicense.dll文件,打开文件后,点击搜索或快捷键(Ctrl+F),搜索0F8681,将“0F8681”修改成“0F8381” (xshell6);xshell7 需要搜索7F0C81F98033E101,找到后,修改后边的0F86为0F83就可以了。
tags
#无法GET /tags
123456789hexo new page "tags"#modify---type: tagslayout: tagstitle: tagsdate: 2024-06-24 17:48:27---
category 也是如此.
突发奇想
Adroid SDK 难吗?想做一个试试。
生活无趣,找点乐子……。
1
插入图片测试,图片放在一个文件夹下,然后markdown中引用格式
梅雨第三天
得之坦然,失之淡然,顺其自然,争其必然#人生之路,有得有失,不患得失,处之坦然。#On the path of life, there are gains and losses, there is no risk of gains or losses, and one should be at ease.人生之苦,求得不得,得而又失,何必自苦?#The hardships of life cannot be obtained, but they are obtained and lost. Why suffer on your own?
添加SSL证书,使用自动证书
#按照官网的要求安装snapd##Install snapd on rocky linux
123456789101112$ sudo dnf install epel-release$ sudo dnf upgrade$ sudo dnf install snapd#enable by systemdOnce installed, the systemd unit that manages the main snap communication socket needs to be enabled:$ sudo systemctl enable --now snapd.socketTo enable classic snap support, enter the following to create a symbolic link between /var/lib/snapd/snap and /snap:$ sudo ln -s /var/lib/snapd/snap /snap
#正式安装certbot##如果有其他版本的,先卸载其他的 yum remove certbot
1 ...
记录生活第一天,hexo 静态页面加速
第一天hexo使用方法Create a new post新建一个标题页
1$ hexo new "My New Post"
More info: Writing
Run server启动hexo server,执行后放后台,disown执行。hexo s
1$ hexo server
More info: Server
Generate static files可以简写成 hexo g,每次修改完,执行这个刷新增量页面。
1$ hexo generate
More info: Generating
Deploy to remote sites这步没有必要了,我是放在本机vps上提供web服务,而不是远程服务器。
1$ hexo deploy
More info: Deployment
##修改脚注,加上备案信息
12vi node_modules/hexo-theme-butterfly/layout/includes/footer.pug
Hexo_test
setup, include1knitr::opts_chunk$set(echo = TRUE)
R MarkdownThis is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.
When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
cars}1summary(cars)
Including PlotsYou can ...