vault backup: 2022-11-30 23:52:32

This commit is contained in:
2022-11-30 23:52:32 +08:00
parent b4b100d63c
commit c14c5a76bc
2 changed files with 27 additions and 8 deletions

View File

@@ -73,14 +73,26 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "00. Inbox/00. Inbox/C++20, How Hard Could It Be.md", "file": "00. Inbox/00. Inbox/A cheatsheet of modern C++ language and library features.md",
"mode": "source",
"source": true
}
}
},
{
"id": "0e402611b1e5f832",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "00. Inbox/00. Inbox/Modern C++ The good parts.md",
"mode": "source", "mode": "source",
"source": true "source": true
} }
} }
} }
], ],
"currentTab": 5 "currentTab": 6
} }
], ],
"direction": "vertical" "direction": "vertical"
@@ -138,7 +150,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "00. Inbox/00. Inbox/C++20, How Hard Could It Be.md", "file": "00. Inbox/00. Inbox/Modern C++ The good parts.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@@ -155,7 +167,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "00. Inbox/00. Inbox/C++20, How Hard Could It Be.md" "file": "00. Inbox/00. Inbox/Modern C++ The good parts.md"
} }
} }
} }
@@ -183,8 +195,10 @@
"direction": "horizontal", "direction": "horizontal",
"width": 319.5 "width": 319.5
}, },
"active": "1dc35f01de34f9cb", "active": "0e402611b1e5f832",
"lastOpenFiles": [ "lastOpenFiles": [
"00. Inbox/00. Inbox/A cheatsheet of modern C++ language and library features.md",
"00. Inbox/00. Inbox/C++20, How Hard Could It Be.md",
"00. Inbox/00. Inbox/Modern C++ use in Chromium.md", "00. Inbox/00. Inbox/Modern C++ use in Chromium.md",
"00. Inbox/00. Inbox/FFMPEG 收集.md", "00. Inbox/00. Inbox/FFMPEG 收集.md",
"00. Inbox/00. Inbox/列出所有 USB 裝置.md", "00. Inbox/00. Inbox/列出所有 USB 裝置.md",
@@ -192,8 +206,6 @@
"00. Inbox/00. Inbox.md", "00. Inbox/00. Inbox.md",
"05. 資料收集/軟體工具/git/tag.md", "05. 資料收集/軟體工具/git/tag.md",
"05. 資料收集/Tool Setup/Software/Windows 10 Setup.md", "05. 資料收集/Tool Setup/Software/Windows 10 Setup.md",
"00. Inbox/01. TODO.md", "00. Inbox/01. TODO.md"
"01. 個人/00. Informations/Datas.md",
"00. Inbox/03. Mind Map.md"
] ]
} }

View File

@@ -0,0 +1,7 @@
1. Use std::shared_ptr & std::unique_ptr
2. Use std::array or std::vector
3. Use structured binding & std::tuple
4. Use for (auto& elem : collector)
5. Use std::format
6. Use std::optional
7.