reflections on april 2023

> index / blog : april 2023

Life

My parents and my brother visited us. Then friends of Anna visited and they brought the guitar I used to play when I was younger—a Danelectro Dano Pro—that they kept for us when we were in the US. It now sits in our living room. The Ghost of Christmas Past.

Two elisp functions for fun

Download a paper by its arxiv id

Inspired by Y. Herklotz's Downloading Academic Papers Automatically.

(defun il-download-pdf-from-arxiv (arxiv-id)
  (interactive "M > arxiv-id: ")
  (let ((arxiv-pdf-url "https://arxiv.org/pdf/")
        (trim-arxiv-id (nth 1 (split-string arxiv-id ":"))))
    (url-copy-file (concat arxiv-pdf-url trim-arxiv-id) (concat "~/Downloads/" trim-arxiv-id ".pdf"))))

Pomodoro

A very basic pomodoro hack.

;; flash the modeline
(defun il-flash-mode-line (str)
  (invert-face 'mode-line)
  (run-with-timer 1.0 nil #'invert-face 'mode-line)
  (message str))

;; set the times
(defun il-set-timer (interval)
  (interactive "s > set interval: ")
  (run-at-time (format "%s min" interval) nil #'il-flash-mode-line " > time for a break.")
  (message (format " > will alert in %s min." interval)))

German coda

  1. Es knirschte zwischen den Zähnen als wir uns trafen. Und Du sagtest, es könne auch anders, wie zum Beispiel neulich in der Zeitung gelesen.
  2. Und ich sagte, ich würde es mir überlegen, und spazierte dann über die Straße den Hang hinunter und über die Brücke mit den Enten und durch die Innenstadt, am New Yorker vorbei, und unter den Bäumen und biegte ab und kam nie an.

Impressum

Author: ilhan özgen xian

Created: 2023-05-01 Mon 21:23