diff options
| author | Christian Cleberg <[email protected]> | 2025-12-06 15:51:20 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2025-12-06 15:51:20 -0600 |
| commit | f7e04ee04cc644176f833ae890f10a3f703336d5 (patch) | |
| tree | c073b02a02794900cc07671318fdb1fd660f0344 /README.org | |
| parent | 7f6fbb6c1921faaea99e171e24e52ac86219c7e3 (diff) | |
| download | ccleberg-f7e04ee04cc644176f833ae890f10a3f703336d5.tar.gz ccleberg-f7e04ee04cc644176f833ae890f10a3f703336d5.tar.bz2 ccleberg-f7e04ee04cc644176f833ae890f10a3f703336d5.zip | |
move full elisp to its own file
Diffstat (limited to 'README.org')
| -rw-r--r-- | README.org | 41 |
1 files changed, 2 insertions, 39 deletions
@@ -1,23 +1,4 @@ #+begin_src el -;;; christian.el --- Personal profile & blog index -*- lexical-binding: t -*- - -;; Author: Christian Cleberg <[email protected]> -;; Version: 0.1 -;; Keywords: privacy, security, self-hosting -;; Package-Requires: ((emacs "27.1")) - -;;; Commentary: - -;; I'm a Tech Assurance Manager at KPMG. -;; I run a personal site at https://cleberg.net which contains: -;; - a blog, -;; - information about me, -;; - publicly‑hosted services. -;; -;; Prefer Tor? Use the .onion address for the same content. - -;;; Code: - (defvar christian/profile '((name . "Christian") (email . "[email protected]") @@ -41,24 +22,6 @@ (:date "2025-10-25" :title "Digital Garden" :url "https://cleberg.net/blog/digital-garden.html"))))) - -(defun christian/display-profile () - "Pretty‑print the profile in a *Help* buffer." - (interactive) - (with-help-window "*Christian Profile*" - (princ (format "%s %s\n\n" (alist-get 'name christian/profile) - (alist-get 'emoji christian/profile))) - (princ (format "%s\n\n" (alist-get 'role christian/profile))) - (princ (format "Website: %s\n" (alist-get 'site-url christian/profile))) - (princ (format "Tor (onion): %s\n\n" (alist-get 'tor-url christian/profile))) - (princ "=== Latest Blog Posts ===\n") - (dolist (post (alist-get 'blog-posts christian/profile)) - (princ (format "- %s (%s)\n %s\n" - (plist-get post :title) - (plist-get post :date) - (plist-get post :url)))))) - -(provide 'christian) - -;;; christian.el ends here #+end_src + +/psst! you can run [[christian.el][./christian.el]] in emacs to view this information dynamically/ |
