Первый коммит

This commit is contained in:
nm17 2023-11-09 17:14:34 +04:00
commit 1424d2ae1f
Signed by: nm17
GPG key ID: 3303B70C59145CD4
36 changed files with 1985 additions and 0 deletions

2
journals/2023_10_27.md Normal file
View file

@ -0,0 +1,2 @@
- llll
-

2
journals/2023_10_28.md Normal file
View file

@ -0,0 +1,2 @@
-
-

View file

@ -0,0 +1,4 @@
- Начало
- 6 век до н.э.
- [[Учения/Буддизм/Нирвана]]
-

View file

@ -0,0 +1,416 @@
{:meta/version 1
;; Set the preferred format.
;; Available options:
;; - Markdown (default)
;; - Org
;; :preferred-format "Markdown"
;; Set the preferred workflow style.
;; Available options:
;; - :now for NOW/LATER style (default)
;; - :todo for TODO/DOING style
:preferred-workflow :now
;; Exclude directories/files.
;; Example usage:
;; :hidden ["/archived" "/test.md" "../assets/archived"]
:hidden []
;; Define the default journal page template.
;; Enter the template name between the quotes.
:default-templates
{:journals ""}
;; Set a custom date format for the journal page title.
;; Default value: "MMM do, yyyy"
;; e.g., "Jan 19th, 2038"
;; Example usage e.g., "Tue 19th, Jan 2038"
;; :journal/page-title-format "EEE do, MMM yyyy"
;; Specify the journal filename format using a valid date format string.
;; !Warning:
;; This configuration is not retroactive and affects only new journals.
;; To show old journal files in the app, manually rename the files in the
;; journal directory to match the new format.
;; Default value: "yyyy_MM_dd"
;; :journal/file-name-format "yyyy_MM_dd"
;; Enable tooltip preview on hover.
;; Default value: true
:ui/enable-tooltip? true
;; Display brackets [[]] around page references.
;; Default value: true
;; :ui/show-brackets? true
;; Display all lines of a block when referencing ((block)).
;; Default value: false
:ui/show-full-blocks? false
;; Automatically expand block references when zooming in.
;; Default value: true
:ui/auto-expand-block-refs? true
;; Enable Block timestamps.
;; Default value: false
:feature/enable-block-timestamps? false
;; Disable accent marks when searching.
;; After changing this setting, rebuild the search index by pressing (^C ^S).
;; Default value: true
:feature/enable-search-remove-accents? true
;; Enable journals.
;; Default value: true
;; :feature/enable-journals? true
;; Enable flashcards.
;; Default value: true
;; :feature/enable-flashcards? true
;; Enable whiteboards.
;; Default value: true
;; :feature/enable-whiteboards? true
;; Disable the journal's built-in 'Scheduled tasks and deadlines' query.
;; Default value: false
;; :feature/disable-scheduled-and-deadline-query? false
;; Specify the number of days displayed in the future for
;; the 'scheduled tasks and deadlines' query.
;; Example usage:
;; Display all scheduled and deadline blocks for the next 14 days:
;; :scheduled/future-days 14
;; Default value: 7
;; :scheduled/future-days 7
;; Specify the first day of the week.
;; Available options:
;; - integer from 0 to 6 (Monday to Sunday)
;; Default value: 6 (Sunday)
:start-of-week 6
;; Specify a custom CSS import.
;; This option takes precedence over the local `logseq/custom.css` file.
;; Example usage:
;; :custom-css-url "@import url('https://cdn.jsdelivr.net/gh/dracula/logseq@master/custom.css');"
;; Specify a custom JS import.
;; This option takes precedence over the local `logseq/custom.js` file.
;; Example usage:
;; :custom-js-url "https://cdn.logseq.com/custom.js"
;; Set a custom Arweave gateway
;; Default gateway: https://arweave.net
;; :arweave/gateway "https://arweave.net"
;; Set bullet indentation when exporting
;; Available options:
;; - `:eight-spaces` as eight spaces
;; - `:four-spaces` as four spaces
;; - `:two-spaces` as two spaces
;; - `:tab` as a tab character (default)
;; :export/bullet-indentation :tab
;; Publish all pages within the Graph
;; Regardless of whether individual pages have been marked as public.
;; Default value: false
;; :publishing/all-pages-public? false
;; Define the default home page and sidebar status.
;; If unspecified, the journal page will be loaded on startup and the right sidebar will stay hidden.
;; The `:page` value represents the name of the page displayed at startup.
;; Available options for `:sidebar` are:
;; - "Contents" to display the Contents page in the right sidebar.
;; - A specific page name to display in the right sidebar.
;; - An array of multiple pages, e.g., ["Contents" "Page A" "Page B"].
;; If `:sidebar` remains unset, the right sidebar will stay hidden.
;; Examples:
;; 1. Set "Changelog" as the home page and display "Contents" in the right sidebar:
;; :default-home {:page "Changelog", :sidebar "Contents"}
;; 2. Set "Jun 3rd, 2021" as the home page without the right sidebar:
;; :default-home {:page "Jun 3rd, 2021"}
;; 3. Set "home" as the home page and display multiple pages in the right sidebar:
;; :default-home {:page "home", :sidebar ["Page A" "Page B"]}
;; Set the default location for storing notes.
;; Default value: "pages"
;; :pages-directory "pages"
;; Set the default location for storing journals.
;; Default value: "journals"
;; :journals-directory "journals"
;; Set the default location for storing whiteboards.
;; Default value: "whiteboards"
;; :whiteboards-directory "whiteboards"
;; Enabling this option converts
;; [[Grant Ideas]] to [[file:./grant_ideas.org][Grant Ideas]] for org-mode.
;; For more information, visit https://github.com/logseq/logseq/issues/672
;; :org-mode/insert-file-link? false
;; Configure custom shortcuts.
;; Syntax:
;; 1. + indicates simultaneous key presses, e.g., `Ctrl+Shift+a`.
;; 2. A space between keys represents key chords, e.g., `t s` means
;; pressing `t` followed by `s`.
;; 3. mod refers to `Ctrl` for Windows/Linux and `Command` for Mac.
;; 4. Use false to disable a specific shortcut.
;; 5. You can define multiple bindings for a single action, e.g., ["ctrl+j" "down"].
;; The full list of configurable shortcuts is available at:
;; https://github.com/logseq/logseq/blob/master/src/main/frontend/modules/shortcut/config.cljs
;; Example:
;; :shortcuts
;; {:editor/new-block "enter"
;; :editor/new-line "shift+enter"
;; :editor/insert-link "mod+shift+k"
;; :editor/highlight false
;; :ui/toggle-settings "t s"
;; :editor/up ["ctrl+k" "up"]
;; :editor/down ["ctrl+j" "down"]
;; :editor/left ["ctrl+h" "left"]
;; :editor/right ["ctrl+l" "right"]}
:shortcuts {}
;; Configure the behavior of pressing Enter in document mode.
;; if set to true, pressing Enter will create a new block.
;; Default value: false
:shortcut/doc-mode-enter-for-new-block? false
;; Block content larger than `block/content-max-length` will not be searchable
;; or editable for performance.
;; Default value: 10000
:block/content-max-length 10000
;; Display command documentation on hover.
;; Default value: true
:ui/show-command-doc? true
;; Display empty bullet points.
;; Default value: false
:ui/show-empty-bullets? false
;; Pre-defined :view function to use with advanced queries.
:query/views
{:pprint
(fn [r] [:pre.code (pprint r)])}
;; Advanced queries `:result-transform` function.
;; Transform the query result before displaying it.
:query/result-transforms
{:sort-by-priority
(fn [result] (sort-by (fn [h] (get h :block/priority "Z")) result))}
;; The following queries will be displayed at the bottom of today's journal page.
;; The "NOW" query returns tasks with "NOW" or "DOING" status.
;; The "NEXT" query returns tasks with "NOW", "LATER", or "TODO" status.
:default-queries
{:journals
[{:title "🔨 NOW"
:query [:find (pull ?h [*])
:in $ ?start ?today
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "DOING"} ?marker)]
[?h :block/page ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(>= ?d ?start)]
[(<= ?d ?today)]]
:inputs [:14d :today]
:result-transform (fn [result]
(sort-by (fn [h]
(get h :block/priority "Z")) result))
:group-by-page? false
:collapsed? false}
{:title "📅 NEXT"
:query [:find (pull ?h [*])
:in $ ?start ?next
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]
[?h :block/page ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(> ?d ?start)]
[(< ?d ?next)]]
:inputs [:today :7d-after]
:group-by-page? false
:collapsed? false}]}
;; Add custom commands to the command palette
;; Example usage:
;; :commands
;; [
;; ["js" "Javascript"]
;; ["md" "Markdown"]
;; ]
:commands []
;; Enable collapsing blocks with titles but no children.
;; By default, only blocks with children can be collapsed.
;; Setting `:outliner/block-title-collapse-enabled?` to true allows collapsing
;; blocks with titles (multiple lines) and content. For example:
;; - block title
;; block content
;; Default value: false
:outliner/block-title-collapse-enabled? false
;; Macros replace texts and will make you more productive.
;; Example usage:
;; Change the :macros value below to:
;; {"poem" "Rose is $1, violet's $2. Life's ordered: Org assists you."}
;; input "{{poem red,blue}}"
;; becomes
;; Rose is red, violet's blue. Life's ordered: Org assists you.
:macros {}
;; Configure the default expansion level for linked references.
;; For example, consider the following block hierarchy:
;; - a [[page]] (level 1)
;; - b (level 2)
;; - c (level 3)
;; - d (level 4)
;;
;; With the default value of level 2, block b will be collapsed.
;; If the level's value is set to 3, block c will be collapsed.
;; Default value: 2
:ref/default-open-blocks-level 2
;; Configure the threshold for linked references before collapsing.
;; Default value: 100
:ref/linked-references-collapsed-threshold 50
;; Graph view configuration.
;; Example usage:
;; :graph/settings
;; {:orphan-pages? true ; Default value: true
;; :builtin-pages? false ; Default value: false
;; :excluded-pages? false ; Default value: false
;; :journal? false} ; Default value: false
;; Favorites to list on the left sidebar
:favorites []
;; Set flashcards interval.
;; Expected value:
;; - Float between 0 and 1
;; higher values result in faster changes to the next review interval.
;; Default value: 0.5
;; :srs/learning-fraction 0.5
;; Set the initial interval after the first successful review of a card.
;; Default value: 4
;; :srs/initial-interval 4
;; Hide specific block properties.
;; Example usage:
;; :block-hidden-properties #{:public :icon}
;; Create a page for all properties.
;; Default value: true
:property-pages/enabled? true
;; Properties to exclude from having property pages
;; Example usage:
;; :property-pages/excludelist #{:duration :author}
;; By default, property value separated by commas will not be treated as
;; page references. You can add properties to enable it.
;; Example usage:
;; :property/separated-by-commas #{:alias :tags}
;; Properties that are ignored when parsing property values for references
;; Example usage:
;; :ignored-page-references-keywords #{:author :website}
;; logbook configuration.
;; :logbook/settings
;; {:with-second-support? false ;limit logbook to minutes, seconds will be eliminated
;; :enabled-in-all-blocks true ;display logbook in all blocks after timetracking
;; :enabled-in-timestamped-blocks false ;don't display logbook at all
;; }
;; Mobile photo upload configuration.
;; :mobile/photo
;; {:allow-editing? true
;; :quality 80}
;; Mobile features options
;; Gestures
;; Example usage:
;; :mobile
;; {:gestures/disabled-in-block-with-tags ["kanban"]}
;; Extra CodeMirror options
;; See https://codemirror.net/5/doc/manual.html#config for possible options
;; Example usage:
;; :editor/extra-codemirror-options
;; {:lineWrapping false ; Default value: false
;; :lineNumbers true ; Default value: true
;; :readOnly false} ; Default value: false
;; Enable logical outdenting
;; Default value: false
;; :editor/logical-outdenting? false
;; Prefer pasting the file when text and a file are in the clipboard.
;; Default value: false
;; :editor/preferred-pasting-file? false
;; Quick capture templates for receiving content from other apps.
;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded
;; by receiving content from other apps. Note: the {} cannot be omitted.
;; - {time}: capture time
;; - {date}: capture date using current date format, use `[[{date}]]` to get a page reference
;; - {text}: text that users selected before sharing.
;; - {url}: URL or assets path for media files stored in Logseq.
;; You can also reorder them or use only one or two of them in the template.
;; You can also insert or format any text in the template, as shown in the following examples.
;; :quick-capture-templates
;; {:text "[[quick capture]] **{time}**: {text} from {url}"
;; :media "[[quick capture]] **{time}**: {url}"}
;; Quick capture options.
;; - insert-today? Insert the capture at the end of today's journal page (boolean).
;; - redirect-page? Redirect to the quick capture page after capturing (boolean).
;; - default-page The default page to capture to if insert-today? is false (string).
;; :quick-capture-options
;; {:insert-today? false ;; Default value: true
;; :redirect-page? false ;; Default value: false
;; :default-page "quick capture"} ;; Default page: "quick capture"
;; File sync options
;; Ignore these files when syncing, regexp is supported.
;; :file-sync/ignore-files []
;; Configure the Enter key behavior for
;; context-aware editing with DWIM (Do What I Mean).
;; context-aware Enter key behavior implies that pressing Enter will
;; have different outcomes based on the context.
;; For instance, pressing Enter within a list generates a new list item,
;; whereas pressing Enter in a block reference opens the referenced block.
;; :dwim/settings
;; {:admonition&src? true ;; Default value: true
;; :markup? false ;; Default value: false
;; :block-ref? true ;; Default value: true
;; :page-ref? true ;; Default value: true
;; :properties? true ;; Default value: true
;; :list? false} ;; Default value: false
;; Configure the escaping method for special characters in page titles.
;; Warning:
;; This is a dangerous operation. To modify the setting,
;; access the 'Filename format' setting and follow the instructions.
;; Otherwise, You may need to manually rename all affected files and
;; re-index them on all clients after synchronization.
;; Incorrect handling may result in messy page titles.
;; Available options:
;; - :triple-lowbar (default)
;; ;use triple underscore `___` for slash `/` in page title
;; ;use Percent-encoding for other invalid characters
:file/name-format :triple-lowbar
:journal/page-title-format "dd-MM-yyyy"
:graph/settings {:builtin-pages? true}}

