Personal channel of @lancern
Topics: programming, hacking, memes, life, and more. Forward anything as you wish.
Join the discussion group for more fun.
Discord: https://discord.gg/RwUx9et7
Topics: programming, hacking, memes, life, and more. Forward anything as you wish.
Join the discussion group for more fun.
Discord: https://discord.gg/RwUx9et7
C++20 Idioms for Parameter Packs https://www.scs.stanford.edu/~dm/blog/param-pack.html
UBfuzz: Finding Bugs in Sanitizer Implementations:
https://arxiv.org/abs/2401.04538v1
“介绍了一个新的测试框架UBfuzz,用于验证编译器中的sanitizer实现,发现了sanitizer中的31个漏洞,揭示了sanitizer存在的严重虚假负问题。”
https://arxiv.org/abs/2401.04538v1
“介绍了一个新的测试框架UBfuzz,用于验证编译器中的sanitizer实现,发现了sanitizer中的31个漏洞,揭示了sanitizer存在的严重虚假负问题。”
白宫为世界软件开发指明方向,Rust大获全胜()
https://www.whitehouse.gov/oncd/briefing-room/2024/02/26/press-release-technical-report/
https://www.whitehouse.gov/oncd/briefing-room/2024/02/26/press-release-technical-report/
Faster: Fast persistent recoverable log and key-value store https://github.com/microsoft/FASTER
Windows in a Docker Container https://github.com/dockur/windows
StringZilla: Up to 10x faster strings for C, C++, Python, Rust, and Swift
Comments
via dvk@users.lobste.rs (dvk)
Comments
via dvk@users.lobste.rs (dvk)
C++ Metaprogramming Exercises Vol. I
https://www.slamecka.cz/posts/2021-03-17-cpp-metaprogramming-exercises-1/
https://www.slamecka.cz/posts/2021-03-17-cpp-metaprogramming-exercises-1/
时隔一年多重新开始用 GitHub Copilot,主要用于生成测试,真舒服
今日C++无用冷知识两则:
1. 以下两种写法是合法且等价的:
2. 下面的模板函数定义是合法的;
它等价于:
1. 以下两种写法是合法且等价的:
typedef int i32;
int typedef i32;
2. 下面的模板函数定义是合法的;
template <typename ...T>
void test(T......) {}
它等价于:
template <typename ...T>
void test(T..., ...) {}
Show HN: Pages CMS – A CMS for GitHub https://pagescms.org