1
0

项目:重构

This commit is contained in:
周中平 2024-08-30 12:29:55 +08:00
parent 33a3d498c3
commit cbbc66ab82
Signed by: zhouzhongping
GPG Key ID: 6666822800008000
598 changed files with 1263 additions and 45761 deletions

10
.obsidian/app.json vendored
View File

@ -7,11 +7,9 @@
"trashOption": "system", "trashOption": "system",
"promptDelete": false, "promptDelete": false,
"communityPluginSortOrder": "download", "communityPluginSortOrder": "download",
"attachmentFolderPath": "Static", "attachmentFolderPath": "Obsidian/Static",
"userIgnoreFilters": [ "userIgnoreFilters": [
"Static/", "Obsidian/"
"Journal/",
"Templates/"
], ],
"newFileLocation": "current", "newFileLocation": "current",
"defaultViewMode": "preview", "defaultViewMode": "preview",
@ -19,5 +17,7 @@
"vimMode": false, "vimMode": false,
"newLinkFormat": "absolute", "newLinkFormat": "absolute",
"propertiesInDocument": "visible", "propertiesInDocument": "visible",
"useMarkdownLinks": true "useMarkdownLinks": true,
"alwaysUpdateLinks": true,
"showRibbon": true
} }

View File

@ -1,11 +1,11 @@
{ {
"theme": "obsidian", "theme": "system",
"cssTheme": "Minimal", "cssTheme": "Minimal",
"interfaceFontFamily": "", "interfaceFontFamily": "MiSans,Noto Sans CJK SC",
"baseFontSize": 18, "baseFontSize": 20,
"translucency": false, "translucency": false,
"textFontFamily": "", "textFontFamily": "Noto Serif CJK SC",
"monospaceFontFamily": "", "monospaceFontFamily": "Source Code Pro",
"baseFontSizeAction": true, "baseFontSizeAction": true,
"accentColor": "", "accentColor": "",
"nativeMenus": false "nativeMenus": false

View File

@ -1,3 +1,3 @@
{ {
"backlinkInDocument": false "backlinkInDocument": true
} }

View File

@ -2,5 +2,6 @@
"snapToObjects": true, "snapToObjects": true,
"snapToGrid": true, "snapToGrid": true,
"newFileLocation": "folder", "newFileLocation": "folder",
"newFileFolderPath": "Canvas" "newFileFolderPath": "Obsidian/Canvas",
"defaultWheelBehavior": "zoom"
} }

View File

@ -5,6 +5,5 @@
"periodic-notes", "periodic-notes",
"obsidian-minimal-settings", "obsidian-minimal-settings",
"obsidian-weread-plugin", "obsidian-weread-plugin",
"obsidian-linter", "obsidian-linter"
"obsidian-git"
] ]

View File

@ -1,55 +0,0 @@
{
"commitMessage": "backup: {{date}}",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 0,
"autoPushInterval": 0,
"autoPullInterval": 0,
"autoPullOnBoot": false,
"disablePush": true,
"pullBeforePush": false,
"disablePopups": false,
"listChangedFilesInMessageBody": false,
"showStatusBar": true,
"updateSubmodules": false,
"syncMethod": "merge",
"customMessageOnAutoBackup": false,
"autoBackupAfterFileChange": false,
"treeStructure": false,
"refreshSourceControl": true,
"basePath": "",
"differentIntervalCommitAndPush": false,
"changedFilesInStatusBar": true,
"showedMobileNotice": true,
"refreshSourceControlTimer": 7000,
"showBranchStatusBar": true,
"setLastSaveToLastCommit": false,
"submoduleRecurseCheckout": false,
"gitDir": "",
"showFileMenu": true,
"lineAuthor": {
"show": false,
"followMovement": "inactive",
"authorDisplay": "initials",
"showCommitHash": false,
"dateTimeFormatOptions": "date",
"dateTimeFormatCustomString": "YYYY-MM-DD HH:mm",
"dateTimeTimezone": "viewer-local",
"coloringMaxAge": "1y",
"colorNew": {
"r": 255,
"g": 150,
"b": 150
},
"colorOld": {
"r": 120,
"g": 160,
"b": 255
},
"textColorCss": "var(--text-muted)",
"ignoreWhitespace": false,
"gutterSpacingFallbackLength": 5,
"lastShownAuthorDisplay": "initials",
"lastShownDateTimeFormatOptions": "date"
},
"autoCommitMessage": ""
}

