June 14th 2026 - Things I Worked On

Added saving bookmarks every time one is created or deleted

(setq bookmark-save-flag 1)

Find Recent GitHub Projects

Sometimes I want to look through smaller GitHub projects that are active to find something interesting to work on. So I created this command that automatically opens the GitHub search for these projects.

(defun my/github-find-recent-hot-projects ()
  "Search github for growing projects with recent commits."
  (interactive)
  (let* ((days-ago 2)
         (search-date (format-time-string
                       "%Y-%m-%d"
                       (time-subtract (current-time)
                                      (days-to-time days-ago))))
         (url (format
               "https://github.com/search?q=pushed:>%s+stars:<100&type=repositories&s=&o=desc"
               search-date)))
    (browse-url url)))