1
0
Fork 0

Correct TIL dates

This commit is contained in:
Ava Gaiety W 2023-09-20 17:59:59 -05:00
parent 7f96d3d4e7
commit 5886f90029
4 changed files with 12 additions and 13 deletions

View file

@ -3,6 +3,6 @@
"aliases": "aliases", "aliases": "aliases",
"cssclasses": "multitext", "cssclasses": "multitext",
"tags": "tags", "tags": "tags",
"date": "text" "date": "date"
} }
} }

View file

@ -13,7 +13,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "tils/pdf_obsidian_at_page.md", "file": "tils/struct_pattern_matching.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
@ -48,7 +48,7 @@
"state": { "state": {
"type": "search", "type": "search",
"state": { "state": {
"query": "images", "query": "",
"matchingCase": false, "matchingCase": false,
"explainSearch": false, "explainSearch": false,
"collapseAll": false, "collapseAll": false,
@ -65,8 +65,7 @@
"state": {} "state": {}
} }
} }
], ]
"currentTab": 1
} }
], ],
"direction": "horizontal", "direction": "horizontal",
@ -86,7 +85,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "tils/pdf_obsidian_at_page.md", "file": "tils/struct_pattern_matching.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -103,7 +102,7 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "tils/pdf_obsidian_at_page.md", "file": "tils/struct_pattern_matching.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -126,7 +125,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "tils/pdf_obsidian_at_page.md" "file": "tils/struct_pattern_matching.md"
} }
} }
}, },
@ -146,7 +145,7 @@
"state": { "state": {
"type": "file-properties", "type": "file-properties",
"state": { "state": {
"file": "tils/pdf_obsidian_at_page.md" "file": "tils/struct_pattern_matching.md"
} }
} }
} }
@ -167,12 +166,12 @@
"command-palette:Open command palette": false "command-palette:Open command palette": false
} }
}, },
"active": "8ca86ec79a0654db", "active": "3b2cd9884e9de93b",
"lastOpenFiles": [ "lastOpenFiles": [
"tils/pdf_obsidian_at_page.md",
"images/til-pdf-page.png", "images/til-pdf-page.png",
"images/Pasted image 20230920175204.png", "images/Pasted image 20230920175204.png",
"tils/asdf_direnv.md", "tils/asdf_direnv.md",
"tils/pdf_obsidian_at_page.md",
"tils/struct_pattern_matching.md", "tils/struct_pattern_matching.md",
"tils/tils.json", "tils/tils.json",
"til.md", "til.md",

View file

@ -1,5 +1,5 @@
--- ---
date: Created date: 2023-09-20
title: embed PDF in Obsidian at specific page 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? [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?

View file

@ -1,6 +1,6 @@
--- ---
title: Struct Pattern Matching 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. [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.