数据库作业记录
xampp安装与启动安装下载:https://www.apachefriends.org/ 安装教程:【小白必看的php入门教程,第二节课,软件xampp的安装与使用】https://www.bilibili.com/video/BV1e7411u7qY?vd_source=8c8fc2009f4a41d7a064a07f284a69af 注意 安装路径直接设置为D盘 不要安装在program file下 启动 启动软件xampp\xampp-control.exe 点击对应功能的start启用服务 点explorer进入软件文件夹 xampp\htdocs文件夹内写php文件 使用软件使用教程参考https://blog.csdn.net/qq_36595013/article/details/80373597 开启Mysql连接 点phpmyadmin进入 utf-8_general_ci 数据库设计1)...
博客配置
新建博客在博客文件夹中右键打开终端,输入命令hugo new content post/[博客标题]/index.md,例子:hugo new content post/写了下载漫画的油猴脚本/index.md,打开index.md文档,快乐地写作吧 本地博客一键上传到github 需要注意的是,需要先在本地hugo配置文件同文件夹处运行hugo server -D,这样博客更改才会同步到public文件夹,上传的才是更新后的文件。 在public的文件夹里新建一个bat脚本方便一键上传到github 脚本文件内容: 1234@echo offgit add .git commit -m "update blog"git push 配置博客 官方docs:https://stack.jimmycai.com/config/ 新建的博客index.md包含了博客的内容,该文件标头markdown格式如下,包含了date日期、draft、title标题 12345+++date =...
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
我的第一篇博客-基于hugo模板
昨天花了很长的时间去搜索加去官网找hugo主题配置教程,还是有很多bug 今天在B站刚好搜到一个配置视频,照着专门的主题改,顺利配置好了,第一篇博客诞生! 创建新博客的命令 在博客所有文件存放的文件夹处右键进入终端 输入命令hugo new content post/<新博客名称>/index.md,显示created即成功 12PS D:\Documents\AAAA代码\myblog> hugo new content post/机器学习测试题/index.mdContent "D:\\Documents\\AAAA代码\\myblog\\content\\post\\机器学习测试题\\index.md"...