Compare commits

...

4 Commits

Author SHA1 Message Date
9e33bd8e01 vault backup: 2026-01-24 10:40:01 2026-01-24 10:40:01 +08:00
d777da2006 vault backup: 2026-01-24 10:10:00 2026-01-24 10:10:00 +08:00
f4ac971ffc vault backup: 2026-01-24 09:39:59 2026-01-24 09:39:59 +08:00
b19d237242 vault backup: 2026-01-24 09:08:40 2026-01-24 09:08:40 +08:00
3 changed files with 43 additions and 19 deletions

View File

@@ -3,9 +3,9 @@
"autoCommitMessage": "vault backup: {{date}}", "autoCommitMessage": "vault backup: {{date}}",
"commitMessageScript": "", "commitMessageScript": "",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss", "commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 5, "autoSaveInterval": 30,
"autoPushInterval": 12, "autoPushInterval": 45,
"autoPullInterval": 5, "autoPullInterval": 15,
"autoPullOnBoot": true, "autoPullOnBoot": true,
"autoCommitOnlyStaged": false, "autoCommitOnlyStaged": false,
"disablePush": false, "disablePush": false,

View File

@@ -13,13 +13,28 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "Diary/2026-1/2026-1-23 周五.md", "file": "YueQian/相关网站.md",
"mode": "source", "mode": "source",
"source": false, "source": false,
"backlinks": false "backlinks": false
}, },
"icon": "lucide-file", "icon": "lucide-file",
"title": "2026-1-23 周五" "title": "相关网站"
}
},
{
"id": "c5ff54685ec36ad6",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "YueQian/Homework/1-23-5题存疑.md",
"mode": "preview",
"source": false,
"backlinks": false
},
"icon": "lucide-file",
"title": "1-23-5题存疑"
} }
}, },
{ {
@@ -44,11 +59,11 @@
"type": "webviewer", "type": "webviewer",
"state": { "state": {
"url": "https://share.note.youdao.com/ynoteshare/index.html?id=a66c778ce8c6e4ee03608e493e59ba7a&type=notebook&_time=1768473840238#/WEB4f51ebc698a96e5cc1a682b2fb7b683d", "url": "https://share.note.youdao.com/ynoteshare/index.html?id=a66c778ce8c6e4ee03608e493e59ba7a&type=notebook&_time=1768473840238#/WEB4f51ebc698a96e5cc1a682b2fb7b683d",
"title": "有道云笔记", "title": "CQ2605",
"mode": "webview" "mode": "webview"
}, },
"icon": "globe-2", "icon": "globe-2",
"title": "有道云笔记" "title": "CQ2605"
} }
}, },
{ {
@@ -64,9 +79,24 @@
"icon": "globe-2", "icon": "globe-2",
"title": "CQ2605" "title": "CQ2605"
} }
},
{
"id": "cbf896092229ed98",
"type": "leaf",
"state": {
"type": "markdown",
"state": {
"file": "Diary/2026-1/2026-1-24 周六.md",
"mode": "source",
"source": false,
"backlinks": false
},
"icon": "lucide-file",
"title": "2026-1-24 周六"
}
} }
], ],
"currentTab": 2 "currentTab": 5
} }
], ],
"direction": "vertical" "direction": "vertical"
@@ -133,12 +163,13 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "Diary/2026-1/2026-1-24 周六.md",
"followCursor": true, "followCursor": true,
"showSearch": false, "showSearch": false,
"searchQuery": "" "searchQuery": ""
}, },
"icon": "lucide-list", "icon": "lucide-list",
"title": "大纲" "title": "2026-1-24 周六 的大纲"
} }
}, },
{ {
@@ -290,13 +321,13 @@
"remotely-save:Remotely Save": false "remotely-save:Remotely Save": false
} }
}, },
"active": "9d236a0f7da6551f", "active": "cbf896092229ed98",
"lastOpenFiles": [ "lastOpenFiles": [
"Collection/连~都忘记了的小知识.md", "Collection/连~都忘记了的小知识.md",
"YueQian/Homework/1-23-5题存疑.md",
"YueQian/相关网站.md",
"Diary/2026-1/2026-1-23 周五.md", "Diary/2026-1/2026-1-23 周五.md",
"Diary/2026-1/2026-1-24 周六.md", "Diary/2026-1/2026-1-24 周六.md",
"YueQian/相关网站.md",
"YueQian/Homework/1.23.md",
"Collection/YoudaoyunNotes/01Linux基础/02_Linux概述.md", "Collection/YoudaoyunNotes/01Linux基础/02_Linux概述.md",
"BlogWebsite/Article/MarkdownTest.md", "BlogWebsite/Article/MarkdownTest.md",
"Diary/2026-1/2026-1-22 周四.md", "Diary/2026-1/2026-1-22 周四.md",

View File

@@ -14,19 +14,12 @@ int main(int argc, char const *argv[])
    int num = 255;     int num = 255;
    printf("%d\n",num);     printf("%d\n",num);
    printf("%u\n",num);     printf("%u\n",num);
    printf("%#o\n",num);     printf("%#o\n",num);
    printf("%o\n",num);     printf("%o\n",num);
    printf("%#x\n",num);     printf("%#x\n",num);
    printf("%x\n",num);     printf("%x\n",num);
    printf("%#X\n",num);     printf("%#X\n",num);
    printf("%X\n",num);     printf("%X\n",num);
    return 0;     return 0;