This commit is contained in:
Arsen Mirzaev Tatyano-Muradovich 2022-11-02 19:01:02 +10:00
commit 6574194bd2
59 changed files with 1547 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

1
journals/2022_10_06.md Normal file
View File

@ -0,0 +1 @@
-

View File

@ -0,0 +1 @@
-

View File

@ -0,0 +1 @@
-

View File

@ -0,0 +1,4 @@
title:: [[история химии]]
tags:: книга
автор:: [[Джуа Микеле]]
прочитано:: нет

View File

@ -0,0 +1,4 @@
title:: [[краткая история биологии]]
tags:: книга
автор:: [[Айзек Азимов]]
прочитано:: нет

View File

@ -0,0 +1 @@
-

View File

@ -0,0 +1 @@
*

View File

@ -0,0 +1,268 @@
{:meta/version 1
;; Currently, we support either "Markdown" or "Org".
;; This can overwrite your global preference so that
;; maybe your personal preferred format is Org but you'd
;; need to use Markdown for some projects.
;; :preferred-format ""
;; Preferred workflow style.
;; Value is either ":now" for NOW/LATER style,
;; or ":todo" for TODO/DOING style.
:preferred-workflow :todo
;; The app will ignore those directories or files.
;; E.g. :hidden ["/archived" "/test.md" "../assets/archived"]
:hidden []
;; When creating the new journal page, the app will use your template if there is one.
;; You only need to input your template name here.
:default-templates
{:journals ""}
;; Whether to enable hover on tooltip preview feature
;; Default is true, you can also toggle this via setting page
:ui/enable-tooltip? true
;; Enable Block timestamp
:feature/enable-block-timestamps? false
;; Enable remove accents when searching.
;; After toggle this option, please remember to rebuild your search index by press (cmd+c cmd+s).
:feature/enable-search-remove-accents? true
;; Disable Built-in Scheduled and deadline Query
;; :feature/disable-scheduled-and-deadline-query? true
;; Specify the date on which the week starts.
;; Goes from 0 to 6 (Monday to Sunday), default to 6
:start-of-week 6
;; Specify a custom CSS import
;; This option take precedence over your local `logseq/custom.css` file
;; You may find a list of awesome logseq themes here:
;; https://github.com/logseq/awesome-logseq#css-themes
;; Example:
;; :custom-css-url "@import url('https://cdn.jsdelivr.net/gh/dracula/logseq@master/custom.css');"
;; Set Bullet indentation when exporting
;; default option: tab
;; Possible options are for `:sidebar` are
;; 1. `:eight-spaces` as eight spaces
;; 2. `:four-spaces` as four spaces
;; 3. `:two-spaces` as two spaces
;; :export/bullet-indentation :tab
;; When :all-pages-public? true, export repo would export all pages within that repo.
;; Regardless of whether you've set any page to public or not.
;; Example:
;; :publishing/all-pages-public? true
;; Specify default home page and sidebar status for Logseq
;; If not specified, Logseq default opens journals page on startup
;; value for `:page` is name of page
;; Possible options for `:sidebar` are
;; 1. `"Contents"` to open up `Contents` in sidebar by default
;; 2. `page name` to open up some page in sidebar
;; 3. Or multiple pages in an array ["Contents" "Page A" "Page B"]
;; If `:sidebar` is not set, sidebar will be hidden
;; Example:
;; 1. Setup page "Changelog" as home page and "Contents" in sidebar
;; :default-home {:page "Changelog", :sidebar "Contents"}
;; 2. Setup page "Jun 3rd, 2021" as home page without sidebar
;; :default-home {:page "Jun 3rd, 2021"}
;; 3. Setup page "home" as home page with multiple pages in sidebar
;; :default-home {:page "home" :sidebar ["page a" "page b"]}
;; Tell logseq to use a specific folder in the repo as a default location for notes
;; if not specified, notes are stored in `pages` directory
;; :pages-directory "your-directory"
;; Tell logseq to use a specific folder in the repo as a default location for journals
;; if not specified, journals are stored in `journals` directory
;; :journals-directory "your-directory"
;; Set this to true will convert
;; `[[Grant Ideas]]` to `[[file:./grant_ideas.org][Grant Ideas]]` for org-mode
;; For more, see https://github.com/logseq/logseq/issues/672
;; :org-mode/insert-file-link? true
;; If you prefer to use the file name as the page title
;; instead of the first heading's title
;; the only option for now is `file`
;; :page-name-order "file"
;; Setup custom shortcuts under `:shortcuts` key
;; Syntax:
;; 1. `+` means keys pressing simultaneously. eg: `ctrl+shift+a`
;; 2. ` ` empty space between keys represents key chords. eg: `t s` means press `s` follow by `t`
;; 3. `mod` means `Ctrl` for Windows/Linux and `Command` for Mac
;; 4. use `false` to disable particular shortcut
;; 4. you can define multiple bindings for one action, eg `["ctrl+j" "down"]`
;; full list of configurable shortcuts are available below:
;; 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/hightlight 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 {}
;; By default, pressing `Enter` in the document mode will create a new line.
;; Set this to `true` so that it's the same behaviour as the usual outliner mode.
:shortcut/doc-mode-enter-for-new-block? false
;; Whether to show command doc on hover
:ui/show-command-doc? true
;; Whether to show empty bullets for non-document mode (the default mode)
:ui/show-empty-bullets? false
;; Pre-defined :view function to use in Query
:query/views
{:pprint
(fn [r] [:pre.code (pprint r)])}
;; Pre-defined :result-transform function to use in Query
:query/result-transforms
{:sort-by-priority
(fn [result] (sort-by (fn [h] (get h :block/priority "Z")) result))}
;; The app will show those queries in today's journal page,
;; the "NOW" query asks the tasks which need to be finished "now",
;; the "NEXT" query asks the future tasks.
: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))
:collapsed? false}
{:title "📅 NEXT"
:query [:find (pull ?h [*])
:in $ ?start ?next
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]
[?h :block/ref-pages ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(> ?d ?start)]
[(< ?d ?next)]]
:inputs [:today :7d-after]
:collapsed? false}]}
;; Add your own commands to slash menu to speedup.
;; E.g.
:commands
[
["js" "Javascript"]
["md" "Markdown"]
]
;; :commands
;; []
;; By default, a block can only be collapsed if it has some children.
;; `:outliner/block-title-collapse-enabled? true` enables a block with a title
;; (multiple lines) can be collapsed too. For example:
;; - block title
;; block content
:outliner/block-title-collapse-enabled? false
;; Macros replace texts and will make you more productive.
;; For example:
;; 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 {}
;; The default level to be opened for the linked references.
;; For example, if we have some example blocks like this:
;; - a [[page]] (level 1)
;; - b (level 2)
;; - c (level 3)
;; - d (level 4)
;;
;; With the default value of level 2, `b` will be collapsed.
;; If we set the level's value to 3, `b` will be opened and `c` will be collapsed.
:ref/default-open-blocks-level 2
:ref/linked-references-collapsed-threshold 50
:favorites ["How to take dummy notes?"]
;; any number between 0 and 1 (the greater it is the faster the changes of the next-interval of card reviews) (default 0.5)
;; :srs/learning-fraction 0.5
;; the initial interval after the first successful review of a card (default 4)
;; :srs/initial-interval 4
;; hide specific properties for blocks
;; E.g. :block-hidden-properties #{:created-at :updated-at}
;; :block-hidden-properties #{}
;; Enable all your properties to have corresponding pages
:property-pages/enabled? true
:feature/enable-journals? true
:editor/logical-outdenting? true
:graph/settings {:journal? false, :excluded-pages? false, :builtin-pages? false, :orphan-pages? false}
;; Properties to exclude from having property pages
;; E.g.:property-pages/excludelist #{:duration :author}
;; :property-pages/excludelist
;; logbook setup
;; :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 uploading setup
;; :mobile/photo
;; {:allow-editing? true}
;; Mobile features options
;; Gestures
;; :mobile
;; {:gestures/disabled-in-block-with-tags ["kanban"]}
;; Extra CodeMirror options
;; :editor/extra-codemirror-options {:keyMap "emacs" :lineWrapping true}
;; ignore #+keyword: for parsing page references in orgmode
;:ignored-page-references-keywords #{"книга" "существо"}
:zotero/settings-v2 {"mirzaev" {}}
;; Quick capture templates on mobile for recieving contents from other apps.
;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded
;; by received contents from other apps. Note: the {} cannot be omitted.
;; - {time}: capture time
;; - {text}: text that users selected before sharing.
;; - {url}: url or assets path for media files stored in Logseq.
;; You can also reorder them, or even only use 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}"}
}