View file

@ -0,0 +1,417 @@
{:meta/version 1
;; Set the preferred format.
;; Available options:
;; - Markdown (default)
;; - Org
;; :preferred-format "Markdown"
;; Set the preferred workflow style.
;; Available options:
;; - :now for NOW/LATER style (default)
;; - :todo for TODO/DOING style
:preferred-workflow :now
;; Exclude directories/files.
;; Example usage:
;; :hidden ["/archived" "/test.md" "../assets/archived"]
:hidden []
;; Define the default journal page template.
;; Enter the template name between the quotes.
:default-templates
{:journals ""}
;; Set a custom date format for the journal page title.
;; Default value: "MMM do, yyyy"
;; e.g., "Jan 19th, 2038"
;; Example usage e.g., "Tue 19th, Jan 2038"
;; :journal/page-title-format "EEE do, MMM yyyy"
;; Specify the journal filename format using a valid date format string.
;; !Warning:
;; This configuration is not retroactive and affects only new journals.
;; To show old journal files in the app, manually rename the files in the
;; journal directory to match the new format.
;; Default value: "yyyy_MM_dd"
;; :journal/file-name-format "yyyy_MM_dd"
;; Enable tooltip preview on hover.
;; Default value: true
:ui/enable-tooltip? true
;; Display brackets [[]] around page references.
;; Default value: true
;; :ui/show-brackets? true
;; Display all lines of a block when referencing ((block)).
;; Default value: false
:ui/show-full-blocks? false
;; Automatically expand block references when zooming in.
;; Default value: true
:ui/auto-expand-block-refs? true
;; Enable Block timestamps.
;; Default value: false
:feature/enable-block-timestamps? false
;; Disable accent marks when searching.
;; After changing this setting, rebuild the search index by pressing (^C ^S).
;; Default value: true
:feature/enable-search-remove-accents? true
;; Enable journals.
;; Default value: true
;; :feature/enable-journals? true
;; Enable flashcards.
;; Default value: true
;; :feature/enable-flashcards? true
;; Enable whiteboards.
;; Default value: true
;; :feature/enable-whiteboards? true
;; Disable the journal's built-in 'Scheduled tasks and deadlines' query.
;; Default value: false
;; :feature/disable-scheduled-and-deadline-query? false
;; Specify the number of days displayed in the future for
;; the 'scheduled tasks and deadlines' query.
;; Example usage:
;; Display all scheduled and deadline blocks for the next 14 days:
;; :scheduled/future-days 14
;; Default value: 7
;; :scheduled/future-days 7
;; Specify the first day of the week.
;; Available options:
;; - integer from 0 to 6 (Monday to Sunday)
;; Default value: 6 (Sunday)
:start-of-week 6
;; Specify a custom CSS import.
;; This option takes precedence over the local `logseq/custom.css` file.
;; Example usage:
;; :custom-css-url "@import url('https://cdn.jsdelivr.net/gh/dracula/logseq@master/custom.css');"
;; Specify a custom JS import.
;; This option takes precedence over the local `logseq/custom.js` file.
;; Example usage:
;; :custom-js-url "https://cdn.logseq.com/custom.js"
;; Set a custom Arweave gateway
;; Default gateway: https://arweave.net
;; :arweave/gateway "https://arweave.net"
;; Set bullet indentation when exporting
;; Available options:
;; - `:eight-spaces` as eight spaces
;; - `:four-spaces` as four spaces
;; - `:two-spaces` as two spaces
;; - `:tab` as a tab character (default)
;; :export/bullet-indentation :tab
;; Publish all pages within the Graph
;; Regardless of whether individual pages have been marked as public.
;; Default value: false
;; :publishing/all-pages-public? false
;; Define the default home page and sidebar status.
;; If unspecified, the journal page will be loaded on startup and the right sidebar will stay hidden.
;; The `:page` value represents the name of the page displayed at startup.
;; Available options for `:sidebar` are:
;; - "Contents" to display the Contents page in the right sidebar.
;; - A specific page name to display in the right sidebar.
;; - An array of multiple pages, e.g., ["Contents" "Page A" "Page B"].
;; If `:sidebar` remains unset, the right sidebar will stay hidden.
;; Examples:
;; 1. Set "Changelog" as the home page and display "Contents" in the right sidebar:
;; :default-home {:page "Changelog", :sidebar "Contents"}
;; 2. Set "Jun 3rd, 2021" as the home page without the right sidebar:
;; :default-home {:page "Jun 3rd, 2021"}
;; 3. Set "home" as the home page and display multiple pages in the right sidebar:
;; :default-home {:page "home", :sidebar ["Page A" "Page B"]}
;; Set the default location for storing notes.
;; Default value: "pages"
;; :pages-directory "pages"
;; Set the default location for storing journals.
;; Default value: "journals"
;; :journals-directory "journals"
;; Set the default location for storing whiteboards.
;; Default value: "whiteboards"
;; :whiteboards-directory "whiteboards"
;; Enabling this option converts
;; [[Grant Ideas]] to [[file:./grant_ideas.org][Grant Ideas]] for org-mode.
;; For more information, visit https://github.com/logseq/logseq/issues/672
;; :org-mode/insert-file-link? false
;; Configure custom shortcuts.
;; Syntax:
;; 1. + indicates simultaneous key presses, e.g., `Ctrl+Shift+a`.
;; 2. A space between keys represents key chords, e.g., `t s` means
;; pressing `t` followed by `s`.
;; 3. mod refers to `Ctrl` for Windows/Linux and `Command` for Mac.
;; 4. Use false to disable a specific shortcut.
;; 5. You can define multiple bindings for a single action, e.g., ["ctrl+j" "down"].
;; The full list of configurable shortcuts is available at:
;; https://github.com/logseq/logseq/blob/master/src/main/frontend/modules/shortcut/config.cljs
;; Example:
;; :shortcuts
;; {:editor/new-block "enter"
;; :editor/new-line "shift+enter"
;; :editor/insert-link "mod+shift+k"
;; :editor/highlight false
;; :ui/toggle-settings "t s"
;; :editor/up ["ctrl+k" "up"]
;; :editor/down ["ctrl+j" "down"]
;; :editor/left ["ctrl+h" "left"]
;; :editor/right ["ctrl+l" "right"]}
:shortcuts {}
;; Configure the behavior of pressing Enter in document mode.
;; if set to true, pressing Enter will create a new block.
;; Default value: false
:shortcut/doc-mode-enter-for-new-block? false
;; Block content larger than `block/content-max-length` will not be searchable
;; or editable for performance.
;; Default value: 10000
:block/content-max-length 10000
;; Display command documentation on hover.
;; Default value: true
:ui/show-command-doc? true
;; Display empty bullet points.
;; Default value: false
:ui/show-empty-bullets? false
;; Pre-defined :view function to use with advanced queries.
:query/views
{:pprint
(fn [r] [:pre.code (pprint r)])}
;; Advanced queries `:result-transform` function.
;; Transform the query result before displaying it.
:query/result-transforms
{:sort-by-priority
(fn [result] (sort-by (fn [h] (get h :block/priority "Z")) result))}
;; The following queries will be displayed at the bottom of today's journal page.
;; The "NOW" query returns tasks with "NOW" or "DOING" status.
;; The "NEXT" query returns tasks with "NOW", "LATER", or "TODO" status.
:default-queries
{:journals
[{:title "🔨 NOW"
:query [:find (pull ?h [*])
:in $ ?start ?today
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "DOING"} ?marker)]
[?h :block/page ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(>= ?d ?start)]
[(<= ?d ?today)]]
:inputs [:14d :today]
:result-transform (fn [result]
(sort-by (fn [h]
(get h :block/priority "Z")) result))
:group-by-page? false
:collapsed? false}
{:title "📅 NEXT"
:query [:find (pull ?h [*])
:in $ ?start ?next
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]
[?h :block/page ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(> ?d ?start)]
[(< ?d ?next)]]
:inputs [:today :7d-after]
:group-by-page? false
:collapsed? false}]}
;; Add custom commands to the command palette
;; Example usage:
;; :commands
;; [
;; ["js" "Javascript"]
;; ["md" "Markdown"]
;; ]
:commands []
;; Enable collapsing blocks with titles but no children.
;; By default, only blocks with children can be collapsed.
;; Setting `:outliner/block-title-collapse-enabled?` to true allows collapsing
;; blocks with titles (multiple lines) and content. For example:
;; - block title
;; block content
;; Default value: false
:outliner/block-title-collapse-enabled? false
;; Macros replace texts and will make you more productive.
;; Example usage:
;; Change the :macros value below to:
;; {"poem" "Rose is $1, violet's $2. Life's ordered: Org assists you."}
;; input "{{poem red,blue}}"
;; becomes
;; Rose is red, violet's blue. Life's ordered: Org assists you.
:macros {}
;; Configure the default expansion level for linked references.
;; For example, consider the following block hierarchy:
;; - a [[page]] (level 1)
;; - b (level 2)
;; - c (level 3)
;; - d (level 4)
;;
;; With the default value of level 2, block b will be collapsed.
;; If the level's value is set to 3, block c will be collapsed.
;; Default value: 2
:ref/default-open-blocks-level 2
;; Configure the threshold for linked references before collapsing.
;; Default value: 100
:ref/linked-references-collapsed-threshold 50
;; Graph view configuration.
;; Example usage:
;; :graph/settings
;; {:orphan-pages? true ; Default value: true
;; :builtin-pages? false ; Default value: false
;; :excluded-pages? false ; Default value: false
;; :journal? false} ; Default value: false
;; Favorites to list on the left sidebar
:favorites []
;; Set flashcards interval.
;; Expected value:
;; - Float between 0 and 1
;; higher values result in faster changes to the next review interval.
;; Default value: 0.5
;; :srs/learning-fraction 0.5
;; Set the initial interval after the first successful review of a card.
;; Default value: 4
;; :srs/initial-interval 4
;; Hide specific block properties.
;; Example usage:
;; :block-hidden-properties #{:public :icon}
;; Create a page for all properties.
;; Default value: true
:property-pages/enabled? true
;; Properties to exclude from having property pages
;; Example usage:
;; :property-pages/excludelist #{:duration :author}
;; By default, property value separated by commas will not be treated as
;; page references. You can add properties to enable it.
;; Example usage:
;; :property/separated-by-commas #{:alias :tags}
;; Properties that are ignored when parsing property values for references
;; Example usage:
;; :ignored-page-references-keywords #{:author :website}
;; logbook configuration.
;; :logbook/settings
;; {:with-second-support? false ;limit logbook to minutes, seconds will be eliminated
;; :enabled-in-all-blocks true ;display logbook in all blocks after timetracking
;; :enabled-in-timestamped-blocks false ;don't display logbook at all
;; }
;; Mobile photo upload configuration.
;; :mobile/photo
;; {:allow-editing? true
;; :quality 80}
;; Mobile features options
;; Gestures
;; Example usage:
;; :mobile
;; {:gestures/disabled-in-block-with-tags ["kanban"]}
;; Extra CodeMirror options
;; See https://codemirror.net/5/doc/manual.html#config for possible options
;; Example usage:
;; :editor/extra-codemirror-options
;; {:lineWrapping false ; Default value: false
;; :lineNumbers true ; Default value: true
;; :readOnly false} ; Default value: false
;; Enable logical outdenting
;; Default value: false
;; :editor/logical-outdenting? false
;; Prefer pasting the file when text and a file are in the clipboard.
;; Default value: false
;; :editor/preferred-pasting-file? false
;; Quick capture templates for receiving content from other apps.
;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded
;; by receiving content from other apps. Note: the {} cannot be omitted.
;; - {time}: capture time
;; - {date}: capture date using current date format, use `[[{date}]]` to get a page reference
;; - {text}: text that users selected before sharing.
;; - {url}: URL or assets path for media files stored in Logseq.
;; You can also reorder them or use only one or two of them in the template.
;; You can also insert or format any text in the template, as shown in the following examples.
;; :quick-capture-templates
;; {:text "[[quick capture]] **{time}**: {text} from {url}"
;; :media "[[quick capture]] **{time}**: {url}"}
;; Quick capture options.
;; - insert-today? Insert the capture at the end of today's journal page (boolean).
;; - redirect-page? Redirect to the quick capture page after capturing (boolean).
;; - default-page The default page to capture to if insert-today? is false (string).
;; :quick-capture-options
;; {:insert-today? false ;; Default value: true
;; :redirect-page? false ;; Default value: false
;; :default-page "quick capture"} ;; Default page: "quick capture"
;; File sync options
;; Ignore these files when syncing, regexp is supported.
;; :file-sync/ignore-files []
;; Configure the Enter key behavior for
;; context-aware editing with DWIM (Do What I Mean).
;; context-aware Enter key behavior implies that pressing Enter will
;; have different outcomes based on the context.
;; For instance, pressing Enter within a list generates a new list item,
;; whereas pressing Enter in a block reference opens the referenced block.
;; :dwim/settings
;; {:admonition&src? true ;; Default value: true
;; :markup? false ;; Default value: false
;; :block-ref? true ;; Default value: true
;; :page-ref? true ;; Default value: true
;; :properties? true ;; Default value: true
;; :list? false} ;; Default value: false
;; Configure the escaping method for special characters in page titles.
;; Warning:
;; This is a dangerous operation. To modify the setting,
;; access the 'Filename format' setting and follow the instructions.
;; Otherwise, You may need to manually rename all affected files and
;; re-index them on all clients after synchronization.
;; Incorrect handling may result in messy page titles.
;; Available options:
;; - :triple-lowbar (default)
;; ;use triple underscore `___` for slash `/` in page title
;; ;use Percent-encoding for other invalid characters
:file/name-format :triple-lowbar
:journal/page-title-format "dd-MM-yyyy"
:graph/settings {:builtin-pages? false
:excluded-pages? false}}

