summaryrefslogtreecommitdiff
path: root/inbox
Commit message (Collapse)AuthorAgeFilesLines
* chore: gitignore and untrack build artifacts, vendored assets, personal filesCraig Jennings2026-04-051-0/+0
| | | | | | Untrack .cask/, .localrepo/ (61M), emojis/ (7.2M), inbox/, todo.org, v2mom.org, .time-zones.el. Move test-reporter-spec.org to docs/ (already gitignored). Reduces tracked repo size significantly.
* perf(calendar-sync): replace shell-out timezone conversion with pure ElispCraig Jennings2026-02-141-0/+0
convert-tz-to-local was spawning a `date` subprocess per timestamp, causing ~15s parse freezes on Proton (223 events) and ~10s on Google (1543 events). Replaced with encode-time/decode-time ZONE argument — same TZ database, no subprocess overhead. Parse times now 0.2-2.8s. Also adds phase timing instrumentation behind cj/debug-modules flag.