View File

@ -0,0 +1,268 @@
{:meta/version 1
;; Currently, we support either "Markdown" or "Org".
;; This can overwrite your global preference so that
;; maybe your personal preferred format is Org but you'd
;; need to use Markdown for some projects.
;; :preferred-format ""
;; Preferred workflow style.
;; Value is either ":now" for NOW/LATER style,
;; or ":todo" for TODO/DOING style.
:preferred-workflow :todo
;; The app will ignore those directories or files.
;; E.g. :hidden ["/archived" "/test.md" "../assets/archived"]
:hidden []
;; When creating the new journal page, the app will use your template if there is one.
;; You only need to input your template name here.
:default-templates
{:journals ""}
;; Whether to enable hover on tooltip preview feature
;; Default is true, you can also toggle this via setting page
:ui/enable-tooltip? true
;; Enable Block timestamp
:feature/enable-block-timestamps? false
;; Enable remove accents when searching.
;; After toggle this option, please remember to rebuild your search index by press (cmd+c cmd+s).
:feature/enable-search-remove-accents? true
;; Disable Built-in Scheduled and deadline Query
;; :feature/disable-scheduled-and-deadline-query? true
;; Specify the date on which the week starts.
;; Goes from 0 to 6 (Monday to Sunday), default to 6
:start-of-week 6
;; Specify a custom CSS import
;; This option take precedence over your local `logseq/custom.css` file
;; You may find a list of awesome logseq themes here:
;; https://github.com/logseq/awesome-logseq#css-themes
;; Example:
;; :custom-css-url "@import url('https://cdn.jsdelivr.net/gh/dracula/logseq@master/custom.css');"
;; Set Bullet indentation when exporting
;; default option: tab
;; Possible options are for `:sidebar` are
;; 1. `:eight-spaces` as eight spaces
;; 2. `:four-spaces` as four spaces
;; 3. `:two-spaces` as two spaces
;; :export/bullet-indentation :tab
;; When :all-pages-public? true, export repo would export all pages within that repo.
;; Regardless of whether you've set any page to public or not.
;; Example:
;; :publishing/all-pages-public? true
;; Specify default home page and sidebar status for Logseq
;; If not specified, Logseq default opens journals page on startup
;; value for `:page` is name of page
;; Possible options for `:sidebar` are
;; 1. `"Contents"` to open up `Contents` in sidebar by default
;; 2. `page name` to open up some page in sidebar
;; 3. Or multiple pages in an array ["Contents" "Page A" "Page B"]
;; If `:sidebar` is not set, sidebar will be hidden
;; Example:
;; 1. Setup page "Changelog" as home page and "Contents" in sidebar
;; :default-home {:page "Changelog", :sidebar "Contents"}
;; 2. Setup page "Jun 3rd, 2021" as home page without sidebar
;; :default-home {:page "Jun 3rd, 2021"}
;; 3. Setup page "home" as home page with multiple pages in sidebar
;; :default-home {:page "home" :sidebar ["page a" "page b"]}
;; Tell logseq to use a specific folder in the repo as a default location for notes
;; if not specified, notes are stored in `pages` directory
;; :pages-directory "your-directory"
;; Tell logseq to use a specific folder in the repo as a default location for journals
;; if not specified, journals are stored in `journals` directory
;; :journals-directory "your-directory"
;; Set this to true will convert
;; `[[Grant Ideas]]` to `[[file:./grant_ideas.org][Grant Ideas]]` for org-mode
;; For more, see https://github.com/logseq/logseq/issues/672
;; :org-mode/insert-file-link? true
;; If you prefer to use the file name as the page title
;; instead of the first heading's title
;; the only option for now is `file`
;; :page-name-order "file"
;; Setup custom shortcuts under `:shortcuts` key
;; Syntax:
;; 1. `+` means keys pressing simultaneously. eg: `ctrl+shift+a`
;; 2. ` ` empty space between keys represents key chords. eg: `t s` means press `s` follow by `t`
;; 3. `mod` means `Ctrl` for Windows/Linux and `Command` for Mac
;; 4. use `false` to disable particular shortcut
;; 4. you can define multiple bindings for one action, eg `["ctrl+j" "down"]`
;; full list of configurable shortcuts are available below:
;; 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/hightlight 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 {}
;; By default, pressing `Enter` in the document mode will create a new line.
;; Set this to `true` so that it's the same behaviour as the usual outliner mode.
:shortcut/doc-mode-enter-for-new-block? false
;; Whether to show command doc on hover
:ui/show-command-doc? true
;; Whether to show empty bullets for non-document mode (the default mode)
:ui/show-empty-bullets? false
;; Pre-defined :view function to use in Query
:query/views
{:pprint
(fn [r] [:pre.code (pprint r)])}
;; Pre-defined :result-transform function to use in Query
:query/result-transforms
{:sort-by-priority
(fn [result] (sort-by (fn [h] (get h :block/priority "Z")) result))}
;; The app will show those queries in today's journal page,
;; the "NOW" query asks the tasks which need to be finished "now",
;; the "NEXT" query asks the future tasks.
: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))
:collapsed? false}
{:title "📅 NEXT"
:query [:find (pull ?h [*])
:in $ ?start ?next
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]
[?h :block/ref-pages ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(> ?d ?start)]
[(< ?d ?next)]]
:inputs [:today :7d-after]
:collapsed? false}]}
;; Add your own commands to slash menu to speedup.
;; E.g.
;; :commands
;; [
;; ["js" "Javascript"]
;; ["md" "Markdown"]
;; ]
:commands
[]
;; By default, a block can only be collapsed if it has some children.
;; `:outliner/block-title-collapse-enabled? true` enables a block with a title
;; (multiple lines) can be collapsed too. For example:
;; - block title
;; block content
:outliner/block-title-collapse-enabled? false
;; Macros replace texts and will make you more productive.
;; For example:
;; 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 {}
;; The default level to be opened for the linked references.
;; For example, if we have some example blocks like this:
;; - a [[page]] (level 1)
;; - b (level 2)
;; - c (level 3)
;; - d (level 4)
;;
;; With the default value of level 2, `b` will be collapsed.
;; If we set the level's value to 3, `b` will be opened and `c` will be collapsed.
:ref/default-open-blocks-level 2
:ref/linked-references-collapsed-threshold 50
:favorites ["How to take dummy notes?"]
;; any number between 0 and 1 (the greater it is the faster the changes of the next-interval of card reviews) (default 0.5)
;; :srs/learning-fraction 0.5
;; the initial interval after the first successful review of a card (default 4)
;; :srs/initial-interval 4
;; hide specific properties for blocks
;; E.g. :block-hidden-properties #{:created-at :updated-at}
;; :block-hidden-properties #{}
;; Enable all your properties to have corresponding pages
:property-pages/enabled? true
:feature/enable-journals? true
:editor/logical-outdenting? true
:graph/settings {:journal? false, :excluded-pages? false, :builtin-pages? false, :orphan-pages? false}
;; Properties to exclude from having property pages
;; E.g.:property-pages/excludelist #{:duration :author}
;; :property-pages/excludelist
;; logbook setup
;; :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 uploading setup
;; :mobile/photo
;; {:allow-editing? true}
;; Mobile features options
;; Gestures
;; :mobile
;; {:gestures/disabled-in-block-with-tags ["kanban"]}
;; Extra CodeMirror options
;; :editor/extra-codemirror-options {:keyMap "emacs" :lineWrapping true}
;; ignore #+keyword: for parsing page references in orgmode
;:ignored-page-references-keywords #{"книга" "существо"}
:zotero/settings-v2 {"mirzaev" {}}
;; Quick capture templates on mobile for recieving contents from other apps.
;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded
;; by received contents from other apps. Note: the {} cannot be omitted.
;; - {time}: capture time
;; - {text}: text that users selected before sharing.
;; - {url}: url or assets path for media files stored in Logseq.
;; You can also reorder them, or even only use 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}"}
}

