Welcome to IcingTomato's Archive. Here are the recent posts.
【Git】Git 仓库初始化
April 7, 2026
命令行新建本地仓库并远程关联 git init git add . git commit -m "first commit" git branch -M master git remote add origin <repository-url> git push -u origin master 命令行远程关联本地已有仓库 git remote add origin &l...
【NVIDIA】英伟达设备鉴赏(1)
March 24, 2026
NVIDIA BlueField-3 DPU 200GbE/NDR200 NVIDIA ConnectX-8 SuperNIC 测试截图 BIOS 下识别情况 BMC 下识别情况 Linux 下识别情况 Link Speed Active (Enabled) : 32G-Gen 5 (32G PAM-4 Gen6) 表示当前实...
【Linux】Fedora 上手配置
March 2, 2026
公司给了个 ThinkBook 14, 原装是 Windows 11, 可能是用的人多了,系统糊成狗屎一样,难用的要死,用户名还是之前人的名字,感觉很诡异。正好因为要用 Ubuntu 的系统盘,索性装个 Fedora 吧。 下载不用多说什么了,直接上官网,下载最新的 Fedora Workstation 版本的 ISO 镜像就行了。下载完成后,使用 Rufus 或者 balenaEtche...
【博客搭建】Jekyll 语法高亮配置
January 23, 2026
一个月前看 X 上有人分享了一个很简约的网站,U.S. Graphics Company,想着自己需要一个简约的主题,于是顺手扒了他们网页研究一下做个 Jekyll 主题出来。前前后后一个月的时间,把主题做出来了。但总感觉差强人意: 代码高亮很难受! 代码高亮要做层叠样式,很烦。还好 Jekyll 中默认的语法高亮是 Rouge。 markdown: kramdown kram...
【Linux】Inline assembly for x86 in Linux
January 10, 2026
If you’re a Linux kernel developer, you probably find yourself coding highly architecture-dependent functions or optimizing a code path pretty often. And you probably do this by inserting assembly ...