Skip to content

Instantly share code, notes, and snippets.

View meaganewaller's full-sized avatar

Meagan Waller meaganewaller

View GitHub Profile
@jorgegonzalez
jorgegonzalez / daily_notes_template.md
Created May 3, 2023 13:08
Obsidian Daily Notes Template (requires Templater and Dataview)
created
2023-05-02 10:17

tags: [[+Daily Notes]]

<% moment(tp.file.title,'YYYY-MM-DD').format("dddd, MMMM DD, YYYY") %>

<< [[<% fileDate = moment(tp.file.title, 'YYYY-MM-DD-dddd').subtract(1, 'd').format("[Timestamps]/YYYY/MM-MMMM/YYYY-MM-DD-dddd") %>|Yesterday]] | [[<% fileDate = moment(tp.file.title, 'YYYY-MM-DD-dddd').add(1, 'd').format("[Timestamps]/YYYY/MM-MMMM/YYYY-MM-DD-dddd") %>|Tomorrow]] >>

Weekly Review

Get clear

  • Weekly wipedown
  • Collect loose items and get into physical inbox
  • Inbox Zero
    • Physical inbox
    • Personal Gmail
    • Work email - Outlook
@louis030195
louis030195 / human_crm_template.md
Last active July 8, 2023 20:11
press raw to copy paste! (Obsidian template to deal with atomic human interactions) to be used with https://gist.github.com/louis030195/071f9d3980d2c57a5bfdcc0809702fc3
aliases

#personal #humans #relationships Created at {{date}}

Related

TODO

[!TODO] TODO

{{title}}

#personal-growth #personal

Months of the Year {{date:YYYY}}

Write 1 to 3 bullet points for any defining events that took place during each of the months of the year. Use your calendar, journal, photo reel, social media posts, or any other systems of record to prompt your memory. 

Look for significant events that adequately represent the month to you.

Hack: Press cmd+r and replace current year by last - then change last block end date to current year

Excalidraw

The Obsidian-Excalidraw plugin integrates Excalidraw, a feature rich sketching tool, into Obsidian. You can store and edit Excalidraw files in your vault, you can embed drawings into your documents, and you can link to documents and other drawings to/and from Excalidraw. For a showcase of Excalidraw features, please read my blog post here and/or watch the videos below.

Please upgrade to Obsidian v0.12.19 or higher to get the latest release.

@panahi
panahi / Published Shortcuts.md
Last active July 8, 2023 18:56
A collection of shortcuts that I've made
@lenalebt
lenalebt / README.md
Last active January 11, 2024 02:55
"Rollover Daily Todos" for Obsidian Templater

Rollover Daily Todos for Obsidian, but with the Templater Plugin

Rollver daily todos is a really nice extension for Obsidian.md that takes TODOs from yesterdays daily notes and rolls them over to today's notes. It has support for Obsidians built-in templates, but does - to my understanding - not really work well with the Templater Plugin. At least, I was unable to get it to work :-). Also, I wished it had some way to tell me that TODOs have been rolled over a few times already. Doing it this way is my way of working around these limitations.

I took some of the code of that "rollover daily todos" plugin and made it into a templater user script.

@erkobridee
erkobridee / 01__second-brain-system.md
Last active March 22, 2024 23:49
Second Brain System and productive useful references
@zachtib
zachtib / Session Template.md
Created July 10, 2022 20:23
RPG Session Notes in Obsidian+Templater

<%* session = await tp.user.rpg_session(tp) -%>

campaign: "Waterdeep Confidential" sessionNumber: <% session.number %> date: <% tp.date.now() %> <%* if (session.fcDate !== null) { -%> fc-date: year: <% session.fcDate.year %> month: <% session.fcDate.month %> day: <% session.fcDate.day %>

@Azurewren
Azurewren / Automated Periodic Note Creation.md
Last active February 5, 2024 20:26
Automated Periodic Note Creation

This is a Templater Startup Script for use in Obsidian.

Each time Obsidian is opened, Templater runs the script to see if a weekly, monthly, quarterly, and yearly file exists for the current date. If one exists, it moves on, if not, it creates the file using the appropriate template, in the appropriate place.

<%*
let wk = tp.date.now('GGGG-[W]WW');
let mnth = tp.date.now('MM MMMM');
let qrtr = tp.date.now('Qo [Quarter]');
let yr = tp.date.now('YYYY');