Skip to content

Commit 05df159

Browse files
committed
new start
0 parents  commit 05df159

File tree

819 files changed

+46694
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

819 files changed

+46694
-0
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 20

.github/workflows/pages.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
name: Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main # default branch
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
# If your repository depends on submodule, please see: https://github.com/actions/checkout
16+
submodules: recursive
17+
- name: Use Node.js 20
18+
uses: actions/setup-node@v4
19+
with:
20+
# Examples: 20, 18.19, >=16.20.2, lts/Iron, lts/Hydrogen, *, latest, current, node
21+
# Ref: https://github.com/actions/setup-node#supported-version-syntax
22+
node-version: '20'
23+
- name: Cache NPM dependencies
24+
uses: actions/cache@v4
25+
with:
26+
path: node_modules
27+
key: ${{ runner.OS }}-npm-cache
28+
restore-keys: |
29+
${{ runner.OS }}-npm-cache
30+
- name: Install Dependencies
31+
run: npm install
32+
- name: Build
33+
run: npm run build
34+
- name: Upload Pages artifact
35+
uses: actions/upload-pages-artifact@v3
36+
with:
37+
path: ./public
38+
deploy:
39+
needs: build
40+
permissions:
41+
pages: write
42+
id-token: write
43+
environment:
44+
name: github-pages
45+
url: ${{ steps.deployment.outputs.page_url }}
46+
runs-on: ubuntu-latest
47+
steps:
48+
- name: Deploy to GitHub Pages
49+
id: deployment
50+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
Thumbs.db
3+
db.json
4+
*.log
5+
node_modules/
6+
public/
7+
.deploy*/
8+
_multiconfig.yml
9+
private.md

.obsidian/app.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"alwaysUpdateLinks": true,
3+
"newFileLocation": "folder",
4+
"newFileFolderPath": "source/_posts",
5+
"newLinkFormat": "shortest",
6+
"useMarkdownLinks": false,
7+
"attachmentFolderPath": "source/images",
8+
"userIgnoreFilters": [
9+
"node_modules/",
10+
"themes/",
11+
"source/categories/",
12+
"source/archives/",
13+
"source/comment/",
14+
"source/tags/"
15+
],
16+
"trashOption": "local",
17+
"promptDelete": true
18+
}

.obsidian/appearance.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"accentColor": "#cb743a"
3+
}

.obsidian/core-plugins.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"file-explorer": true,
3+
"global-search": true,
4+
"switcher": true,
5+
"graph": true,
6+
"backlink": true,
7+
"canvas": true,
8+
"outgoing-link": true,
9+
"tag-pane": true,
10+
"properties": false,
11+
"page-preview": true,
12+
"daily-notes": true,
13+
"templates": true,
14+
"note-composer": true,
15+
"command-palette": true,
16+
"slash-command": false,
17+
"editor-status": true,
18+
"bookmarks": true,
19+
"markdown-importer": false,
20+
"zk-prefixer": false,
21+
"random-note": false,
22+
"outline": true,
23+
"word-count": true,
24+
"slides": false,
25+
"audio-recorder": false,
26+
"workspaces": false,
27+
"file-recovery": true,
28+
"publish": false,
29+
"sync": false
30+
}

.obsidian/templates.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"folder": "scaffolds",
3+
"timeFormat": "HH:mm:ss"
4+
}

.obsidian/workspace.json

