melanie / johnny-decimal-index-for-obsidian-with-dataview.md
0 likes
0 forks
1 files
Last active
Johnny Decimal Index Generator for Obsidian with Dataview
You will need to enable JavaScript Queries in the Dataview settings.
let areas = dv.pages("").file.folder.groupBy(g=>g.split("/")[0]).filter(({ key }) => /^\d{2}-\d{2} /.test(key))
let output = ''
areas.forEach(({ key: areaKey, rows: areaRows }) => {
output += `\n- ${areaKey}`
areaRows.groupBy(g => g.split("/")[1]).forEach(({ key: categoryKey, rows: categoryRows }) => {
How to Verify Your Commits with GPG, but you probably shouldn't. Just use SSH now.
Anyone can be anyone when it comes to commits. For example, here is a commit where ""Linus Torvalds"" deletes Linux. I put this document together for myself a while back, but I thought I would share it with other people who want a straightforward guide to setting up commit signing with GPG.
Instructions
- Install gpg
brew install gnupg2
(orsudo apt-get install gnupg2
, etc) - Generate the key with
gpg --full-generate-key
(the default type is probably fine) - Make sure it is at least
4096
bits - Make sure you use your Github no-reply email or an email provided to your Github account.