417
logseq/config.edn Normal file
View file

@ -0,0 +1,417 @@
{:meta/version 1
;; Set the preferred format.
;; Available options:
;; - Markdown (default)
;; - Org
;; :preferred-format "Markdown"
;; Set the preferred workflow style.
;; Available options:
;; - :now for NOW/LATER style (default)
;; - :todo for TODO/DOING style
:preferred-workflow :now
;; Exclude directories/files.
;; Example usage:
;; :hidden ["/archived" "/test.md" "../assets/archived"]
:hidden []
;; Define the default journal page template.
;; Enter the template name between the quotes.
:default-templates
{:journals ""}
;; Set a custom date format for the journal page title.
;; Default value: "MMM do, yyyy"
;; e.g., "Jan 19th, 2038"
;; Example usage e.g., "Tue 19th, Jan 2038"
;; :journal/page-title-format "EEE do, MMM yyyy"
;; Specify the journal filename format using a valid date format string.
;; !Warning:
;; This configuration is not retroactive and affects only new journals.
;; To show old journal files in the app, manually rename the files in the
;; journal directory to match the new format.
;; Default value: "yyyy_MM_dd"
;; :journal/file-name-format "yyyy_MM_dd"
;; Enable tooltip preview on hover.
;; Default value: true
:ui/enable-tooltip? true
;; Display brackets [[]] around page references.
;; Default value: true
;; :ui/show-brackets? true
;; Display all lines of a block when referencing ((block)).
;; Default value: false
:ui/show-full-blocks? false
;; Automatically expand block references when zooming in.
;; Default value: true
:ui/auto-expand-block-refs? true
;; Enable Block timestamps.
;; Default value: false
:feature/enable-block-timestamps? false
;; Disable accent marks when searching.
;; After changing this setting, rebuild the search index by pressing (^C ^S).
;; Default value: true
:feature/enable-search-remove-accents? true
;; Enable journals.
;; Default value: true
;; :feature/enable-journals? true
;; Enable flashcards.
;; Default value: true
;; :feature/enable-flashcards? true
;; Enable whiteboards.
;; Default value: true
;; :feature/enable-whiteboards? true
;; Disable the journal's built-in 'Scheduled tasks and deadlines' query.
;; Default value: false
;; :feature/disable-scheduled-and-deadline-query? false
;; Specify the number of days displayed in the future for
;; the 'scheduled tasks and deadlines' query.
;; Example usage:
;; Display all scheduled and deadline blocks for the next 14 days:
;; :scheduled/future-days 14
;; Default value: 7
;; :scheduled/future-days 7
;; Specify the first day of the week.
;; Available options:
;; - integer from 0 to 6 (Monday to Sunday)
;; Default value: 6 (Sunday)
:start-of-week 6
;; Specify a custom CSS import.
;; This option takes precedence over the local `logseq/custom.css` file.
;; Example usage:
;; :custom-css-url "@import url('https://cdn.jsdelivr.net/gh/dracula/logseq@master/custom.css');"
;; Specify a custom JS import.
;; This option takes precedence over the local `logseq/custom.js` file.
;; Example usage:
;; :custom-js-url "https://cdn.logseq.com/custom.js"
;; Set a custom Arweave gateway
;; Default gateway: https://arweave.net
;; :arweave/gateway "https://arweave.net"
;; Set bullet indentation when exporting
;; Available options:
;; - `:eight-spaces` as eight spaces
;; - `:four-spaces` as four spaces
;; - `:two-spaces` as two spaces
;; - `:tab` as a tab character (default)
;; :export/bullet-indentation :tab
;; Publish all pages within the Graph
;; Regardless of whether individual pages have been marked as public.
;; Default value: false
;; :publishing/all-pages-public? false
;; Define the default home page and sidebar status.
;; If unspecified, the journal page will be loaded on startup and the right sidebar will stay hidden.
;; The `:page` value represents the name of the page displayed at startup.
;; Available options for `:sidebar` are:
;; - "Contents" to display the Contents page in the right sidebar.
;; - A specific page name to display in the right sidebar.
;; - An array of multiple pages, e.g., ["Contents" "Page A" "Page B"].
;; If `:sidebar` remains unset, the right sidebar will stay hidden.
;; Examples:
;; 1. Set "Changelog" as the home page and display "Contents" in the right sidebar:
;; :default-home {:page "Changelog", :sidebar "Contents"}
;; 2. Set "Jun 3rd, 2021" as the home page without the right sidebar:
;; :default-home {:page "Jun 3rd, 2021"}
;; 3. Set "home" as the home page and display multiple pages in the right sidebar:
;; :default-home {:page "home", :sidebar ["Page A" "Page B"]}
;; Set the default location for storing notes.
;; Default value: "pages"
;; :pages-directory "pages"
;; Set the default location for storing journals.
;; Default value: "journals"
;; :journals-directory "journals"
;; Set the default location for storing whiteboards.
;; Default value: "whiteboards"
;; :whiteboards-directory "whiteboards"
;; Enabling this option converts
;; [[Grant Ideas]] to [[file:./grant_ideas.org][Grant Ideas]] for org-mode.
;; For more information, visit https://github.com/logseq/logseq/issues/672
;; :org-mode/insert-file-link? false
;; Configure custom shortcuts.
;; Syntax:
;; 1. + indicates simultaneous key presses, e.g., `Ctrl+Shift+a`.
;; 2. A space between keys represents key chords, e.g., `t s` means
;; pressing `t` followed by `s`.
;; 3. mod refers to `Ctrl` for Windows/Linux and `Command` for Mac.
;; 4. Use false to disable a specific shortcut.
;; 5. You can define multiple bindings for a single action, e.g., ["ctrl+j" "down"].
;; The full list of configurable shortcuts is available at:
;; https://github.com/logseq/logseq/blob/master/src/main/frontend/modules/shortcut/config.cljs
;; Example:
;; :shortcuts
;; {:editor/new-block "enter"
;; :editor/new-line "shift+enter"
;; :editor/insert-link "mod+shift+k"
;; :editor/highlight false
;; :ui/toggle-settings "t s"
;; :editor/up ["ctrl+k" "up"]
;; :editor/down ["ctrl+j" "down"]
;; :editor/left ["ctrl+h" "left"]
;; :editor/right ["ctrl+l" "right"]}
:shortcuts {}
;; Configure the behavior of pressing Enter in document mode.
;; if set to true, pressing Enter will create a new block.
;; Default value: false
:shortcut/doc-mode-enter-for-new-block? false
;; Block content larger than `block/content-max-length` will not be searchable
;; or editable for performance.
;; Default value: 10000
:block/content-max-length 10000
;; Display command documentation on hover.
;; Default value: true
:ui/show-command-doc? true
;; Display empty bullet points.
;; Default value: false
:ui/show-empty-bullets? false
;; Pre-defined :view function to use with advanced queries.
:query/views
{:pprint
(fn [r] [:pre.code (pprint r)])}
;; Advanced queries `:result-transform` function.
;; Transform the query result before displaying it.
:query/result-transforms
{:sort-by-priority
(fn [result] (sort-by (fn [h] (get h :block/priority "Z")) result))}
;; The following queries will be displayed at the bottom of today's journal page.
;; The "NOW" query returns tasks with "NOW" or "DOING" status.
;; The "NEXT" query returns tasks with "NOW", "LATER", or "TODO" status.
:default-queries
{:journals
[{:title "🔨 NOW"
:query [:find (pull ?h [*])
:in $ ?start ?today
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "DOING"} ?marker)]
[?h :block/page ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(>= ?d ?start)]
[(<= ?d ?today)]]
:inputs [:14d :today]
:result-transform (fn [result]
(sort-by (fn [h]
(get h :block/priority "Z")) result))
:group-by-page? false
:collapsed? false}
{:title "📅 NEXT"
:query [:find (pull ?h [*])
:in $ ?start ?next
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]
[?h :block/page ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(> ?d ?start)]
[(< ?d ?next)]]
:inputs [:today :7d-after]
:group-by-page? false
:collapsed? false}]}
;; Add custom commands to the command palette
;; Example usage:
;; :commands
;; [
;; ["js" "Javascript"]
;; ["md" "Markdown"]
;; ]
:commands []
;; Enable collapsing blocks with titles but no children.
;; By default, only blocks with children can be collapsed.
;; Setting `:outliner/block-title-collapse-enabled?` to true allows collapsing
;; blocks with titles (multiple lines) and content. For example:
;; - block title
;; block content
;; Default value: false
:outliner/block-title-collapse-enabled? false
;; Macros replace texts and will make you more productive.
;; Example usage:
;; Change the :macros value below to:
;; {"poem" "Rose is $1, violet's $2. Life's ordered: Org assists you."}
;; input "{{poem red,blue}}"
;; becomes
;; Rose is red, violet's blue. Life's ordered: Org assists you.
:macros {}
;; Configure the default expansion level for linked references.
;; For example, consider the following block hierarchy:
;; - a [[page]] (level 1)
;; - b (level 2)
;; - c (level 3)
;; - d (level 4)
;;
;; With the default value of level 2, block b will be collapsed.
;; If the level's value is set to 3, block c will be collapsed.
;; Default value: 2
:ref/default-open-blocks-level 2
;; Configure the threshold for linked references before collapsing.
;; Default value: 100
:ref/linked-references-collapsed-threshold 50
;; Graph view configuration.
;; Example usage:
;; :graph/settings
;; {:orphan-pages? true ; Default value: true
;; :builtin-pages? false ; Default value: false
;; :excluded-pages? false ; Default value: false
;; :journal? false} ; Default value: false
;; Favorites to list on the left sidebar
:favorites []
;; Set flashcards interval.
;; Expected value:
;; - Float between 0 and 1
;; higher values result in faster changes to the next review interval.
;; Default value: 0.5
;; :srs/learning-fraction 0.5
;; Set the initial interval after the first successful review of a card.
;; Default value: 4
;; :srs/initial-interval 4
;; Hide specific block properties.
;; Example usage:
;; :block-hidden-properties #{:public :icon}
;; Create a page for all properties.
;; Default value: true
:property-pages/enabled? true
;; Properties to exclude from having property pages
;; Example usage:
;; :property-pages/excludelist #{:duration :author}
;; By default, property value separated by commas will not be treated as
;; page references. You can add properties to enable it.
;; Example usage:
;; :property/separated-by-commas #{:alias :tags}
;; Properties that are ignored when parsing property values for references
;; Example usage:
;; :ignored-page-references-keywords #{:author :website}
;; logbook configuration.
;; :logbook/settings
;; {:with-second-support? false ;limit logbook to minutes, seconds will be eliminated
;; :enabled-in-all-blocks true ;display logbook in all blocks after timetracking
;; :enabled-in-timestamped-blocks false ;don't display logbook at all
;; }
;; Mobile photo upload configuration.
;; :mobile/photo
;; {:allow-editing? true
;; :quality 80}
;; Mobile features options
;; Gestures
;; Example usage:
;; :mobile
;; {:gestures/disabled-in-block-with-tags ["kanban"]}
;; Extra CodeMirror options
;; See https://codemirror.net/5/doc/manual.html#config for possible options
;; Example usage:
;; :editor/extra-codemirror-options
;; {:lineWrapping false ; Default value: false
;; :lineNumbers true ; Default value: true
;; :readOnly false} ; Default value: false
;; Enable logical outdenting
;; Default value: false
;; :editor/logical-outdenting? false
;; Prefer pasting the file when text and a file are in the clipboard.
;; Default value: false
;; :editor/preferred-pasting-file? false
;; Quick capture templates for receiving content from other apps.
;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded
;; by receiving content from other apps. Note: the {} cannot be omitted.
;; - {time}: capture time
;; - {date}: capture date using current date format, use `[[{date}]]` to get a page reference
;; - {text}: text that users selected before sharing.
;; - {url}: URL or assets path for media files stored in Logseq.
;; You can also reorder them or use only one or two of them in the template.
;; You can also insert or format any text in the template, as shown in the following examples.
;; :quick-capture-templates
;; {:text "[[quick capture]] **{time}**: {text} from {url}"
;; :media "[[quick capture]] **{time}**: {url}"}
;; Quick capture options.
;; - insert-today? Insert the capture at the end of today's journal page (boolean).
;; - redirect-page? Redirect to the quick capture page after capturing (boolean).
;; - default-page The default page to capture to if insert-today? is false (string).
;; :quick-capture-options
;; {:insert-today? false ;; Default value: true
;; :redirect-page? false ;; Default value: false
;; :default-page "quick capture"} ;; Default page: "quick capture"
;; File sync options
;; Ignore these files when syncing, regexp is supported.
;; :file-sync/ignore-files []
;; Configure the Enter key behavior for
;; context-aware editing with DWIM (Do What I Mean).
;; context-aware Enter key behavior implies that pressing Enter will
;; have different outcomes based on the context.
;; For instance, pressing Enter within a list generates a new list item,
;; whereas pressing Enter in a block reference opens the referenced block.
;; :dwim/settings
;; {:admonition&src? true ;; Default value: true
;; :markup? false ;; Default value: false
;; :block-ref? true ;; Default value: true
;; :page-ref? true ;; Default value: true
;; :properties? true ;; Default value: true
;; :list? false} ;; Default value: false
;; Configure the escaping method for special characters in page titles.
;; Warning:
;; This is a dangerous operation. To modify the setting,
;; access the 'Filename format' setting and follow the instructions.
;; Otherwise, You may need to manually rename all affected files and
;; re-index them on all clients after synchronization.
;; Incorrect handling may result in messy page titles.
;; Available options:
;; - :triple-lowbar (default)
;; ;use triple underscore `___` for slash `/` in page title
;; ;use Percent-encoding for other invalid characters
:file/name-format :triple-lowbar
:journal/page-title-format "dd-MM-yyyy"
:graph/settings {:builtin-pages? false
:excluded-pages? true}}