File diff suppressed because one or more lines are too long

View File

@ -1,10 +0,0 @@
{
"author": "Vinzent",
"authorUrl": "https://github.com/Vinzent03",
"id": "obsidian-git",
"name": "Git",
"description": "Integrate Git version control with automatic backup and other advanced features.",
"isDesktopOnly": false,
"fundingUrl": "https://ko-fi.com/vinzent",
"version": "2.25.0"
}

View File

@ -1,562 +0,0 @@
@keyframes loading {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.workspace-leaf-content[data-type="git-view"] .button-border {
border: 2px solid var(--interactive-accent);
border-radius: var(--radius-s);
}
.workspace-leaf-content[data-type="git-view"] .view-content {
padding: 0;
}
.workspace-leaf-content[data-type="git-history-view"] .view-content {
padding: 0;
}
.loading > svg {
animation: 2s linear infinite loading;
transform-origin: 50% 50%;
display: inline-block;
}
.obsidian-git-center {
margin: auto;
text-align: center;
width: 50%;
}
.obsidian-git-textarea {
display: block;
margin-left: auto;
margin-right: auto;
}
.obsidian-git-center-button {
display: block;
margin: 20px auto;
}
.tooltip.mod-left {
overflow-wrap: break-word;
}
.tooltip.mod-right {
overflow-wrap: break-word;
}
.git-tools {
display: flex;
margin-left: auto;
}
.git-tools .type {
padding-left: var(--size-2-1);
display: flex;
align-items: center;
justify-content: center;
width: 11px;
}
.git-tools .type[data-type="M"] {
color: orange;
}
.git-tools .type[data-type="D"] {
color: red;
}
.git-tools .buttons {
display: flex;
}
.git-tools .buttons > * {
padding: 0 0;
height: auto;
}
.is-active .git-tools .buttons > * {
color: var(--nav-item-color-active);
}
.git-author {
color: var(--text-accent);
}
.git-date {
color: var(--text-accent);
}
.git-ref {
color: var(--text-accent);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-d-none {
display: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-wrapper {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header {
background-color: var(--background-primary);
border-bottom: 1px solid var(--interactive-accent);
font-family: var(--font-monospace);
height: 35px;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-header,
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-stats {
font-size: 14px;
margin-left: auto;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-added {
border: 1px solid #b4e2b4;
border-radius: 5px 0 0 5px;
color: #399839;
padding: 2px;
text-align: right;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-lines-deleted {
border: 1px solid #e9aeae;
border-radius: 0 5px 5px 0;
color: #c33;
margin-left: 1px;
padding: 2px;
text-align: left;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name-wrapper {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 15px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-name {
overflow-x: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-wrapper {
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
margin-bottom: 1em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse {
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border: 1px solid var(--background-modifier-border);
border-radius: 3px;
cursor: pointer;
display: none;
font-size: 12px;
justify-content: flex-end;
padding: 4px 8px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse.d2h-selected {
background-color: #c8e1ff;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-collapse-input {
margin: 0 4px 0 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-table {
border-collapse: collapse;
font-family: Menlo, Consolas, monospace;
font-size: 13px;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-files-diff {
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-diff {
overflow-y: hidden;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-side-diff {
display: inline-block;
margin-bottom: -8px;
margin-right: -4px;
overflow-x: scroll;
overflow-y: hidden;
width: 50%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line {
padding: 0 8em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
display: inline-block;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
white-space: nowrap;
width: 100%;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line {
padding: 0 4.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-ctn {
word-wrap: normal;
background: none;
display: inline-block;
padding: 0;
-webkit-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
user-select: text;
vertical-align: middle;
white-space: pre;
width: 100%;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #ffb6ba;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
del {
background-color: #8d232881;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line del,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-line ins {
border-radius: 0.2em;
display: inline-block;
margin-top: -1px;
text-decoration: none;
vertical-align: middle;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #97f295;
text-align: left;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-code-line ins,
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-code-side-line
ins {
background-color: #1d921996;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix {
word-wrap: normal;
background: none;
display: inline;
padding: 0;
white-space: pre;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1 {
float: left;
}
.workspace-leaf-content[data-type="diff-view"] .line-num1,
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
padding: 0 0.5em;
text-overflow: ellipsis;
width: 3.5em;
}
.workspace-leaf-content[data-type="diff-view"] .line-num2 {
float: right;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
position: absolute;
text-align: right;
width: 7.5em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
background-color: var(--background-primary);
border: solid var(--background-modifier-border);
border-width: 0 1px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: var(--text-muted);
cursor: pointer;
display: inline-block;
overflow: hidden;
padding: 0 0.5em;
position: absolute;
text-align: right;
text-overflow: ellipsis;
width: 4em;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-diff-tbody tr {
position: relative;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber:after {
content: "\200b";
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-emptyplaceholder,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-line-prefix,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-emptyplaceholder {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-code-linenumber,
.workspace-leaf-content[data-type="diff-view"] .d2h-code-side-linenumber {
direction: rtl;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #fee8e9;
border-color: #e9aeae;
}
.theme-light .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: #dfd;
border-color: #b4e2b4;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-del {
background-color: #521b1d83;
border-color: #691d1d73;
}
.theme-dark .workspace-leaf-content[data-type="diff-view"] .d2h-ins {
background-color: rgba(30, 71, 30, 0.5);
border-color: #13501381;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-info {
background-color: var(--background-primary);
border-color: var(--background-modifier-border);
color: var(--text-normal);
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #fdf2d0;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-del.d2h-change {
background-color: #55492480;
}
.theme-light
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: #ded;
}
.theme-dark
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-diff
.d2h-ins.d2h-change {
background-color: rgba(37, 78, 37, 0.418);
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper {
margin-bottom: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-wrapper a {
color: #3572b0;
text-decoration: none;
}
.workspace-leaf-content[data-type="diff-view"]
.d2h-file-list-wrapper
a:visited {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-header {
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-title {
font-weight: 700;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list-line {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
text-align: left;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list {
display: block;
list-style: none;
margin: 0;
padding: 0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li {
border-bottom: 1px solid var(--background-modifier-border);
margin: 0;
padding: 5px 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-list > li:last-child {
border-bottom: none;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-file-switch {
cursor: pointer;
display: none;
font-size: 10px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-icon {
fill: currentColor;
margin-right: 10px;
vertical-align: middle;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted {
color: #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added {
color: #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed {
color: #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved {
color: #3572b0;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-tag {
background-color: var(--background-primary);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
font-size: 10px;
margin-left: 5px;
padding: 0 2px;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-deleted-tag {
border: 2px solid #c33;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-added-tag {
border: 1px solid #399839;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-changed-tag {
border: 1px solid #d0b44c;
}
.workspace-leaf-content[data-type="diff-view"] .d2h-moved-tag {
border: 1px solid #3572b0;
}
/* ====================== Line Authoring Information ====================== */
.cm-gutterElement.obs-git-blame-gutter {
/* Add background color to spacing inbetween and around the gutter for better aesthetics */
border-width: 0px 2px 0.2px 2px;
border-style: solid;
border-color: var(--background-secondary);
background-color: var(--background-secondary);
}
.cm-gutterElement.obs-git-blame-gutter > div,
.line-author-settings-preview {
/* delegate text color to settings */
color: var(--obs-git-gutter-text);
font-family: monospace;
height: 100%; /* ensure, that age-based background color occupies entire parent */
text-align: right;
padding: 0px 6px 0px 6px;
white-space: pre; /* Keep spaces and do not collapse them. */
}
@media (max-width: 800px) {
/* hide git blame gutter not to superpose text */
.cm-gutterElement.obs-git-blame-gutter {
display: none;
}
}

View File

@ -1,5 +1,4 @@
{ {
"hideRibbon": false,
"hideStatus": false, "hideStatus": false,
"hideTabs": false, "hideTabs": false,
"hideScroll": false, "hideScroll": false,
@ -11,6 +10,7 @@
"hideInstructions": false, "hideInstructions": false,
"hidePropertiesReading": false, "hidePropertiesReading": false,
"hideVault": true, "hideVault": true,
"hideRibbon": false,
"hideMeta": false, "hideMeta": false,
"frameless": false "frameless": false
} }

View File

@ -266,7 +266,9 @@
"lintOnFileChange": false, "lintOnFileChange": false,
"displayLintOnFileChangeNotice": false, "displayLintOnFileChangeNotice": false,
"settingsConvertedToConfigKeyValues": true, "settingsConvertedToConfigKeyValues": true,
"foldersToIgnore": [], "foldersToIgnore": [
""
],
"filesToIgnore": [], "filesToIgnore": [],
"linterLocale": "system-default", "linterLocale": "system-default",
"logLevel": "ERROR", "logLevel": "ERROR",

View File

@ -1,5 +1,5 @@
{ {
"lightStyle": "minimal-light-white", "lightStyle": "minimal-light",
"darkStyle": "minimal-dark", "darkStyle": "minimal-dark",
"lightScheme": "minimal-default-light", "lightScheme": "minimal-default-light",
"darkScheme": "minimal-default-dark", "darkScheme": "minimal-default-dark",
@ -8,7 +8,7 @@
"lineWidth": 70, "lineWidth": 70,
"lineWidthWide": 50, "lineWidthWide": 50,
"maxWidth": 88, "maxWidth": 88,
"textNormal": 18, "textNormal": 20,
"textSmall": 14, "textSmall": 14,
"imgGrid": false, "imgGrid": false,
"imgWidth": "img-default-width", "imgWidth": "img-default-width",
@ -18,7 +18,7 @@
"chartWidth": "chart-default-width", "chartWidth": "chart-default-width",
"colorfulHeadings": false, "colorfulHeadings": false,
"colorfulFrame": false, "colorfulFrame": false,
"colorfulActiveStates": false, "colorfulActiveStates": true,
"trimNames": true, "trimNames": true,
"labeledNav": false, "labeledNav": false,
"fullWidthMedia": true, "fullWidthMedia": true,

View File

@ -1,24 +1,20 @@
{ {
"cookies": [ "cookies": [
{ {
"name": "wr_fp", "name": "wr_gid",
"value": "3610854600" "value": "250277387"
}, },
{ {
"name": "wr_gid", "name": "wr_skey",
"value": "238733667" "value": "NjBVzmhm"
}, },
{ {
"name": "wr_vid", "name": "wr_vid",
"value": "389106381" "value": "389106381"
}, },
{
"name": "wr_pf",
"value": "0"
},
{ {
"name": "wr_rt", "name": "wr_rt",
"value": "web@IewbrecPwPFRuK_KzTh_AL" "value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) obsidian/1.6.7 Chrome/124.0.6367.243 Electron/30.1.2 Safa"
}, },
{ {
"name": "wr_localvid", "name": "wr_localvid",
@ -30,23 +26,19 @@
}, },
{ {
"name": "wr_avatar", "name": "wr_avatar",
"value": "https://thirdwx.qlogo.cn/mmopen/vi_32/Ws8ibkHcBXXw09Fpz2FpJJgHWdN6Em7FNxjPTU1C1icGR8CYC67TUicEWzaXDq1YDcpGDrMkQeyNYHWk8S94icJcyQ/132" "value": "https://thirdwx.qlogo.cn/mmopen/vi_32/PiajxSqBRaEJQvJx5ooPnrO6BLJRiarDmZ2zexceNq8OyUYuBGszUoeh4sRic8DtL8eRJz73m6r8j4qMuicNhy9J5Z6jXyDVFOz7XPXlQqIPObp7Nv3bp5GcJw/132"
}, },
{ {
"name": "wr_gender", "name": "wr_gender",
"value": "1" "value": "1"
},
{
"name": "wr_skey",
"value": "pJA0MaZ9"
} }
], ],
"noteLocation": "Book", "noteLocation": "Personal/Book",
"dailyNotesLocation": "/", "dailyNotesLocation": "/",
"insertAfter": "<!-- start of weread -->", "insertAfter": "<!-- start of weread -->",
"insertBefore": "<!-- end of weread -->", "insertBefore": "<!-- end of weread -->",
"dailyNotesFormat": "YYYY-MM-DD", "dailyNotesFormat": "YYYY-MM-DD",
"lastCookieTime": 1702183839906, "lastCookieTime": 1724991063246,
"isCookieValid": true, "isCookieValid": true,
"user": "仲平", "user": "仲平",
"userVid": "389106381", "userVid": "389106381",
@ -55,5 +47,9 @@
"subFolderType": "category", "subFolderType": "category",
"fileNameType": "BOOK_NAME", "fileNameType": "BOOK_NAME",
"dailyNotesToggle": false, "dailyNotesToggle": false,
"notesBlacklist": "" "notesBlacklist": "",
"showEmptyChapterTitleToggle": false,
"convertTags": false,
"saveArticleToggle": true,
"saveReadingInfoToggle": true
} }

View File

@ -5,13 +5,13 @@
"daily": { "daily": {
"format": "YYYY/[W]W/YYYY-MM-DD", "format": "YYYY/[W]W/YYYY-MM-DD",
"template": "Templates/日志 - 日记模板.md", "template": "Templates/日志 - 日记模板.md",
"folder": "Journal", "folder": "Personal/Journal",
"enabled": true "enabled": true
}, },
"weekly": { "weekly": {
"format": "YYYY/[W]W/YYYY-[W]W", "format": "YYYY/[W]W/YYYY-[W]W",
"template": "Templates/日志 - 周记模板.md", "template": "Templates/日志 - 周记模板.md",
"folder": "Journal", "folder": "Personal/Journal",
"enabled": true "enabled": true
}, },
"monthly": { "monthly": {
@ -22,7 +22,7 @@
"quarterly": { "quarterly": {
"format": "YYYY/YYYY-[Q]Q", "format": "YYYY/YYYY-[Q]Q",
"template": "Templates/日志 - 季度模板.md", "template": "Templates/日志 - 季度模板.md",
"folder": "Journal", "folder": "Personal/Journal",
"enabled": true "enabled": true
}, },
"yearly": { "yearly": {

View File

@ -1,12 +1,12 @@
{ {
"command_timeout": 10, "command_timeout": 10,
"templates_folder": "Templates", "templates_folder": "Obsidian/Templates",
"templates_pairs": [], "templates_pairs": [],
"trigger_on_file_creation": true, "trigger_on_file_creation": true,
"auto_jump_to_cursor": false, "auto_jump_to_cursor": false,
"enable_system_commands": true, "enable_system_commands": true,
"shell_path": "", "shell_path": "",
"user_scripts_folder": "Static", "user_scripts_folder": "Obsidian/Static",
"enable_folder_templates": true, "enable_folder_templates": true,
"folder_templates": [ "folder_templates": [
{ {

View File

@ -1,7 +1,7 @@
{ {
"name": "Minimal", "name": "Minimal",
"version": "7.5.2", "version": "7.7.18",
"minAppVersion": "1.5.4", "minAppVersion": "1.6.1",
"author": "@kepano", "author": "@kepano",
"authorUrl": "https://twitter.com/kepano", "authorUrl": "https://twitter.com/kepano",
"fundingUrl": "https://www.buymeacoffee.com/kepano" "fundingUrl": "https://www.buymeacoffee.com/kepano"

File diff suppressed because one or more lines are too long

View File

@ -1,116 +0,0 @@
---
doc_type: weread-highlights-reviews
bookId: "35449548"
author: 仲平
cover: https://cdn.weread.qq.com/weread/cover/82/YueWen_35449548/t7_YueWen_35449548.jpg
reviewCount: 4
noteCount: 31
readingStatus: 在读
progress: 61%
totalReadDay: 5
readingTime: 0小时49分钟
readingDate: 2022-09-13
title: 第一性原理
description: 什么是第一性原理亚里士多德说“任何一个系统都有自己的第一性原理它是一个根基性命题或假设不能被缺省也不能被违反。”第一性原理好比树木的根基没有人会看到繁茂枝干下的树根但它决定了树的一切。本书将“第一性原理”的思想引入创新与商业领域用8个思维模型和实践方法帮助企业与个人厘清问题的本质直达本源。我们常问未来十年什么会变化这个问题很重要但更重要的问题可能是未来十年什么不变如果能找到不变的把所有的资源和精力毫无保留地投入在不变的事物上其力量不可同日而语。让我们用第一性原理重新认识世界。探索内在的力量创造非凡的人生。
keywords:
- 第一性原理
- 李善友
tags:
- 阅读/哲学宗教-西方哲学
- 阅读/笔记
date: 2024-04-29
---
## 简介
- **书名**:《第一性原理》
- **作者** 李善友
- **分类** 哲学宗教-西方哲学
- **ISBN**9787115542649
- **出版社**:人民邮电出版社
## 概述
什么是第一性原理亚里士多德说“任何一个系统都有自己的第一性原理它是一个根基性命题或假设不能被缺省也不能被违反。”第一性原理好比树木的根基没有人会看到繁茂枝干下的树根但它决定了树的一切。本书将“第一性原理”的思想引入创新与商业领域用8个思维模型和实践方法帮助企业与个人厘清问题的本质直达本源。我们常问未来十年什么会变化这个问题很重要但更重要的问题可能是未来十年什么不变如果能找到不变的把所有的资源和精力毫无保留地投入在不变的事物上其力量不可同日而语。让我们用第一性原理重新认识世界。探索内在的力量创造非凡的人生。
## 划线
> 如果再往后看千年,我们不禁要问:哲科思维在今天还重要吗?当代高速的社会发展是否仍然与哲科思维有关
> 柏拉图把人类的认识分为4个等级由低到高依次为想象、信念、理智和知识。类似地我将人类的思维分为4层由低到高依次为感性思维、理性思维、哲科思维和觉性智慧。
> 人类日常生活中常用的两种基本逻辑方式:一种是归纳法;另一种是演绎法。
> 虽然在科学领域中,归纳法以所谓的“独立可重复性”作为标准,从而确保实验结果的有效性,但这并不意味着,我们通过归纳法总结出来的规律就一定是真实的。
> 还是以我们之前提到的天鹅的认知问题为例,我们在欧洲看到的天鹅是白色的,在非洲看到的天鹅是白色的,真的就意味着所有的天鹅都是白色的吗?答案当然是否定的,因为在澳大利亚,还分布着少量但确实存在的黑天鹅种群。
> 总而言之,归纳法只能证伪,却不能证明。
> 推翻一个结论,不要从结论入手,而是要从它的隐含假设开始,如果根基的隐含假设不成立,结论自然不成立。这也是辩论高手的常用方法,从基石和结构切入,不要从内容入手。
> 在我们的经验里,未来总是和过去一样。
> 对管理者来说,经验是决定经营效果的重要因素;对员工来说,经验是决定工作能力的关键指标。这种认知仿佛已经成了行业的共识,所以越来越多的企业在提拔管理者和招聘员工的时候,会以经验作为主要的考查项目。但几乎没有人去深究过,经验的指导意义真的可以贯穿一家企业发展的始终吗。实际上,在“过去的经验在未来依然有效”这个命题下,隐藏着未来与过去一样的时间维度连续性。
> 演绎法不是我们熟悉的思维方式,并且需要有一定的思考能力。归纳法是将眼睛看得到的事实归纳为规律,基本上用的是感性思维,而演绎法是理性思维的主要用智形式。
> 他提出的力学公式也不是从蒸汽机发明和改善的经验中归纳出来的。他只是发现了一个抽象的逻辑,
> 我的启蒙得益于当年在斯坦福大学求学期间,有幸听到美国华裔物理学家、中国科学院外籍院士张首晟教授讲课。有一次张首晟教授讲到,所有大科学家都用演绎法。
> 第一性原理是哲科思维中的重中之重,因为如果没有第一性原理,所有理性系统的建立就都无从谈起。在不同的系统中,第一性原理存在的形式也有所不同。在科学领域,科学家总是把第一性原理称为第一因;在哲学领域,哲学家常常将第一性原理与逻辑奇点画上等号。但无论是在什么系统中,第一性原理作为系统的根基性命题的地位始终都无法被撼动。
> 当然,演绎法的链条不能无限地倒推下去,最终必须有一个基石,即一个能够自确定的元起点——第一性原理
> 早在2300年前亚里士多德认为在每一系统的探索中存在第一原理它是一个最基本的命题或假设不能被省略或删除也不能被违反。这里的“第一原理”[5],就是我们所说的第一性原理。
> 在哲科思维中,有一个最底层、最根基性的算法公式:
> 第一性原理+演绎法==>理性系统
> 由于边界条件只能由宇宙外的造物主给定,所以宇宙的命运就操纵在造物主的手中。这就是从牛顿时代起一直困扰人类智慧的第一推动力的问题;而在哲学领域,也有着追究终极的概念,当我们不断地向系统的源头追溯时,总能找到答案。无论是第一动力因,还是追究终极,从本质上来说,它们都属于基石假设,或者说第一性原理。不过,受限于人类当前的认知水平,我们很难准确地找到所有系统最终的元起点。
> 中国古代的思想家、哲学家老子,曾经提出“道生一,一生二,二生三,三生万物”的说法。这里所谓的道,其实就是道家思想的基石假设,也可以说是第一性原理,在道存在的前提下,我们才能推导出有关道的一切认知及学问。
> 不是系统之内,而是系统之外在这里我们要特别注意,很多人在理解第一性原理时,经常会将其误解为系统的中心思想。实际上,第一性原理并不是系统的中心思想,而是这个系统之外、之前的一个元前提。比如,在“所有人都会死,苏格拉底是人,所以苏格拉底也会死”这个命题中,第一性原理位于元前提(所有人都会死)的位置,而不是小前提(苏格拉底是人)或者结论(苏格拉底会死)的位置。
> 如果用更加贴切的词来表示第一性原理,那么“第一前提”或“逻辑奇点”会更加合适。
> 第一性原理的层级之分
> 在演绎法中,大系统的中心思想可以作为小系统的第一性原理,这意味着第一性原理是有层级之分的。
> 所以,系统之间是有层级之分的,最简单、直接的划分方式就是“母系统”和“子系统”。某一个系统的第一性原理,既可以是一个不证自明的元起点,也有可能是一个更大的母系统的中心思想,作为子系统的第一性原理。
> 但从实际应用的角度出发,我们没有必要去找到那个终极的第一性原理,所有比我们想要推导的理性系统范围更大、层级更高的母系统,其中心思想或者推导结论都可以作为子系统第一性原理的来源。
> “道生一,一生二,二生三,三生万物”。问问自己的“一”是什么?只有找到并践行属于自己的“一”,我们才能很幸福、很笃定、很踏实地生活和工作。
> 这个角度来讲,马斯克提出这个假设充分地说明了他能够站在系统之外看问题,所以他才能顺理成章地提出打破群体认知的假设
## 笔记
> 我们突然发现,已经适应的环境突然改变,脚下赖以生存的根基正在坍塌,要想生存下来,只有两条路可以选:一是在原有的基础上,加固即将坍塌的根基,这一条路相对容易一些,这也是大多数人的选择;二是找到新地基。
💭 一定要学会拥抱变化,迎接未来!
> 我想起了英国前首相丘吉尔的一句话:“永远不要浪费一场好危机。”也许脚底的根基坍塌了未必是件坏事,
💭 风险与机遇往往是并存的
> 软件方面Space X“猎鹰9号”和龙飞船用的都是Intel双核的X86处理器操作系统用的是Linux还有LabView和Matlab此外它的软件开发基础语言是C++偶尔也用Python并且整个主控程序只有几十万行代码。
💭 我……
> 基于第一性原理的第一创新,是将同一种思维方式运用于不同的领域。
💭 打破常规
## 书评
## 点评

View File

@ -1,12 +0,0 @@
---
title: 传统文化
description:
keywords: []
tags:
author: 7Wate
date: 2023-11-10
---
计划在这里更新八雅:琴、棋、书、画、诗、香、花、茶。
善琴者通达从容,善棋者筹谋睿智,善书者至情至性,善画者至善至美,善诗者韵至心声,善酒者情逢知己,善茶者陶冶情操,善花者品性怡然。

View File

@ -1,10 +0,0 @@
---
title: 生活相关
description:
keywords:
tags:
author: 7Wate
date: 2024-05-07
---
计划在这里更新生活相关的内容

Some files were not shown because too many files have changed in this diff Show More