start the day
task | description |
---|---|
calendar | if > 9am |
water | get a glass of water |
coffee | time to be honest about how the day is started |
migrate to 3 pages | push to quavers, gh, and collections |
cdot | add starred |
migrate yesterday | projects to tasks |
day view | draw up, add instantiate |
gantt | assess what's due soon |
assign task cycles | starred |
\(\overline o\) | time dependent | anytime |
---|---|---|
research | \(\varphi\) (postdoc work, manuscripts w due dates) | \(\theta\) (collaborations, reading) |
not research | \(\psi\) (busywork) | \(\pi\) (exercise, housework) |
tasks <- read_rds("data/tasks.rds")
tasks %>%
filter(status == "star") %>%
select(-weekend) %>%
gt(
groupname_col = "category"
) %>%
opt_row_striping() %>%
tab_options(
row_group.background.color = "lightgrey"
)
status | task | description |
---|---|---|
pi | ||
star | dishes | wash and wipe benches |
star | wash | shower or face |
psi | ||
star | weekend | only calendar, clue, and goals, no email, no req to talk to peoples |
star | calendar | check day, week, month; note events of the day; upcoming deadlines; migrate stuff for today to 𝅘𝅥𝅮, ♫. book yoga |
star | fire | What is on fire? task or project must be due today and someone else will get stuffed around if I don't do it |
star | starred email | snooze or add task to daily log to move along |
star | clue | track |
star | stuff | process papers, notes, unpack bags, etc. |
star | goals | set pom goals for day: 4 in each category, subtract meetings. |
tasks %>%
filter(status == "star") %>%
filter(weekend) %>%
select(-weekend) %>%
gt(
groupname_col = "category"
) %>%
opt_row_striping() %>%
tab_options(
row_group.background.color = "lightgrey"
)
status | task | description |
---|---|---|
pi | ||
star | dishes | wash and wipe benches |
psi | ||
star | calendar | check day, week, month; note events of the day; upcoming deadlines; migrate stuff for today to 𝅘𝅥𝅮, ♫. book yoga |
star | fire | What is on fire? task or project must be due today and someone else will get stuffed around if I don't do it |
star | clue | track |
star | goals | set pom goals for day: 4 in each category, subtract meetings. |