Skip to content

Instantly share code, notes, and snippets.

View dannberg's full-sized avatar

Dann Berg dannberg

View GitHub Profile
@dannberg
dannberg / obsidian-book-moc-template.txt
Created March 17, 2024 17:27
Dann Berg's Books MOC page template. Read more about my system: https://dannb.org/blog/2022/recalling-books-youve-read-made-easy/
---
aliases: ["📚 Books"]
---
```meta-bind-button
label: New Book
hidden: false
class: ""
tooltip: ""
id: ""
style: default
@dannberg
dannberg / obsidian-book-note-template.txt
Created March 17, 2024 17:25
Dann Berg's Obsidian Book Note Template. Read more about my system for remembering things I read: https://dannb.org/blog/2022/recalling-books-youve-read-made-easy/
---
Author:
Title:
Date: <% tp.date.now("YYYY-MM-DD-dddd") %>
---
- Tags: [[📚 Books MOC]]
- Author:
<% await tp.file.move("/Sources/Books/" + tp.date.now("YYYY-MM-DD") + " 📚 " + tp.file.title) %>
# [[<% tp.date.now("YYYY-MM-DD") + " 📚 " + tp.file.title %>]]
@dannberg
dannberg / obsidian-physical-object-moc.txt
Last active March 20, 2024 21:24
Obsidian template for Physical Objects MOC. Full guide coming soon. Find other Obsidian guildes at dannb.org
\[[+Home]] %% tags:: #MOC %%
# Physical Objects MOC
```meta-bind-button
label: New Physical Object
hidden: false
class: ""
tooltip: ""
id: ""
style: primary
@dannberg
dannberg / obsidian-physical-object-template.txt
Created February 21, 2024 14:04
Obsidian template for Physical Objects. Full guide coming soon. Find other Obsidian guildes at dannb.org
---
Purchased: <% tp.date.now("YYYY-MM-DD") %>
Price:
URL:
---
tags:: [[🛍️ Physical Objects MOC]]
<% await tp.file.move("/Spaces/Physical Objects/" + tp.date.now("YYYY-MM-DD") + " " + tp.file.title) %>
# [[<% tp.date.now("YYYY-MM-DD") + " " + tp.file.title %>]]
# Specs
@dannberg
dannberg / obsidian-people-moc.txt
Created February 19, 2024 14:47
Dann Berg's Obsidian People MOC. Uses Metabind and Dataview plugins. View full People Note system: https://dannb.org/blog/2022/obsidian-people-note-template/
[[+Home]] #MOC
```meta-bind-button
label: New People Note
hidden: false
class: ""
tooltip: ""
id: ""
style: primary
actions:
@dannberg
dannberg / obsidian-meeting-moc.txt
Last active February 20, 2024 06:22
Dann Berg's Meeting MOC document for Obsidian. Full instructions for implementation here: https://dannb.org/blog/2023/obsidian-meeting-note-template/. See the YouTube tutorial here: https://youtu.be/Ud16HOQoS5Q
[[+Home]] %% tags:: #MOC %%
# Meetings MOC
Meetings are timestamped events with other people, where information is exchanged and collected. Meeting notes are intrinsically ephemeral. They're stored in a separate Space than other Umami notes (`Timestamps/Meetings`) and rarely reviewed. If there's information in a meeting that needs to be accessed later, it should be moved into a more evergreen note in the Umami folder.
**Template:** [[Template, Meeting]]
```meta-bind-button
label: New Meeting
hidden: false
@dannberg
dannberg / obsidian-meeting-template.txt
Last active March 13, 2024 14:44
Dann Berg's Meeting template for Obsidian. Full implementation instructions here: https://dannb.org/blog/2023/obsidian-meeting-note-template/. See the YouTube tutorial here: https://youtu.be/Ud16HOQoS5Q
---
date: <% tp.file.creation_date() %>
type: meeting
company:
summary: " "
---
tags: [[🗣 Meetings MOC]]
Date: [[<% tp.date.now("YYYY-MM-DD-dddd") %>]]
<% await tp.file.rename(tp.date.now("YYYY-MM-DD") + " " + tp.file.title) %>
# [[<% tp.date.now("YYYY-MM-DD") + " " + tp.file.title %>]]
@dannberg
dannberg / obsidian-people-template.txt
Last active May 11, 2024 16:18
Dann Berg's People Template for Obsidian. Uses Dataview & Templater plugins. Should be saved as a Markdown file in Obsidian. See full tutorial for setup instructions: https://dannb.org/blog/2022/obsidian-people-note-template/
---
company:
location:
title:
email:
website:
aliases:
---
tags:: [[👥 People MOC]]
@dannberg
dannberg / obsidian-daily-note-template.txt
Last active May 10, 2024 16:39
Dann Berg's Daily Note Template for Obsidian. Uses Dataview & Templater plugins. Should be saved as a Markdown file in Obsidian. Read the full tour: https://dannb.org/blog/2022/obsidian-daily-note-template/
---
created: <% tp.file.creation_date() %>
---
tags:: [[+Daily Notes]]
# <% moment(tp.file.title,'YYYY-MM-DD').format("dddd, MMMM DD, YYYY") %>
<< [[Timestamps/<% tp.date.now("YYYY", -1) %>/<% tp.date.now("MM-MMMM", -1) %>/<% tp.date.now("YYYY-MM-DD-dddd", -1) %>|Yesterday]] | [[Timestamps/<% tp.date.now("YYYY", 1) %>/<% tp.date.now("MM-MMMM", 1) %>/<% tp.date.now("YYYY-MM-DD-dddd", 1) %>|Tomorrow]] >>
---