<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Luan_Fuzi的奇妙冒险</title><description>想把可乐带到宇宙去</description><link>https://luanfuzi.top/</link><templateTheme>Firefly</templateTheme><templateThemeVersion>6.15.6</templateThemeVersion><templateThemeUrl>https://github.com/CuteLeaf/Firefly</templateThemeUrl><lastBuildDate>2026年8月4日 01:25:47</lastBuildDate><item><title>深度学习小工具</title><link>https://luanfuzi.top/posts/trainingtools/</link><guid isPermaLink="true">https://luanfuzi.top/posts/trainingtools/</guid><description>整理一些深度学习过程中用到的小工具，提升1%的工作效率并提高99%的工作满意度。</description><pubDate>Wed, 08 May 2024 15:39:24 GMT</pubDate><content:encoded>&lt;p&gt;整理一些深度学习过程中用到的小工具，提升1%的工作效率并提高99%的工作满意度。&lt;/p&gt;
&lt;section&gt;&lt;h2&gt;GPU状态监控&lt;a href=&quot;#gpu状态监控&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;N卡自带的监控可以使用nvidia-smi指令调用，好处是驱动自带，坏处是…其实这监控没给多少有用信息。&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;/imgs/posts/trainingtools/nvidia-smi.png&quot; alt=&quot;nvidia-smi&quot; /&gt;&lt;figcaption&gt;nvidia-smi&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;使用nvtop获得更加炫酷、更加详细的监控指标。&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;/imgs/posts/trainingtools/nvtop.png&quot; alt=&quot;nvtop&quot; /&gt;&lt;figcaption&gt;nvtop&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;&lt;/p&gt;&lt;/section&gt;
&lt;section&gt;&lt;h2&gt;TensorboardX or wandb?&lt;a href=&quot;#tensorboardx-or-wandb&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;wandb适合团队协作、远程访问，功能强大，但我有时也懒得配。&lt;/p&gt;&lt;p&gt;TensorboardX做单卡少次训练也够用，如果不是特别注重细节。&lt;/p&gt;&lt;section&gt;&lt;h3&gt;哈哈哈3&lt;a href=&quot;#哈哈哈3&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h3&gt;&lt;/section&gt;&lt;/section&gt;</content:encoded></item><item><title>Github仓库同步</title><link>https://luanfuzi.top/posts/sync/</link><guid isPermaLink="true">https://luanfuzi.top/posts/sync/</guid><description>有时会想将Github的仓库同步到其他的git仓库，比如Github Pages或者Gittee。可以通过Github Action再加上亿点点配置达成效果。</description><pubDate>Sat, 06 Apr 2024 15:39:28 GMT</pubDate><content:encoded>&lt;p&gt;有时会想将Github的仓库同步到其他的git仓库，比如Github Pages或者Gittee。可以通过Github Action再加上亿点点配置达成效果。&lt;/p&gt;
&lt;p&gt;待续&lt;/p&gt;</content:encoded></item><item><title>Golang学习笔记</title><link>https://luanfuzi.top/posts/golangbasic/</link><guid isPermaLink="true">https://luanfuzi.top/posts/golangbasic/</guid><description>Golang基础学习笔记</description><pubDate>Sat, 06 Apr 2024 14:36:45 GMT</pubDate><content:encoded>&lt;p&gt;Golang基础学习笔记&lt;/p&gt;
&lt;p&gt;灵机一动打算学一下Golang，于是乎简单记录一下学习过程。
本文主要记录（我认为的）Golang语言和其它语言，如C/C++，Java有所差异的部分。&lt;/p&gt;
&lt;p&gt;参考链接：&lt;/p&gt;
&lt;p&gt;《Go 入门指南》 | Go 技术论坛 (learnku.com)
*&lt;/p&gt;
&lt;section&gt;&lt;h2&gt;背景&lt;a href=&quot;#背景&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;section&gt;&lt;h3&gt;起源&lt;a href=&quot;#起源&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;Golang是起源于2007年的谷歌某小组的项目，是一种静态、强类型、编译语言，拥有接近C++的编译后运行速度，主要特长在于内存安全、原生支持高并发、高效内存回收，拥有比较奇怪的自成一派的&lt;em&gt;比较简单好学的&lt;/em&gt;语法（不仅和较老的C和Java比，而且和相对比较现代的Kotlin和C#比，我也觉得怪怪的）。&lt;/p&gt;&lt;/section&gt;&lt;section&gt;&lt;h3&gt;土拨鼠&lt;a href=&quot;#土拨鼠&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;我很喜欢Golang的图标，足够弱智，有一种脑干缺失的美。也很可爱。&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;/imgs/posts/golangbasic/golangicon.jpg&quot; alt=&quot;golang图标&quot; /&gt;&lt;figcaption&gt;golang图标&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;&lt;/p&gt;&lt;/section&gt;&lt;/section&gt;
&lt;section&gt;&lt;h2&gt;基础语法&lt;a href=&quot;#基础语法&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;/section&gt;
&lt;section&gt;&lt;h2&gt;面向对象&lt;a href=&quot;#面向对象&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;/section&gt;</content:encoded></item><item><title>Zotero简易使用教程</title><link>https://luanfuzi.top/posts/zotero/</link><guid isPermaLink="true">https://luanfuzi.top/posts/zotero/</guid><description>Zotero是一款主要用于阅读、管理文献的软件，相比于一般的PDF阅读器，拥有更加优秀、定制化的论文辅助功能。</description><pubDate>Wed, 03 Apr 2024 10:18:52 GMT</pubDate><content:encoded>&lt;p&gt;Zotero是一款主要用于阅读、管理文献的软件，相比于一般的PDF阅读器，拥有更加优秀、定制化的论文辅助功能。&lt;/p&gt;
&lt;section&gt;&lt;h1&gt;1.下载&lt;a href=&quot;#1下载&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;&lt;p&gt;Zotero | Your personal research assistant
*
直接点击Download。这一步前建议顺手注册，可以使用包括备份在内的便捷功能。&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;/imgs/posts/zotero/zotero1.png&quot; alt=&quot;Zotero Download&quot; /&gt;&lt;figcaption&gt;Zotero Download&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;可以看到，左边是Zotero本体，右边是配合使用的浏览器插件，实现更便捷的论文下载。可以只下左边的。&lt;/p&gt;&lt;/section&gt;
&lt;section&gt;&lt;h1&gt;2.安装…&lt;a href=&quot;#2安装&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;&lt;p&gt;待续&lt;/p&gt;&lt;/section&gt;
&lt;section&gt;&lt;h1&gt;3….然后先别急着用&lt;a href=&quot;#3然后先别急着用&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h1&gt;&lt;p&gt;原生的Zotero已经挺好用的了，但是我们还有许多方法可以让它更好用。&lt;/p&gt;&lt;p&gt;Zotero 插件商店 - Zotero 中文社区 (zotero-chinese.com)
*
提供了不少第三方插件，比如我常用的Translate for Zotero可以划线翻译，支持添加第三方API，等等。&lt;/p&gt;&lt;/section&gt;</content:encoded></item><item><title>Latex学习记录</title><link>https://luanfuzi.top/posts/latex/</link><guid isPermaLink="true">https://luanfuzi.top/posts/latex/</guid><description>记录一下Latex学习过程，从安装到入土。</description><pubDate>Sun, 31 Mar 2024 12:49:17 GMT</pubDate><content:encoded>&lt;p&gt;记录一下Latex学习过程，从安装到入土。&lt;/p&gt;
&lt;p&gt;安装Tex Live，找编辑器，学语法一条龙。&lt;/p&gt;
&lt;p&gt;LaTex是一种排版技术，通过特定的指令可以控制文档内容（如图片、文本等）的位置、大小和样式。&lt;/p&gt;
&lt;p&gt;以下是基础使用流程。&lt;/p&gt;
&lt;p&gt;&lt;em&gt;操作系统：Windows 10 22H2&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;CPU: Intel i7-11800H&lt;/em&gt;&lt;/p&gt;
&lt;section&gt;&lt;h2&gt;安装Tex Live&lt;a href=&quot;#安装tex-live&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;使用LaTeX进行写作的第一步是安装LaTex的编译环境。为新手考虑，在硬盘空间充足的硬盘内优先考虑安装功能较全的Tex Live.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;/imgs/posts/latex/texlive.png&quot; alt=&quot;Texlive&quot; /&gt;&lt;figcaption&gt;Texlive&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;简陋的官网&lt;/p&gt;&lt;p&gt;国内比较方便的下载途径——清华镜像站：
Index of /CTAN/systems/texlive/Images/ | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror
*&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;/imgs/posts/latex/texlive_tuna.png&quot; alt=&quot;清华镜像站&quot; /&gt;&lt;figcaption&gt;清华镜像站&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;清华镜像站&lt;/p&gt;&lt;p&gt;下载镜像后，打开镜像内部index.html，可以查看官方提供的简易安装教程；也可以观看类似教程视频
TeX Live 2023安装
*&lt;/p&gt;&lt;p&gt;Tex Live是一个集成功能较多，镜像体积较大的All In One，安装较为耗时（i7-11800H安装全程45分钟左右，仅作参考），嫌时间长的可以选择按装更简单、更小的MiKTeX：
Getting MiKTeX
*&lt;/p&gt;&lt;p&gt;安装完记得在Path路径下添加环境变量。&lt;/p&gt;&lt;/section&gt;
&lt;section&gt;&lt;h2&gt;编辑器&lt;a href=&quot;#编辑器&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;安装完成后，Tex Live会自带一个编辑器（或者叫IDE？）TexWorks，可以方便地将Latex文档编译成PDF。&lt;/p&gt;&lt;p&gt;因为LaTeX到PDF是一种编译过程，所以编辑器并不局限于TexWorks或某种编辑器。可选的编辑器/编译环境还有TexStudio|VS Code|Sublime Text等。&lt;/p&gt;&lt;p&gt;作为一个万年VS Code用户，我抛弃了便捷好用的TexWorks，安装了更人性化、更强大的Tex Studio也没久用，最终选择了VS Code + LaTeX插件。需要注意的是，VS Code安装插件后虽然能用，但并不是最舒服的一个使用环境，需要进入Settings打开JSON文件进行某些配置。我本人也对研究配置环境兴趣不大，所以这里贴一个我用的配置文件：
Visual Studio Code (vscode)配置LaTeX - 知乎 (zhihu.com)
*&lt;/p&gt;&lt;/section&gt;
&lt;section&gt;&lt;h2&gt;开写！&lt;a href=&quot;#开写&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;p&gt;LaTeX作为一种[能且仅能在写文章时用上]的工具，不必像编程语言那样从零开始啃语法，更不需要搞懂LaTeX的模板是怎么做的。作为初阶使用者，把别人写好的拿过来用是最方便的方式，每个期刊或者会议都会有模板，想投那个刊就从哪家网站上下载模板。模板在满足期刊板式要求的同时，一般也会附带有较为详细的LaTeX语法教程，在模板的上基础上把自己的内容敲进去即可。随用随学，效率至上。&lt;/p&gt;&lt;p&gt;值得注意的是，LaTeX对数学公式的支持完备而复杂，可以找几个在线LaTeX公式编辑器写几个公式，再把LaTeX表达式粘贴回来。这里给出几个网站以供参考。&lt;/p&gt;&lt;p&gt;在线LaTeX公式编辑器-编辑器 (latexlive.com)
*&lt;/p&gt;&lt;p&gt;LatexEasy | 在线Latex数学公式编辑和渲染
*&lt;/p&gt;&lt;/section&gt;
&lt;section&gt;&lt;h2&gt;碰到的问题&lt;a href=&quot;#碰到的问题&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h2&gt;&lt;section&gt;&lt;h3&gt;安装过于耗时&lt;a href=&quot;#安装过于耗时&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;我其实不是现在（2024年3月）才真想用一下LaTeX的。我在前两年有过一两次课程作业要提交报告，报告中含有数学公式，我想来想去用markdown和word都写不上去，于是找到一个叫LaTeX的工具，第一次或者前几次安装都因为没有耐心而把进程关掉了。后来发现markdown支持LaTeX公式，于是直接学了语法，放弃了安装。&lt;/p&gt;&lt;p&gt;如果安装时感到烦躁，站起身，喝口水，下楼转一圈。安装时间长是正常的。（一定要多喝水&lt;/p&gt;&lt;/section&gt;&lt;section&gt;&lt;h3&gt;VS Code编译问题&lt;a href=&quot;#vs-code编译问题&quot;&gt;&lt;span&gt;#&lt;/span&gt;&lt;/a&gt;&lt;/h3&gt;&lt;p&gt;VS Code使用LaTeX插件的问题不止在于一开始没有配置文件，我前几次编译出来的PDF文件连格式都不对，编辑器里几十个报错。&lt;/p&gt;&lt;p&gt;后来得知默认选择的编译器不对。在插件设置里默认选择的是XeLaTeX，换成PDFLaTeX就可以解决我的问题了。&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;figure&gt;&lt;img src=&quot;/imgs/posts/latex/compiler.png&quot; alt=&quot;编译选项&quot; /&gt;&lt;figcaption&gt;编译选项&lt;/figcaption&gt;&lt;/figure&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;侧边栏选择编译选项&lt;/p&gt;&lt;/section&gt;&lt;/section&gt;</content:encoded></item><item><title>Hugo测试</title><link>https://luanfuzi.top/posts/hugo-test/</link><guid isPermaLink="true">https://luanfuzi.top/posts/hugo-test/</guid><description>尝试使用hugo进行一个个人主页的维护。</description><pubDate>Fri, 29 Mar 2024 17:12:29 GMT</pubDate><content:encoded>&lt;p&gt;尝试使用hugo进行一个个人主页的维护。&lt;/p&gt;
&lt;p&gt;早就想做个人主页了，但是以前要么是技术力不够，要么是不好看。找了半天终于在hugo里翻到了原先看hexo时候特别喜欢的一款主题
NexT Theme (github.com)
*
，简洁，不花里胡哨，而且有别人预先配置得还不错的仓库
hugo-next/hugo-theme-next-starter: Starter for Hugo NexT theme. (github.com)
*
，配了一段时间，好多没用上的东西，慢慢删吧。&lt;/p&gt;
&lt;p&gt;啥也不动，直接用markdown写东西，舒服。&lt;/p&gt;</content:encoded></item></channel></rss>