From 5886f90029c7446766c1e75d140a5fe21132a900 Mon Sep 17 00:00:00 2001 From: Ava Gaiety W Date: Wed, 20 Sep 2023 17:59:59 -0500 Subject: [PATCH] Correct TIL dates --- content/.obsidian/types.json | 2 +- content/.obsidian/workspace.json | 19 +++++++++---------- content/tils/pdf_obsidian_at_page.md | 2 +- content/tils/struct_pattern_matching.md | 2 +- 4 files changed, 12 insertions(+), 13 deletions(-) diff --git a/content/.obsidian/types.json b/content/.obsidian/types.json index 5c67a70..f7e6513 100644 --- a/content/.obsidian/types.json +++ b/content/.obsidian/types.json @@ -3,6 +3,6 @@ "aliases": "aliases", "cssclasses": "multitext", "tags": "tags", - "date": "text" + "date": "date" } } \ No newline at end of file diff --git a/content/.obsidian/workspace.json b/content/.obsidian/workspace.json index d11b2a8..b81f59f 100644 --- a/content/.obsidian/workspace.json +++ b/content/.obsidian/workspace.json @@ -13,7 +13,7 @@ "state": { "type": "markdown", "state": { - "file": "tils/pdf_obsidian_at_page.md", + "file": "tils/struct_pattern_matching.md", "mode": "source", "source": false } @@ -48,7 +48,7 @@ "state": { "type": "search", "state": { - "query": "images", + "query": "", "matchingCase": false, "explainSearch": false, "collapseAll": false, @@ -65,8 +65,7 @@ "state": {} } } - ], - "currentTab": 1 + ] } ], "direction": "horizontal", @@ -86,7 +85,7 @@ "state": { "type": "backlink", "state": { - "file": "tils/pdf_obsidian_at_page.md", + "file": "tils/struct_pattern_matching.md", "collapseAll": false, "extraContext": false, "sortOrder": "alphabetical", @@ -103,7 +102,7 @@ "state": { "type": "outgoing-link", "state": { - "file": "tils/pdf_obsidian_at_page.md", + "file": "tils/struct_pattern_matching.md", "linksCollapsed": false, "unlinkedCollapsed": true } @@ -126,7 +125,7 @@ "state": { "type": "outline", "state": { - "file": "tils/pdf_obsidian_at_page.md" + "file": "tils/struct_pattern_matching.md" } } }, @@ -146,7 +145,7 @@ "state": { "type": "file-properties", "state": { - "file": "tils/pdf_obsidian_at_page.md" + "file": "tils/struct_pattern_matching.md" } } } @@ -167,12 +166,12 @@ "command-palette:Open command palette": false } }, - "active": "8ca86ec79a0654db", + "active": "3b2cd9884e9de93b", "lastOpenFiles": [ + "tils/pdf_obsidian_at_page.md", "images/til-pdf-page.png", "images/Pasted image 20230920175204.png", "tils/asdf_direnv.md", - "tils/pdf_obsidian_at_page.md", "tils/struct_pattern_matching.md", "tils/tils.json", "til.md", diff --git a/content/tils/pdf_obsidian_at_page.md b/content/tils/pdf_obsidian_at_page.md index 12a9a3b..33db7f4 100644 --- a/content/tils/pdf_obsidian_at_page.md +++ b/content/tils/pdf_obsidian_at_page.md @@ -1,5 +1,5 @@ --- -date: Created +date: 2023-09-20 title: embed PDF in Obsidian at specific page --- [Obsidian](https://obsidian.md/) is a powerful note taking tool and is how I write content for this very blog. It's a great way to organize your life, but did you know not only can you embed images, but PDF's and even specify which page they should preview at? diff --git a/content/tils/struct_pattern_matching.md b/content/tils/struct_pattern_matching.md index 975b2c9..b0662ab 100644 --- a/content/tils/struct_pattern_matching.md +++ b/content/tils/struct_pattern_matching.md @@ -1,6 +1,6 @@ --- title: Struct Pattern Matching -date: Created +date: 2023-09-13 --- [Pattern Matching in Elixir](https://elixir-lang.org/getting-started/pattern-matching.html) feels like half of the language and may consume half of my TIL before long. But, today was the first day I realized you could specify that a pattern match could not just verify the contents of a map, but that it comes from a specific struct.