学习遇到的问题及解决方法
2024年excel表格怎么单元格内自动编号
按下快捷键ALT+F11打开VBA(宏)编辑界面,然后点菜单栏【插入】下拉中列表中点【模块(M)】。
然后插入了一个模块1,在代码框中复制如下代码:
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647Option Base 1Sub 选单元格内容每段加序号()'2020-1-2 22:21:42Dim mb, m As String, i As Long, j As Long, mm As StringDim cmt As RangeFor Each cmt In Selection m = cmt.Text If cmt.Text <> "" Then If InStr(1, m, Chr(10), 1) > 0 Then mb = Split(m, Chr(10)) j = 0 For i = 0 To UBound(mb) ...
软件测试竞赛
大赛介绍以及准备参考链接
全国大学生软件测试大赛 备赛准备
2024 web组软件测试功能测试123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475import org.openqa.selenium.chrome.ChromeDriver;import org.openqa.selenium.support.ui.Duration;import org.openqa.selenium.WebDriver;//import org.openqa.selenium.WebElement;import org.openqa.selenium.By;public class Example { // Mooctest Selenium Example // <!> Check if selenium-standalone.jar ...
博客更新日志
文章初衷记录本博客的更新情况
2024年11.2
在EU.org网址上申请了一个免费域名jcheng352.eu.org
10.11
将网址部署到velcel上,但因为velcel域名被墙,自定义域名需要购买,遂放弃(后续需要再添加)
10.2
网址收藏-增加“菜鸟工具”链接
9.28
新增网址收藏的网页头像图片
网址收藏页面新增链接
文章新增折叠框功能
9.27
将图库、音乐、链接折叠到生活类
新增图库页面(不能显示图片/待解决)
9.26
博客基础配置更改
新增全局音乐播放卡片
新增头像、主页图、社交图标(微信、QQ)展示
增加文章过期提醒
增加博客年份设置
增加博客运行时间
博客创建过程
记录建立个人博客所用到的教程文档、流程顺序。2024.9.25 下载notejs、git,注册github2024.9.26 成功搭建hexo博客2024.9.27 博客美化改进完成
域名
申请一个免费域名
eu.org域名的申请流程 - Eslzzyl - 博客园 (cnblogs.com)
hexo+GitHub博客搭建参考教程
B站视频:https://www.bilibili.com/video/BV1Ju4m1c7WR/
博客链接:
如何用Hexo搭建个人博客?
Hexo搭建进阶:Vercel部署、主题安装、基础用法
hexo官方文档
点击文字直达
butterfly美化下载以及简单配置
Butterfly 安装文档(一) 快速开始
Butterfly 安装文档(二) 主题页面
博客美化butterfly 官方博客图文版:
Butterfly 安装文档(三) 主题配置-1
Butterfly 安装文档(四) 主题配置-2
全局音乐设置
Butterfly 安装文档(六) 进阶教程
Butterfly添加全局吸底Aplayer教程
还包含 电 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment