diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5f0c8b2..43000ee9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ name: CI on: push: branches: - - master + - main env: # 设置环境变量 TZ: Asia/Shanghai # 时区(设置时区可使页面中的`最近更新时间`使用该时区时间) @@ -35,7 +35,7 @@ jobs: deploy_branch=gh-pages yarn yarn build - cd docs/.vuepress/dist + cd beiklive/.vuepress/dist git config --global init.defaultBranch $deploy_branch git init git config user.name ${user_name} diff --git a/.obsidian/app.json b/.obsidian/app.json index 8b84ab09..74b9dedd 100644 --- a/.obsidian/app.json +++ b/.obsidian/app.json @@ -1,6 +1,6 @@ { "promptDelete": false, - "attachmentFolderPath": "beiklive/.vuepress/public/asserts/", + "attachmentFolderPath": "./assert", "newLinkFormat": "relative", "newFileLocation": "current", "alwaysUpdateLinks": true, @@ -8,5 +8,6 @@ "useMarkdownLinks": true, "userIgnoreFilters": [ "node_modules/" - ] + ], + "propertiesInDocument": "source" } \ No newline at end of file diff --git a/.obsidian/community-plugins.json b/.obsidian/community-plugins.json index 24bceb54..8d4ec754 100644 --- a/.obsidian/community-plugins.json +++ b/.obsidian/community-plugins.json @@ -2,5 +2,6 @@ "obsidian-excalidraw-plugin", "obsidian-markmind", "obsidian-git", - "obsidian-image-auto-upload-plugin" + "obsidian-image-auto-upload-plugin", + "OA-file-hider" ] \ No newline at end of file diff --git a/.obsidian/graph.json b/.obsidian/graph.json index a901e64d..4ce402f6 100644 --- a/.obsidian/graph.json +++ b/.obsidian/graph.json @@ -17,6 +17,6 @@ "repelStrength": 10, "linkStrength": 1, "linkDistance": 250, - "scale": 1.4438706132259305, + "scale": 0.7345863357173071, "close": true } \ No newline at end of file diff --git a/.obsidian/plugins/OA-file-hider/data.json b/.obsidian/plugins/OA-file-hider/data.json new file mode 100644 index 00000000..14c48e4b --- /dev/null +++ b/.obsidian/plugins/OA-file-hider/data.json @@ -0,0 +1,9 @@ +{ + "hidden": true, + "hiddenList": [ + "beiklive/@pages", + "utils", + "vdoing", + "node_modules" + ] +} \ No newline at end of file diff --git a/.obsidian/plugins/OA-file-hider/main.js b/.obsidian/plugins/OA-file-hider/main.js new file mode 100644 index 00000000..d733e240 --- /dev/null +++ b/.obsidian/plugins/OA-file-hider/main.js @@ -0,0 +1,239 @@ +/* +THIS IS A GENERATED/BUNDLED FILE BY ESBUILD +if you want to view the source, please visit the github repository of this plugin +*/ + +var __create = Object.create; +var __defProp = Object.defineProperty; +var __getOwnPropDesc = Object.getOwnPropertyDescriptor; +var __getOwnPropNames = Object.getOwnPropertyNames; +var __getProtoOf = Object.getPrototypeOf; +var __hasOwnProp = Object.prototype.hasOwnProperty; +var __markAsModule = (target) => __defProp(target, "__esModule", { value: true }); +var __export = (target, all) => { + __markAsModule(target); + for (var name in all) + __defProp(target, name, { get: all[name], enumerable: true }); +}; +var __reExport = (target, module2, desc) => { + if (module2 && typeof module2 === "object" || typeof module2 === "function") { + for (let key of __getOwnPropNames(module2)) + if (!__hasOwnProp.call(target, key) && key !== "default") + __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable }); + } + return target; +}; +var __toModule = (module2) => { + return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", module2 && module2.__esModule && "default" in module2 ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2); +}; +var __async = (__this, __arguments, generator) => { + return new Promise((resolve, reject) => { + var fulfilled = (value) => { + try { + step(generator.next(value)); + } catch (e) { + reject(e); + } + }; + var rejected = (value) => { + try { + step(generator.throw(value)); + } catch (e) { + reject(e); + } + }; + var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected); + step((generator = generator.apply(__this, __arguments)).next()); + }); +}; + +// src/main.ts +__export(exports, { + default: () => FileHider +}); + +// src/commands/toggleVisibility.ts +var VisibilityToggleCommand = class { + constructor(plugin) { + plugin.addCommand({ + id: "oa-fh-toggle-visibility", + name: "Toggle Visibility", + callback: () => { + plugin.toggleVisibility(); + } + }); + } +}; + +// src/settings/hiddenToggle.ts +var import_obsidian = __toModule(require("obsidian")); +var VisibilityToggleSetting = class { + static create(plugin, container) { + return new import_obsidian.Setting(container).setName(`Hidden File Visibility`).setDesc(`Toggle whether or not files and folders that are told to be hidden will be hidden or not.`).addToggle((toggle) => { + toggle.setValue(!plugin.settings.hidden).onChange(() => { + plugin.toggleVisibility(); + }); + }); + } +}; + +// src/main.ts +var import_obsidian4 = __toModule(require("obsidian")); + +// src/settings/manageHiddenPaths.ts +var import_obsidian3 = __toModule(require("obsidian")); + +// src/modals/HiddenList.ts +var import_obsidian2 = __toModule(require("obsidian")); +var HiddenPathsModal = class extends import_obsidian2.Modal { + constructor(plugin) { + super(plugin.app); + this.plugin = plugin; + } + onOpen() { + const { contentEl: content } = this; + content.createEl(`h1`, { text: `Hidden Files and Folders` }); + content.createEl(`hr`); + let body = content.createEl(`div`, { cls: `hidden-list-modal-body` }); + this.plugin.settings.hiddenList.forEach((path) => { + let c = body.createEl(`div`); + new import_obsidian2.Setting(c).setName(path).addButton((btn) => { + btn.setIcon(`cross`).setTooltip(`Remove`).onClick((e) => { + this.plugin.unhidePath(path); + c.hide(); + }); + }); + }); + } + onClose() { + const { contentEl } = this; + contentEl.empty(); + } +}; + +// src/settings/manageHiddenPaths.ts +var ManageHiddenPaths = class { + static create(plugin, container) { + return new import_obsidian3.Setting(container).setName(`Hidden Files and Folders`).setDesc(`Add or remove files and folders from the list that are being hidden`).addButton((b) => { + b.setButtonText(`Manage`).onClick((event) => { + if (!event.isTrusted) { + return; + } + new HiddenPathsModal(plugin).open(); + }); + }); + } +}; + +// src/utils.ts +function changePathVisibility(path, hide) { + let n = document.querySelector(`[data-path="${path}"]`); + if (!n) { + return; + } + ; + let p = n.parentElement; + if (hide) { + p.style.display = `none`; + } else { + p.style.display = ``; + } + ; +} + +// src/main.ts +var FileHider = class extends import_obsidian4.Plugin { + constructor() { + super(...arguments); + this.settings = { + hidden: true, + hiddenList: [] + }; + this.style = null; + } + onload() { + return __async(this, null, function* () { + yield this.loadSettings(); + this.registerEvent(this.app.workspace.on(`file-menu`, (menu, file) => { + if (file instanceof import_obsidian4.TFolder) { + menu.addItem((i) => { + if (this.settings.hiddenList.includes(file.path)) { + i.setTitle(`Unhide Folder`).setIcon(`eye`).onClick(() => { + this.unhidePath(file.path); + }); + } else { + i.setTitle(`Hide Folder`).setIcon(`eye-off`).onClick(() => { + changePathVisibility(file.path, this.settings.hidden); + this.settings.hiddenList.push(file.path); + this.saveSettings(); + }); + } + ; + }); + } else { + menu.addItem((i) => { + if (this.settings.hiddenList.includes(file.path)) { + i.setTitle(`Unhide File`).setIcon(`eye`).onClick((e) => { + this.unhidePath(file.path); + }); + } else { + i.setTitle(`Hide File`).setIcon(`eye-off`).onClick((e) => { + changePathVisibility(file.path, this.settings.hidden); + this.settings.hiddenList.push(file.path); + this.saveSettings(); + }); + } + ; + }); + } + ; + })); + this.app.workspace.onLayoutReady(() => { + setTimeout(() => { + for (const path of this.settings.hiddenList) { + changePathVisibility(path, this.settings.hidden); + } + ; + }, 200); + }); + new VisibilityToggleCommand(this); + this.addSettingTab(new FileHiderSettingsTab(this.app, this)); + }); + } + loadSettings() { + return __async(this, null, function* () { + this.settings = Object.assign({}, this.settings, yield this.loadData()); + }); + } + saveSettings() { + return __async(this, null, function* () { + yield this.saveData(this.settings); + }); + } + toggleVisibility() { + this.settings.hidden = !this.settings.hidden; + for (const path of this.settings.hiddenList) { + changePathVisibility(path, this.settings.hidden); + } + ; + this.saveSettings(); + } + unhidePath(path) { + let i = this.settings.hiddenList.indexOf(path); + this.settings.hiddenList.splice(i, 1); + changePathVisibility(path, false); + this.saveSettings(); + } +}; +var FileHiderSettingsTab = class extends import_obsidian4.PluginSettingTab { + constructor(app, plugin) { + super(app, plugin); + this.plugin = plugin; + } + display() { + const { containerEl: container } = this; + container.empty(); + VisibilityToggleSetting.create(this.plugin, container); + ManageHiddenPaths.create(this.plugin, container); + } +}; diff --git a/.obsidian/plugins/OA-file-hider/manifest.json b/.obsidian/plugins/OA-file-hider/manifest.json new file mode 100644 index 00000000..5a4dfb7f --- /dev/null +++ b/.obsidian/plugins/OA-file-hider/manifest.json @@ -0,0 +1,11 @@ +{ + "id": "OA-file-hider", + "name": "File Hider", + "version": "1.1.1", + "minAppVersion": "0.14.6", + "description": "An Obsidian plugin that allows hiding files and folders in the built-in file explorer", + "author": "Oliver Akins", + "authorUrl": "https://github.com/Oliver-Akins", + "isDesktopOnly": false, + "branch": "main" +} diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index fd2b12ab..c2847901 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -4,18 +4,18 @@ "type": "split", "children": [ { - "id": "32ef8c70b6c87ba2", + "id": "75759bd2b2eb785a", "type": "tabs", "children": [ { - "id": "f1f9ed65df46c524", + "id": "da9ca8a590533596", "type": "leaf", "state": { "type": "markdown", "state": { - "file": "beiklive/00.目录页/03.资源.md", + "file": "beiklive/02.记录/01.工具使用/01.Git.md", "mode": "source", - "source": false + "source": true } } } @@ -71,7 +71,7 @@ "state": { "type": "outline", "state": { - "file": "beiklive/00.目录页/03.资源.md" + "file": "beiklive/02.记录/01.工具使用/01.Git.md" } } } @@ -79,7 +79,7 @@ } ], "direction": "horizontal", - "width": 369.51103591918945 + "width": 344.5 }, "right": { "id": "9fc46e5c65ccb73a", @@ -95,7 +95,7 @@ "state": { "type": "backlink", "state": { - "file": "beiklive/00.目录页/03.资源.md", + "file": "beiklive/02.记录/01.工具使用/01.Git.md", "collapseAll": false, "extraContext": false, "sortOrder": "alphabetical", @@ -112,7 +112,7 @@ "state": { "type": "outgoing-link", "state": { - "file": "beiklive/00.目录页/03.资源.md", + "file": "beiklive/02.记录/01.工具使用/01.Git.md", "linksCollapsed": false, "unlinkedCollapsed": true } @@ -150,7 +150,7 @@ } ], "direction": "horizontal", - "width": 1137.5 + "width": 423.5 }, "left-ribbon": { "hiddenItems": { @@ -163,54 +163,54 @@ "obsidian-excalidraw-plugin:新建绘图文件": false } }, - "active": "f1f9ed65df46c524", + "active": "da9ca8a590533596", "lastOpenFiles": [ - "beiklive/03.资源/01.书籍文档/01.书籍文档.md", - "beiklive/02.记录/01.工具使用/03.xmake.md", - "beiklive/02.记录/01.工具使用/02.vscode.md", - "beiklive/02.记录/01.工具使用/01.Git.md", + "node_modules/css-tree/lib/syntax/node/Url.js", + "node_modules/crypto-browserify/test/ecdh.js", + "node_modules/css-tree/lib/syntax/node/UnicodeRange.js", + "node_modules/cross-spawn/lib/parse.js", + "node_modules/crypto-browserify/test/dh.js", + "node_modules/cross-spawn/lib/enoent.js", + "node_modules/crypto-browserify/test/create-hmac.js", + "node_modules/dayjs/locale/ta.js", + "node_modules/dayjs/locale/tet.js", + "node_modules/date-fns/is_today/index.js.flow", + "node_modules/dayjs/locale/fo.js", + "node_modules/safe-array-concat/README.md", + "node_modules/repeat-element/README.md", + "node_modules/forever-agent/README.md", + "node_modules/evp_bytestokey/README.md", "beiklive/01.学习/02.操作系统/01. Linux.md", + "beiklive/01.学习/01.语言学习/02.QT.md", + "beiklive/01.学习/01.语言学习/01.Python.md", + "beiklive/01.学习/01.语言学习/00.C++.md", + "beiklive/00.目录页/04.更多.md", + "beiklive/00.目录页/03.资源.md", + "beiklive/00.目录页/02.记录.md", + "beiklive/00.目录页/01.学习.md", + "ob/ob_白板/未命名.md", + "beiklive/index.md", "beiklive/Note_Linux/05.Linux终端字符染色.md", - "beiklive/Note_Linux/03.自定义 systemd 服务 1 1 1.md", - "beiklive/Note_Linux/03.自定义 systemd 服务.md", "beiklive/Note_Linux/04.MySQL安装.md", + "beiklive/Note_Linux/03.自定义 systemd 服务.md", "beiklive/Note_Linux/02.Samba配置.md", "beiklive/Note_Linux/01.ubuntu桌面版自定义快捷方式.md", + "beiklive/02.记录/02.折腾记录/01.raspberrypi.md", "beiklive/Note_Qt/03.QT 代码片段.md", "beiklive/Note_Qt/02.QT Git Action.md", - "beiklive/Note_Qt/01.QT安装.md", - "ob/ob_模板/wiki模板(开启评论).md", - "beiklive/Note_Python/02.代码片段.md", - "ob/ob_模板/placeholder.md", - "beiklive/Note_Python/01.配置和换源.md", - "beiklive/Note_C/01.控制台实现2048小游戏.md", - "beiklive/02.记录/02.折腾记录/02.obsidian.md", - "beiklive/02.记录/02.折腾记录/01.树莓派.md", - "beiklive/Note_C/asserts/Pasted image 20240508195529.png", - "Pasted image 20240508200611.png", - "beiklive/01.学习/01.语言学习/00. C++.md", + "beiklive/Note_obsidian/02.使用 Picgo 上传图片到图床.md", + "beiklive/02.记录/02.折腾记录/00.obsidian.md", "beiklive/Note_C/02.C++简单线程池.md", - "beiklive/Note_C/03.控制台实现2048小游戏.md", - "beiklive/Note_C/asserts", - "beiklive/index.md", - "yarn.lock", - "node_modules/worker-farm/node_modules", - "node_modules/webpackbar/node_modules", - "node_modules/webpack-log/node_modules", - "node_modules/webpack-dev-middleware/node_modules", - "node_modules/warning/node_modules", - "node_modules/vuepress/node_modules/update-notifier/node_modules", - "node_modules/vuepress/node_modules/semver-diff/node_modules", - "node_modules/vuepress/node_modules/registry-url/node_modules", - "node_modules/wide-align/README.md", - "node_modules/qrcode-terminal/example/basic.png", - "node_modules/gitalk/node_modules/date-fns/docs/logotype.svg", - "node_modules/gitalk/node_modules/date-fns/docs/logo.svg", - "node_modules/promise-retry/node_modules/retry/equation.gif", - "node_modules/@vuepress/theme-default/node_modules/@vuepress/plugin-search/search.svg", - "cache/img/Pasted image 20240507213857.png", - "图片/img/32f5bbb0-4206-429a-86ad-f5d1ab91072b.jpg", - "图片/img/favicon.svg", + "node_modules/npm/node_modules/promise-retry/node_modules/retry/equation.gif", + "node_modules/npm/node_modules/mute-stream/coverage/lcov-report/sort-arrow-sprite.png", + "node_modules/npm/node_modules/unique-filename/coverage/sort-arrow-sprite.png", + "node_modules/npm/node_modules/qrcode-terminal/example/basic.png", + "node_modules/hogan.js/build/gh-pages/images/stripes.png", + "node_modules/gitalk-fix/src/assets/icon/tip.svg", + "node_modules/gitalk-fix/src/assets/icon/reply.svg", + "node_modules/gitalk-fix/src/assets/icon/heart_on.svg", + "node_modules/gitalk-fix/src/assets/icon/edit.svg", + "node_modules/gitalk-fix/src/assets/icon/github.svg", "第一白板.canvas", "未命名 1.canvas" ] diff --git a/beiklive/.vuepress/config.ts b/beiklive/.vuepress/config.ts index c3d75b9a..4d27a2be 100644 --- a/beiklive/.vuepress/config.ts +++ b/beiklive/.vuepress/config.ts @@ -46,7 +46,7 @@ export default defineConfig4CustomTheme({ { text: '操作系统', items: [ - { text: 'Ubuntu', link: '/note/linux/' }, + { text: 'Linux', link: '/note/linux/' }, ], } ], @@ -66,8 +66,8 @@ export default defineConfig4CustomTheme({ { text: '折腾记录', items: [ - { text: '树莓派', link: '/pages/23a791/' }, - { text: 'Obsidian', link: '/pages/e57ceb/' } + { text: '树莓派', link: '/note/raspberrypi/' }, + { text: 'Obsidian', link: '/note/obsidian/' } ], }, diff --git "a/beiklive/00.\347\233\256\345\275\225\351\241\265/01.\345\255\246\344\271\240.md" "b/beiklive/00.\347\233\256\345\275\225\351\241\265/01.\345\255\246\344\271\240.md" index 4bd4eb3d..8866d1a6 100644 --- "a/beiklive/00.\347\233\256\345\275\225\351\241\265/01.\345\255\246\344\271\240.md" +++ "b/beiklive/00.\347\233\256\345\275\225\351\241\265/01.\345\255\246\344\271\240.md" @@ -15,4 +15,17 @@ editLink: false author: name: beiklive link: https://github.com/beiklive + --- + +*obsidian link* +> [00.C++](../01.学习/01.语言学习/00.C++.md) +> +> [01.Python](../01.学习/01.语言学习/01.Python.md) +> +> [02.QT](../01.学习/01.语言学习/02.QT.md) +> +> [01. Linux](../01.学习/02.操作系统/01.%20Linux.md) + + + diff --git "a/beiklive/00.\347\233\256\345\275\225\351\241\265/02.\350\256\260\345\275\225.md" "b/beiklive/00.\347\233\256\345\275\225\351\241\265/02.\350\256\260\345\275\225.md" index ad930986..3b362104 100644 --- "a/beiklive/00.\347\233\256\345\275\225\351\241\265/02.\350\256\260\345\275\225.md" +++ "b/beiklive/00.\347\233\256\345\275\225\351\241\265/02.\350\256\260\345\275\225.md" @@ -16,3 +16,14 @@ author: name: beiklive link: https://github.com/beiklive --- + +*obsidian link* +> [01.Git](../02.记录/01.工具使用/01.Git.md) +> +> [02.vscode](../02.记录/01.工具使用/02.vscode.md) +> +> [03.xmake](../02.记录/01.工具使用/03.xmake.md) +> +> [00.obsidian](../02.记录/02.折腾记录/00.obsidian.md) +> +> [01.raspberrypi](../02.记录/02.折腾记录/01.raspberrypi.md) diff --git "a/beiklive/00.\347\233\256\345\275\225\351\241\265/03.\350\265\204\346\272\220.md" "b/beiklive/00.\347\233\256\345\275\225\351\241\265/03.\350\265\204\346\272\220.md" index 4e1183ba..4ceaa99b 100644 --- "a/beiklive/00.\347\233\256\345\275\225\351\241\265/03.\350\265\204\346\272\220.md" +++ "b/beiklive/00.\347\233\256\345\275\225\351\241\265/03.\350\265\204\346\272\220.md" @@ -16,3 +16,13 @@ author: name: beiklive link: https://github.com/beiklive --- + +*obsidian link* +> [01.书籍文档](../03.资源/01.书籍文档/01.书籍文档.md) +> +> [01.工具网站](../03.资源/02.工具网站/01.工具网站.md) +> +> [01.Github项目](../03.资源/03.Github项目/01.Github项目.md) + + + diff --git "a/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/00. C++.md" "b/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/00.C++.md" similarity index 72% rename from "beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/00. C++.md" rename to "beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/00.C++.md" index bd5d6cd5..9e0868f2 100644 --- "a/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/00. C++.md" +++ "b/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/00.C++.md" @@ -15,3 +15,6 @@ author: name: beiklive link: https://github.com/beiklive --- + +*obsidian link* +> [01.控制台实现2048小游戏](../../Note_C/01.控制台实现2048小游戏.md) \ No newline at end of file diff --git "a/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/01. Python.md" "b/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/01.Python.md" similarity index 78% rename from "beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/01. Python.md" rename to "beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/01.Python.md" index 7f4c71ab..c6717889 100644 --- "a/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/01. Python.md" +++ "b/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/01.Python.md" @@ -15,3 +15,6 @@ author: name: beiklive link: https://github.com/beiklive --- + +*obsidian link* +> [01.配置和换源](../../Note_Python/01.配置和换源.md) \ No newline at end of file diff --git "a/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/02. QT.md" "b/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/02.QT.md" similarity index 81% rename from "beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/02. QT.md" rename to "beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/02.QT.md" index a5816aac..ea2f2fb4 100644 --- "a/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/02. QT.md" +++ "b/beiklive/01.\345\255\246\344\271\240/01.\350\257\255\350\250\200\345\255\246\344\271\240/02.QT.md" @@ -15,3 +15,6 @@ author: name: beiklive link: https://github.com/beiklive --- + +*obsidian link* +> [01.QT安装](../../Note_Qt/01.QT安装.md) \ No newline at end of file diff --git "a/beiklive/01.\345\255\246\344\271\240/02.\346\223\215\344\275\234\347\263\273\347\273\237/01. Linux.md" "b/beiklive/01.\345\255\246\344\271\240/02.\346\223\215\344\275\234\347\263\273\347\273\237/01. Linux.md" index 8ddcfc9b..25b1d3d4 100644 --- "a/beiklive/01.\345\255\246\344\271\240/02.\346\223\215\344\275\234\347\263\273\347\273\237/01. Linux.md" +++ "b/beiklive/01.\345\255\246\344\271\240/02.\346\223\215\344\275\234\347\263\273\347\273\237/01. Linux.md" @@ -15,3 +15,7 @@ author: name: beiklive link: https://github.com/beiklive --- + + +*obsidian link* +> [01.ubuntu桌面版自定义快捷方式](../../Note_Linux/01.ubuntu桌面版自定义快捷方式.md) \ No newline at end of file diff --git "a/beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/00.obsidian.md" "b/beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/00.obsidian.md" new file mode 100644 index 00000000..2991d6fd --- /dev/null +++ "b/beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/00.obsidian.md" @@ -0,0 +1,17 @@ +--- +pageComponent: + name: Catalogue + data: + path: Note_obsidian + description: 折腾记录 +title: obsidian +date: 2024-05-07 20:15:03 +permalink: /note/obsidian/ +categories: +tags: + - obsidian +author: + name: beiklive + link: https://github.com/beiklive +--- +[01.插件推荐](../../Note_obsidian/01.插件推荐.md) \ No newline at end of file diff --git "a/beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/01.raspberrypi.md" "b/beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/01.raspberrypi.md" new file mode 100644 index 00000000..c096492e --- /dev/null +++ "b/beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/01.raspberrypi.md" @@ -0,0 +1,18 @@ +--- +pageComponent: + name: Catalogue + data: + path: Note_raspberrypi + description: 折腾记录 +title: 树莓派 +date: 2024-05-07 20:15:03 +permalink: /note/raspberrypi/ +categories: +tags: + - raspberrypi + - 树莓派 +author: + name: beiklive + link: https://github.com/beiklive +--- +[01.树莓派](../../Note_raspberrypi/01.树莓派.md) \ No newline at end of file diff --git "a/beiklive/Note_C/02.C++\347\256\200\345\215\225\347\272\277\347\250\213\346\261\240.md" "b/beiklive/Note_C/02.C++\347\256\200\345\215\225\347\272\277\347\250\213\346\261\240.md" index e5813307..102a2abb 100644 --- "a/beiklive/Note_C/02.C++\347\256\200\345\215\225\347\272\277\347\250\213\346\261\240.md" +++ "b/beiklive/Note_C/02.C++\347\256\200\345\215\225\347\272\277\347\250\213\346\261\240.md" @@ -12,6 +12,8 @@ author: name: beiklive link: https://github.com/beiklive --- +*obsidian link* +> [01.控制台实现2048小游戏](01.控制台实现2048小游戏.md) ## 实现了一个简单的线程池类 diff --git "a/beiklive/Note_Linux/02.Samba\351\205\215\347\275\256.md" "b/beiklive/Note_Linux/02.Samba\351\205\215\347\275\256.md" index 32fd3dce..39b76994 100644 --- "a/beiklive/Note_Linux/02.Samba\351\205\215\347\275\256.md" +++ "b/beiklive/Note_Linux/02.Samba\351\205\215\347\275\256.md" @@ -12,6 +12,9 @@ author: name: beiklive link: https://github.com/beiklive --- +*obsidian link* +> [01.ubuntu桌面版自定义快捷方式](01.ubuntu桌面版自定义快捷方式.md) + ## Samba配置 ### 安装 diff --git "a/beiklive/Note_Linux/03.\350\207\252\345\256\232\344\271\211 systemd \346\234\215\345\212\241 1 1 1.md" "b/beiklive/Note_Linux/03.\350\207\252\345\256\232\344\271\211 systemd \346\234\215\345\212\241 1 1 1.md" deleted file mode 100644 index bd1cb7f9..00000000 --- "a/beiklive/Note_Linux/03.\350\207\252\345\256\232\344\271\211 systemd \346\234\215\345\212\241 1 1 1.md" +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: 自定义 systemd 服务 -date: 2024-05-07 21:09:46 -permalink: /pages/asda6b3be21we/ -categories: - - 学习 -tags: - - linux - - ubuntu - - samba -author: - name: beiklive - link: https://github.com/beiklive ---- diff --git "a/beiklive/Note_Linux/03.\350\207\252\345\256\232\344\271\211 systemd \346\234\215\345\212\241.md" "b/beiklive/Note_Linux/03.\350\207\252\345\256\232\344\271\211 systemd \346\234\215\345\212\241.md" index 35b5e857..2f72182b 100644 --- "a/beiklive/Note_Linux/03.\350\207\252\345\256\232\344\271\211 systemd \346\234\215\345\212\241.md" +++ "b/beiklive/Note_Linux/03.\350\207\252\345\256\232\344\271\211 systemd \346\234\215\345\212\241.md" @@ -12,6 +12,9 @@ author: name: beiklive link: https://github.com/beiklive --- +*obsidian link* +> [02.Samba配置](02.Samba配置.md) + ## 使用systemctl启动服务 ### 创建service文件 diff --git "a/beiklive/Note_Linux/04.MySQL\345\256\211\350\243\205.md" "b/beiklive/Note_Linux/04.MySQL\345\256\211\350\243\205.md" index 4a1d0cfa..e15f0aa7 100644 --- "a/beiklive/Note_Linux/04.MySQL\345\256\211\350\243\205.md" +++ "b/beiklive/Note_Linux/04.MySQL\345\256\211\350\243\205.md" @@ -1,7 +1,7 @@ --- title: MySQL安装 date: 2024-05-07 21:09:46 -permalink: /pages/asda6b3be21we/ +permalink: /pages/asda6b3be21we12e/ categories: - 学习 tags: @@ -12,6 +12,8 @@ author: name: beiklive link: https://github.com/beiklive --- +*obsidian link* +> [03.自定义 systemd 服务](03.自定义%20systemd%20服务.md) ## Mysql安装配置 #### 卸载 diff --git "a/beiklive/Note_Linux/05.Linux\347\273\210\347\253\257\345\255\227\347\254\246\346\237\223\350\211\262.md" "b/beiklive/Note_Linux/05.Linux\347\273\210\347\253\257\345\255\227\347\254\246\346\237\223\350\211\262.md" index 24c8d693..34b45ecc 100644 --- "a/beiklive/Note_Linux/05.Linux\347\273\210\347\253\257\345\255\227\347\254\246\346\237\223\350\211\262.md" +++ "b/beiklive/Note_Linux/05.Linux\347\273\210\347\253\257\345\255\227\347\254\246\346\237\223\350\211\262.md" @@ -11,6 +11,8 @@ author: name: beiklive link: https://github.com/beiklive --- +*obsidian link* +> [04.MySQL安装](04.MySQL安装.md) ## 终端特殊显示 ### 颜色修改 diff --git "a/beiklive/Note_Python/02.\344\273\243\347\240\201\347\211\207\346\256\265.md" "b/beiklive/Note_Python/02.\344\273\243\347\240\201\347\211\207\346\256\265.md" index c24f9d7a..a04b3dba 100644 --- "a/beiklive/Note_Python/02.\344\273\243\347\240\201\347\211\207\346\256\265.md" +++ "b/beiklive/Note_Python/02.\344\273\243\347\240\201\347\211\207\346\256\265.md" @@ -11,7 +11,8 @@ author: name: beiklive link: https://github.com/beiklive --- -[01.配置和换源](01.配置和换源.md) +*obsidian link* +> [01.配置和换源](01.配置和换源.md) ## selenium使用 安装: diff --git a/beiklive/Note_Qt/02.QT Git Action.md b/beiklive/Note_Qt/02.QT Git Action.md index c6daaf7c..ce82fb56 100644 --- a/beiklive/Note_Qt/02.QT Git Action.md +++ b/beiklive/Note_Qt/02.QT Git Action.md @@ -11,6 +11,10 @@ author: name: beiklive link: https://github.com/beiklive --- +*obsidian link* +> [01.QT安装](01.QT安装.md) + + # QT的Git Action 仓库 https://github.com/jaredtao/HelloActions-Qt diff --git "a/beiklive/Note_Qt/03.QT \344\273\243\347\240\201\347\211\207\346\256\265.md" "b/beiklive/Note_Qt/03.QT \344\273\243\347\240\201\347\211\207\346\256\265.md" index 63cbc56c..9110515a 100644 --- "a/beiklive/Note_Qt/03.QT \344\273\243\347\240\201\347\211\207\346\256\265.md" +++ "b/beiklive/Note_Qt/03.QT \344\273\243\347\240\201\347\211\207\346\256\265.md" @@ -11,6 +11,10 @@ author: name: beiklive link: https://github.com/beiklive --- +*obsidian link* +> [02.QT Git Action](02.QT%20Git%20Action.md) + + ## 开机自启动 ### 宏定义 diff --git "a/beiklive/Note_obsidian/01.\346\217\222\344\273\266\346\216\250\350\215\220.md" "b/beiklive/Note_obsidian/01.\346\217\222\344\273\266\346\216\250\350\215\220.md" new file mode 100644 index 00000000..610ef71f --- /dev/null +++ "b/beiklive/Note_obsidian/01.\346\217\222\344\273\266\346\216\250\350\215\220.md" @@ -0,0 +1,11 @@ +--- +title: 插件推荐 +date: 2024-05-07 21:09:46 +permalink: /pages/3ea61qb3be/ +categories: 折腾记录 +tags: + - obsidian +author: + name: beiklive + link: https://github.com/beiklive +--- diff --git "a/beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/02.obsidian.md" "b/beiklive/Note_obsidian/02.\344\275\277\347\224\250 Picgo \344\270\212\344\274\240\345\233\276\347\211\207\345\210\260\345\233\276\345\272\212.md" similarity index 93% rename from "beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/02.obsidian.md" rename to "beiklive/Note_obsidian/02.\344\275\277\347\224\250 Picgo \344\270\212\344\274\240\345\233\276\347\211\207\345\210\260\345\233\276\345\272\212.md" index 97b862ae..ab4b1557 100644 --- "a/beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/02.obsidian.md" +++ "b/beiklive/Note_obsidian/02.\344\275\277\347\224\250 Picgo \344\270\212\344\274\240\345\233\276\347\211\207\345\210\260\345\233\276\345\272\212.md" @@ -1,16 +1,18 @@ --- -title: obsidian +title: 使用 Picgo 上传图片到图床 date: 2024-05-07 20:50:48 -permalink: /pages/e57ceb/ +permalink: /pages/e57ceb2ettt/ categories: - 记录 - 折腾记录 tags: - obsidian -author: +author: name: beiklive link: https://github.com/beiklive --- +*obsidian link* +> [01.插件推荐](01.插件推荐.md) ## 使用 Picgo 上传图片到图床 diff --git "a/beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/01.\346\240\221\350\216\223\346\264\276.md" "b/beiklive/Note_raspberrypi/01.\346\240\221\350\216\223\346\264\276.md" similarity index 100% rename from "beiklive/02.\350\256\260\345\275\225/02.\346\212\230\350\205\276\350\256\260\345\275\225/01.\346\240\221\350\216\223\346\264\276.md" rename to "beiklive/Note_raspberrypi/01.\346\240\221\350\216\223\346\264\276.md" diff --git a/beiklive/index.md b/beiklive/index.md index 93ea7a62..5ed0acb8 100644 --- a/beiklive/index.md +++ b/beiklive/index.md @@ -31,4 +31,9 @@ author: name: beiklive link: https://github.com/beiklive --- +*obsidian link* +> [01.学习](00.目录页/01.学习.md) +> [02.记录](00.目录页/02.记录.md) +> [03.资源](00.目录页/03.资源.md) +> [04.更多](00.目录页/04.更多.md)