View File

@ -0,0 +1,270 @@
{:meta/version 1
;; Currently, we support either "Markdown" or "Org".
;; This can overwrite your global preference so that
;; maybe your personal preferred format is Org but you'd
;; need to use Markdown for some projects.
:preferred-format :markdown
;; Preferred workflow style.
;; Value is either ":now" for NOW/LATER style,
;; or ":todo" for TODO/DOING style.
:preferred-workflow :todo
;; The app will ignore those directories or files.
;; E.g. :hidden ["/archived" "/test.md" "../assets/archived"]
:hidden ["/storage"]
;; When creating the new journal page, the app will use your template if there is one.
;; You only need to input your template name here.
:default-templates
{:journals ""}
;; Whether to enable hover on tooltip preview feature
;; Default is true, you can also toggle this via setting page
:ui/enable-tooltip? false
;; Enable Block timestamp
:feature/enable-block-timestamps? false
;; Enable remove accents when searching.
;; After toggle this option, please remember to rebuild your search index by press (cmd+c cmd+s).
:feature/enable-search-remove-accents? true
;; Disable Built-in Scheduled and deadline Query
;; :feature/disable-scheduled-and-deadline-query? true
;; Specify the date on which the week starts.
;; Goes from 0 to 6 (Monday to Sunday), default to 6
:start-of-week 6
;; Specify a custom CSS import
;; This option take precedence over your local `logseq/custom.css` file
;; You may find a list of awesome logseq themes here:
;; https://github.com/logseq/awesome-logseq#css-themes
;; Example:
;; :custom-css-url "@import url('https://cdn.jsdelivr.net/gh/dracula/logseq@master/custom.css');"
;; Set Bullet indentation when exporting
;; default option: tab
;; Possible options are for `:sidebar` are
;; 1. `:eight-spaces` as eight spaces
;; 2. `:four-spaces` as four spaces
;; 3. `:two-spaces` as two spaces
:export/bullet-indentation :two-spaces
;; When :all-pages-public? true, export repo would export all pages within that repo.
;; Regardless of whether you've set any page to public or not.
;; Example:
;; :publishing/all-pages-public? true
;; Specify default home page and sidebar status for Logseq
;; If not specified, Logseq default opens journals page on startup
;; value for `:page` is name of page
;; Possible options for `:sidebar` are
;; 1. `"Contents"` to open up `Contents` in sidebar by default
;; 2. `page name` to open up some page in sidebar
;; 3. Or multiple pages in an array ["Contents" "Page A" "Page B"]
;; If `:sidebar` is not set, sidebar will be hidden
;; Example:
;; 1. Setup page "Changelog" as home page and "Contents" in sidebar
;; :default-home {:page "Changelog", :sidebar "Contents"}
;; 2. Setup page "Jun 3rd, 2021" as home page without sidebar
;; :default-home {:page "Jun 3rd, 2021"}
;; 3. Setup page "home" as home page with multiple pages in sidebar
;; :default-home {:page "home" :sidebar ["page a" "page b"]}
;; Tell logseq to use a specific folder in the repo as a default location for notes
;; if not specified, notes are stored in `pages` directory
;; :pages-directory "your-directory"
;; Tell logseq to use a specific folder in the repo as a default location for journals
;; if not specified, journals are stored in `journals` directory
;; :journals-directory "your-directory"
;; Set this to true will convert
;; `[[Grant Ideas]]` to `[[file:./grant_ideas.org][Grant Ideas]]` for org-mode
;; For more, see https://github.com/logseq/logseq/issues/672
;; :org-mode/insert-file-link? true
;; If you prefer to use the file name as the page title
;; instead of the first heading's title
;; the only option for now is `file`
;; :page-name-order "file"
;; Setup custom shortcuts under `:shortcuts` key
;; Syntax:
;; 1. `+` means keys pressing simultaneously. eg: `ctrl+shift+a`
;; 2. ` ` empty space between keys represents key chords. eg: `t s` means press `s` follow by `t`
;; 3. `mod` means `Ctrl` for Windows/Linux and `Command` for Mac
;; 4. use `false` to disable particular shortcut
;; 4. you can define multiple bindings for one action, eg `["ctrl+j" "down"]`
;; full list of configurable shortcuts are available below:
;; 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/hightlight 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 {}
;; By default, pressing `Enter` in the document mode will create a new line.
;; Set this to `true` so that it's the same behaviour as the usual outliner mode.
:shortcut/doc-mode-enter-for-new-block? false
;; Whether to show command doc on hover
:ui/show-command-doc? true
;; Whether to show empty bullets for non-document mode (the default mode)
:ui/show-empty-bullets? false
;; Pre-defined :view function to use in Query
:query/views
{:pprint
(fn [r] [:pre.code (pprint r)])}
;; Pre-defined :result-transform function to use in Query
:query/result-transforms
{:sort-by-priority
(fn [result] (sort-by (fn [h] (get h :block/priority "Z")) result))}
;; The app will show those queries in today's journal page,
;; the "NOW" query asks the tasks which need to be finished "now",
;; the "NEXT" query asks the future tasks.
: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))
:collapsed? false}
{:title "📅 NEXT"
:query [:find (pull ?h [*])
:in $ ?start ?next
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]
[?h :block/ref-pages ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(> ?d ?start)]
[(< ?d ?next)]]
:inputs [:today :7d-after]
:collapsed? false}]}
;; Add your own commands to slash menu to speedup.
;; E.g.
;; :commands
;; [
;; ["js" "Javascript"]
;; ["md" "Markdown"]
;; ]
:commands
[]
;; By default, a block can only be collapsed if it has some children.
;; `:outliner/block-title-collapse-enabled? true` enables a block with a title
;; (multiple lines) can be collapsed too. For example:
;; - block title
;; block content
:outliner/block-title-collapse-enabled? false
;; Macros replace texts and will make you more productive.
;; For example:
;; 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 {}
;; The default level to be opened for the linked references.
;; For example, if we have some example blocks like this:
;; - a [[page]] (level 1)
;; - b (level 2)
;; - c (level 3)
;; - d (level 4)
;;
;; With the default value of level 2, `b` will be collapsed.
;; If we set the level's value to 3, `b` will be opened and `c` will be collapsed.
:ref/default-open-blocks-level 2
:ref/linked-references-collapsed-threshold 50
:favorites ["How to take dummy notes?"]
;; any number between 0 and 1 (the greater it is the faster the changes of the next-interval of card reviews) (default 0.5)
;; :srs/learning-fraction 0.5
;; the initial interval after the first successful review of a card (default 4)
;; :srs/initial-interval 4
;; hide specific properties for blocks
;; E.g. :block-hidden-properties #{:created-at :updated-at}
;; :block-hidden-properties #{}
;; Enable all your properties to have corresponding pages
:property-pages/enabled? true
:feature/enable-journals? true
:editor/logical-outdenting? false
:graph/settings {:journal? false, :excluded-pages? false, :builtin-pages? false, :orphan-pages? false}
;; Properties to exclude from having property pages
;; E.g.:property-pages/excludelist #{:duration :author}
;; :property-pages/excludelist
;; logbook setup
;; :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 uploading setup
;; :mobile/photo
;; {:allow-editing? true}
;; Mobile features options
;; Gestures
;; :mobile
;; {:gestures/disabled-in-block-with-tags ["kanban"]}
;; Extra CodeMirror options
;; :editor/extra-codemirror-options {:keyMap "emacs" :lineWrapping true}
;; ignore #+keyword: for parsing page references in orgmode
;:ignored-page-references-keywords #{"книга" "существо"}
:zotero/settings-v2 {"mirzaev" {}}
:ui/show-brackets? true
:feature/enable-flashcards? true
;; Quick capture templates on mobile for recieving contents from other apps.
;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded
;; by received contents from other apps. Note: the {} cannot be omitted.
;; - {time}: capture time
;; - {text}: text that users selected before sharing.
;; - {url}: url or assets path for media files stored in Logseq.
;; You can also reorder them, or even only use 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}"}
}

