Skip to content

Commit

Permalink
Merge pull request #407 from jermspeaks/content/stream-2024-04-08
Browse files Browse the repository at this point in the history
Add a stream post about context archive
  • Loading branch information
jermspeaks authored Apr 8, 2024
2 parents 0a2a7b9 + 0ee3add commit 60afb5d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
22 changes: 22 additions & 0 deletions src/content/stream/2024-04-08T18:47:44.253Z.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
draft: false
pubDate: "2024-04-08T18:47:44.253Z"
title: "Context Archival"
---

I periodically try to dump all of my mental contexts into my notes. I noticed this comes in a few different flavors.

- Safari Tabs on my iPhone and iPad: Goes into daily notes
- Random thoughts - go into drafts and get processed daily
- Shopping - including groceries, bills, and things I would like but not need. Those all go into a task manager
- Dangling tasks - gets reviewed in the task manager inbox weekly
- Personal thoughts - journaling every two weeks, although I want to do this more often
- Events I have not logged - go into my calendar.
- Downloads folder - weekly processed into other folders.
- Long-term storage in Dropbox and backup drive.
- Short-term in Inbox folder
- Photos - place special ones in folders. Select shots in favorites.

I am trying to think of other things that I purge. I used to write in a notepad and write on the page of everything I was thinking about. I used to write about people I have not spoken to in a long time that I should reach out to, mantras I came up with, or completely random thoughts.

Tiago Forte recommends [[putting all unused files into an Archive folder](https://fortelabs.com/blog/para/)](https://fortelabs.com/blog/para/). This This activity helps remove our digital file mess and stops us from immediately organizing everything.
3 changes: 2 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ import WritingListItem from "../components/WritingListItem.astro";
import StreamListItem from "../components/StreamListItem.astro";
const MAX_ITEMS = 4;
const MAX_STREAM_ENTRIES = 3;
const latestPosts = (await getCollection("writing"))
.filter((post) => !post.data.draft)
.sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf())
.slice(0, MAX_ITEMS);
const lastStream = (await getCollection("stream"))
.sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf())
.slice(0, 2);
.slice(0, MAX_STREAM_ENTRIES);
const lastProjects = (await getCollection("project"))
.sort((a, b) => b.data.createdDate.valueOf() - a.data.createdDate.valueOf())
.slice(0, MAX_ITEMS);
Expand Down

0 comments on commit 60afb5d

Please sign in to comment.