W1evy's blog

Archives · 2024

Home

About

Archives

loading..

博客搭建总结

前期准备和框架选择 安装Node.js 在 Node.js 官网找到下载链接,选择合适的版本,安装完成后在 cmd通过查看版本号来验证安装 123node -vnpm -v 安装hexo 为自己的博客仓库准备一个专门的目录,在该目录下打开git bash,输入 1npm i hexo-cli -g 同样,在安装完成后查看版本号来验证安装 1hexo -v 博客目录初始化 使用 hexo 自带的命令就可以方便地搭建起一个简单的博客页面,在bash 或 cmd 中输入,这样博客目录中也会产生由 hexo 生成的框架代码 123456hexo initnpm install hexo g(generate)hexo s(本地预览) 选择主题和个性化配置 在 hexo 官网中选择一个主题,并将..

Read more
loading..

新生入学教育

掌握领域前沿技术 找到自己领域的顶会 中国计算机学会推荐国际学术会议和期刊目录 搜索学术论文:谷歌学术、DBLP、paperwithcode 多查看综述 科研流程:想法 -> 实验 -> 论文为什么读论文: 了解学术界规则 防止想法翻车 读什么论文: 确定研究方向 找篇综述顺着读 逛arXiv 如何读论文: 重要的论文精读 注水的论文泛读c. 写出论文的关键 基本的代码能力 确保自己想法能实现 尽全力缩短从想法到实验结果的时间 形成循环工作流 善用各种工具 overleaf ChatGPT Grammarly 找导师帮忙修改 研究生学习进度: 上学期 下学期 研一 基础课程学习,跟进课题 研二 完成课题、小论文..

Read more
loading..

markdown quick start

Python-Markdown 转载自:https://github.com/Python-Markdown/markdown This is a Python implementation of John Gruber’s Markdown.It is almost completely compliant with the reference implementation,though there are a few known issues. See Features for informationon what exactly is supported and what is not. Additional features aresupported by the Available Ex..

Read more
loading..

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 g..

Read more