0
logseq/custom.css Normal file
View file

1
pages/contents.md Normal file
View file

@ -0,0 +1 @@
-

View file

@ -0,0 +1,34 @@
- Задачи
- Методологическая задача
- Самостоятельное решение
- Найти способы выхода из сложных ситуаций
- Ценностно-орентированная задача
- Объяснить самому себе, что хорошо и что плохо
- Сформировать мировознание
- "Преграда от внешнего мира" - нельзя ограничивать
- Блоки
- Преграды
- То что не даёт загленуть за часть твоей жизни
- Есть счастье в других вещах
- DONE Узнать у неё подробности
:LOGBOOK:
CLOCK: [2023-10-28 Sat 00:11:22]--[2023-10-28 Sat 00:11:23] => 00:00:01
CLOCK: [2023-10-28 Sat 00:11:28]--[2023-10-28 Sat 00:11:29] => 00:00:01
CLOCK: [2023-10-28 Sat 00:11:30]--[2023-10-28 Sat 00:11:31] => 00:00:01
CLOCK: [2023-10-28 Sat 00:11:32]--[2023-10-28 Sat 00:11:33] => 00:00:01
CLOCK: [2023-10-28 Sat 00:11:40]
CLOCK: [2023-10-28 Sat 00:15:42]--[2023-10-28 Sat 00:15:42] => 00:00:00
:END:
- "Блоки" - неправильные приоритеты
- Нужно отказаться от навязанных преград, и с помощью размышлений сформировать свой мир
- Все так делают, и я так буду
- Навязанные обществом мысли
-
- Вывод
- Задача философии - "Найти способ быть счастливым в мире, где от нас ничего не зависит" Эпикур
-
-
- Титульный
- Биография
- Учение 2-3
- Знаминитые цитаты

