2023-05
2023-05-06
- Windows cmd batch中, 在文件最前添加一行
@echo off
, 可以让.bat
文件在执行时不打印文件中的脚本语句
2023-05-13
- 使用Windows cmd batch更新当前目录下, 所有子目录的SVN:
FOR /D %%d IN ("%~dp0*") DO svn update "%%d"
2023-05-18
- C++的这个模板是什么意思, 怎么实现的? - 知乎
- C++11
decltype
- Python 3
secrets
2023-05-19
- C++11
noexcept
- C++11
noexcept specifier
- C++11
2023-05-22
- 【C++项目实战】实现一个 JSON 解析器
- C++17
string_view
- C++17
variant
- C++17
optional
- C++11
nullptr_t
- C++17
from_chars()
from_chars_result
- C++11
errc
- C++11
- C++14
is_null_pointer
- C++17
any
2023-05-23
- GAMES106: 现代图形绘制流水线原理与实践
- God of War Ragnarok's Visual Scripting Solution
- C++
__m128
,__m128d
- C++
__attribute__
- C++ SFINAE - Substitution Failure Is Not An Error
2023-05-24
- C++23 复数
complex
2023-05-25
- C++20
lerp()
- C++17
clamp()
- C++17
rotate()
- C++17
upper_bound()
2023-05-26
- C++14
quoted()
2023-05-27
- Windows API 获取高分辨率时间戳
- 图形引擎实战: RVO动态避障使用分享 - 知乎
2023-05-28
2023-05-30
- 在Windows环境中重新配置Visual Studio Code的C++环境
g++
MSVC
(失败)