May 7th 2026 - Things I Worked On
Added getting current weather in Emacs
I'm using https://wttr.in to get the current weather at my location. Formatted to be plain text and in freedom units.
(defun my/weather-current () "Get the current weather at my location" (interactive) (message "%s" (shell-command-to-string "curl -s \"wttr.in/?0Tu\""))) (evil-leader/set-key "w f" 'my/weather-current)
Created repository to track my reading summaries
I want a place where I can store all of my reading summaries for quick access and easy sharing. I linked my roam files to a new directory and added a README to track my current progress on books and a list of others I've completed. You can check it out here.
My current reading list:
| Title | Author | Status |
|---|---|---|
| The Hobbit | J.R.R Tolkein | pg. 134 |
| The Eye of the World | Robert Jordan | pg. 47 |
| Atomic Habits | James Clear | pg. 94 |
| Emacs Lisp Elements | Protesilaos Stavrou | Chapter 13 |