Amethyst Studio
C++编译期数组
C++中的数组是运行期的,但是我们可以通过模板元编程来实现编译期数组
825 words
|
4 minutes
Cover Image of the Post
一些有用的linux命令行工具
介绍了bat lsd rg btop fzf等一些有用的linux命令行工具
678 words
|
3 minutes
Cover Image of the Post
Git稀疏检出
2024-03-23
如果我们工作的git仓库过大,克隆整个仓库也许没有什么必要,我们可以只克隆一部分。
403 words
|
2 minutes
Cover Image of the Post
Ubuntu Shell美化
颜值就是战斗力,介绍一下Ubuntu Shell的美化方案
1209 words
|
6 minutes
Cover Image of the Post
认识论 - 反内卷的逻辑
无论别人如何行动,我自己都是始终坚持反内卷,写一写我的思考
1835 words
|
9 minutes
Cover Image of the Post
C++ ranges - Quick Start
2024-03-01
从C++20开始引入了ranges,允许更加灵活,更加安全可靠的编程方式。
2413 words
|
12 minutes
Cover Image of the Post
AstroNvim - 把Neovim打造成IDE
AstroNvim是基于Neovim的一套预配置环境,通过集成多种插件,提供了一种快速、现代的开发环境配置方法。
944 words
|
5 minutes
Cover Image of the Post
C++ - 用span代替指针+数据范围
2024-01-29
C++20引入了一个`std::span`,允许将指针+数据范围的写法封装成一个span,这种特性对C++编程提供了一定程度的便携性,但请注意它并没有完全解决安全性问题。
942 words
|
5 minutes
Cover Image of the Post