🏴☠️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun gt/org-roam-on-this-day () | |
"Return a list of links to org-roam daily notes from this day in previous | |
years, or NIL if none are found." | |
(require 'org-roam) | |
(let* ((query "SELECT id, title FROM nodes WHERE file LIKE '%%daily%%' AND file LIKE '%%' || strftime('%%y-%%d', 'now') || '%%' ORDER BY title DESC") | |
(rows (org-roam-db-query query)) | |
(result "On this day: ")) | |
(if (null rows) | |
nil | |
(progn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defvar gt/weekly-review-capture-template | |
`(("d" "default" entry | |
"* %?" | |
:if-new (file+head | |
"%<%Y-%m-%d>-weekly-review.org" | |
"%[~/org/roam/templates/weekly-review-template.org]")))) | |
(defun gt/weekly-review-capture (&optional no-visit) | |
"Create a weekly review note from the appropriate template" | |
(interactive) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Create a task in Things 3 from a Jira ticket using the Things URL scheme (https://culturedcode.com/things/support/articles/2803573/) | |
Use this code to generate a bookmarklet with https://caiorss.github.io/bookmarklet-maker/ | |
Based on @keram's Jira to Notion bookmarklet. | |
*/ | |
var project = 'Indeed Flex'; | |
var heading = 'Daily work'; | |
var checklistItems = [ | |
'Move to In Progress', |