mirror of
https://github.com/flancian/garden.git
synced 2026-08-07 23:16:21 +00:00
Auto saved by Logseq
This commit is contained in:
@@ -0,0 +1 @@
|
|||||||
|
- #pull [[bobby lyte]]
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
- #pull [[flow state]]
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
- a [[podcast]].
|
||||||
|
- unfortunately [[spotify]] exclusive.
|
||||||
|
- #go https://ourflowstate.com
|
||||||
@@ -3,3 +3,6 @@
|
|||||||
- But then I found myself in Flancia on a [[weeknight]].
|
- But then I found myself in Flancia on a [[weeknight]].
|
||||||
- #push [[radijo musikii]]
|
- #push [[radijo musikii]]
|
||||||
- [[musikino]]
|
- [[musikino]]
|
||||||
|
- #push [[flow state]]
|
||||||
|
- I keep referring to the host as [[bobby flow]], as I have issues remembering his actual name. I hope he doesn't mind. he's actually [[bobby lyte]].
|
||||||
|
- [[s03e08]] on the topic of [[attachment]] resonated with me, [[buddhist]] vibes. also quotes [[alan watts]].
|
||||||
@@ -1,2 +1,8 @@
|
|||||||
|
<<<<<<< HEAD
|
||||||
- [[partido interdimensional pirata]]
|
- [[partido interdimensional pirata]]
|
||||||
-
|
-
|
||||||
|
=======
|
||||||
|
- #push [[logseq]]
|
||||||
|
- I keep pressing [[g t]] to [[go today]] but it actually means [[go tomorrow]]
|
||||||
|
- [[g p]] for [[go previous]] fixes it :)
|
||||||
|
>>>>>>> d12a23f1972745fcf02a0e0c7da67f77174bfd48
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# build bridges
|
||||||
|
|
||||||
|
- [[live bridges]] are pro-social.
|
||||||
|
- All bridges were once [[desire paths]] in the [[air]].
|
||||||
|
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
- [[burn your ships]]
|
||||||
|
- would you ever burn your ships? it's isomorphic to [[burning bridges]]
|
||||||
|
- but I'd rather [[build bridges]]
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
{:journal-basis "daily"
|
||||||
|
|
||||||
|
;; [[flancian]]
|
||||||
|
:journal/page-title-format "yyyy-MM-dd"
|
||||||
|
:journal/file-name-format "yyyy-MM-dd"
|
||||||
|
:pages-directory "."
|
||||||
|
:journals-directory "journal"
|
||||||
|
|
||||||
|
:project {
|
||||||
|
;; Selected public notes can be published to https://logseq.com/your-project-or-your-username.
|
||||||
|
:name ""
|
||||||
|
:alias ""
|
||||||
|
;; your twitter handle
|
||||||
|
:twitter ""
|
||||||
|
;; description supports both hiccup and html
|
||||||
|
:description ""}
|
||||||
|
|
||||||
|
;; 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 ""
|
||||||
|
|
||||||
|
;; Git settings
|
||||||
|
:git-pull-secs 60
|
||||||
|
:git-push-secs 10
|
||||||
|
:git-auto-push true
|
||||||
|
|
||||||
|
;; The app will ignore those directories or files.
|
||||||
|
;; E.g. "/archived" "/test.md"
|
||||||
|
:hidden []
|
||||||
|
|
||||||
|
;; When creating the new journal page, the app will use your template content here.
|
||||||
|
;; Example for Markdown users: "## [[Work]]\n###\n## [[Family]]\n###\n
|
||||||
|
;; Example for Org mode users: "** [[Work]]\n***\n** [[Family]]\n***\n
|
||||||
|
:default-templates
|
||||||
|
{:journals ""}
|
||||||
|
|
||||||
|
;; 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]
|
||||||
|
[?h :block/page ?p]
|
||||||
|
[?p :page/journal? true]
|
||||||
|
[?p :page/journal-day ?d]
|
||||||
|
[(>= ?d ?start)]
|
||||||
|
[(<= ?d ?today)]
|
||||||
|
[(contains? #{"NOW" "DOING"} ?marker)]]
|
||||||
|
: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]
|
||||||
|
[?h :block/ref-pages ?p]
|
||||||
|
[?p :page/journal? true]
|
||||||
|
[?p :page/journal-day ?d]
|
||||||
|
[(> ?d ?start)]
|
||||||
|
[(< ?d ?next)]
|
||||||
|
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]]
|
||||||
|
:inputs [:today :7d-after]
|
||||||
|
:collapsed? false}]}
|
||||||
|
|
||||||
|
;; Add your own commands to speedup.
|
||||||
|
;; E.g. [["js" "Javascript"]]
|
||||||
|
:commands
|
||||||
|
[]
|
||||||
|
|
||||||
|
;; Macros replace texts and will make you more productive.
|
||||||
|
;; For example:
|
||||||
|
;; Add this to the macros below:
|
||||||
|
;; {"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 {}
|
||||||
|
:markdown/version 2
|
||||||
|
:date-formatter "yyyy-MM-dd"
|
||||||
|
:editor/logical-outdenting? true
|
||||||
|
:favorites ["agora"]}
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
{:journal-basis "daily"
|
||||||
|
|
||||||
|
;; [[flancian]]
|
||||||
|
:journal/page-title-format "yyyy-MM-dd"
|
||||||
|
:journal/file-name-format "yyyy-MM-dd"
|
||||||
|
:pages-directory ""
|
||||||
|
:journals-directory "journal"
|
||||||
|
|
||||||
|
:project {
|
||||||
|
;; Selected public notes can be published to https://logseq.com/your-project-or-your-username.
|
||||||
|
:name ""
|
||||||
|
:alias ""
|
||||||
|
;; your twitter handle
|
||||||
|
:twitter ""
|
||||||
|
;; description supports both hiccup and html
|
||||||
|
:description ""}
|
||||||
|
|
||||||
|
;; 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 ""
|
||||||
|
|
||||||
|
;; Git settings
|
||||||
|
:git-pull-secs 60
|
||||||
|
:git-push-secs 10
|
||||||
|
:git-auto-push true
|
||||||
|
|
||||||
|
;; The app will ignore those directories or files.
|
||||||
|
;; E.g. "/archived" "/test.md"
|
||||||
|
:hidden []
|
||||||
|
|
||||||
|
;; When creating the new journal page, the app will use your template content here.
|
||||||
|
;; Example for Markdown users: "## [[Work]]\n###\n## [[Family]]\n###\n
|
||||||
|
;; Example for Org mode users: "** [[Work]]\n***\n** [[Family]]\n***\n
|
||||||
|
:default-templates
|
||||||
|
{:journals ""}
|
||||||
|
|
||||||
|
;; 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]
|
||||||
|
[?h :block/page ?p]
|
||||||
|
[?p :page/journal? true]
|
||||||
|
[?p :page/journal-day ?d]
|
||||||
|
[(>= ?d ?start)]
|
||||||
|
[(<= ?d ?today)]
|
||||||
|
[(contains? #{"NOW" "DOING"} ?marker)]]
|
||||||
|
: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]
|
||||||
|
[?h :block/ref-pages ?p]
|
||||||
|
[?p :page/journal? true]
|
||||||
|
[?p :page/journal-day ?d]
|
||||||
|
[(> ?d ?start)]
|
||||||
|
[(< ?d ?next)]
|
||||||
|
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]]
|
||||||
|
:inputs [:today :7d-after]
|
||||||
|
:collapsed? false}]}
|
||||||
|
|
||||||
|
;; Add your own commands to speedup.
|
||||||
|
;; E.g. [["js" "Javascript"]]
|
||||||
|
:commands
|
||||||
|
[]
|
||||||
|
|
||||||
|
;; Macros replace texts and will make you more productive.
|
||||||
|
;; For example:
|
||||||
|
;; Add this to the macros below:
|
||||||
|
;; {"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 {}
|
||||||
|
:markdown/version 2
|
||||||
|
:date-formatter "yyyy-MM-dd"
|
||||||
|
:editor/logical-outdenting? true
|
||||||
|
:favorites ["agora"]}
|
||||||
@@ -0,0 +1,90 @@
|
|||||||
|
{:journal-basis "daily"
|
||||||
|
|
||||||
|
;; [[flancian]]
|
||||||
|
:journal/page-title-format "yyyy-MM-dd"
|
||||||
|
:journal/file-name-format "yyyy-MM-dd"
|
||||||
|
:pages-directory ""
|
||||||
|
:journals-directory "journal"
|
||||||
|
|
||||||
|
:project {
|
||||||
|
;; Selected public notes can be published to https://logseq.com/your-project-or-your-username.
|
||||||
|
:name "flancian"
|
||||||
|
:alias "flancia"
|
||||||
|
;; your twitter handle
|
||||||
|
:twitter "flancian"
|
||||||
|
;; description supports both hiccup and html
|
||||||
|
:description "https://anagora.org/@flancian"}
|
||||||
|
|
||||||
|
;; 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 ""
|
||||||
|
|
||||||
|
;; Git settings
|
||||||
|
:git-pull-secs 60
|
||||||
|
:git-push-secs 10
|
||||||
|
:git-auto-push true
|
||||||
|
|
||||||
|
;; The app will ignore those directories or files.
|
||||||
|
;; E.g. "/archived" "/test.md"
|
||||||
|
:hidden []
|
||||||
|
|
||||||
|
;; When creating the new journal page, the app will use your template content here.
|
||||||
|
;; Example for Markdown users: "## [[Work]]\n###\n## [[Family]]\n###\n
|
||||||
|
;; Example for Org mode users: "** [[Work]]\n***\n** [[Family]]\n***\n
|
||||||
|
:default-templates
|
||||||
|
{:journals ""}
|
||||||
|
|
||||||
|
;; 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]
|
||||||
|
[?h :block/page ?p]
|
||||||
|
[?p :page/journal? true]
|
||||||
|
[?p :page/journal-day ?d]
|
||||||
|
[(>= ?d ?start)]
|
||||||
|
[(<= ?d ?today)]
|
||||||
|
[(contains? #{"NOW" "DOING"} ?marker)]]
|
||||||
|
: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]
|
||||||
|
[?h :block/ref-pages ?p]
|
||||||
|
[?p :page/journal? true]
|
||||||
|
[?p :page/journal-day ?d]
|
||||||
|
[(> ?d ?start)]
|
||||||
|
[(< ?d ?next)]
|
||||||
|
[(contains? #{"NOW" "LATER" "TODO"} ?marker)]]
|
||||||
|
:inputs [:today :7d-after]
|
||||||
|
:collapsed? false}]}
|
||||||
|
|
||||||
|
;; Add your own commands to speedup.
|
||||||
|
;; E.g. [["js" "Javascript"]]
|
||||||
|
:commands
|
||||||
|
[]
|
||||||
|
|
||||||
|
;; Macros replace texts and will make you more productive.
|
||||||
|
;; For example:
|
||||||
|
;; Add this to the macros below:
|
||||||
|
;; {"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 {}
|
||||||
|
:markdown/version 2
|
||||||
|
:date-formatter "yyyy-MM-dd"
|
||||||
|
:editor/logical-outdenting? true
|
||||||
|
:favorites ["agora"]}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
- a [[radio]] station
|
||||||
|
- [[german]] [[lithuanian]]
|
||||||
|
- [[go]] https://www.radijo-musikii.net/?fbclid=IwAR1dCkTwvWna0OSDw7CKDk6ZmtJeRfKBs2jEz0IFm9xGk8nofbYqq9GiPk8
|
||||||
Reference in New Issue
Block a user