core dump gdb issues

core dump 问题 bt 显示 ?? gdb 版本过低 thread apply all bt 中完全无主程序的调试信息 1 2 3 Thread 1 (LWP 2528530): #0 0x00007f36376b7fff in ?? () #1 0x0000000000000000 in ?? () gdb program core 考虑 program 二进制文件与 core 文件是否一致。 thread apply all bt

LLVM Loop Optimization - Full Unroll

The For Structure Code Block 多数通用语言的 for loop 具备以下的结构: 1 2 3 for (InitStmt; Condition; IncStmt) { // code block to be executed } 注:for range 是语言层面对于迭代器封装的语法糖。 结合 for 的上下文,可以

git merge

git merge的基本用法 **get merge:**将指定分支的修改合并到当前分支 其包含了两种合并模式:fast-forward、no-fast-for

mac利器:alfred

有道翻译 【Mac】Alfred4有道翻译的workflow实现 mac那些事儿-alfred配置有道翻译workflow 印象笔记 Alfred实

blog: hugo + github + typora

问题1 问题描述:github pages对应的仓未能生成index.html,本地hugo servrer可以正常显示 解决方案: 1 git submodule add https://github.com/olOwOlo/hugo-theme-even themes/even 通过

019 overloaded lambda

Overloaded lambda 一个有趣的话题:如何重载lambda。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 #include <iomanip>#include <iostream>#include <string>#include <type_traits>#include <variant>#include <vector> // the variant to visit using var_t = std::variant<int, long, double, std::string>; // helper type