Skip to content

Instantly share code, notes, and snippets.

View meaganewaller's full-sized avatar

Meagan Waller meaganewaller

View GitHub Profile

#keybinds #obsidian #system also see [[n-templater-docs]] [[a-Obsidian-extension-notes]]

My file naming convention:

<key>-filename:

  • a - something important
  • j - journal
  • (w|m|q|y)r - reviews
  • n - note (catch all)
  • t - dedicated todo (seldom used)
  • z - zettel (seldom used)
@kmalcaba
kmalcaba / Birthday Callouts in Daily Notes.md
Last active July 22, 2023 15:27
Automatically insert birthday callouts for people's birthday in your daily notes in Obsidian

Birthday Callouts in Daily Notes

Description

Automatically insert birthday callouts for people's birthdays in your daily notes:

image

Edited 19/09/2022: Changed the alias part to use the updated structure (removed values)

@harmonify
harmonify / Obsidian MOC Templates with Dataview & Templater Plugins.md
Last active July 8, 2023 20:11
These are templates that will query all mentions (ingoing links) in a MOC. Requirements are Obsidian Dataview and Obsidian Templater plugins.

Obsidian MOC Templates with Dataview & Templater Plugins

This gist contains templates that will query all mentions (ingoing links). You can use it as a MOC template. Required plugins:

  • Obsidian Dataview
  • Obsidian Templater
@codysork
codysork / daily_journal_template.md
Last active July 8, 2023 20:11
Daily Journal Obsidian Template

title: Daily Journal Template description: A template for daily notes. author: Cody Sork published: 2022-03-13 08:23 date created: date updated: tags:

  • daily productivity:
@TakuanPickle
TakuanPickle / Vocab Note Workflow.md
Last active October 14, 2023 21:53
A sample workflow for creating links to vocabulary notes in a transcription with prompts for fields.

Vocab Note Workflow

I created a quick way to make flashcards and vocab notes for my Japanese learning. I had been struggling with how slow making Anki cards can be and found myself more likely to actually review cards if they were all in Obisidian, which I always have open, rather than opening Anki.

Required Plugins

  1. Templater
  2. QuickAdd
  3. Spaced Repetition
  4. Dataview
  5. Supercharged Links (Optional)

<% tp.file.title %> Weekly 📅

Small, Smart Choices + Consistency + Time = RADICAL DIFFERENCE

Startup

  • Transpose Meetings & Appointments
  • Set Goals
  • Move Items from backlog into todo that will help accomplish goals

Goals

Current big 3 goals

@chrisurf
chrisurf / ascii-art-characters.md
Last active August 11, 2023 09:48
ASCII art characters for creating diagrams

ASCII art characters for creating diagrams

Single line characters

ASCII code Character Description
191 Box drawing character single line upper right corner
192 Box drawing character single line lower left corner
193 Box drawing character single line horizontal and up
194 Box drawing character single line horizontal down
@loftwah
loftwah / ascii-art.md
Created August 19, 2021 03:07
Cool ASCII Art

Cool ASCII Art

                       _..gggggppppp.._                       
                  _.gd$$$$$$$$$$$$$$$$$$bp._                  
               .g$$$$$$P^^""j$$b""""^^T$$$$$$p.               
            .g$$$P^T$$b    d$P T;       ""^^T$$$p.            
          .d$$P^"  :$; `  :$;                "^T$$b.          
        .d$$P'      T$b.   T$b                  `T$$b.        
       d$$P'      .gg$$$$bpd$$$p.d$bpp.           `T$$b       
@h6y3
h6y3 / Meeting Template.md
Created July 25, 2021 00:57
Templater/Obsidian Date-Based Router with Meeting Notes Use Case

<%+ tp.file.title %>

Date: <% tp.date.now("YYYY-MM-DD") %> Time: <% tp.date.now("HH:mm") %> Who: Last modified date: <%+ tp.file.last_modified_date() %>

Notes

@agzam
agzam / zathura-client.org
Last active March 16, 2024 03:06
Open pdf files with Zathura on Mac

Zathura on Mac

I want to open PDF files with Zathura on Mac. Problem is - Zathura does not have a proper App Bundle. So you cannot go in Finder to a pdf file, navigate to ‘Get Info’ and set pdf files to be opened with Zathura.

Luckily, you can create a custom App Bundle that wraps up a script that does that

But that is not as straightforward as you think it is, you can’t just execute a shell script. What if the file already opened with one of the instances of zathura process? Since Zathura is not a native OSX app, it will create a new process instance every time you open it.

The following script opens a file in Zathura, and if it was already opened, it would only activate the right window.

How to use it