Lines changed: 176 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,176 @@
1+
{
2+
"main": {
3+
"id": "2f49879301c55476",
4+
"type": "split",
5+
"children": [
6+
{
7+
"id": "a0d65d44e78c2fe8",
8+
"type": "tabs",
9+
"children": [
10+
{
11+
"id": "7d3fda9cd31fc426",
12+
"type": "leaf",
13+
"state": {
14+
"type": "empty",
15+
"state": {},
16+
"icon": "lucide-file",
17+
"title": "新标签页"
18+
}
19+
}
20+
]
21+
}
22+
],
23+
"direction": "vertical"
24+
},
25+
"left": {
26+
"id": "e0eb01a562f849c6",
27+
"type": "split",
28+
"children": [
29+
{
30+
"id": "250cc37ec4b78e51",
31+
"type": "tabs",
32+
"children": [
33+
{
34+
"id": "5669aa2f4526eafc",
35+
"type": "leaf",
36+
"state": {
37+
"type": "file-explorer",
38+
"state": {
39+
"sortOrder": "alphabetical"
40+
},
41+
"icon": "lucide-folder-closed",
42+
"title": "文件列表"
43+
}
44+
},
45+
{
46+
"id": "cb2e16d94212c858",
47+
"type": "leaf",
48+
"state": {
49+
"type": "search",
50+
"state": {
51+
"query": "",
52+
"matchingCase": false,
53+
"explainSearch": false,
54+
"collapseAll": false,
55+
"extraContext": false,
56+
"sortOrder": "alphabetical"
57+
},
58+
"icon": "lucide-search",
59+
"title": "搜索"
60+
}
61+
},
62+
{
63+
"id": "cd0c6745c605f686",
64+
"type": "leaf",
65+
"state": {
66+
"type": "bookmarks",
67+
"state": {},
68+
"icon": "lucide-bookmark",
69+
"title": "书签"
70+
}
71+
}
72+
]
73+
}
74+
],
75+
"direction": "horizontal",
76+
"width": 281.5
77+
},
78+
"right": {
79+
"id": "7d2fc522cd417b79",
80+
"type": "split",
81+
"children": [
82+
{
83+
"id": "5b3dea84d2206217",
84+
"type": "tabs",
85+
"children": [
86+
{
87+
"id": "e4bbf9197a0345e2",
88+
"type": "leaf",
89+
"state": {
90+
"type": "backlink",
91+
"state": {
92+
"collapseAll": false,
93+
"extraContext": false,
94+
"sortOrder": "alphabetical",
95+
"showSearch": false,
96+
"searchQuery": "",
97+
"backlinkCollapsed": false,
98+
"unlinkedCollapsed": true
99+
},
100+
"icon": "links-coming-in",
101+
"title": "反向链接"
102+
}
103+
},
104+
{
105+
"id": "0f9749a6c755e960",
106+
"type": "leaf",
107+
"state": {
108+
"type": "outgoing-link",
109+
"state": {
110+
"linksCollapsed": false,
111+
"unlinkedCollapsed": true
112+
},
113+
"icon": "links-going-out",
114+
"title": "出链"
115+
}
116+
},
117+
{
118+
"id": "ec9e9b5140aa2675",
119+
"type": "leaf",
120+
"state": {
121+
"type": "tag",
122+
"state": {
123+
"sortOrder": "frequency",
124+
"useHierarchy": true
125+
},
126+
"icon": "lucide-tags",
127+
"title": "标签"
128+
}
129+
},
130+
{
131+
"id": "115d6f86abb434f9",
132+
"type": "leaf",
133+
"state": {
134+
"type": "outline",
135+
"state": {},
136+
"icon": "lucide-list",
137+
"title": "大纲"
138+
}
139+
}
140+
]
141+
}
142+
],
143+
"direction": "horizontal",
144+
"width": 300,
145+
"collapsed": true
146+
},
147+
"left-ribbon": {
148+
"hiddenItems": {
149+
"switcher:打开快速切换": false,
150+
"graph:查看关系图谱": false,
151+
"canvas:新建白板": false,
152+
"daily-notes:打开/创建今天的日记": false,
153+
"templates:插入模板": false,
154+
"command-palette:打开命令面板": false
155+
}
156+
},
157+
"active": "7d3fda9cd31fc426",
158+
"lastOpenFiles": [
159+
"source/_posts/随机过程及其应用.md",
160+
"source/images/随机过程及其应用img/Pasted image 20250101125925.png",
161+
"source/images/随机过程及其应用img/Pasted image 20250101125913.png",
162+
"source/images/随机过程及其应用img/Pasted image 20250101125832.png",
163+
"source/images/随机过程及其应用img/Pasted image 20250101125810.png",
164+
"source/images/随机过程及其应用img/Pasted image 20250101125802.png",
165+
"source/images/随机过程及其应用img/Pasted image 20250101125720.png",
166+
"source/images/随机过程及其应用img/Pasted image 20250101125529.png",
167+
"source/images/随机过程及其应用img/Pasted image 20241231225452.png",
168+
"source/images/随机过程及其应用img/Pasted image 20241231225443.png",
169+
"source/images/随机过程及其应用img/Pasted image 20241231204818.png",
170+
"source/images/随机过程及其应用img",
171+
"source/_posts/first.md",
172+
"source/_posts/2025-04-27.md",
173+
"未命名.canvas",
174+
"source/about/index.md"
175+
]
176+
}

.trash/2025-04-27.md

Whitespace-only changes.

.trash/未命名.canvas

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)