View file

@ -0,0 +1,6 @@
- [[Философы/Сократ]]
- [[Философы/Платон]]
- [[Философы/Аристотель]]
- Почему классика? Именно тогда было актуально/было время
- Философия личности
- Время учиников и учителей

View file

@ -0,0 +1,14 @@
- Философия
- Наука о наиболее общих законах развития природы, общества, познаний
- Объект исследования
- Самажизнь и всё что её окружает
- Предмет исследования
- Поиск человека в мире, соотношения мира и человека, смысл краткого пребывания человека в бесконечном мире
- Рациональность
- Ощущения
- Восприятие
- Представление
- Нерациональность
- Понятие
- Утверждение
- Умозаключение

View file

@ -0,0 +1,14 @@
- Науки
- [[Понятия/Гносеология]]
- [[Практика/Пракселогия]]
- [[Практика/Аксиолгия]]
- [[Практика/Антропология]]
- [[Практика/Этика]]
- Формы мышления
- Игра
- Учёба
- Труд
- Отдых
- Вывод
- Структура философии
- Говорит о многогранности. Преступник философии - считают человека, который в пустую тратит время

View file

@ -0,0 +1,10 @@
- Индия
- [[Учения/Буддизм]]
- Китай
- [[Учения/Конфуцианство]]
- [[Учения/Даосизм]]
- Европа
- Основные цивилизации
- Греция
- Рим
- [[Конспекты/Классическая Философия]]

View file

@ -0,0 +1,5 @@
- Описывает как человек проходит жизнь от ребёнка до взрослого
- Этапы
- [[Понятия/Миф]]
- [[Понятия/Вера]]
- [[Понятия/Наука]]

View file

@ -0,0 +1,3 @@
- Перенесение человеком своих личных качеств на весь предметный окружающий мир
- Примеры
- "Месяца нет на небе, потому что он ушёл в гости"

View file

@ -0,0 +1,2 @@
- Душа индивидуальная
- TODO Уточнить

View file

@ -0,0 +1,3 @@
- Религия
- Что-то сверхъестественное
- В рамках причинно-следственного понимания не может быть объяснена

View file

@ -0,0 +1,16 @@
- Естественный закон самих вещей, который вместе с субстанцией [[Понятия/Ци]] составляет основу мира.
background-color:: yellow
- Главная идея Лао-Дзы состоит в том, что жизнь природы и людей не управляется "волей неба", а протекает по определенному пути - Дао
background-color:: red
- Человек
- В Даосизме, даосские мудрецы представляли человека - как сосуд для энергии Дао
- TODO спросить что такое "энергия Дао"
- Неотьемлимая часть мира
- Сам как отдельный мир
- Чтобы достичь полного слияния с первоосновой, человеку следует раствориться в окружающем мире, природе, вернуться к наивному восприятию, как у ребенка
- Любые жизненные, общественные и культурные ценности воспринимались ими как относительными.
- В потоке Дао они меняются
- Ничего не имеет значения. Всё является временным явлением и между ними нет никакой разницы.
- => Не нужно тратить внимания на достижение богатства, успеха, почитания в обществе.
- TODO Узнать что точно имеется ввиду. Нигилизм? Как развиваться если ничего не стоит внимания.
- TODO Можно ли назвать Дао - богом?

View file

@ -0,0 +1 @@
- Судьба, воздаяние

View file

@ -0,0 +1,5 @@
- В жизни ребёнка
- Игрушки
- Герои
- И т.п.
- Также относиться к [[Понятия/Антропоморфизм]]

View file

@ -0,0 +1 @@
- Состояние прекращения всех желаний

View file

@ -0,0 +1 @@
- Круговорот перевоплощений

View file

@ -0,0 +1,8 @@
- Идеал для даоссиских философов
- Простота и естественность
- Недеяние
- Не означает отказа от любых видов деятельности.
- Действия человека должны носить рациональный и целенаправленный характер.
- Человек должен подчиняться
- Интуиции
- Природе или естественному течению [[Понятия/Дао]]

View file

@ -0,0 +1,5 @@
- В [[Учения/Конфуцианство]]
- Зло
- Общественное существо
- В [[Учения/Даосизм]]
- сосуд наполненный энергией [[Понятия/Дао]]

View file

@ -0,0 +1 @@
- Учение о человеке

View file

@ -0,0 +1,4 @@
- Учение о нравственном поведении
- TODO Учение? Точно ли? Кто учит этому учению? Кто основопологатель?
- TODO Что такое нравы и нравственное поведение?
-

View file

@ -0,0 +1,4 @@
- Метод задавания вопросов в диалоге где вопросы не предпологали готовых ответов
-
- Пример
- Красивая девушка? Да. Горшок красивый? Да. Но это же ведь разные вещи. Тогда объясни что ты считаешь красивым

