Skip to content

Instantly share code, notes, and snippets.

@olekenneth
Last active December 27, 2025 19:01
Show Gist options
  • Select an option

  • Save olekenneth/1f49995c53f5e1ae4ad9e774afff7ab7 to your computer and use it in GitHub Desktop.

Select an option

Save olekenneth/1f49995c53f5e1ae4ad9e774afff7ab7 to your computer and use it in GitHub Desktop.
How to export your org-mode and org-agenda to Apple Reminders
#!/bin/bash
perl -0777 -nE 'while(/\*{2,3} TODO (.+)\n.*?SCHEDULED: <(\d{4}-\d{2}-\d{2})/g){($t,$d)=($1,$2);$t=~s/ +:[^:]*:$//;$t=~s/"/\\"/g;push @a,qq({"date":"$d","task":"$t"})}say q({"data":[).join(",",@a).q(]})' ~/.notes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment