diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-07-27 16:52:28 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2020-07-27 16:53:31 -0400 |
| commit | bf5ae02685079f09ff595732a0b6267536d71fc1 (patch) | |
| tree | 6e20bca492c99c37541b677cc56a9a6bf839a4e8 | |
| parent | 8738f8a85463adf06185fa7b8b3f71e7497e199e (diff) | |
[about] Remove uninteresting projects.
| -rw-r--r-- | haunt/pages/about.sxml | 52 |
1 files changed, 30 insertions, 22 deletions
diff --git a/haunt/pages/about.sxml b/haunt/pages/about.sxml index ba8e91f..c468721 100644 --- a/haunt/pages/about.sxml +++ b/haunt/pages/about.sxml @@ -21,10 +21,7 @@ (jakob utils sxml)) (define %software-projects - '(("Mines" "Dormant" - "https://git.sr.ht/~jakob/mines" - ("Android implementation of the classic video game \"Minesweeper\".")) - ("Rebuild" "Dormant" + '(("Rebuild" "Dormant" "https://git.sr.ht/~jakob/rebuild" ("An attempt at reimplementing Ken Silverman's Build engine, with the goal of being modular enough to host a modern Blood source port.")) ("wildmidi" "Dormant" @@ -39,9 +36,9 @@ ("skullfuck" "Finished" "https://git.sr.ht/~jakob/skullfuck" ("Optimizing compiler for Brainfuck, contained in a single C source file.")) - ("Brisket" "Abandoned" - "https://git.sr.ht/~jakob/brisket" - ("Primitive newsreader script for interacting with NNTP servers.")) + ("Mines" "Abandoned" + "https://git.sr.ht/~jakob/mines" + ("Android implementation of the classic video game \"Minesweeper\".")) ("Hypodermic" "Abandoned" "https://git.sr.ht/~jakob/hypodermic" ("Proof-of-concept shared object injector that will eventually be integrated with PINCE.")) @@ -50,36 +47,42 @@ ("Experimental FluidSynth MIDI driver for EDuke32.")))) (define %emacs-projects - '(("dired-rmjunk" "Active" + '(("ox-haunt" "Active" "https://melpa.org/#/dired-rmjunk" - ("A port of Jakub Klinkovský's rmshit.py to Dired.")) - ("ox-haunt" "Active" + ("Haunt-flavored HTML backend for the Org export engine.")) + ("dired-rmjunk" "Dormant" "https://melpa.org/#/dired-rmjunk" - ("Haunt-flavored HTML backend for the Org export engine.")))) + ("A port of Jakub Klinkovský's rmshit.py to Dired.")))) (define %software-contributions - `(("GNU Guix" "Active" + `(("GNU Guix" "Not Actively" "https://guix.gnu.org" ("Functional package manager.")) - ("Radare2" "Finished" + ("Radare2" "Not Actively" "https://www.radare.org/r/" ("UNIX-like reverse engineering framework and command-line tools.")) - ("Haiku" "Finished" + ("Haiku" "Not Actively" "https://www.haiku-os.org/" ("The Haiku operating system.")))) (define %packaging-projects - '(("zerodaysfordays" "Dormant" + '(("zerodaysfordays" "Active" "https://git.sr.ht/~jakob/zerodaysfordays" - ("My personal Gentoo ebuild overlay.")))) + ("My personal Gentoo ebuild overlay.")) + ("PINCE" "Active" + "https://aur.archlinux.org/packages/pince-git/" + ("A Linux reverse engineering tool inspired by Cheat Engine. I was a former +upstream contributor. I still maintain the Arch Linux package, which is +unfortunate, as I no longer use Arch Linux.")))) (define (project name status url description) (let ((status-class (match status - ("Active" "good") - ("Finished" "info") - ("Dormant" "okay") - ("Abandoned" "bad") - (_ "info")))) + ("Active" "good") + ("Not Actively" "info") + ("Finished" "info") + ("Dormant" "okay") + ("Abandoned" "bad") + (_ "info")))) `(tr (td ,(hyperlink url name)) (td (button (@ (class ,(format #f "label-~a" status-class))) ,status)) @@ -119,7 +122,12 @@ cooking, punk rock, and lifting weights.") "if you have sent an email to an address of mine ending in 'sdf.lonestar.org' between January 2nd, 2020 and now, I have not received it. SDF has discontinued mail service on that domain. As such, " - ,(hyperlink "https://paste.sr.ht/%7Ejakob/18c048600c26d125d6d743e6d5b44db852573242" "I have a new PGP key."))) + ,(hyperlink "https://paste.sr.ht/%7Ejakob/18c048600c26d125d6d743e6d5b44db852573242" "I have a new PGP key.")) + ;; (p "I am paranoid about malicious web spiders indexing my resume, so if +;; you are looking for that sort of thing, replace 'pages/about.html' with 'files +;; forward slash resume dot P D F' in the URL bar.") + ;; (p "If you used that god-awful LinkedIn") + ) (h3 "Site Map") (nav (@ (id "site-map")) (section (h4 ,(hyperlink "/blogroll" "Blogroll")) |