View file

@ -0,0 +1,21 @@
- Начало
- 6 век до н.э.
- Основоположник
- Сиддхарта Гаутама (Будда)
- [[Понятия/Нирвана]]
- [[Понятия/Сансара]]
- [[Понятия/Карма]]
- [[Понятия/Атман]]
- [[Понятия/Реинкарнация]]
- Медитация
- TODO Добавить больше
- Мудрые высказывания
- Всякая усиленная привязанность ко всему земному - страдание.
- Спокойствие находится внутри вас. Не ищите его вовне.
- Отвечайте всегда только добром, только так можно сделать этот мир лучше. Отвечайте добром или не отвечайте никак. Если вы отвечаете злом на зло, то зла становится больше.
- Даже разумный человек будет глупеть, если он не будет самосовершенствоваться.
- Весь секрет существования заключается в избавлении от страхов. Не бойся того, что с тобой будет, твоё будущее от этого не изменится, зато настоящее станет спокойным.
- Думать, что кто-то другой может сделать тебя счастливым или несчастным, - просто смешно.
- Вы сами, как никто другой во всей вселенной, заслуживаете своей любви и преданности.
- Тот можето, кто думает, что может.
- Всё, что мы есть - это результат наших мыслей.

View file

@ -0,0 +1,13 @@
- Основатель
- Лао-цзы
- Начало
- 4-5 в. до н.э.
- Учение о пути
- [[Понятия/Дао]]
- [[Понятия/Инь и Ян]]
- [[Понятия/У Вэй]]
- Мудрые высказывания
- Даосская причта: мудрыйц не воюет ни с кем. Если у него есть враг, он не станет его убивать. Он сядет на берегу и будет ждать, пока труп врага сам не проплывёт мимо него.
- Хочешь узнать человека? Тогда задень его. Человек - это сосуд. Чем наполнен, то и начнет выплескиваться из него.
- Цель
- Гармоничное слияние человека с природой, согласие с окружающим миром, приносящие удовлетворение и покой.

View file

@ -0,0 +1,31 @@
- Основопологатель
- Конфуций
- Начало
- 6-5 век до н.э.
- Принципы
- Ли
- Соблюдение древних традиций и ритуалов
- Сяо
- Почитание предков, старших, иерархичность социальных отношений
- Послушание
- Самосовершенствование
- Субординация
- Семья - образец для государства
- Стремление к знания - высшая добродеятель человека
- [[Понятия/Гуманность]]
- Чжун
- Преданность
- Покорность
- Мудрые высказывания
- Выберите себе работу по душе, и вам не придется работать ни одного дня в своей жизни.
- Можно всю жизнь проклинать темноту, а можно зажечь маленькую свечку.
- Когда тебе плохо - прислушайся к природе. Тишина мира успокаивает лучше, чем миллионы ненужных слов.
- Человек
- Зло
- Общественное существо
- Книга "Беседы и суждения"
- 4 зла
- Жестокость
- Грубость
- Разбой
- Жадность

View file

@ -0,0 +1,17 @@
- 3 век до н.э
- Учился у Платона [[Философы/Платон]]
- Не всё нравилось
- "Платон мне друг, но истинна дороже"
- Учиники
- Александр Македонский
- Другой мир (они одинаковые)
- TODO Уточнить про одинаковость миров
- Мир формы
- Как я выгляжу
- Мир материи
- Из чего я состою
- Я вижу только мир материи, когда смотрю на людей
- Вы являетесь только тем, кем вы являетесь в мире материи
- Основа: TODO
- Реализм
- Учение о душе TODO

View file

@ -0,0 +1,27 @@
- Учиник у Сократа
- Спасал его, но он не поддался его уговорам и он обиделся
- 4 век до н.э
- Ушёл из полиса после смерти сократа и потом пришёл в Афины
- Когда он основал свою школу, на арке написал "всяки входящий сюда, должен знать геометрию"
- Идеализм
- Создаёт два мира
- Мир вещей
- Изменчив
- И конечен
- Мир идей
- Вечен
- Идеален
- Мать искуства
- Записывал за Сократом мысли
- Миф о Пещере
- TODO дописать как будут показывать презентацию
- Книга "Диалоги"
- Продается
- Диалоги Сократа
- Учение о припоменаннии
- Пример
- Поставьте бутылку с водой, молоком и пиву
- Толкните маленького ребенка, и он *обидиться*
- Учение о припоменаннии TODO переупорядочить
- Существует знания из прошлых жизний, которые забываются
- Человек припоменает только то, что знал в прошлей жизни

View file

@ -0,0 +1,47 @@
- Жил и трудился в 5веке до н.э
- Нужно обратить внимание на самого себя
- Жил во времена [[Философы/Софисты]], благодаря которым формируются различные навыки
- Не записывал свои мысли
- Тройной фильтр
- Правда
- Отрицательность
- Полезность
- Заточка на истину
- Правила трех да (знаминит этим)
- Когда мы заставляем отвечать человека на наши вопросы да
- Второй раз да
- Третий раз когда отвечает да, то ему трудно отказаться после
- Майевтика
- (метод сократа)
- Суть
- Очень любил разговаривать с людьми с помощью [[Сократический диалог]]
- Самопознание
- Зная себя, у тебя будет меньше конфликтных ситуаций
- "Я знаю, что ничего не знаю"
- Пример с кругом знаний
- Сократ очерчивает круг знаний, который человек пользуется (узкий круг)
- С помощью вопросов человкк выходит за рамки этого кругов, то другой круг становится ещё больше.
- Пересечение этих кругов это и есть истинные знания
- Опасность
- С вас спрашивают только то, что вы знаете
- Кто первый президент? Сталин, Ельцин, ...
- Это как раз и есть пересечение
- Рамки знаний
- Тестовая система
- Корона
- Трудно внедрить новые знания
- Можно внедрить новые знания только когда человек понимает что он ничего не понимает
- Добро есть истина
- Добро есть знания
- Зло есть не знание
- Моральное невежество порождает зло
- Жена
- Почему не разведешься?
- Всё что я знаю, я знаю благодаря ей
- Повезет с женой, будешь счастлив. Не повезет - станешь философом
- Закрыли в тюрьме
- Так как говорил, что молодёжь не должна слушать старших
- Ибо она познаёт по другому
- Богохульство
- Повторный суд oassis foundation
-

View file

@ -0,0 +1,15 @@
- Четверостишься
- про мужчины и женщину
- В судах
- В политиках
- "Хитрая уловка"
- Доказательство завежомо абсурдных положений
- Учили
- Риторика
- Чтение
- Счёту
- Подстравиать правду как им надо
- "Человек есть мера всех вещей" Протогор
- Всё в мире относительно (релативизм)
- [[Философы/Сократ]] боролся с ним
-

View file

