Auto saved by Logseq

master
Borja Robert 10 months ago
parent 4d171c3a76
commit 101550c04f

@ -10,7 +10,7 @@
- Cambio de cultura a base de reuniones - Cambio de cultura a base de reuniones
- Hay reunión del [[Grupo de Trabajo]] la semana que viene - Hay reunión del [[Grupo de Trabajo]] la semana que viene
- Comunicación y proyectos tienen que estar más involucrados en todos los sentidos. Tiene que haber comunicación fluída entre [[María Santamaría]], [[Andrea Gómez]], [[Mariana Porta]] y [[Borja Robert]] - Comunicación y proyectos tienen que estar más involucrados en todos los sentidos. Tiene que haber comunicación fluída entre [[María Santamaría]], [[Andrea Gómez]], [[Mariana Porta]] y [[Borja Robert]]
- TODO PREPARAR una propuesta de proyectos para el miniGRI que tienen que hacer [[Mariana Porta]] y [[Adela]] ??? - DONE PREPARAR una propuesta de proyectos para el miniGRI que tienen que hacer [[Mariana Porta]] y [[Adela]] ???
- [[Marina]] empieza el curso en IESE el 12 de febrero - [[Marina]] empieza el curso en IESE el 12 de febrero
- DONE HACER una propuesta de 1 o 2 paneles para el #Evento (tarde) - DONE HACER una propuesta de 1 o 2 paneles para el #Evento (tarde)
DEADLINE: <2024-02-06 Tue> DEADLINE: <2024-02-06 Tue>

@ -11,7 +11,7 @@
SCHEDULED: <2024-02-22 Thu> SCHEDULED: <2024-02-22 Thu>
- DONE COMPARTIR con [[Lucas]] el qué, ya ni me acuerdo - DONE COMPARTIR con [[Lucas]] el qué, ya ni me acuerdo
SCHEDULED: <2024-02-21 Wed> SCHEDULED: <2024-02-21 Wed>
- TODO RECIBIR PPT del [[Evento]] que preparó [[Lucas]] y me tiene que mandar [[Ade]] - DONE RECIBIR PPT del [[Evento]] que preparó [[Lucas]] y me tiene que mandar [[Ade]]
- -
- # #Eventos - # #Eventos
- DONE [[2024/02/21]] 13:30 - 14:30: Reunión [[Adela]] + Borja - DONE [[2024/02/21]] 13:30 - 14:30: Reunión [[Adela]] + Borja

@ -20,7 +20,7 @@
;; Define the default journal page template. ;; Define the default journal page template.
;; Enter the template name between the quotes. ;; Enter the template name between the quotes.
:default-templates :default-templates
{:journals ""} {:journals "daily-template"}
;; Set a custom date format for the journal page title. ;; Set a custom date format for the journal page title.
;; Default value: "MMM do, yyyy" ;; Default value: "MMM do, yyyy"
@ -81,7 +81,7 @@
;; the 'scheduled tasks and deadlines' query. ;; the 'scheduled tasks and deadlines' query.
;; Example usage: ;; Example usage:
;; Display all scheduled and deadline blocks for the next 14 days: ;; Display all scheduled and deadline blocks for the next 14 days:
;; :scheduled/future-days 14 :scheduled/future-days 14
;; Default value: 7 ;; Default value: 7
;; :scheduled/future-days 7 ;; :scheduled/future-days 7
@ -208,12 +208,12 @@
;; The "NEXT" query returns tasks with "NOW", "LATER", or "TODO" status. ;; The "NEXT" query returns tasks with "NOW", "LATER", or "TODO" status.
:default-queries :default-queries
{:journals {:journals
[{:title "🔨 NOW" [{:title "🔨 TODOs"
:query [:find (pull ?h [*]) :query [:find (pull ?h [*])
:in $ ?start ?today :in $ ?start ?today
:where :where
[?h :block/marker ?marker] [?h :block/marker ?marker]
[(contains? #{"NOW" "DOING"} ?marker)] [(contains? #{"TODO" "DOING"} ?marker)]
[?h :block/page ?p] [?h :block/page ?p]
[?p :block/journal? true] [?p :block/journal? true]
[?p :block/journal-day ?d] [?p :block/journal-day ?d]
@ -225,6 +225,23 @@
(get h :block/priority "Z")) result)) (get h :block/priority "Z")) result))
:group-by-page? false :group-by-page? false
:collapsed? false} :collapsed? false}
{:title "🗄️ Forgotten"
:query [:find (pull ?h [*])
:in $ ?start ?next
:where
[?h :block/marker ?marker]
[?h :block/page ?p]
[?p :page/journal? true]
[?p :page/journal-day ?d]
[(> ?d ?start)]
[(< ?d ?next)]
[(contains? #{"NOW" "DOING" "LATER" "TODO"} ?marker)]]
:inputs [:365d :14d]
:result-transform (fn [result]
(sort-by (fn [h]
(get h :block/priority "Z")) result))
:collapsed? true}
{:title "📅 NEXT" {:title "📅 NEXT"
:query [:find (pull ?h [*]) :query [:find (pull ?h [*])
:in $ ?start ?next :in $ ?start ?next
@ -417,4 +434,7 @@
:editor/logical-outdenting? true :editor/logical-outdenting? true
:editor/preferred-pasting-file? true :editor/preferred-pasting-file? true
:feature/enable-whiteboards? false :feature/enable-whiteboards? false
:ui/show-brackets? true} :ui/show-brackets? true
:graph/settings {:orphan-pages? false
:journal? false
:excluded-pages? false}}

@ -255,7 +255,7 @@
[(< ?d ?next)]] [(< ?d ?next)]]
:inputs [:today :7d-after] :inputs [:today :7d-after]
:group-by-page? false :group-by-page? false
:collapsed? false}]} :collapsed? true}]}
;; Add custom commands to the command palette ;; Add custom commands to the command palette
;; Example usage: ;; Example usage:

Loading…
Cancel
Save