View File

@ -0,0 +1,5 @@
- [Википедия](https://ru.wikipedia.org/wiki/%D0%90%D0%B7%D0%B8%D0%BC%D0%BE%D0%B2,_%D0%90%D0%B9%D0%B7%D0%B5%D0%BA)
id:: 63362650-c787-4913-ba87-4d2bafb9e018
-
-
-

View File

@ -0,0 +1,11 @@
- #существо #человек
- ![Фотография Айзека Азимова](storage/asimov.jpg){:height 246, :width 213}
- ## Ссылки
id:: 63362650-c787-4913-ba87-4d2bafb9e018
- [Википедия](https://ru.wikipedia.org/wiki/%D0%90%D0%B7%D0%B8%D0%BC%D0%BE%D0%B2,_%D0%90%D0%B9%D0%B7%D0%B5%D0%BA)
- ## Книги
- {{query (and ([[книга]]) (property автор [[Айзек Азимов]]))}}
query-table:: true
query-properties:: [:query-properties :title :прочитано]
query-sort-by:: query-properties
query-sort-desc:: true

View File

@ -0,0 +1,9 @@
- #существо #человек
- ![Фотография Айзека Азимова](../assets/asimov_1665038173232_0.jpg)
- ## Ссылки
id:: 63362650-c787-4913-ba87-4d2bafb9e018
- [Википедия](https://ru.wikipedia.org/wiki/%D0%90%D0%B7%D0%B8%D0%BC%D0%BE%D0%B2,_%D0%90%D0%B9%D0%B7%D0%B5%D0%BA)
- ## Книги
- {{query (and ([[книга]]) (property автор [[Айзек Азимов]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,8 @@
- #существо #человек
- ![butlerov.png](../assets/butlerov_1665032366734_0.png){:height 250, :width 250}
- ## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%91%D1%83%D1%82%D0%BB%D0%B5%D1%80%D0%BE%D0%B2,_%D0%90%D0%BB%D0%B5%D0%BA%D1%81%D0%B0%D0%BD%D0%B4%D1%80_%D0%9C%D0%B8%D1%85%D0%B0%D0%B9%D0%BB%D0%BE%D0%B2%D0%B8%D1%87)
- ## Книги
- {{query (and ([[книга]]) (property автор [[Бутлеров Александр Михайлович]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,33 @@
- #существо #человек
- ![Фотография Вильгельма Фридриха Оствальда](../assets/ostvald_1665038218258_0.jpg){:height 250, :width 250}
- ## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%9E%D1%81%D1%82%D0%B2%D0%B0%D0%BB%D1%8C%D0%B4,_%D0%92%D0%B8%D0%BB%D1%8C%D0%B3%D0%B5%D0%BB%D1%8C%D0%BC)
- ## Книги
- {{query (and ([[книга]]) (property автор [[Вильгельм Фридрих Оствальд]]))}}
query-table:: true
query-properties:: [:title :прочитано]
- ## Цитаты
card-last-score:: 3
card-repeats:: 1
card-next-schedule:: 2022-10-10T04:54:10.196Z
card-last-interval:: 4
card-ease-factor:: 2.36
card-last-reviewed:: 2022-10-06T04:54:10.197Z
- История науки даёт лучший и наиболее надежный материал, на котором могут быть изучены закономерности в развитии человечества
card-last-score:: 1
card-repeats:: 1
card-next-schedule:: 2022-10-06T14:00:00.000Z
card-last-interval:: -1
card-ease-factor:: 2.5
card-last-reviewed:: 2022-10-06T04:46:44.633Z
id:: 633e5bae-04b9-4e38-883a-33b327161a45
- Взято из [[Краткая история химии]]
- ## Вопросы
- Что даёт наиболее надёжный материал для изучения закономерностей в развитии человечества? #card #цитата
card-last-interval:: 4
card-repeats:: 1
card-ease-factor:: 2.6
card-next-schedule:: 2022-10-10T04:57:29.764Z
card-last-reviewed:: 2022-10-06T04:57:29.764Z
card-last-score:: 5
- ((633e5bae-04b9-4e38-883a-33b327161a45))

View File

@ -0,0 +1,10 @@
title:: Джон Бернал Десмонд
alias:: Джон, Бернал, Десмонд
tags:: существо, человек
- ![Фотография Джона Бернала](storage/bernal.jpg)
- ### Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%91%D0%B5%D1%80%D0%BD%D0%B0%D0%BB,_%D0%94%D0%B6%D0%BE%D0%BD_%D0%94%D0%B5%D1%81%D0%BC%D0%BE%D0%BD%D0%B4)
- ### Упоминания
- Неоднократно в книге [[Краткая история химии]]
- #существо

View File

@ -0,0 +1,8 @@
- #существо #человек
- ![Фотография Джона Бернала Десмонда](../assets/bernal_1665038154713_0.jpg)
- ## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%91%D0%B5%D1%80%D0%BD%D0%B0%D0%BB,_%D0%94%D0%B6%D0%BE%D0%BD_%D0%94%D0%B5%D1%81%D0%BC%D0%BE%D0%BD%D0%B4)
## Книги
- {{query (and ([[книга]]) (property автор [[Джон Бернал Десмонд]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,6 @@
- #существо #человек
- ![Фотография Джуа Микеле](../assets/mikele_1665038083005_0.jpg)
## Книги
- {{query (and ([[книга]]) (property автор [[Джуа Микеле]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,8 @@
- #существо #человек
- ![Фотография](../assets/ipatyev_1665038002102_0.jpg){:height 254, :width 348}
## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%98%D0%BF%D0%B0%D1%82%D1%8C%D0%B5%D0%B2,_%D0%92%D0%BB%D0%B0%D0%B4%D0%B8%D0%BC%D0%B8%D1%80_%D0%9D%D0%B8%D0%BA%D0%BE%D0%BB%D0%B0%D0%B5%D0%B2%D0%B8%D1%87)
## Книги
- {{query (and ([[книга]]) (property автор [[Ипатьев Владимир Николаевич]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,13 @@
- #книга
title:: [[краткая история химии]]
автор:: [[Айзек Азимов]]
прочитано:: нет
- ## Упомянутые в содержании книги
- [[Наука в истории общества]]
- [[Путеводные нити в химии]]
- [[Эволюция основных теоретических проблем в химии]]
- [[Эволюция представлений об основных законах химии]]
- [[Краткая история биологии]]
- [[История химии]]
- ## Факты
- Редактор отметил, что [Азимов]([[Айзек Азимов]]) в своей [книге]([[Краткая история химии]]) был "поразительно небрежен" при оценке роли [Бутлерова]([[Бутлеров Александр Михайлович]])

View File

@ -0,0 +1,3 @@
tags:: книга
автор:: [[Джон Бернал Десмонд]]
прочитано:: нет

View File

@ -0,0 +1,15 @@
alias::
tags::
template:: основной
- exclude-from-graph-view:: true
tags:: псевдоним
template:: псевдоним
- exclude-from-graph-view:: true
tags:: категория
template:: категория
- tags:: книга
автор::
прочитано:: нет
template:: книга
-

270
logseq/config.edn Normal file
View File

@ -0,0 +1,270 @@
{:meta/version 1
;; Currently, we support either "Markdown" or "Org".
;; This can overwrite your global preference so that
;; maybe your personal preferred format is Org but you'd
;; need to use Markdown for some projects.
:preferred-format :markdown
;; Preferred workflow style.
;; Value is either ":now" for NOW/LATER style,
;; or ":todo" for TODO/DOING style.
:preferred-workflow :todo
;; The app will ignore those directories or files.
;; E.g. :hidden ["/archived" "/test.md" "../assets/archived"]
:hidden []
;; When creating the new journal page, the app will use your template if there is one.
;; You only need to input your template name here.
:default-templates
{:journals ""}
;; Whether to enable hover on tooltip preview feature
;; Default is true, you can also toggle this via setting page
:ui/enable-tooltip? false
;; Enable Block timestamp
:feature/enable-block-timestamps? false
;; Enable remove accents when searching.
;; After toggle this option, please remember to rebuild your search index by press (cmd+c cmd+s).
:feature/enable-search-remove-accents? true
;; Disable Built-in Scheduled and deadline Query
;; :feature/disable-scheduled-and-deadline-query? true
;; Specify the date on which the week starts.
;; Goes from 0 to 6 (Monday to Sunday), default to 6
:start-of-week 6
;; Specify a custom CSS import
;; This option take precedence over your local `logseq/custom.css` file
;; You may find a list of awesome logseq themes here:
;; https://github.com/logseq/awesome-logseq#css-themes
;; Example:
;; :custom-css-url "@import url('https://cdn.jsdelivr.net/gh/dracula/logseq@master/custom.css');"
;; Set Bullet indentation when exporting
;; default option: tab
;; Possible options are for `:sidebar` are
;; 1. `:eight-spaces` as eight spaces
;; 2. `:four-spaces` as four spaces
;; 3. `:two-spaces` as two spaces
:export/bullet-indentation :two-spaces
;; When :all-pages-public? true, export repo would export all pages within that repo.
;; Regardless of whether you've set any page to public or not.
;; Example:
;; :publishing/all-pages-public? true
;; Specify default home page and sidebar status for Logseq
;; If not specified, Logseq default opens journals page on startup
;; value for `:page` is name of page
;; Possible options for `:sidebar` are
;; 1. `"Contents"` to open up `Contents` in sidebar by default
;; 2. `page name` to open up some page in sidebar
;; 3. Or multiple pages in an array ["Contents" "Page A" "Page B"]
;; If `:sidebar` is not set, sidebar will be hidden
;; Example:
;; 1. Setup page "Changelog" as home page and "Contents" in sidebar
;; :default-home {:page "Changelog", :sidebar "Contents"}
;; 2. Setup page "Jun 3rd, 2021" as home page without sidebar
;; :default-home {:page "Jun 3rd, 2021"}
;; 3. Setup page "home" as home page with multiple pages in sidebar
;; :default-home {:page "home" :sidebar ["page a" "page b"]}
;; Tell logseq to use a specific folder in the repo as a default location for notes
;; if not specified, notes are stored in `pages` directory
;; :pages-directory "your-directory"
;; Tell logseq to use a specific folder in the repo as a default location for journals
;; if not specified, journals are stored in `journals` directory
;; :journals-directory "your-directory"
;; Set this to true will convert
;; `[[Grant Ideas]]` to `[[file:./grant_ideas.org][Grant Ideas]]` for org-mode
;; For more, see https://github.com/logseq/logseq/issues/672
;; :org-mode/insert-file-link? true
;; If you prefer to use the file name as the page title
;; instead of the first heading's title
;; the only option for now is `file`
;; :page-name-order "file"
;; Setup custom shortcuts under `:shortcuts` key
;; Syntax:
;; 1. `+` means keys pressing simultaneously. eg: `ctrl+shift+a`
;; 2. ` ` empty space between keys represents key chords. eg: `t s` means press `s` follow by `t`
;; 3. `mod` means `Ctrl` for Windows/Linux and `Command` for Mac
;; 4. use `false` to disable particular shortcut
;; 4. you can define multiple bindings for one action, eg `["ctrl+j" "down"]`
;; full list of configurable shortcuts are available below:
;; 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/hightlight 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 {}
;; By default, pressing `Enter` in the document mode will create a new line.
;; Set this to `true` so that it's the same behaviour as the usual outliner mode.
:shortcut/doc-mode-enter-for-new-block? false
;; Whether to show command doc on hover
:ui/show-command-doc? true
;; Whether to show empty bullets for non-document mode (the default mode)
:ui/show-empty-bullets? false
;; Pre-defined :view function to use in Query
:query/views
{:pprint
(fn [r] [:pre.code (pprint r)])}
;; Pre-defined :result-transform function to use in Query
:query/result-transforms
{:sort-by-priority
(fn [result] (sort-by (fn [h] (get h :block/priority "Z")) result))}
;; The app will show those queries in today's journal page,
;; the "NOW" query asks the tasks which need to be finished "now",
;; the "NEXT" query asks the future tasks.
: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))
:collapsed? false}
{:title "📅 NEXT"
:query [:find (pull ?h [*])
:in $ ?start ?next
:where
[?h :block/marker ?marker]
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]
[?h :block/ref-pages ?p]
[?p :block/journal? true]
[?p :block/journal-day ?d]
[(> ?d ?start)]
[(< ?d ?next)]]
:inputs [:today :7d-after]
:collapsed? false}]}
;; Add your own commands to slash menu to speedup.
;; E.g.
;; :commands
;; [
;; ["js" "Javascript"]
;; ["md" "Markdown"]
;; ]
:commands
[]
;; By default, a block can only be collapsed if it has some children.
;; `:outliner/block-title-collapse-enabled? true` enables a block with a title
;; (multiple lines) can be collapsed too. For example:
;; - block title
;; block content
:outliner/block-title-collapse-enabled? false
;; Macros replace texts and will make you more productive.
;; For example:
;; 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 {}
;; The default level to be opened for the linked references.
;; For example, if we have some example blocks like this:
;; - a [[page]] (level 1)
;; - b (level 2)
;; - c (level 3)
;; - d (level 4)
;;
;; With the default value of level 2, `b` will be collapsed.
;; If we set the level's value to 3, `b` will be opened and `c` will be collapsed.
:ref/default-open-blocks-level 2
:ref/linked-references-collapsed-threshold 50
:favorites ["How to take dummy notes?"]
;; any number between 0 and 1 (the greater it is the faster the changes of the next-interval of card reviews) (default 0.5)
;; :srs/learning-fraction 0.5
;; the initial interval after the first successful review of a card (default 4)
;; :srs/initial-interval 4
;; hide specific properties for blocks
;; E.g. :block-hidden-properties #{:created-at :updated-at}
;; :block-hidden-properties #{}
;; Enable all your properties to have corresponding pages
:property-pages/enabled? true
:feature/enable-journals? true
:editor/logical-outdenting? false
:graph/settings {:journal? false, :excluded-pages? false, :builtin-pages? false, :orphan-pages? false}
;; Properties to exclude from having property pages
;; E.g.:property-pages/excludelist #{:duration :author}
;; :property-pages/excludelist
;; logbook setup
;; :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 uploading setup
;; :mobile/photo
;; {:allow-editing? true}
;; Mobile features options
;; Gestures
;; :mobile
;; {:gestures/disabled-in-block-with-tags ["kanban"]}
;; Extra CodeMirror options
;; :editor/extra-codemirror-options {:keyMap "emacs" :lineWrapping true}
;; ignore #+keyword: for parsing page references in orgmode
;:ignored-page-references-keywords #{"книга" "существо"}
:zotero/settings-v2 {"mirzaev" {}}
:ui/show-brackets? true
:feature/enable-flashcards? true
;; Quick capture templates on mobile for recieving contents from other apps.
;; Each template contains three elements {time}, {text} and {url}, which can be auto-expanded
;; by received contents from other apps. Note: the {} cannot be omitted.
;; - {time}: capture time
;; - {text}: text that users selected before sharing.
;; - {url}: url or assets path for media files stored in Logseq.
;; You can also reorder them, or even only use 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}"}
}

0
logseq/custom.css Normal file
View File

0
logseq/graphs-txid.edn Normal file
View File

1
logseq/metadata.edn Normal file
View File

@ -0,0 +1 @@
{}

141
logseq/pages-metadata.edn Normal file
View File

@ -0,0 +1,141 @@
[{:block/name "a",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "b",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "c",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "canceled",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "cancelled",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "card",
:block/created-at 1665038255975,
:block/updated-at 1665038255975}
{:block/name "contents",
:block/created-at 1665036689247,
:block/updated-at 1665036689247}
{:block/name "doing",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "done",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "favorites",
:block/created-at 1665038255975,
:block/updated-at 1665038255975}
{:block/name "in-progress",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "later",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "nov 1st, 2022",
:block/created-at 1667224845858,
:block/updated-at 1667224845858}
{:block/name "now",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "oct 13th, 2022",
:block/created-at 1665634819268,
:block/updated-at 1665634819268}
{:block/name "oct 14th, 2022",
:block/created-at 1665679628484,
:block/updated-at 1665679628484}
{:block/name "oct 31st, 2022",
:block/created-at 1667169745294,
:block/updated-at 1667169745294}
{:block/name "oct 6th, 2022",
:block/created-at 1665032799148,
:block/updated-at 1665036934498}
{:block/name "todo",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "wait",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "waiting",
:block/created-at 1664492434590,
:block/updated-at 1664492434590}
{:block/name "автор",
:block/created-at 1665033237139,
:block/updated-at 1665033237139}
{:block/name "айзек азимов",
:block/created-at 1664492840048,
:block/updated-at 1665038176093}
{:block/name "бутлеров александр михайлович",
:block/created-at 1665032303938,
:block/updated-at 1665038241825}
{:block/name "вильгельм фридрих оствальд",
:block/created-at 1664679089385,
:block/updated-at 1665038236364}
{:block/name "георгий быков владимирович",
:block/created-at 1667172914740,
:block/updated-at 1667173012487}
{:block/name "джон бернал десмонд",
:block/created-at 1664678785252,
:block/updated-at 1665038158151}
{:block/name "джуа микеле",
:block/created-at 1665027990411,
:block/updated-at 1665037020071}
{:block/name "ипатьев владимир николаевич",
:block/created-at 1665037938574,
:block/updated-at 1665038246186}
{:block/name "история химии",
:block/created-at 1665027990817,
:block/updated-at 1665037056623}
{:block/name "книга",
:block/created-at 1665033237139,
:block/updated-at 1665033394076}
{:block/name "краткая история биологии",
:block/created-at 1665027990817,
:block/updated-at 1665036371314}
{:block/name "краткая история химии",
:block/created-at 1664678785194,
:block/updated-at 1665037877522}
{:block/name "кузнецов владимир иванович",
:block/created-at 1665027990485,
:block/updated-at 1665037131993}
{:block/name "наука в истории общества",
:block/created-at 1664679007054,
:block/updated-at 1665036844349}
{:block/name "павел лукьянов митрофанович",
:block/created-at 1667173126803,
:block/updated-at 1667173181584}
{:block/name "прочитано",
:block/created-at 1665033237139,
:block/updated-at 1665033237139}
{:block/name "путеводные нити в химии",
:block/created-at 1665027990571,
:block/updated-at 1665036734801}
{:block/name "соловьев юрий иванович",
:block/created-at 1665027990600,
:block/updated-at 1665038124811}
{:block/name "существо",
:block/created-at 1665032839855,
:block/updated-at 1665032839855}
{:block/name "теория резонанса",
:block/created-at 1665634819710,
:block/updated-at 1667173029295}
{:block/name "фридрих бергиус",
:block/created-at 1665634819354,
:block/updated-at 1665634819354}
{:block/name "цитата",
:block/created-at 1665037494340,
:block/updated-at 1665037494340}
{:block/name "человек",
:block/created-at 1665032839855,
:block/updated-at 1665032839855}
{:block/name "шаблоны",
:block/created-at 1664678785399,
:block/updated-at 1665038035406}
{:block/name "эволюция основных теоретических проблем в химии",
:block/created-at 1665027990629,
:block/updated-at 1665036788577}
{:block/name "эволюция представлений об основных законах химии",
:block/created-at 1665027990644,
:block/updated-at 1665036816461}]

1
logseq/srs-of-matrix.edn Normal file
View File

@ -0,0 +1 @@
{0 {2.5 3.71}}

1
pages/contents.md Normal file
View File

@ -0,0 +1 @@
-

View File

@ -0,0 +1,9 @@
- #существо #человек
- ![Фотография](../assets/asimov_1665038173232_0.jpg){:height 250, :width 250}
- ## Ссылки
id:: 63362650-c787-4913-ba87-4d2bafb9e018
- [Википедия](https://ru.wikipedia.org/wiki/%D0%90%D0%B7%D0%B8%D0%BC%D0%BE%D0%B2,_%D0%90%D0%B9%D0%B7%D0%B5%D0%BA)
- ## Книги
- {{query (and ([[книга]]) (property автор [[Айзек Азимов]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,8 @@
- #существо #человек
- ![Фотография](../assets/butlerov_1665032366734_0.png){:height 250, :width 250}
- ## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%91%D1%83%D1%82%D0%BB%D0%B5%D1%80%D0%BE%D0%B2,_%D0%90%D0%BB%D0%B5%D0%BA%D1%81%D0%B0%D0%BD%D0%B4%D1%80_%D0%9C%D0%B8%D1%85%D0%B0%D0%B9%D0%BB%D0%BE%D0%B2%D0%B8%D1%87)
- ## Книги
- {{query (and ([[книга]]) (property автор [[Бутлеров Александр Михайлович]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,33 @@
- #существо #человек
- ![Фотография](../assets/ostvald_1665038218258_0.jpg){:height 250, :width 250}
- ## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%9E%D1%81%D1%82%D0%B2%D0%B0%D0%BB%D1%8C%D0%B4,_%D0%92%D0%B8%D0%BB%D1%8C%D0%B3%D0%B5%D0%BB%D1%8C%D0%BC)
- ## Книги
- {{query (and ([[книга]]) (property автор [[Вильгельм Фридрих Оствальд]]))}}
query-table:: true
query-properties:: [:title :прочитано]
- ## Цитаты
card-last-score:: 3
card-repeats:: 1
card-next-schedule:: 2022-10-10T04:54:10.196Z
card-last-interval:: 4
card-ease-factor:: 2.36
card-last-reviewed:: 2022-10-06T04:54:10.197Z
- История науки даёт лучший и наиболее надежный материал, на котором могут быть изучены закономерности в развитии человечества
card-last-score:: 1
card-repeats:: 1
card-next-schedule:: 2022-10-06T14:00:00.000Z
card-last-interval:: -1
card-ease-factor:: 2.5
card-last-reviewed:: 2022-10-06T04:46:44.633Z
id:: 633e5bae-04b9-4e38-883a-33b327161a45
- Взято из [[Краткая история химии]]
- ## Вопросы
- Что даёт наиболее надёжный материал для изучения закономерностей в развитии человечества? #card #цитата
card-last-interval:: 4
card-repeats:: 1
card-ease-factor:: 2.6
card-next-schedule:: 2022-10-10T04:57:29.764Z
card-last-reviewed:: 2022-10-06T04:57:29.764Z
card-last-score:: 5
- ((633e5bae-04b9-4e38-883a-33b327161a45))

View File

@ -0,0 +1,8 @@
- #существо #человек
- ![Фотография](../assets/bikov_1667172959128_0.jpg){:height 250, :width 250}
## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%91%D1%8B%D0%BA%D0%BE%D0%B2,_%D0%93%D0%B5%D0%BE%D1%80%D0%B3%D0%B8%D0%B9_%D0%92%D0%BB%D0%B0%D0%B4%D0%B8%D0%BC%D0%B8%D1%80%D0%BE%D0%B2%D0%B8%D1%87)
## Книги
- {{query (and ([[книга]]) (property автор [[Георгий Быков Владимирович]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,8 @@
- #существо #человек
- ![Фотография](../assets/bernal_1665038154713_0.jpg){:height 250, :width 250}
- ## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%91%D0%B5%D1%80%D0%BD%D0%B0%D0%BB,_%D0%94%D0%B6%D0%BE%D0%BD_%D0%94%D0%B5%D1%81%D0%BC%D0%BE%D0%BD%D0%B4)
## Книги
- {{query (and ([[книга]]) (property автор [[Джон Бернал Десмонд]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,6 @@
- #существо #человек
- ![Фотография](../assets/mikele_1665038083005_0.jpg){:height 250, :width 250}
## Книги
- {{query (and ([[книга]]) (property автор [[Джуа Микеле]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,8 @@
- #существо #человек
- ![Фотография](../assets/ipatyev_1665038002102_0.jpg){:height 250, :width 250}
## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%98%D0%BF%D0%B0%D1%82%D1%8C%D0%B5%D0%B2,_%D0%92%D0%BB%D0%B0%D0%B4%D0%B8%D0%BC%D0%B8%D1%80_%D0%9D%D0%B8%D0%BA%D0%BE%D0%BB%D0%B0%D0%B5%D0%B2%D0%B8%D1%87)
## Книги
- {{query (and ([[книга]]) (property автор [[Ипатьев Владимир Николаевич]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,4 @@
- #книга
title:: [[история химии]]
автор:: [[Джуа Микеле]]
прочитано:: нет

View File

@ -0,0 +1,4 @@
- #книга
title:: [[краткая история биологии]]
автор:: [[Айзек Азимов]]
прочитано:: нет

View File

@ -0,0 +1,16 @@
- #книга
title:: [[краткая история химии]]
автор:: [[Айзек Азимов]]
прочитано:: нет
- ## Упомянутые в содержании книги
- [[Наука в истории общества]]
- [[Путеводные нити в химии]]
- [[Эволюция основных теоретических проблем в химии]]
- [[Эволюция представлений об основных законах химии]]
- [[Краткая история биологии]]
- [[История химии]]
- ## Замечания редактора
- [Азимов]([[Айзек Азимов]]) в своей [книге]([[Краткая история химии]]) был "поразительно небрежен" при оценке роли [Бутлерова]([[Бутлеров Александр Михайлович]])
- "[Азимов]([[Айзек Азимов]]) абсолютизирует значение [теории резонанса]([[Теория резонанса]])"
-
-

View File

@ -0,0 +1,5 @@
- #существо #человек
- ## Книги
- {{query (and ([[книга]]) (property автор [[Кузнецов Владимир Иванович]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,4 @@
- #книга
title:: [[наука в истории общества]]
автор:: [[Джон Бернал Десмонд]]
прочитано:: нет

View File

@ -0,0 +1,8 @@
- #существо #человек
- ![Фотография](../assets/lukyanov_1667173153396_0.jpg){:height 250, :width 250}
## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%9B%D1%83%D0%BA%D1%8C%D1%8F%D0%BD%D0%BE%D0%B2,_%D0%9F%D0%B0%D0%B2%D0%B5%D0%BB_%D0%9C%D0%B8%D1%82%D1%80%D0%BE%D1%84%D0%B0%D0%BD%D0%BE%D0%B2%D0%B8%D1%87)
## Книги
- {{query (and ([[книга]]) (property автор [[Павел Лукьянов Митрофанович]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,4 @@
- #книга
title:: [[путеводные нити в химии]]
автор:: [[Вильгельм Фридрих Оствальд]]
прочитано:: нет

View File

@ -0,0 +1,9 @@
- #существо #человек
- ![Фотография](){:height 250, :width 250}
-
## Ссылки
- [Википедия]()
## Книги
- {{query (and ([[книга]]) (property автор [[сергей погодин александрович]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,7 @@
- #существо #человек
- ## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%A1%D0%BE%D0%BB%D0%BE%D0%B2%D1%8C%D1%91%D0%B2,_%D0%AE%D1%80%D0%B8%D0%B9_%D0%98%D0%B2%D0%B0%D0%BD%D0%BE%D0%B2%D0%B8%D1%87)
- ## Книги
- {{query (and ([[книга]]) (property автор [[Соловьев Юрий Иванович]]))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,5 @@
- ## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%A2%D0%B5%D0%BE%D1%80%D0%B8%D1%8F_%D1%80%D0%B5%D0%B7%D0%BE%D0%BD%D0%B0%D0%BD%D1%81%D0%B0)
- ## Комментарии
- #### 2022.10.31
- Я не способен понять, что это такое, поэтому просто добавил ссылку на википедию

View File

@ -0,0 +1,8 @@
- #существо #человек
- ![Фотография](../assets/bergius_1665038525645_0.jpg){:height 250, :width 250}
## Ссылки
- [Википедия](https://ru.wikipedia.org/wiki/%D0%91%D0%B5%D1%80%D0%B3%D0%B8%D1%83%D1%81,_%D0%A4%D1%80%D0%B8%D0%B4%D1%80%D0%B8%D1%85)
## Книги
- {{query (and ([[книга]]) (property автор [[Фридрих Бергиус]]))}}
query-table:: true
query-properties:: [:title :прочитано]

23
pages/Шаблоны.md Normal file
View File

@ -0,0 +1,23 @@
template:: человек
template-including-parent:: false
- #существо #человек
- ![Фотография](){:height 250, :width 250}
- ## Ссылки
- [Википедия]()
- ## Книги
- {{query (and ([[книга]]) (property автор <% current page %>))}}
query-table:: true
query-properties:: [:title :прочитано]
- template:: книга
template-including-parent:: false
- #книга
title:: <% current page %>
автор::
прочитано:: нет
- template:: Запрос списка книг
template-including-parent:: false
- ## Книги
- {{query (and ([[книга]]) (property автор <% current page %>))}}
query-table:: true
query-properties:: [:title :прочитано]

View File

@ -0,0 +1,4 @@
- #книга
title:: [[эволюция основных теоретических проблем в химии]]
автор:: [[Соловьев Юрий Иванович]]
прочитано:: нет

View File

@ -0,0 +1,4 @@
- #книга
title:: [[эволюция представлений об основных законах химии]]
автор:: [[Кузнецов Владимир Иванович]]
прочитано:: нет