@ -0,0 +1,416 @@
{:blocks (
{:block/created-at 1698521400398
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 0
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 70 0.5] [1 69 0.5] [2 69 0.5] [3 70 0.5] [5 71 0.5] [11 72 0.5] [19 71 0.5] [29 72 0.5] [42 72 0.5] [53 71 0.5] [62 70 0.5] [73 69 0.5] [80 68 0.5] [86 66 0.5] [93 64 0.5] [100 62 0.5] [111 58 0.5] [118 55 0.5] [123 53 0.5] [127 51 0.5] [133 48 0.5] [138 45 0.5] [145 42 0.5] [152 38 0.5] [156 35 0.5] [160 32 0.5] [162 30 0.5] [163 28 0.5] [168 25 0.5] [174 21 0.5] [177 18 0.5] [180 16 0.5] [181 15 0.5] [180 15 0.5] [182 13 0.5] [187 8 0.5] [188 7 0.5] [189 6 0.5] [190 4 0.5] [192 1 0.5] [192 0 0.5] [193 0 0.5] [193 1 0.5] [193 0 0.5] [193 1 0.5] [193 0 0.5] [193 1 0.5] [192 1 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "615ce150-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [588.5 588.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521398294
:isComplete true}}
:block/updated-at 1698521400398}
{:block/created-at 1698521401079
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 1
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[27 0 0.5] [25 0 0.5] [24 0 0.5] [22 0 0.5] [16 2 0.5] [13 3 0.5] [10 4 0.5] [8 4 0.5] [6 5 0.5] [3 6 0.5] [0 7 0.5] [1 7 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "624e1f20-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [753.5 589.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521399839
:isComplete true}}
:block/updated-at 1698521401079}
{:block/created-at 1698521404834
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 2
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 1 0.5] [0 0 0.5] [0 1 0.5] [0 4 0.5] [1 10 0.5] [3 14 0.5] [5 19 0.5] [7 24 0.5] [9 28 0.5] [10 30 0.5] [11 31 0.5] [12 31 0.5] [11 31 0.5] [12 31 0.5] [11 31 0.5] [12 31 0.5] [11 31 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "62bb38d0-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [782.5 586.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521400559
:isComplete true}}
:block/updated-at 1698521404834}
{:block/created-at 1698521405606
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 3
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 0 0.5] [0 5 0.5] [1 12 0.5] [2 21 0.5] [3 32 0.5] [4 41 0.5] [5 47 0.5] [5 56 0.5] [4 63 0.5] [5 69 0.5] [5 70 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "65021b90-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [625.5 463.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521404374
:isComplete true}}
:block/updated-at 1698521405606}
{:block/created-at 1698521406553
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 4
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 9 0.5] [1 9 0.5] [7 7 0.5] [15 5 0.5] [22 3 0.5] [31 2 0.5] [39 0 0.5] [45 0 0.5] [47 0 0.5] [48 0 0.5] [49 0 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "65746560-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [604.5 459.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521405122
:isComplete true}}
:block/updated-at 1698521406553}
{:block/created-at 1698521407249
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 5
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 0 0.5] [0 3 0.5] [0 8 0.5] [0 14 0.5] [2 24 0.5] [3 36 0.5] [3 48 0.5] [4 57 0.5] [5 61 0.5] [5 60 0.5] [3 59 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "660cfbe0-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [678.5 463.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521406122
:isComplete true}}
:block/updated-at 1698521407249}
{:block/created-at 1698521407954
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 6
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 1 0.5] [1 1 0.5] [4 0 0.5] [8 0 0.5] [14 0 0.5] [16 0 0.5] [18 0 0.5] [22 0 0.5] [24 0 0.5] [27 0 0.5] [28 0 0.5] [29 0 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "66766c10-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [676.5 466.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521406814
:isComplete true}}
:block/updated-at 1698521407954}
{:block/created-at 1698521408706
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 7
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 0 0.5] [1 0 0.5] [4 0 0.5] [8 0 0.5] [13 0 0.5] [16 0 0.5] [18 0 0.5] [22 0 0.5] [24 0 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "66dd6b40-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [686.5 497.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521407487
:isComplete true}}
:block/updated-at 1698521408706}
{:block/created-at 1698521410098
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 8
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 7 0.5] [2 7 0.5] [5 6 0.5] [8 6 0.5] [10 6 0.5] [13 5 0.5] [19 4 0.5] [25 3 0.5] [32 2 0.5] [40 1 0.5] [46 0 0.5] [47 0 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "67575630-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [683.5 513.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521408288
:isComplete true}}
:block/updated-at 1698521410098}
{:block/created-at 1698521410988
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 9
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[22 0 0.5] [19 1 0.5] [18 1 0.5] [16 2 0.5] [15 3 0.5] [15 2 0.5] [12 3 0.5] [10 4 0.5] [6 7 0.5] [5 8 0.5] [3 10 0.5] [2 13 0.5] [0 16 0.5] [0 19 0.5] [0 23 0.5] [0 26 0.5] [1 28 0.5] [2 30 0.5] [4 34 0.5] [6 36 0.5] [8 37 0.5] [9 38 0.5] [11 40 0.5] [13 43 0.5] [16 45 0.5] [18 47 0.5] [19 49 0.5] [20 51 0.5] [21 52 0.5] [18 53 0.5] [17 54 0.5] [15 55 0.5] [14 55 0.5] [13 55 0.5] [10 56 0.5] [8 57 0.5] [6 57 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "67d44e60-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [739.5 471.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521409132
:isComplete true}}
:block/updated-at 1698521410988}
{:block/created-at 1698521411588
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 10
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[2 0 0.5] [2 2 0.5] [0 12 0.5] [0 18 0.5] [1 26 0.5] [1 34 0.5] [1 42 0.5] [1 48 0.5] [1 53 0.5] [0 55 0.5] [1 55 0.5] [0 55 0.5] [1 55 0.5] [0 55 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "68afba40-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [799.5 475.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521410547
:isComplete true}}
:block/updated-at 1698521411588}
{:block/created-at 1698521414618
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 11
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 0 0.5] [2 0 0.5] [5 0 0.5] [11 1 0.5] [21 1 0.5] [30 2 0.5] [36 1 0.5] [44 1 0.5] [52 0 0.5] [58 0 0.5] [59 0 0.5] [58 0 0.5] [57 0 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "690ea320-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [783.5 482.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521411168
:isComplete true}}
:block/updated-at 1698521414618}
{:block/created-at 1698521415465
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 12
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[1 16 0.5] [0 16 0.5] [1 16 0.5] [2 15 0.5] [5 15 0.5] [6 15 0.5] [9 14 0.5] [10 14 0.5] [13 13 0.5] [14 12 0.5] [18 11 0.5] [20 10 0.5] [23 8 0.5] [24 7 0.5] [29 5 0.5] [31 4 0.5] [35 1 0.5] [36 0 0.5] [37 0 0.5] [36 0 0.5] [34 4 0.5] [31 13 0.5] [28 20 0.5] [25 27 0.5] [23 31 0.5] [21 37 0.5] [19 43 0.5] [16 47 0.5] [16 48 0.5] [15 48 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "6a816d00-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [866.5 476.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521413615
:isComplete true}}
:block/updated-at 1698521415465}
{:block/created-at 1698521418485
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 13
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 4 0.5] [0 3 0.5] [3 4 0.5] [5 3 0.5] [8 3 0.5] [13 2 0.5] [17 1 0.5] [20 1 0.5] [24 0 0.5] [26 0 0.5] [28 0 0.5] [29 0 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "6b344240-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [865.5 524.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521414769
:isComplete true}}
:block/updated-at 1698521418485}
{:block/created-at 1698521418485
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 14
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 0 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "6b725cb0-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [894.5 524.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521415165
:isComplete true}}
:block/updated-at 1698521418485}
{:block/created-at 1698521420640
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 15
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 15 0.5] [1 15 0.5] [3 14 0.5] [5 12 0.5] [5 11 0.5] [6 11 0.5] [6 10 0.5] [8 8 0.5] [9 7 0.5] [10 6 0.5] [13 4 0.5] [14 3 0.5] [15 1 0.5] [17 0 0.5] [17 1 0.5] [17 0 0.5] [17 1 0.5] [17 0 0.5] [17 1 0.5] [18 1 0.5] [23 1 0.5] [27 2 0.5] [30 2 0.5] [31 3 0.5] [34 4 0.5] [35 4 0.5] [35 5 0.5] [35 8 0.5] [35 10 0.5] [35 13 0.5] [35 15 0.5] [34 17 0.5] [33 20 0.5] [33 22 0.5] [32 24 0.5] [32 26 0.5] [31 27 0.5] [31 29 0.5] [29 31 0.5] [28 33 0.5] [27 36 0.5] [26 36 0.5] [26 39 0.5] [25 40 0.5] [23 42 0.5] [21 44 0.5] [20 46 0.5] [20 47 0.5] [19 48 0.5] [17 51 0.5] [16 51 0.5] [15 53 0.5] [14 54 0.5] [14 55 0.5] [15 54 0.5] [16 54 0.5] [17 54 0.5] [18 54 0.5] [20 53 0.5] [21 52 0.5] [22 52 0.5] [22 51 0.5] [23 51 0.5] [24 51 0.5] [25 51 0.5] [27 52 0.5] [28 52 0.5] [29 52 0.5] [30 52 0.5] [30 53 0.5] [31 53 0.5] [32 53 0.5] [33 54 0.5] [34 54 0.5] [36 55 0.5] [37 55 0.5] [39 55 0.5] [39 56 0.5] [40 56 0.5] [41 55 0.5] [43 55 0.5] [44 55 0.5] [45 55 0.5] [46 54 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "6c1a3570-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [924.5 477.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521416348
:isComplete true}}
:block/updated-at 1698521420640}
{:block/created-at 1698521433119
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 16
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[0 7 0.5] [2 7 0.5] [5 5 0.5] [7 4 0.5] [10 2 0.5] [11 2 0.5] [12 1 0.5] [14 1 0.5] [15 0 0.5] [17 0 0.5] [18 0 0.5] [20 1 0.5] [21 0 0.5] [22 1 0.5] [22 2 0.5] [24 2 0.5] [26 3 0.5] [27 5 0.5] [28 6 0.5] [29 6 0.5] [30 10 0.5] [32 13 0.5] [32 16 0.5] [33 18 0.5] [32 21 0.5] [32 23 0.5] [31 26 0.5] [31 28 0.5] [31 29 0.5] [30 30 0.5] [29 30 0.5] [28 30 0.5] [27 31 0.5] [26 31 0.5] [25 31 0.5] [23 32 0.5] [22 32 0.5] [20 33 0.5] [19 33 0.5] [19 34 0.5] [19 33 0.5] [20 33 0.5] [22 33 0.5] [23 32 0.5] [24 32 0.5] [26 32 0.5] [28 32 0.5] [30 32 0.5] [32 32 0.5] [33 33 0.5] [32 36 0.5] [32 38 0.5] [32 40 0.5] [32 41 0.5] [32 43 0.5] [31 44 0.5] [31 45 0.5] [29 47 0.5] [28 48 0.5] [28 49 0.5] [27 49 0.5] [26 49 0.5] [24 50 0.5] [23 50 0.5] [22 50 0.5] [20 52 0.5] [19 52 0.5] [19 53 0.5] [18 53 0.5] [17 53 0.5] [16 54 0.5] [16 53 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "6db6ce70-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [996.5 482.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521419040
:isComplete true}}
:block/updated-at 1698521433119}
{:block/created-at 1698521440087
:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 17
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[5 0 0.5] [5 3 0.5] [5 9 0.5] [5 13 0.5] [6 18 0.5] [5 22 0.5] [4 27 0.5] [4 34 0.5] [4 38 0.5] [4 43 0.5] [4 46 0.5] [4 49 0.5] [4 52 0.5] [4 53 0.5] [4 55 0.5] [4 57 0.5] [4 59 0.5] [4 63 0.5] [3 67 0.5] [2 72 0.5] [2 76 0.5] [2 79 0.5] [2 81 0.5] [2 85 0.5] [2 86 0.5] [3 87 0.5] [3 88 0.5] [3 90 0.5] [2 91 0.5] [3 92 0.5] [2 94 0.5] [2 96 0.5] [1 99 0.5] [1 101 0.5] [1 104 0.5] [1 106 0.5] [0 108 0.5] [1 108 0.5] [2 108 0.5] [3 108 0.5] [4 108 0.5] [5 108 0.5] [6 108 0.5] [7 108 0.5] [8 108 0.5] [9 107 0.5] [10 107 0.5] [12 107 0.5] [13 107 0.5] [14 107 0.5] [15 107 0.5] [17 107 0.5] [20 107 0.5] [23 107 0.5] [25 107 0.5] [28 106 0.5] [29 106 0.5] [31 106 0.5] [33 106 0.5] [36 106 0.5] [38 106 0.5] [40 106 0.5] [43 106 0.5] [46 106 0.5] [49 106 0.5] [50 106 0.5] [52 106 0.5] [54 106 0.5] [58 106 0.5] [61 105 0.5] [63 106 0.5] [64 106 0.5] [65 106 0.5] [65 105 0.5] [69 105 0.5] [73 105 0.5] [74 105 0.5] [75 105 0.5] [76 105 0.5] [77 105 0.5] [79 105 0.5] [80 105 0.5] [81 106 0.5] [82 106 0.5] [85 106 0.5] [86 106 0.5] [87 106 0.5] [90 106 0.5] [93 106 0.5] [96 106 0.5] [97 106 0.5] [99 106 0.5] [101 106 0.5] [103 106 0.5] [105 106 0.5] [107 106 0.5] [109 106 0.5] [110 106 0.5] [112 106 0.5] [114 106 0.5] [115 106 0.5] [116 106 0.5] [117 106 0.5] [118 106 0.5] [118 107 0.5] [120 106 0.5] [121 106 0.5] [121 107 0.5] [121 106 0.5] [123 107 0.5] [124 107 0.5] [126 107 0.5] [127 107 0.5] [127 106 0.5] [126 102 0.5] [126 101 0.5] [126 99 0.5] [126 94 0.5] [126 93 0.5] [126 89 0.5] [126 88 0.5] [126 86 0.5] [126 84 0.5] [127 82 0.5] [127 80 0.5] [127 79 0.5] [127 78 0.5] [127 74 0.5] [127 72 0.5] [126 71 0.5] [126 67 0.5] [126 65 0.5] [126 61 0.5] [127 58 0.5] [127 55 0.5] [127 53 0.5] [127 52 0.5] [127 51 0.5] [127 50 0.5] [127 45 0.5] [127 42 0.5] [127 41 0.5] [127 40 0.5] [127 37 0.5] [127 36 0.5] [127 32 0.5] [128 31 0.5] [128 29 0.5] [128 28 0.5] [128 24 0.5] [129 22 0.5] [129 20 0.5] [130 17 0.5] [130 16 0.5] [130 15 0.5] [128 15 0.5] [128 14 0.5] [127 14 0.5] [126 13 0.5] [125 13 0.5] [124 13 0.5] [122 13 0.5] [121 13 0.5] [118 12 0.5] [116 12 0.5] [113 12 0.5] [111 12 0.5] [110 12 0.5] [108 11 0.5] [105 12 0.5] [102 11 0.5] [99 12 0.5] [98 11 0.5] [97 12 0.5] [96 12 0.5] [91 12 0.5] [88 12 0.5] [83 12 0.5] [80 12 0.5] [76 13 0.5] [70 13 0.5] [66 13 0.5] [61 14 0.5] [57 15 0.5] [53 15 0.5] [48 16 0.5] [44 16 0.5] [43 16 0.5] [39 16 0.5] [36 16 0.5] [35 17 0.5] [33 17 0.5] [31 17 0.5] [29 17 0.5] [25 18 0.5] [20 18 0.5] [16 18 0.5] [13 18 0.5] [11 18 0.5] [9 19 0.5] [7 19 0.5] [6 20 0.5] [4 19 0.5] [3 19 0.5] [3 20 0.5] [3 19 0.5] [4 19 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "732bbfa0-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [897.5 595.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521428330
:isComplete true}}
:block/updated-at 1698521440087}
{:block/properties
{:ls-type :whiteboard-shape
:logseq.tldraw.shape
{:stroke "yellow"
:index 18
:scale [1 1]
:scaleLevel "md"
:fill "yellow"
:type "pencil"
:points [[13 0 0.5] [14 0 0.5] [13 0 0.5] [12 5 0.5] [9 12 0.5] [6 19 0.5] [4 25 0.5] [2 32 0.5] [0 37 0.5] [0 40 0.5] [1 40 0.5] [4 39 0.5] [8 37 0.5] [16 31 0.5] [23 27 0.5] [26 24 0.5] [30 21 0.5] [32 20 0.5] [34 17 0.5] [38 14 0.5] [40 11 0.5] [42 9 0.5] [42 8 0.5] [43 8 0.5] [45 5 0.5] [46 5 0.5] [45 5 0.5] [45 6 0.5] [42 10 0.5] [39 16 0.5] [34 24 0.5] [31 32 0.5] [27 39 0.5] [23 45 0.5] [21 51 0.5] [20 56 0.5] [19 57 0.5] [20 57 0.5] [19 57 0.5] [19 58 0.5] [18 61 0.5] [17 63 0.5] [17 64 0.5] [17 63 0.5] [17 64 0.5] [17 66 0.5] [16 68 0.5] [17 68 0.5] [18 68 0.5] [19 67 0.5] [21 66 0.5] [23 66 0.5] [27 62 0.5] [32 58 0.5] [35 54 0.5] [40 49 0.5] [43 47 0.5] [49 40 0.5] [53 36 0.5] [58 31 0.5] [60 27 0.5] [64 23 0.5] [65 21 0.5] [67 19 0.5] [69 15 0.5] [69 14 0.5] [70 12 0.5] [71 12 0.5] [70 12 0.5] [70 13 0.5] [68 15 0.5] [65 21 0.5] [62 27 0.5] [58 36 0.5] [54 44 0.5] [48 54 0.5] [43 64 0.5] [39 71 0.5] [35 79 0.5] [32 85 0.5] [29 88 0.5] [29 90 0.5] [29 91 0.5] [28 94 0.5] [26 97 0.5] [25 101 0.5] [25 103 0.5] [25 104 0.5] [25 103 0.5] [26 103 0.5] [27 102 0.5] [29 102 0.5] [32 98 0.5] [36 93 0.5] [39 88 0.5] [45 82 0.5] [51 75 0.5] [57 68 0.5] [63 59 0.5] [69 53 0.5] [75 46 0.5] [81 41 0.5] [86 37 0.5] [88 35 0.5] [89 35 0.5] [90 33 0.5] [92 29 0.5] [92 31 0.5] [89 36 0.5] [87 42 0.5] [83 50 0.5] [81 55 0.5] [80 59 0.5] [78 63 0.5] [77 67 0.5] [76 70 0.5] [74 73 0.5] [72 77 0.5] [69 82 0.5] [68 83 0.5] [68 84 0.5] [68 83 0.5] [68 84 0.5] [67 84 0.5] [68 84 0.5] [67 84 0.5] [68 84 0.5] [69 84 0.5] [71 83 0.5] [73 82 0.5] [74 81 0.5] [78 80 0.5] [83 77 0.5] [88 74 0.5] [91 71 0.5] [92 70 0.5] [96 67 0.5] [98 65 0.5] [99 65 0.5] [100 64 0.5] [100 65 0.5] [99 66 0.5] [97 67 0.5] [95 72 0.5] [93 75 0.5] [92 79 0.5] [91 81 0.5] [90 86 0.5] [88 90 0.5] [87 93 0.5] [86 96 0.5] [85 97 0.5] [87 97 0.5] [88 96 0.5] [90 95 0.5] [91 95 0.5] [93 94 0.5] [95 93 0.5] [97 93 0.5] [99 91 0.5] [101 91 0.5] [102 90 0.5] [103 89 0.5] [102 89 0.5] [101 89 0.5] [100 89 0.5]]
:strokeType "line"
:strokeWidth 2
:opacity 1
:id "77fb2200-75c8-11ee-890c-9de00517d36a"
:noFill true
:point [1110.5 417.5]
:parentId "653d608d-8817-426e-9114-cbd3a5116343"
:nonce 1698521436359
:isComplete true}}
:block/updated-at 1698521440085})
:pages (
{:block/uuid #uuid "653d608d-8817-426e-9114-cbd3a5116343"
:block/properties
{:ls-type :whiteboard-page
:logseq.tldraw.page
{:id "653d608d-8817-426e-9114-cbd3a5116343"
:name "653d608d-8817-426e-9114-cbd3a5116343"
:bindings
{}
:nonce 1
:assets []
:shapes-index ("615ce150-75c8-11ee-890c-9de00517d36a" "624e1f20-75c8-11ee-890c-9de00517d36a" "62bb38d0-75c8-11ee-890c-9de00517d36a" "65021b90-75c8-11ee-890c-9de00517d36a" "65746560-75c8-11ee-890c-9de00517d36a" "660cfbe0-75c8-11ee-890c-9de00517d36a" "66766c10-75c8-11ee-890c-9de00517d36a" "66dd6b40-75c8-11ee-890c-9de00517d36a" "67575630-75c8-11ee-890c-9de00517d36a" "67d44e60-75c8-11ee-890c-9de00517d36a" "68afba40-75c8-11ee-890c-9de00517d36a" "690ea320-75c8-11ee-890c-9de00517d36a" "6a816d00-75c8-11ee-890c-9de00517d36a" "6b344240-75c8-11ee-890c-9de00517d36a" "6b725cb0-75c8-11ee-890c-9de00517d36a" "6c1a3570-75c8-11ee-890c-9de00517d36a" "6db6ce70-75c8-11ee-890c-9de00517d36a" "732bbfa0-75c8-11ee-890c-9de00517d36a" "77fb2200-75c8-11ee-890c-9de00517d36a")}}
:block/updated-at 1698521440085
:block/created-at 1698521229939
:block/type "whiteboard"
:block/name "653d608d-8817-426e-9114-cbd3a5116343"
:block/original-name "653d608d-8817-426e-9114-cbd3a5116343"})}