1
This commit is contained in:
4
.obsidian/community-plugins.json
vendored
4
.obsidian/community-plugins.json
vendored
@@ -3,5 +3,7 @@
|
||||
"obsidian-kanban",
|
||||
"obsidian-outliner",
|
||||
"copilot",
|
||||
"colored-text"
|
||||
"colored-text",
|
||||
"quickadd",
|
||||
"customizable-menu"
|
||||
]
|
||||
4
.obsidian/plugins/customizable-menu/data.json
vendored
Normal file
4
.obsidian/plugins/customizable-menu/data.json
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"menuCommands": [],
|
||||
"hideTitles": []
|
||||
}
|
||||
270
.obsidian/plugins/customizable-menu/main.js
vendored
Normal file
270
.obsidian/plugins/customizable-menu/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
.obsidian/plugins/customizable-menu/manifest.json
vendored
Normal file
10
.obsidian/plugins/customizable-menu/manifest.json
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "customizable-menu",
|
||||
"name": "Customizable Menu",
|
||||
"version": "2.2.0",
|
||||
"minAppVersion": "0.12.11",
|
||||
"description": "Allows you to add any command to Obsidian's right-click menu.",
|
||||
"author": "kzhovn",
|
||||
"authorUrl": "https://github.com/kzhovn/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
23
.obsidian/plugins/customizable-menu/styles.css
vendored
Normal file
23
.obsidian/plugins/customizable-menu/styles.css
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/*Icon Picker*/
|
||||
.custom-menu-icon {
|
||||
transform: translateY(3px);
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.custom-menu-icon-container{
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.custom-menu-settings-icon {
|
||||
height: 20px;
|
||||
margin-right: 0.5rem;
|
||||
transform: translateY(2px);
|
||||
}
|
||||
|
||||
.custom-menu-flex {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
div.custom-menu-hide-item {
|
||||
display: none;
|
||||
}
|
||||
74
.obsidian/plugins/quickadd/data.json
vendored
Normal file
74
.obsidian/plugins/quickadd/data.json
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"choices": [],
|
||||
"macros": [],
|
||||
"inputPrompt": "single-line",
|
||||
"devMode": false,
|
||||
"templateFolderPath": "",
|
||||
"announceUpdates": true,
|
||||
"version": "1.13.3",
|
||||
"disableOnlineFeatures": true,
|
||||
"enableRibbonIcon": false,
|
||||
"ai": {
|
||||
"defaultModel": "Ask me",
|
||||
"defaultSystemPrompt": "As an AI assistant within Obsidian, your primary goal is to help users manage their ideas and knowledge more effectively. Format your responses using Markdown syntax. Please use the [[Obsidian]] link format. You can write aliases for the links by writing [[Obsidian|the alias after the pipe symbol]]. To use mathematical notation, use LaTeX syntax. LaTeX syntax for larger equations should be on separate lines, surrounded with double dollar signs ($$). You can also inline math expressions by wrapping it in $ symbols. For example, use $$w_{ij}^{\text{new}}:=w_{ij}^{\text{current}}+etacdotdelta_jcdot x_{ij}$$ on a separate line, but you can write \"($eta$ = learning rate, $delta_j$ = error term, $x_{ij}$ = input)\" inline.",
|
||||
"promptTemplatesFolderPath": "",
|
||||
"showAssistant": true,
|
||||
"providers": [
|
||||
{
|
||||
"name": "OpenAI",
|
||||
"endpoint": "https://api.openai.com/v1",
|
||||
"apiKey": "",
|
||||
"models": [
|
||||
{
|
||||
"name": "text-davinci-003",
|
||||
"maxTokens": 4096
|
||||
},
|
||||
{
|
||||
"name": "gpt-3.5-turbo",
|
||||
"maxTokens": 4096
|
||||
},
|
||||
{
|
||||
"name": "gpt-3.5-turbo-16k",
|
||||
"maxTokens": 16384
|
||||
},
|
||||
{
|
||||
"name": "gpt-3.5-turbo-1106",
|
||||
"maxTokens": 16385
|
||||
},
|
||||
{
|
||||
"name": "gpt-4",
|
||||
"maxTokens": 8192
|
||||
},
|
||||
{
|
||||
"name": "gpt-4-32k",
|
||||
"maxTokens": 32768
|
||||
},
|
||||
{
|
||||
"name": "gpt-4-1106-preview",
|
||||
"maxTokens": 128000
|
||||
},
|
||||
{
|
||||
"name": "gpt-4-turbo",
|
||||
"maxTokens": 128000
|
||||
},
|
||||
{
|
||||
"name": "gpt-4o",
|
||||
"maxTokens": 128000
|
||||
},
|
||||
{
|
||||
"name": "gpt-4o-mini",
|
||||
"maxTokens": 128000
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"migrations": {
|
||||
"migrateToMacroIDFromEmbeddedMacro": true,
|
||||
"useQuickAddTemplateFolder": true,
|
||||
"incrementFileNameSettingMoveToDefaultBehavior": true,
|
||||
"mutualExclusionInsertAfterAndWriteToBottomOfFile": true,
|
||||
"setVersionAfterUpdateModalRelease": true,
|
||||
"addDefaultAIProviders": true
|
||||
}
|
||||
}
|
||||
70
.obsidian/plugins/quickadd/main.js
vendored
Normal file
70
.obsidian/plugins/quickadd/main.js
vendored
Normal file
File diff suppressed because one or more lines are too long
12
.obsidian/plugins/quickadd/manifest.json
vendored
Normal file
12
.obsidian/plugins/quickadd/manifest.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"id": "quickadd",
|
||||
"name": "QuickAdd",
|
||||
"version": "1.13.3",
|
||||
"minAppVersion": "1.6.0",
|
||||
"description": "Quickly add new pages or content to your vault.",
|
||||
"author": "Christian B. B. Houmann",
|
||||
"authorUrl": "https://bagerbach.com",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/chhoumann",
|
||||
"helpUrl": "https://quickadd.obsidian.guide/docs/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
1
.obsidian/plugins/quickadd/styles.css
vendored
Normal file
1
.obsidian/plugins/quickadd/styles.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.configureMacroDiv{display:grid;grid-template-rows:1fr;min-width:12rem}.configureMacroDivItem{display:flex;align-content:center;justify-content:space-between;margin-bottom:10px}.configureMacroDivItemButton{display:flex;align-content:center;justify-content:center;margin-bottom:10px}.macroContainer{display:grid;grid-template-rows:repeat(auto-fill,120px);grid-gap:40px;overflow-y:auto;max-height:30em;padding:2em}@media screen and (max-width: 540px){.macroContainer1,.macroContainer2,.macroContainer3{grid-template-columns:repeat(1,1fr)}.wideInputPromptInputEl{width:20rem;max-width:100%;height:3rem;direction:inherit;text-align:inherit}}@media screen and (max-width: 540px) and (max-width: 780px){.macroContainer1{grid-template-columns:repeat(1,1fr)}.macroContainer2,.macroContainer3{grid-template-columns:repeat(2,1fr)}.wideInputPromptInputEl{width:30rem;max-width:100%;height:20rem;direction:inherit;text-align:inherit}}@media screen and (min-width: 781px){.macroContainer1{grid-template-columns:repeat(1,1fr)}.macroContainer2,.macroContainer3{grid-template-columns:repeat(2,1fr)}.wideInputPromptInputEl{width:40rem;max-width:100%;height:20rem;direction:inherit;text-align:inherit}}.addMacroBarContainer{display:flex;align-content:center;justify-content:space-around;margin-top:20px}.captureToActiveFileContainer{display:flex;align-content:center;justify-content:space-between;margin-bottom:10px}.choiceNameHeader{text-align:center}.choiceNameHeader:hover{cursor:pointer}.folderInputContainer{display:flex;align-content:center;justify-content:space-between;margin-bottom:8px;gap:4px}.selectMacroDropdownContainer{display:flex;align-content:center;justify-content:center}.quickAddModal .modal{min-width:35%;overflow-y:auto;max-height:70%}.checkboxRowContainer{margin:30px 0;display:grid;grid-template-rows:auto;align-content:center;gap:5px}.checkboxRow{display:flex;justify-content:space-between;align-content:center}.checkboxRow .checkbox-container{flex-shrink:0}.checkboxRow span{font-size:16px;word-break:break-all}.submitButtonContainer{display:flex;align-content:center;justify-content:center}.chooseFolderWhenCreatingNoteContainer{display:flex;align-content:center;justify-content:space-between;margin-bottom:10px}.chooseFolderFromSubfolderContainer{margin:20px 0 0}.clickable:hover{cursor:pointer}.quickAddCommandListItem{display:flex;flex:1 1 auto;align-items:center;justify-content:space-between}.quickCommandContainer{display:flex;justify-content:flex-end;align-content:center;margin-bottom:1em;gap:4px}.yesNoPromptButtonContainer{display:flex;align-items:center;justify-content:space-around;margin-top:2rem}.yesNoPromptParagraph{text-align:center}.suggestion-container{background-color:var(--modal-background);z-index:100000;overflow-y:auto}.qaFileSuggestionItem{display:flex;flex-direction:column;width:100%}.qaFileSuggestionItem .suggestion-main-text{font-weight:700}.qaFileSuggestionItem .suggestion-sub-text{font-style:italic}.choiceListItem{display:flex;font-size:16px;align-items:center;margin:12px 0 0;transition:1s ease-in-out}.choiceListItemName{flex:1 0 0}.choiceListItemName p{margin:0;display:inline}.quickadd-choice-suggestion p{margin:0}.macroDropdownContainer{display:flex;align-content:center;justify-content:center;margin-bottom:10px;gap:10px}.macro-choice-buttonsContainer{display:flex;flex-direction:row;justify-content:center;align-items:center;gap:10px}@media only screen and (max-width: 600px){.macroDropdownContainer{flex-direction:column;align-items:center}.macroDropdownContainer .macro-choice-buttonsContainer{gap:20px}}.quickadd-update-modal-container{display:flex;flex-direction:column;align-items:center;justify-content:center}.quickadd-update-modal{min-width:35%;max-height:70%}.quickadd-update-modal img{width:100%;height:auto;margin:5px}.quickadd-bmac-container{display:flex;justify-content:center;align-items:center}
|
||||
81
.obsidian/workspace.json
vendored
81
.obsidian/workspace.json
vendored
@@ -4,21 +4,21 @@
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "f8022c29023d2af6",
|
||||
"id": "1615cb2da2854970",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "efa82152d99167ff",
|
||||
"id": "219084c73f9326e4",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "1Project/宠物宇宙/地图编辑器/需要做的优化.md",
|
||||
"file": "1Project/学习/111汇总/序列.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "需要做的优化"
|
||||
"title": "序列"
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -102,7 +102,7 @@
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 338.5
|
||||
"width": 411.5
|
||||
},
|
||||
"right": {
|
||||
"id": "d809b577c235ae94",
|
||||
@@ -249,46 +249,47 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"active": "efa82152d99167ff",
|
||||
"active": "219084c73f9326e4",
|
||||
"lastOpenFiles": [
|
||||
"1Project/宠物宇宙/地图编辑器/需要支持的小功能.md",
|
||||
"1Project/宠物宇宙/地图编辑器/需要做的优化.md",
|
||||
"1Project/宠物宇宙/皮肤导入.md",
|
||||
"2Areas/哲学/目的论与原因论.md",
|
||||
"2Areas/哲学/他者贡献.md",
|
||||
"2Areas/健康/运动-拉伸/八段锦/八段锦.md",
|
||||
"2Areas/哲学",
|
||||
"2Areas/习惯养成/规范日常行为.md",
|
||||
"2Areas/如何记录笔记/笔记如何组织.md",
|
||||
"2Areas/如何记录笔记/段落标记.md",
|
||||
"2Areas/如何记录笔记/如何结束一个项目.md",
|
||||
"2Areas/如何记录笔记/如何开启一个项目.md",
|
||||
"2Areas/如何记录笔记/抓捕生活中的灵感.md",
|
||||
"2Areas/习惯养成",
|
||||
"2Areas/如何记录笔记",
|
||||
"InBox/编辑器/时间轴编辑器/Timeline TODO.canvas",
|
||||
"1Project/学习/GAS.md",
|
||||
"1Project/学习/111汇总/序列.md",
|
||||
"1Project/学习/111汇总",
|
||||
"1Project/学习/AAA 序列.md",
|
||||
"1Project/学习/自动化生成文档/docfx.md",
|
||||
"1Project/学习/自动化生成文档/uml.md",
|
||||
"1Project/学习",
|
||||
"1Project/开发文章/将开发文章阅读并分类.md",
|
||||
"InBox/动作游戏拆解/动作游戏拆解.md",
|
||||
"InBox/操作系统/多级缓存队列.md",
|
||||
"InBox/性能优化/批量渲染 数字UI.md",
|
||||
"InBox/性能优化/关于Unity加载优化,你可能遇到这些问题 - 知乎.md",
|
||||
"InBox/算法/TopK 问题.md",
|
||||
"InBox/书本/毛选/未命名.md",
|
||||
"InBox/网络同步.md",
|
||||
"2Areas/编程/一些感悟/接口与抽象类区别.md",
|
||||
"2Areas/编程/一些感悟",
|
||||
"4Archives/宠物宇宙/用户卡及游戏信息处理过程设计文档.md",
|
||||
"2Areas/健康/运动-拉伸/八段锦",
|
||||
"4Archives/All in hole/查看UIGame代码.md",
|
||||
"4Archives/All in hole/还原材质球.md",
|
||||
"4Archives/All in hole/玩法.md",
|
||||
"2Areas/如何记录笔记/P.A.R.A/操作手册.md",
|
||||
"2Areas/如何记录笔记/P.A.R.A/Pasted image 20250614192838.png",
|
||||
"渲染/软渲染/图片",
|
||||
"渲染/软渲染",
|
||||
"渲染",
|
||||
"2Areas/如何记录笔记/P.A.R.A/笔记如何组织.md",
|
||||
"1Project/扩展Obsidian/方法 1:使用现成插件(推荐新手).md",
|
||||
"1Project/扩展Obsidian/obsidian右键扩展.md",
|
||||
"1Project/宠物宇宙/bug.md",
|
||||
"4Archives/All in hole/编辑器.md",
|
||||
"1Project/宠物宇宙/皮肤导入.md",
|
||||
"1Project/宠物宇宙/地图编辑器/需要做的优化.md",
|
||||
"~template/CheckBox.md",
|
||||
"~template",
|
||||
"未命名.md",
|
||||
"2Areas/如何记录笔记/P.A.R.A",
|
||||
"2Areas/如何记录笔记/未命名.md",
|
||||
"2Areas/如何记录笔记/抓捕生活中的灵感.md",
|
||||
"1Project/扩展Obsidian",
|
||||
"2Areas/哲学",
|
||||
"InBox/编辑器/时间轴编辑器/Timeline TODO.canvas",
|
||||
"渲染/软渲染/图片/Pasted image 20250609171235.png",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Dataview 插件/测试用文档/项目复盘会议.md",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Dataview 插件/测试用文档/项目A计划.md",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Dataview 插件/测试用文档/财务季度报告.md",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Dataview 插件/测试用文档/简易待办事项.md",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Dataview 插件/测试用文档/用户反馈分析.md",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Dataview 插件/测试用文档/每周例会记录.md",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Dataview 插件/测试用文档/技术架构设计.md",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Dataview 插件/测试用文档",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第四个用法|成为对弈的棋手/正方观点/观点9.md.edtz",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第四个用法|成为对弈的棋手/正方观点/观点8.md.edtz",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第四个用法|成为对弈的棋手/正方观点/观点7.md.edtz",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第四个用法|成为对弈的棋手/正方观点/观点6.md.edtz",
|
||||
"InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第四个用法|成为对弈的棋手/正方观点/观点5.md.edtz",
|
||||
"InBox/渲染/软渲染/图片/Pasted image 20230613102109.png",
|
||||
"InBox/渲染/GPU/Pasted image 20230413163234.png",
|
||||
"InBox/编辑器/图片/Pasted image 20221025121100.png",
|
||||
|
||||
5
1Project/学习/111汇总/序列.md
Normal file
5
1Project/学习/111汇总/序列.md
Normal file
@@ -0,0 +1,5 @@
|
||||
|
||||
|
||||
|
||||
- [ ] Loxodon
|
||||
- [ ] GAS
|
||||
0
1Project/学习/自动化生成文档/docfx.md
Normal file
0
1Project/学习/自动化生成文档/docfx.md
Normal file
@@ -1,3 +1,5 @@
|
||||
|
||||
|
||||
- [ ] 后台面板无法关闭
|
||||
- [ ] 后台面板无法关闭
|
||||
|
||||
|
||||
|
||||
BIN
2Areas/如何记录笔记/P.A.R.A/Pasted image 20250614192838.png
Normal file
BIN
2Areas/如何记录笔记/P.A.R.A/Pasted image 20250614192838.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 48 KiB |
1
2Areas/如何记录笔记/P.A.R.A/操作手册.md
Normal file
1
2Areas/如何记录笔记/P.A.R.A/操作手册.md
Normal file
@@ -0,0 +1 @@
|
||||
![[Pasted image 20250614192838.png]]
|
||||
@@ -1,5 +1,5 @@
|
||||
>[!注意]
|
||||
>这份卡片的原始内容来自于[[InBox/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Spaced Repetition 插件/考研政治笔记]]
|
||||
>这份卡片的原始内容来自于[[4Archives/AI for Obsidian/20250315 - 测试 Obsidian+ AI 的能力边界/第五个用法|成为插件助手/Spaced Repetition 插件/考研政治笔记]]
|
||||
|
||||
|
||||
#flashcards/政治/近代史
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user