Table of Contents
Welcome to the CC Library of Babel . This file contains a collection of
code blocks which may be used by authors throughout our public
documentation.
This library depends on the core being properly installed and the
core/emacs
init system loaded in emacs. See home for details.
To load the library itself use C-c C-v i
while visiting this file in
an org-mode buffer or org-babel-lob-ingest
from elisp.
2. read fs
(if (string= format "csv" )
(with-temp-buffer
(org-table-import (expand-file-name file) nil)
(org-table-to-lisp))
(with-temp-buffer
(insert-file-contents (expand-file-name file))
(buffer-string)))
3. write fs
(cl-flet ((echo (r) (if (stringp r) r (format "%S" r))))
(with-temp-file file
(case (and (listp data)
(or ext (intern (file-name-extension file))))
('tsv (insert (orgtbl-to-tsv data '(:fmt echo))))
('csv (insert (orgtbl-to-csv data '(:fmt echo))))
(t (org-babel-insert-result data)))))
nil
4. json json
(require 'json )
(cond
(file
(org-babel-with-temp-filebuffer file
(goto-char (point-min))
(json-read)))
(url
(require 'w3m )
(with-temp-buffer
(w3m-retrieve url)
(goto-char (point-min))
(json-read))))
5. headline org
(save-excursion
(when file (get-file-buffer file))
(org-open-link-from-string (org-make-link-string headline))
(save-restriction
(org-narrow-to-subtree)
(buffer-string)))
6. transpose table
(unless (or (null *this*) (equal 'NIL *this*)) (apply #'mapcar #'list (list *this*)))
7. codify-list table
(unless (null *this*) (mapcar (lambda (x) (format "~%s~" x)) *this*))
(unless (null *this*)
(mapcar 'list (mapcar (lambda (x) (format "~%s~" x)) *this*)))
8. all-to-string table
(defun all-to-string (tbl)
(if (listp tbl)
(mapcar #'all-to-string tbl)
(if (stringp tbl)
tbl
(format "%s" tbl))))
(all-to-string tbl)
9. systemd-list-units os
systemctl list-units --state=running | grep -v systemd | awk '{print $1}' | grep service
13. lines fs
input =`tokei -C -o json`
echo $input | jq -r '.["Total"] | .code, .comments, .blanks'
14. langs fs
input =`tokei -C -o json`
echo $input | jq -r '.["Total"].children | keys[]'
Org
15. sum-str-nums util
(let ((tot 0))
(cl-loop
with tot = 0
for i in (split-string str) do
(setf tot (+ tot (string-to-number i)))
finally return tot))
16. org-task-tbl org
(let* ((ast (org-element-parse-buffer))
item-types
tasks
current-task
task-items)
(org-element-map ast 'headline
(lambda (hl)
(cl-case (org-element-property :level hl)
(1
(when current-task
(setq tasks (cons (cons current-task (nreverse task-items)) tasks)))
(setq current-task (org-element-property :raw-value hl)
task-items nil))
(2
(let ((item-type (org-element-property :raw-value hl)))
(setq item-types (cons item-type item-types))
(setq task-items (cons (cons item-type (org-element-property :todo-keyword hl))
task-items)))))))
(setq tasks (nreverse (cons (cons current-task (nreverse task-items)) tasks))
item-types (sort (cl-remove-duplicates (nreverse item-types) :test 'string-equal)
#'string<))
(apply
#'list
(cons "Item" (mapcar #'car tasks))
'hline
(mapcar
(lambda (item-type)
(cons item-type
(mapcar
(lambda (task)
(let ((todo-status (cdr (assoc-string item-type task))))
todo-status))
tasks)))
item-types)))
17. org-headlines-map org
(org-element-map (org-element-parse-buffer 'headline)
'headline
(lambda (hl)
(let ((parent (org-element-property :parent hl)))
(and (eq (org-element-type parent) 'headline)
(list (org-element-property :title parent) (org-element-property :title hl))))))
18. trim util
str ="${str#" ${str %%[! [:space:]]*}"}"
str ="${str%" ${str ##*[! [:space:]]}"}"
printf '%s' "$str"
a b c
19. files fs
ls -lh $PWD --time-style=long-iso \
|awk '{if (NR!=1) print $8, $5, $6"-"$7}' \
|awk 'BEGIN{print "file size updated"}{print $0}'
file
size
updated
babel.org
24K
2024-09-07-19:45
business.org
803
2024-08-19-21:19
glossary.org
1.2K
2024-09-06-15:35
mindset.org
119
2024-08-15-21:20
pitch.org
1.6K
2024-08-11-17:16
readme.org
1.1K
2024-08-27-21:13
style.org
3.2K
2024-08-21-16:18
tech.org
3.6K
2024-08-21-18:16
ulang.org
12K
2024-09-06-16:12
workflows.org
7.5K
2024-09-03-16:59
22. project-name project
(project-name (project-current nil project))
24. project-list project
~/comp/core/
~/comp/org/meta/
~/.emacs.d/elpa/corfu-terminal/
~/comp/core
~/comp/scratch/zig-pg/
~/comp/scratch/wam/
~/comp/scratch/vdeplug4/
~/comp/scratch/tmux/
~/comp/scratch/scryer-prolog/
~/comp/scratch/screamer/
~/comp/scratch/rerun/
~/comp/scratch/r8k/
~/comp/scratch/qemu/
~/comp/scratch/octatrack/
~/comp/scratch/nu_plugin_quic/
~/comp/scratch/mpk/
~/comp/scratch/lemmy/
~/comp/scratch/io-uring/
~/comp/scratch/infodb/
~/comp/scratch/hy/
~/comp/scratch/hg/
~/comp/scratch/hackrf/
~/comp/scratch/gengat/
~/comp/scratch/fin/
~/comp/scratch/egui/
~/comp/scratch/egui-video/
~/comp/scratch/dev/
~/comp/scratch/davfs2/
~/comp/scratch/crust-0/
~/comp/scratch/cepl.examples/
~/comp/scratch/cc-install/
~/comp/scratch/blok/
~/comp/scratch/archiso/
~/comp/scratch/arch-boxes/
~/comp/scratch/
~/comp/pod/
~/comp/org/notes/
~/comp/org/docs/
~/comp/org/blog/
~/comp/org/archive/
~/comp/org/
~/comp/infra/.stash/src/emacs/
~/comp/infra/
~/comp/home/
~/comp/etc/
~/comp/demo/
~/comp/box/
~/.emacs.d/elpa/org-glossary/
~/comp/org/plan/
~/.emacs.d/elpa/eglot-x/
25. project-links project
Return an org-mode unordered-list of project links.
(let ((name (project-name (project-current nil project)))
(link-fmt "https://%s/%s/%s.html" ))
(list (org-link-make-string (format link-fmt company-domain "docs" (format "%s/index" name)) "Docs" )
(org-link-make-string (format link-fmt company-domain "docs" (format "%s/stats" name)) "Stats" )
(org-link-make-string (format link-fmt company-domain "docs" (format "%s/man" name)) "Manual" )
(org-link-make-string (format link-fmt company-domain "plan/tasks" name) "Tasks" )))
26. project-details project
(let* ((project (project-current nil project))
(name (project-name project))
(%root (project-root project))
(default-directory %root)
(vc-type (downcase (symbol-name (cadr project))))
(age (org-sbe hg-log-age ''(dir %root)))
(rev (org-sbe hg-rev ''(dir %root)))
(num (org-sbe hg-id-num ''(dir %root)))
(tags (org-sbe skel-show (key "' tags '" )))
(id (org-sbe skel-show (key "' :id '" ) ''(dir %root)))
(version (org-sbe skel-show (key "' version '" ) ''(dir %root)))
(description (org-sbe skel-show (key "' description '" ) ''(dir %root)))
(vc (format ":%s [[https://vc.compiler.company/%s][vc.compiler.company/%s]] :rev %s"
vc-type name name
(format "[[https://vc.compiler.company/%s/rev/%s][%s:%s]]" name rev rev num)))
(langs (mapconcat (lambda (x) (downcase (format "%s" x))) (flatten (read (org-sbe langs ''(dir %root)))) " " ))
(line-counts (flatten (read (org-sbe lines ''(dir %root)))))
(line-sum (cl-reduce '+ line-counts))
(lines (format "%s :λ %s :# %s :_ %s" line-sum (pop line-counts) (pop line-counts) (pop line-counts))))
`(hline
(name ,name)
(version ,version)
(description ,description)
(skel-id ,id)
(root ,(if (not (zerop (length root)))
root
%root))
(vc ,vc)
(tags ,tags)
(updated ,age)
(langs ,langs)
(lines ,lines)
hline))
name
meta
version
nil
description
nil
skel-id
nil
root
~/comp/org/meta/
vc
:hg vc.compiler.company/meta :rev f6df7eaa3684:12+
tags
nil
updated
Sun Sep 22 21:29:45 2024 -0400
langs
(org)
lines
1897 :λ 1754 :# 4 :_ 139
27. project-files project fs
List all files found in current project. Ignores files which don't
exist locally.
(let* ((proj (project-current nil project))
(project (file-name-as-directory (expand-file-name project)))
(name (project-name proj))
(root (expand-file-name (project-root proj)))
(project-vc-include-untracked nil)
(exclude-files '(".hgignore" ".stash" ))
(link-fmt "https://github.com/richardwesthaver/%s/blob/default/%s" ))
`((file size modified)
hline
,@(mapcar (lambda (x)
(when-let ((attr (file-attributes x)))
(list (format "[[%s][%s]]"
(format link-fmt name (string-replace root "" x))
(string-replace project "" x))
(when-let ((size (file-attribute-size attr)))
(file-size-human-readable size))
(format-time-string "%Y-%m-%d %H:%M:%S" (file-attribute-modification-time attr)))))
(cl-remove-if (lambda (x)
(or
(cl-member-if
(lambda (y) (string-prefix-p (expand-file-name y) x))
exclude-files)
(and (not (string= root (file-name-as-directory (expand-file-name project))))
(not (string-prefix-p (expand-file-name project) (expand-file-name x root))))))
(project-files proj)))))
28. project-html-files
(let* ((proj (project-current nil project))
(project (file-name-as-directory (expand-file-name project)))
(name (project-name proj))
(root (expand-file-name (project-root proj)))
(project-vc-include-untracked nil)
(exclude-files '(".hgignore" ".stash" ))
(link-fmt "https://compiler.company/%s/%s" ))
`((file modified)
hline
,@(mapcar (lambda (x)
(when-let ((attr (file-attributes x)))
(let ((y (if (string= (file-name-base x) "readme" )
(let ((s (file-name-split x)))
(apply 'file-name-concat "/" (append (butlast s) (list "index.html" ))))
(file-name-with-extension x "html" ))))
(list (format "[[%s][%s]]"
(format link-fmt name (string-replace root "" y))
(file-name-sans-extension (string-replace project "" y)))
(format-time-string "%Y-%m-%d %H:%M:%S" (file-attribute-modification-time attr))))))
(cl-remove-if (lambda (x)
(or
(not (string= "org" (file-name-extension x)))
(cl-member-if
(lambda (y) (string-prefix-p (expand-file-name y) x))
exclude-files)
(and (not (string= root (file-name-as-directory (expand-file-name project))))
(not (string-prefix-p (expand-file-name project) (expand-file-name x root))))))
(project-files proj)))))
29. project-tasks project org
List all project tasks.
(let ((name (project-name (project-current nil project)))
(hdr (list '(todo item tags scheduled deadline)
'hline))
(tbl))
(save-excursion
(with-current-buffer (find-file-noselect
(join-paths company-org-directory
"plan/tasks/"
(format "%s.org" name)))
(org-with-wide-buffer
(org-map-entries (lambda ()
(let ((row))
(push (or (org-get-todo-state) "" ) row)
(push (org-get-heading t t t t) row)
(push (or (remove name (org-get-tags)) "" ) row)
(push (if-let ((ts (org-get-scheduled-time (point) t)))
(format-time-string (cdr org-timestamp-formats) ts)
"" )
row)
(push (if-let ((ts (org-get-deadline-time (point) t)))
(format-time-string (cdr org-timestamp-formats) ts)
"" )
row)
(push (nreverse row) tbl)))
"TODO<>\"DONE\"" nil)
)))
(unless (null tbl)
(append hdr (nreverse tbl))))
30. env-table os
for i in $(env );
do
echo "$i|" | sed '0,/=/s//|/'
done
32. org-current-h1-title org
(org-element-property :title (save-excursion (org-up-heading-safe) (org-element-at-point)))
org-current-h1-title
33. get-emacs-version emacs
(princ (concat (format "%s\n" (emacs-version))
(format "Org v%s" (org-version))))
34. vc-buffer-log vc
(require 'vc )
(when (vc-find-backend-function
(vc-backend (buffer-file-name (get-buffer buf))) 'print-log)
(let ((limit -1)
(vc-fileset nil)
(backend nil)
(files nil))
(with-current-buffer (get-buffer buf)
(setq vc-fileset (vc-deduce-fileset t))
(setq backend (car vc-fileset))
(setq files (cadr vc-fileset)))
(with-temp-buffer
(let ((status (vc-call-backend
backend 'print-log files (current-buffer))))
(when (and (processp status)
(= 0 (process-exit-status status)))
(while (not (eq 'exit (process-status status)))
(sit-for 1 t)))
(buffer-string)))))
37. hg-rev vc
hg log -l 1 --template '{node|short}'
06698c6708de
39. hg-log-since vc
hg log -l1 --template "{date|age}"
3 days ago
40. hg-log-age vc
hg log -l1 --template "{date(date)}\n"
Sat Sep 07 22:38:02 2024 -0400
41. hg-churn vc
2023-10 36394 ************************************
2023-11 12777 ************
2023-12 61624 *************************************************************
2024-01 4923 ****
2024-02 5701 *****
2024-03 27292 ***************************
2024-04 23322 ***********************
2024-05 24141 ***********************
2024-06 17608 *****************
2024-07 9757 *********
2024-08 16177 ****************
2024-09 2430 **
42. hg-status vc
M
babel.org
M
glossary.org
M
ulang.org
43. hg-diff-stat vc
babel.org | 62 ++++++++++++++++++++++++++++++++++++++------------------------
tech.org | 3 +++
ulang.org | 16 ++++++++--------
3 files changed, 49 insertions(+), 32 deletions(-)
45. sh-ob-tangle org
emacs -Q --batch --eval "
(progn
(require 'ob-tangle)
(dolist (file command-line-args-left)
(with-current-buffer (find-file-noselect file)
(org-babel-tangle))))
" "$@"
46. org-graph-info org graph
`((nodes ,(hash-table-count (org-graph-nodes org-graph)))
(edges ,(hash-table-count (org-graph-edges org-graph)))
(files ,(length (org-graph-files t))))
47. org-graph-init org graph
#s(org-graph #s(hash-table test equal data ("e2726251-7ffc-44db-a609-fdb19729f89e" #s(org-graph-node "e2726251-7ffc-44db-a609-fdb19729f89e" "Optical Storage" "/home/ellis/comp/org/graph/hw/storage.org" 1228) "1671e1ee-864c-4165-8740-01e68d0dc942" #s(org-graph-node "1671e1ee-864c-4165-8740-01e68d0dc942" "USB Storage" "/home/ellis/comp/org/graph/hw/storage.org" 1113) "e8148b90-9924-4f5c-9a39-bbbc4eb1ca7e" #s(org-graph-node "e8148b90-9924-4f5c-9a39-bbbc4eb1ca7e" "Tape Storage" "/home/ellis/comp/org/graph/hw/storage.org" 997) "26d71779-e168-4836-93bc-7ea740beed3f" #s(org-graph-node "26d71779-e168-4836-93bc-7ea740beed3f" "HDD" "/home/ellis/comp/org/graph/hw/storage.org" 890) "8bbce9f1-fba5-4e4e-b4a8-f659d965ca59" #s(org-graph-node "8bbce9f1-fba5-4e4e-b4a8-f659d965ca59" "NVMe" "/home/ellis/comp/org/graph/hw/storage.org" 782) "07ca16a0-8176-4270-baf7-8bf301cea669" #s(org-graph-node "07ca16a0-8176-4270-baf7-8bf301cea669" "SSD" "/home/ellis/comp/org/graph/hw/storage.org" 675) "173d1ace-338d-4656-9cb6-39e974ce83d4" #s(org-graph-node "173d1ace-338d-4656-9cb6-39e974ce83d4" "NVRAM" "/home/ellis/comp/org/graph/hw/storage.org" 341) "83089757-22c3-456d-9b2c-c119adefd8c2" #s(org-graph-node "83089757-22c3-456d-9b2c-c119adefd8c2" "RAM" "/home/ellis/comp/org/graph/hw/storage.org" 33) "533c2390-63c9-4cac-b0ff-2e7e93b4c60f" #s(org-graph-node "533c2390-63c9-4cac-b0ff-2e7e93b4c60f" "UEFI" "/home/ellis/comp/org/graph/proto/metal.org" 33) "163facc3-2d47-47ee-b0c8-0512a3efcd13" #s(org-graph-node "163facc3-2d47-47ee-b0c8-0512a3efcd13" "Httpd" "/home/ellis/comp/org/graph/app/web.org" 5918) "e0d6567f-73e8-4a02-8360-4938d7994f3a" #s(org-graph-node "e0d6567f-73e8-4a02-8360-4938d7994f3a" "Nginx" "/home/ellis/comp/org/graph/app/web.org" 5693) "a6291723-d71e-4e1f-b53d-ed5914551e80" #s(org-graph-node "a6291723-d71e-4e1f-b53d-ed5914551e80" "API" "/home/ellis/comp/org/graph/app/web.org" 4210) "2415d486-e74b-4318-90cc-8d68c4bffb2e" #s(org-graph-node "2415d486-e74b-4318-90cc-8d68c4bffb2e" "Caddy" "/home/ellis/comp/org/graph/app/web.org" 4005) "f7a60f4c-2aa4-4330-95bb-7077ab534258" #s(org-graph-node "f7a60f4c-2aa4-4330-95bb-7077ab534258" "Server" "/home/ellis/comp/org/graph/app/web.org" 3682) "74e5db7a-bb98-4a54-a7e6-fab58f580acf" #s(org-graph-node "74e5db7a-bb98-4a54-a7e6-fab58f580acf" "Transmission" "/home/ellis/comp/org/graph/app/web.org" 3282) "fdae8dcf-92f8-4a72-b91a-8a830e80c17b" #s(org-graph-node "fdae8dcf-92f8-4a72-b91a-8a830e80c17b" "Torrent Client" "/home/ellis/comp/org/graph/app/web.org" 3103) "cae8de41-beb8-42b3-bec8-20f0a29dd59c" #s(org-graph-node "cae8de41-beb8-42b3-bec8-20f0a29dd59c" "IceCat" "/home/ellis/comp/org/graph/app/web.org" 2666) "0290f01c-13ab-4268-b9de-030ffda5a4b8" #s(org-graph-node "0290f01c-13ab-4268-b9de-030ffda5a4b8" "Nyxt" "/home/ellis/comp/org/graph/app/web.org" 2130) "de59cc69-d16c-4ff9-87f4-1d95f34525e9" #s(org-graph-node "de59cc69-d16c-4ff9-87f4-1d95f34525e9" "Firefox" "/home/ellis/comp/org/graph/app/web.org" 1459) "51cb270e-5c5a-4605-9867-aa40a68ddceb" #s(org-graph-node "51cb270e-5c5a-4605-9867-aa40a68ddceb" "Devtools" "/home/ellis/comp/org/graph/app/web.org" 721) "49a90b67-054a-4591-b73f-8821dba7c060" #s(org-graph-node "49a90b67-054a-4591-b73f-8821dba7c060" "Chrome" "/home/ellis/comp/org/graph/app/web.org" 237) "54b782ae-11c2-4546-a506-003a21fd9537" #s(org-graph-node "54b782ae-11c2-4546-a506-003a21fd9537" "Browser" "/home/ellis/comp/org/graph/app/web.org" 58) "df400751-0b3e-41a5-8512-a778a58cc1bd" #s(org-graph-node "df400751-0b3e-41a5-8512-a778a58cc1bd" "Vim" "/home/ellis/comp/org/graph/app/vi.org" 408) "17d03ada-139b-4127-8865-df1b5b50eaba" #s(org-graph-node "17d03ada-139b-4127-8865-df1b5b50eaba" "Vi" "/home/ellis/comp/org/graph/app/vi.org" 44) "3c83b6e7-fa30-4e48-88b2-5d96e749e60a" #s(org-graph-node "3c83b6e7-fa30-4e48-88b2-5d96e749e60a" "Tmux" "/home/ellis/comp/org/graph/app/term.org" 1170) "528d0b97-b753-40b1-8db2-198ce59296a6" #s(org-graph-node "528d0b97-b753-40b1-8db2-198ce59296a6" "Terminal Multiplexer" "/home/ellis/comp/org/graph/app/term.org" 1045) "8c91f0e4-8cc5-4622-8e34-0f0eab0818ae" #s(org-graph-node "8c91f0e4-8cc5-4622-8e34-0f0eab0818ae" "WezTerm" "/home/ellis/comp/org/graph/app/term.org" 751) "b6cc9844-e152-4227-820d-d7d00c7381aa" #s(org-graph-node "b6cc9844-e152-4227-820d-d7d00c7381aa" "Alacritty" "/home/ellis/comp/org/graph/app/term.org" 424) "a1bc7f75-4b67-452d-9c30-54420f66e1c5" #s(org-graph-node "a1bc7f75-4b67-452d-9c30-54420f66e1c5" "Terminal Emulator" "/home/ellis/comp/org/graph/app/term.org" 51) "3efd02f4-b340-4566-a7fc-95b3c895c762" #s(org-graph-node "3efd02f4-b340-4566-a7fc-95b3c895c762" "Buildah" "/home/ellis/comp/org/graph/app/podman.org" 396) "89199dcd-fabd-4952-b5e9-1b3ffaf06e6b" #s(org-graph-node "89199dcd-fabd-4952-b5e9-1b3ffaf06e6b" "Podman" "/home/ellis/comp/org/graph/app/podman.org" 48) "b52fdc61-2fcc-42e0-a1df-66ebd0ca0488" #s(org-graph-node "b52fdc61-2fcc-42e0-a1df-66ebd0ca0488" "APK" "/home/ellis/comp/org/graph/app/package-manager.org" 1520) "3c814d4d-8635-4c6f-a849-5c7d72db20fe" #s(org-graph-node "3c814d4d-8635-4c6f-a849-5c7d72db20fe" "Pacman" "/home/ellis/comp/org/graph/app/package-manager.org" 1228) "836933b5-3035-4e8c-a2b9-63a773a359db" #s(org-graph-node "836933b5-3035-4e8c-a2b9-63a773a359db" "rpm-ostree" "/home/ellis/comp/org/graph/app/package-manager.org" 900) "0a40d25f-0fe5-4b71-9d22-07d4bb355ff4" #s(org-graph-node "0a40d25f-0fe5-4b71-9d22-07d4bb355ff4" "RPM" "/home/ellis/comp/org/graph/app/package-manager.org" 475) "26b32ae2-b49c-42cb-a0d7-4823221b79f2" #s(org-graph-node "26b32ae2-b49c-42cb-a0d7-4823221b79f2" "DNF" "/home/ellis/comp/org/graph/app/package-manager.org" 58) "bad99155-7f62-404c-ae48-18d753bcdfb4" #s(org-graph-node "bad99155-7f62-404c-ae48-18d753bcdfb4" "notmuch" "/home/ellis/comp/org/graph/app/mail.org" 68) "c272a3f2-b0b0-4784-aeaf-4c677cbbd708" #s(org-graph-node "c272a3f2-b0b0-4784-aeaf-4c677cbbd708" "GRC" "/home/ellis/comp/org/graph/app/gnu-radio.org" 366) "c92b3830-3836-41b0-a502-f04b44cd3292" #s(org-graph-node "c92b3830-3836-41b0-a502-f04b44cd3292" "GNU Radio" "/home/ellis/comp/org/graph/app/gnu-radio.org" 51) "defa663e-3522-475c-ad44-615b64edabf1" #s(org-graph-node "defa663e-3522-475c-ad44-615b64edabf1" "Cloudmacs" "/home/ellis/comp/org/graph/app/emacs.org" 6565) "1bbc8529-d207-4a7e-a72a-b231316c90e6" #s(org-graph-node "1bbc8529-d207-4a7e-a72a-b231316c90e6" "Apps" "/home/ellis/comp/org/graph/app/emacs.org" 6455) "68c578fc-020f-4751-a659-a05c979272c9" #s(org-graph-node "68c578fc-020f-4751-a659-a05c979272c9" "Emacsen" "/home/ellis/comp/org/graph/app/emacs.org" 6342) "c40383a3-c717-43c6-8188-e2a564a641a1" #s(org-graph-node "c40383a3-c717-43c6-8188-e2a564a641a1" "SES" "/home/ellis/comp/org/graph/app/emacs.org" 6149) "8b1452eb-fc57-4026-8587-91ff8ebccba6" #s(org-graph-node "8b1452eb-fc57-4026-8587-91ff8ebccba6" "Eglot" "/home/ellis/comp/org/graph/app/emacs.org" 5977) "86dbf792-301b-405e-806b-3df7e9531279" #s(org-graph-node "86dbf792-301b-405e-806b-3df7e9531279" "Eshell" "/home/ellis/comp/org/graph/app/emacs.org" 5221) "f499c680-9a01-4a11-bc69-81861fd864d0" #s(org-graph-node "f499c680-9a01-4a11-bc69-81861fd864d0" "SLIME" "/home/ellis/comp/org/graph/app/emacs.org" 4980) "db8e43f4-78ec-4fb1-93e7-11ac7ee87799" #s(org-graph-node "db8e43f4-78ec-4fb1-93e7-11ac7ee87799" "BBDB" "/home/ellis/comp/org/graph/app/emacs.org" 4608) "b72f96f7-4040-4548-8da2-e619d26c4887" #s(org-graph-node "b72f96f7-4040-4548-8da2-e619d26c4887" "EUDC" "/home/ellis/comp/org/graph/app/emacs.org" 4408) "a42c2aaa-8dda-40ca-b455-7511f0cb084a" #s(org-graph-node "a42c2aaa-8dda-40ca-b455-7511f0cb084a" "ERC" "/home/ellis/comp/org/graph/app/emacs.org" 4169) "2cebd8b2-615e-44b2-afd4-2e302f836dd3" #s(org-graph-node "2cebd8b2-615e-44b2-afd4-2e302f836dd3" "Speedbar" "/home/ellis/comp/org/graph/app/emacs.org" 3991) "21adcc1c-67ee-4f50-9049-12794824b2c7" #s(org-graph-node "21adcc1c-67ee-4f50-9049-12794824b2c7" "Eww" "/home/ellis/comp/org/graph/app/emacs.org" 3524) "3bb08e71-1ce9-46ed-844a-31305162645e" #s(org-graph-node "3bb08e71-1ce9-46ed-844a-31305162645e" "Org-roam" "/home/ellis/comp/org/graph/app/emacs.org" 2991) "bdf4ac96-f9a6-47ea-a27a-89a8d2b20ba7" #s(org-graph-node "bdf4ac96-f9a6-47ea-a27a-89a8d2b20ba7" "Org Element API" "/home/ellis/comp/org/graph/app/emacs.org" 2759) "09edda89-63e0-4496-84eb-764fb9b0b7c3" #s(org-graph-node "09edda89-63e0-4496-84eb-764fb9b0b7c3" "org-info.js" "/home/ellis/comp/org/graph/app/emacs.org" 2390) "f46c1c20-c958-4068-bf0c-bf6f4f77546f" #s(org-graph-node "f46c1c20-c958-4068-bf0c-bf6f4f77546f" "Refile and Copy" "/home/ellis/comp/org/graph/app/emacs.org" 2067) "9cb4a1c7-4798-4ac9-8958-9e3d86673d95" #s(org-graph-node "9cb4a1c7-4798-4ac9-8958-9e3d86673d95" "HTML" "/home/ellis/comp/org/graph/app/emacs.org" 1755) "d26e1dac-f9cc-47a0-9a61-f32463247ec9" #s(org-graph-node "d26e1dac-f9cc-47a0-9a61-f32463247ec9" "Org Export" "/home/ellis/comp/org/graph/app/emacs.org" 1449) "9cfcee92-d862-400f-a80f-7bb538b27b45" #s(org-graph-node "9cfcee92-d862-400f-a80f-7bb538b27b45" "Org Babel" "/home/ellis/comp/org/graph/app/emacs.org" 1159) "cea03181-b97b-494d-b362-28056416469d" #s(org-graph-node "cea03181-b97b-494d-b362-28056416469d" "Org Mode" "/home/ellis/comp/org/graph/app/emacs.org" 696) "5fc53135-1b6c-4260-b264-66be7a2b8ff0" #s(org-graph-node "5fc53135-1b6c-4260-b264-66be7a2b8ff0" "Emacs" "/home/ellis/comp/org/graph/app/emacs.org" 60) "cb4981e6-af47-400e-a761-4a73b3dd791e" #s(org-graph-node "cb4981e6-af47-400e-a761-4a73b3dd791e" "Sway" "/home/ellis/comp/org/graph/app/desktop.org" 1745) "66cbbdac-801f-4c42-b16a-09cde9a69a7f" #s(org-graph-node "66cbbdac-801f-4c42-b16a-09cde9a69a7f" "Wayland" "/home/ellis/comp/org/graph/app/desktop.org" 1566) "b8588986-ec59-41d1-91a4-901e3c7217d3" #s(org-graph-node "b8588986-ec59-41d1-91a4-901e3c7217d3" "StumpWM" "/home/ellis/comp/org/graph/app/desktop.org" 1245) "9b98c316-303e-4919-8a7c-09965fff6c17" #s(org-graph-node "9b98c316-303e-4919-8a7c-09965fff6c17" "i3" "/home/ellis/comp/org/graph/app/desktop.org" 1050) "4f39c714-4a7b-4cd3-89a2-0c0c7b0953b9" #s(org-graph-node "4f39c714-4a7b-4cd3-89a2-0c0c7b0953b9" "mcwm" "/home/ellis/comp/org/graph/app/desktop.org" 824) "d6d7338a-e161-45b0-bcf9-e50fef6d9b86" #s(org-graph-node "d6d7338a-e161-45b0-bcf9-e50fef6d9b86" "2bwm" "/home/ellis/comp/org/graph/app/desktop.org" 628) "4b669611-0283-4a6c-acfd-942868d5bee3" #s(org-graph-node "4b669611-0283-4a6c-acfd-942868d5bee3" "X11" "/home/ellis/comp/org/graph/app/desktop.org" 362) "cabd6581-92db-4e5e-b9cd-f5a1c09a8145" #s(org-graph-node "cabd6581-92db-4e5e-b9cd-f5a1c09a8145" "Window Manager" "/home/ellis/comp/org/graph/app/desktop.org" 67) "0c2908c2-69d0-4866-b225-3d7eec026b76" #s(org-graph-node "0c2908c2-69d0-4866-b225-3d7eec026b76" "sb-bsd-sockets" "/home/ellis/comp/org/graph/comp/sbcl.org" 11428) "c33a5587-daab-4e61-a0df-fc6856b00f70" #s(org-graph-node "c33a5587-daab-4e61-a0df-fc6856b00f70" "Contribs" "/home/ellis/comp/org/graph/comp/sbcl.org" 11219) "6beca36e-6264-4741-9180-66e81bf58c49" #s(org-graph-node "6beca36e-6264-4741-9180-66e81bf58c49" "Tree Shaker" "/home/ellis/comp/org/graph/comp/sbcl.org" 10639) "624cbc9a-9797-4889-a8b5-8440b04d9c01" #s(org-graph-node "624cbc9a-9797-4889-a8b5-8440b04d9c01" "Compiler" "/home/ellis/comp/org/graph/comp/sbcl.org" 10279) "86674fe2-4105-4246-9682-f6e3fb84f7de" #s(org-graph-node "86674fe2-4105-4246-9682-f6e3fb84f7de" "SB-ASSEM" "/home/ellis/comp/org/graph/comp/sbcl.org" 9510) "93e1ed13-dc82-4a9b-8b9e-f60f06b01a4f" #s(org-graph-node "93e1ed13-dc82-4a9b-8b9e-f60f06b01a4f" "Aliens" "/home/ellis/comp/org/graph/comp/sbcl.org" 8913) "f9bcac71-99b9-4375-9c23-8b650d21d86c" #s(org-graph-node "f9bcac71-99b9-4375-9c23-8b650d21d86c" "VOP" "/home/ellis/comp/org/graph/comp/sbcl.org" 8338) "db473315-0c74-40cb-ab07-9259b2113043" #s(org-graph-node "db473315-0c74-40cb-ab07-9259b2113043" "Core Format" "/home/ellis/comp/org/graph/comp/sbcl.org" 7971) "a8ee911d-6d19-452b-b03a-249a446c1b20" #s(org-graph-node "a8ee911d-6d19-452b-b03a-249a446c1b20" "Symbols of Interest" "/home/ellis/comp/org/graph/comp/sbcl.org" 6737) "a4d05da6-b90d-4a9f-8237-67a10c8c4588" #s(org-graph-node "a4d05da6-b90d-4a9f-8237-67a10c8c4588" "Bindings" "/home/ellis/comp/org/graph/comp/sbcl.org" 6476) "fd50e430-8a51-406a-96bd-ae6a1cf73bdd" #s(org-graph-node "fd50e430-8a51-406a-96bd-ae6a1cf73bdd" "Low Tags" "/home/ellis/comp/org/graph/comp/sbcl.org" 5306) "9aac997a-5d9c-43dd-b2ca-8b8b02d9f2dd" #s(org-graph-node "9aac997a-5d9c-43dd-b2ca-8b8b02d9f2dd" "Internals" "/home/ellis/comp/org/graph/comp/sbcl.org" 4995) "bb27d9c3-513a-4ac6-8780-580c09257040" #s(org-graph-node "bb27d9c3-513a-4ac6-8780-580c09257040" "Atomics" "/home/ellis/comp/org/graph/comp/sbcl.org" 4803) "7bf0993f-6212-4635-a071-bf2e7d9ba7f9" #s(org-graph-node "7bf0993f-6212-4635-a071-bf2e7d9ba7f9" "sb-thread" "/home/ellis/comp/org/graph/comp/sbcl.org" 4385) "6ff7096f-a666-4103-8f32-1dc62c04cb35" #s(org-graph-node "6ff7096f-a666-4103-8f32-1dc62c04cb35" "Timers" "/home/ellis/comp/org/graph/comp/sbcl.org" 4205) "dc91fb4a-adee-44ec-9bd8-cbfa10db8dca" #s(org-graph-node "dc91fb4a-adee-44ec-9bd8-cbfa10db8dca" "Barriers" "/home/ellis/comp/org/graph/comp/sbcl.org" 3278) "e99f0d2a-546a-479e-9014-3acdbcccd5ab" #s(org-graph-node "e99f0d2a-546a-479e-9014-3acdbcccd5ab" "Concurrency" "/home/ellis/comp/org/graph/comp/sbcl.org" 1545) "11329fdb-2923-4ccf-953c-037e78433b1a" #s(org-graph-node "11329fdb-2923-4ccf-953c-037e78433b1a" "ed functions" "/home/ellis/comp/org/graph/comp/sbcl.org" 733) "868e5534-1ab9-49aa-88c8-f9529b3dfc98" #s(org-graph-node "868e5534-1ab9-49aa-88c8-f9529b3dfc98" "Extensions" "/home/ellis/comp/org/graph/comp/sbcl.org" 467) "a7f9b428-9323-492f-aaa5-94669bfbc55b" #s(org-graph-node "a7f9b428-9323-492f-aaa5-94669bfbc55b" "SBCL" "/home/ellis/comp/org/graph/comp/sbcl.org" 46) "339518e9-2112-4c79-9471-ccc8f57b8105" #s(org-graph-node "339518e9-2112-4c79-9471-ccc8f57b8105" "NVCC" "/home/ellis/comp/org/graph/comp/llvm.org" 1257) "f283db5a-bbe5-477f-834f-46b9ac992baf" #s(org-graph-node "f283db5a-bbe5-477f-834f-46b9ac992baf" "Extensions" "/home/ellis/comp/org/graph/comp/llvm.org" 1018) "3f0ed70c-6774-499c-9c15-a28a5e653161" #s(org-graph-node "3f0ed70c-6774-499c-9c15-a28a5e653161" "Clang" "/home/ellis/comp/org/graph/comp/llvm.org" 849) "05eeed21-6ed4-447d-8c8f-daee2dd112bf" #s(org-graph-node "05eeed21-6ed4-447d-8c8f-daee2dd112bf" "Extensions" "/home/ellis/comp/org/graph/comp/llvm.org" 635) "496b952f-4c98-4303-92b4-1c766565092c" #s(org-graph-node "496b952f-4c98-4303-92b4-1c766565092c" "LLVM" "/home/ellis/comp/org/graph/comp/llvm.org" 46) "9a00b903-ea15-48d3-8440-025998ca857b" #s(org-graph-node "9a00b903-ea15-48d3-8440-025998ca857b" "GHC" "/home/ellis/comp/org/graph/comp/ghc.org" 66) "ad2e3567-2c78-40f5-9a5d-2ffb66e5fae2" #s(org-graph-node "ad2e3567-2c78-40f5-9a5d-2ffb66e5fae2" "Pragmas" "/home/ellis/comp/org/graph/comp/gcc.org" 1276) "f6074a9e-0c44-4dd7-a472-dfae30ce34db" #s(org-graph-node "f6074a9e-0c44-4dd7-a472-dfae30ce34db" "Function Attributes" "/home/ellis/comp/org/graph/comp/gcc.org" 932) "2a3947b0-a120-4c48-a8d5-f9c01deb49b9" #s(org-graph-node "2a3947b0-a120-4c48-a8d5-f9c01deb49b9" "Extensions" "/home/ellis/comp/org/graph/comp/gcc.org" 705) "4b5e18bd-cb9b-4f83-a463-e4a95764104b" #s(org-graph-node "4b5e18bd-cb9b-4f83-a463-e4a95764104b" "G++" "/home/ellis/comp/org/graph/comp/gcc.org" 526) "b3639401-b960-42d3-8325-7b5e056e3478" #s(org-graph-node "b3639401-b960-42d3-8325-7b5e056e3478" "GCC" "/home/ellis/comp/org/graph/comp/gcc.org" 45) "03934099-5cca-488c-aa5b-ed5dd4bfb428" #s(org-graph-node "03934099-5cca-488c-aa5b-ed5dd4bfb428" "ECL" "/home/ellis/comp/org/graph/comp/ecl.org" 62) "6496205a-1dd9-4aec-9b32-ee5a44156839" #s(org-graph-node "6496205a-1dd9-4aec-9b32-ee5a44156839" "Storage" "/home/ellis/comp/org/graph/hw/shop.org" 28) "978eae63-4d8e-4dbf-bfba-b135d82ab027" #s(org-graph-node "978eae63-4d8e-4dbf-bfba-b135d82ab027" "Storage Products" "/home/ellis/comp/org/graph/hw/samsung.org" 299) "f67cc642-30fe-4dd9-a78d-6c5296dc861a" #s(org-graph-node "f67cc642-30fe-4dd9-a78d-6c5296dc861a" "Samsung Electronics" "/home/ellis/comp/org/graph/hw/samsung.org" 49) "eaf2ecf5-7748-40e5-bd1b-c8fc2053d050" #s(org-graph-node "eaf2ecf5-7748-40e5-bd1b-c8fc2053d050" "NVIDIA" "/home/ellis/comp/org/graph/hw/nvidia.org" 48) "4555306b-b68c-43a9-8a54-e4066ca7437d" #s(org-graph-node "4555306b-b68c-43a9-8a54-e4066ca7437d" "Intel" "/home/ellis/comp/org/graph/hw/intel.org" 47) "632212eb-accb-4660-a46a-c8688c5d237a" #s(org-graph-node "632212eb-accb-4660-a46a-c8688c5d237a" "HydraBus" "/home/ellis/comp/org/graph/hw/hydrabus.org" 50) "f213dab2-1cda-47ee-88f6-6f7e7754f74e" #s(org-graph-node "f213dab2-1cda-47ee-88f6-6f7e7754f74e" "CAN Messages" "/home/ellis/comp/org/graph/hw/honda.org" 967) "0a1a68f5-acee-4762-8136-477f8fe3e5ad" #s(org-graph-node "0a1a68f5-acee-4762-8136-477f8fe3e5ad" "ADB" "/home/ellis/comp/org/graph/hw/honda.org" 715) "99c456f5-d1cc-4de3-8c76-6b02990b8e30" #s(org-graph-node "99c456f5-d1cc-4de3-8c76-6b02990b8e30" "Head Unit" "/home/ellis/comp/org/graph/hw/honda.org" 451) "0cbdde1c-8f48-40eb-b090-975cff3ffeae" #s(org-graph-node "0cbdde1c-8f48-40eb-b090-975cff3ffeae" "Honda Motor Company" "/home/ellis/comp/org/graph/hw/honda.org" 47) "d8f28d23-9ea5-4aea-853b-f41884664f0e" #s(org-graph-node "d8f28d23-9ea5-4aea-853b-f41884664f0e" "Furniture" "/home/ellis/comp/org/graph/hw/home.org" 135) "e884de4b-3762-4991-bd24-58727c28de12" #s(org-graph-node "e884de4b-3762-4991-bd24-58727c28de12" "Storage" "/home/ellis/comp/org/graph/hw/home.org" 24) "74f75829-fdc6-456e-b306-ab42b18260f3" #s(org-graph-node "74f75829-fdc6-456e-b306-ab42b18260f3" "HackRF" "/home/ellis/comp/org/graph/hw/gsg.org" 280) "f8b83779-83c1-47fc-88e7-c76018e4b8df" #s(org-graph-node "f8b83779-83c1-47fc-88e7-c76018e4b8df" "Great Scott Gadgets" "/home/ellis/comp/org/graph/hw/gsg.org" 61) "05a6ae25-b2ed-4edb-9104-e6894819b96e" #s(org-graph-node "05a6ae25-b2ed-4edb-9104-e6894819b96e" "GPU" "/home/ellis/comp/org/graph/hw/gpu.org" 45) "cf84218a-5bbc-4b73-919b-994cbd0e2845" #s(org-graph-node "cf84218a-5bbc-4b73-919b-994cbd0e2845" "Intel Xeon" "/home/ellis/comp/org/graph/hw/cpu.org" 2127) "b64ab310-f4f1-4be7-991b-d38ef4ad686f" #s(org-graph-node "b64ab310-f4f1-4be7-991b-d38ef4ad686f" "Intel Core" "/home/ellis/comp/org/graph/hw/cpu.org" 1801) "86c29a1a-359d-4049-816d-2ec56e6bdd5f" #s(org-graph-node "86c29a1a-359d-4049-816d-2ec56e6bdd5f" "EPYC" "/home/ellis/comp/org/graph/hw/cpu.org" 905) "1b41d186-948d-4ef1-b36d-f3e2fa14fa3d" #s(org-graph-node "1b41d186-948d-4ef1-b36d-f3e2fa14fa3d" "AMD Zen" "/home/ellis/comp/org/graph/hw/cpu.org" 390) "20e26c76-3247-4434-89dc-cbd5712fdf67" #s(org-graph-node "20e26c76-3247-4434-89dc-cbd5712fdf67" "CPU" "/home/ellis/comp/org/graph/hw/cpu.org" 45) "e6a7db9a-b591-48f9-aa9c-296968821599" #s(org-graph-node "e6a7db9a-b591-48f9-aa9c-296968821599" "Cars" "/home/ellis/comp/org/graph/hw/car.org" 100) "c5d7a7b3-09f1-4f0e-909a-63111c039cc3" #s(org-graph-node "c5d7a7b3-09f1-4f0e-909a-63111c039cc3" "Apple" "/home/ellis/comp/org/graph/hw/apple.org" 56) "e2368655-59e9-404b-9ac6-cecb35216c11" #s(org-graph-node "e2368655-59e9-404b-9ac6-cecb35216c11" "AMD" "/home/ellis/comp/org/graph/hw/amd.org" 45) "b8c643e4-3d48-45c3-a61b-db9613d1db28" #s(org-graph-node "b8c643e4-3d48-45c3-a61b-db9613d1db28" "Wisp" "/home/ellis/comp/org/graph/lang/zig.org" 466) "85cab8fb-c534-4bd9-a2b6-16e31014d2c2" #s(org-graph-node "85cab8fb-c534-4bd9-a2b6-16e31014d2c2" "Apps" "/home/ellis/comp/org/graph/lang/zig.org" 357) "65db51e0-b2a6-46b4-9ff6-c76bb11b2cb5" #s(org-graph-node "65db51e0-b2a6-46b4-9ff6-c76bb11b2cb5" "Libraries" "/home/ellis/comp/org/graph/lang/zig.org" 243) "24f9cd96-0ad1-412a-a24b-c3fa1bdf3c98" #s(org-graph-node "24f9cd96-0ad1-412a-a24b-c3fa1bdf3c98" "Zig" "/home/ellis/comp/org/graph/lang/zig.org" 45) "d7b78cc9-8fa4-40ad-be46-ea205c59e3dd" #s(org-graph-node "d7b78cc9-8fa4-40ad-be46-ea205c59e3dd" "Swift" "/home/ellis/comp/org/graph/lang/swift.org" 47) "ef41c99e-99fb-4a46-9578-73f8ed85b925" #s(org-graph-node "ef41c99e-99fb-4a46-9578-73f8ed85b925" "Smalltalk" "/home/ellis/comp/org/graph/lang/smalltalk.org" 51) "1dab85a8-c52e-4185-a5d3-1ae182c5ee4e" #s(org-graph-node "1dab85a8-c52e-4185-a5d3-1ae182c5ee4e" "WSH" "/home/ellis/comp/org/graph/lang/shell.org" 1226) "733d8d74-9f4d-407e-8a1b-fd40264cdba2" #s(org-graph-node "733d8d74-9f4d-407e-8a1b-fd40264cdba2" "Batch" "/home/ellis/comp/org/graph/lang/shell.org" 1103) "c1cb5688-a66f-43e7-8997-1aebe845a7f6" #s(org-graph-node "c1cb5688-a66f-43e7-8997-1aebe845a7f6" "CMD" "/home/ellis/comp/org/graph/lang/shell.org" 596) "9815156f-fcf9-4c33-bcb9-3719f2245b3f" #s(org-graph-node "9815156f-fcf9-4c33-bcb9-3719f2245b3f" "Powershell" "/home/ellis/comp/org/graph/lang/shell.org" 482) "b4048114-ec39-4e53-816f-2f1319d404ee" #s(org-graph-node "b4048114-ec39-4e53-816f-2f1319d404ee" "Nu" "/home/ellis/comp/org/graph/lang/shell.org" 162) "603a9a84-70ee-437b-9419-06e99fe431f3" #s(org-graph-node "603a9a84-70ee-437b-9419-06e99fe431f3" "Bash" "/home/ellis/comp/org/graph/lang/shell.org" 53) "ea2f3f8e-1c8c-4c05-b16c-fb197d346409" #s(org-graph-node "ea2f3f8e-1c8c-4c05-b16c-fb197d346409" "best practices" "/home/ellis/comp/org/graph/lang/rust.org" 6151) "5ffb08b8-d27d-4b1f-ae05-03da0207ccdf" #s(org-graph-node "5ffb08b8-d27d-4b1f-ae05-03da0207ccdf" "cargo-script" "/home/ellis/comp/org/graph/lang/rust.org" 5899) "85f9f317-c6ef-4085-98be-db982b27a193" #s(org-graph-node "85f9f317-c6ef-4085-98be-db982b27a193" "RFCs" "/home/ellis/comp/org/graph/lang/rust.org" 5790) "b11ad05a-5d5f-4974-9364-c3eebb9d15d8" #s(org-graph-node "b11ad05a-5d5f-4974-9364-c3eebb9d15d8" "Articles" "/home/ellis/comp/org/graph/lang/rust.org" 5028) "bb68152d-1794-47d8-86c0-03eb7f9256d7" #s(org-graph-node "bb68152d-1794-47d8-86c0-03eb7f9256d7" "Rust != C" "/home/ellis/comp/org/graph/lang/rust.org" 4332) "79ad4134-5182-4001-b404-faeb9abd2474" #s(org-graph-node "79ad4134-5182-4001-b404-faeb9abd2474" "Dalek" "/home/ellis/comp/org/graph/lang/rust.org" 4139) "ffb4e87c-e265-4549-91f9-093e714708c0" #s(org-graph-node "ffb4e87c-e265-4549-91f9-093e714708c0" "Serde" "/home/ellis/comp/org/graph/lang/rust.org" 3030) "8fbe9da2-1d6a-43bc-bd89-cf448d43eab8" #s(org-graph-node "8fbe9da2-1d6a-43bc-bd89-cf448d43eab8" "Libraries" "/home/ellis/comp/org/graph/lang/rust.org" 2916) "7dd61019-39f3-4706-bfc4-ea48bf76da9c" #s(org-graph-node "7dd61019-39f3-4706-bfc4-ea48bf76da9c" "Rust" "/home/ellis/comp/org/graph/lang/rust.org" 74) "2e7cc5b2-718c-4968-84c0-f881e702a616" #s(org-graph-node "2e7cc5b2-718c-4968-84c0-f881e702a616" "Datalog" "/home/ellis/comp/org/graph/lang/query.org" 1494) "3ac23a84-ba2e-41a1-9ea4-268e01891930" #s(org-graph-node "3ac23a84-ba2e-41a1-9ea4-268e01891930" "Prolog" "/home/ellis/comp/org/graph/lang/query.org" 870) "da0aecca-6d5b-4719-9235-6a11fe978b11" #s(org-graph-node "da0aecca-6d5b-4719-9235-6a11fe978b11" "DQL" "/home/ellis/comp/org/graph/lang/query.org" 332) "90b5d156-6fd6-47de-9e76-32e69115f5ac" #s(org-graph-node "90b5d156-6fd6-47de-9e76-32e69115f5ac" "SQL" "/home/ellis/comp/org/graph/lang/query.org" 57) "43663178-a6db-4cd5-923f-612eaa8ae14a" #s(org-graph-node "43663178-a6db-4cd5-923f-612eaa8ae14a" "Python" "/home/ellis/comp/org/graph/lang/python.org" 48) "45c83abe-cff5-4d00-9f01-f61c55525ca9" #s(org-graph-node "45c83abe-cff5-4d00-9f01-f61c55525ca9" "Clojure" "/home/ellis/comp/org/graph/lang/lisp.org" 23125) "358a0e2b-b5e0-47ad-9c70-7bb72b1c548f" #s(org-graph-node "358a0e2b-b5e0-47ad-9c70-7bb72b1c548f" "Overlays" "/home/ellis/comp/org/graph/lang/lisp.org" 22943) "c3aeb32d-5353-40e3-9817-c086f6beb58b" #s(org-graph-node "c3aeb32d-5353-40e3-9817-c086f6beb58b" "SVG Images" "/home/ellis/comp/org/graph/lang/lisp.org" 22756) "401e2cbd-2769-4c73-979e-ca98f4f6208c" #s(org-graph-node "401e2cbd-2769-4c73-979e-ca98f4f6208c" "Native Widgets" "/home/ellis/comp/org/graph/lang/lisp.org" 22567) "114b1269-7400-45a7-ac41-17032015ffaa" #s(org-graph-node "114b1269-7400-45a7-ac41-17032015ffaa" "Ewoc" "/home/ellis/comp/org/graph/lang/lisp.org" 22310) "dd393948-c526-4216-bf9b-5869a7121933" #s(org-graph-node "dd393948-c526-4216-bf9b-5869a7121933" "Display" "/home/ellis/comp/org/graph/lang/lisp.org" 22130) "da96454b-fc70-4a5c-bd7a-e66d148eb1d9" #s(org-graph-node "da96454b-fc70-4a5c-bd7a-e66d148eb1d9" "EIEIO" "/home/ellis/comp/org/graph/lang/lisp.org" 21883) "95427021-7e0c-4657-9b70-a7ed874fe35a" #s(org-graph-node "95427021-7e0c-4657-9b70-a7ed874fe35a" "Widgets" "/home/ellis/comp/org/graph/lang/lisp.org" 18765) "5510378f-d1a7-4642-8a24-ada2d7f7e54d" #s(org-graph-node "5510378f-d1a7-4642-8a24-ada2d7f7e54d" "Threads" "/home/ellis/comp/org/graph/lang/lisp.org" 18584) "6c69c42b-3d0a-48bf-a5ad-43b350477387" #s(org-graph-node "6c69c42b-3d0a-48bf-a5ad-43b350477387" "Elisp" "/home/ellis/comp/org/graph/lang/lisp.org" 18085) "e21c02a5-5039-42c2-8416-aa5d45e70cb6" #s(org-graph-node "e21c02a5-5039-42c2-8416-aa5d45e70cb6" "Lisp Machine Lisp" "/home/ellis/comp/org/graph/lang/lisp.org" 17650) "66e2ab9a-51e3-4360-b7ad-0b38eb0dd6e5" #s(org-graph-node "66e2ab9a-51e3-4360-b7ad-0b38eb0dd6e5" "Guile" "/home/ellis/comp/org/graph/lang/lisp.org" 17358) "79ecc4f2-f223-4045-a31a-565192efaf49" #s(org-graph-node "79ecc4f2-f223-4045-a31a-565192efaf49" "Concurrency" "/home/ellis/comp/org/graph/lang/lisp.org" 16945) "c1fdfebb-0dec-420d-abf9-aec7a2de5633" #s(org-graph-node "c1fdfebb-0dec-420d-abf9-aec7a2de5633" "Contracts" "/home/ellis/comp/org/graph/lang/lisp.org" 16629) "74140b0d-af83-4516-ac70-b62bfa3de68d" #s(org-graph-node "74140b0d-af83-4516-ac70-b62bfa3de68d" "Racket" "/home/ellis/comp/org/graph/lang/lisp.org" 16279) "cce00db3-1428-4380-aa5d-8d2ec767b873" #s(org-graph-node "cce00db3-1428-4380-aa5d-8d2ec767b873" "Scheme" "/home/ellis/comp/org/graph/lang/lisp.org" 15958) "6cfca9d2-8d3d-4725-a08f-349e08fd44e3" #s(org-graph-node "6cfca9d2-8d3d-4725-a08f-349e08fd44e3" "Ultralisp" "/home/ellis/comp/org/graph/lang/lisp.org" 15669) "0b568dbe-fc89-4ce6-be86-fd18d1d2d5c0" #s(org-graph-node "0b568dbe-fc89-4ce6-be86-fd18d1d2d5c0" "Quicklisp" "/home/ellis/comp/org/graph/lang/lisp.org" 14652) "d41019fd-ca88-4608-af00-9e7a84dcd49f" #s(org-graph-node "d41019fd-ca88-4608-af00-9e7a84dcd49f" "Package Managers" "/home/ellis/comp/org/graph/lang/lisp.org" 14531) "2b73b4e2-495a-4af0-9777-294196ad7f4d" #s(org-graph-node "2b73b4e2-495a-4af0-9777-294196ad7f4d" "Land of Lisp" "/home/ellis/comp/org/graph/lang/lisp.org" 14284) "11b9f51e-4d47-41ba-814f-aa6738a65881" #s(org-graph-node "11b9f51e-4d47-41ba-814f-aa6738a65881" "LoL" "/home/ellis/comp/org/graph/lang/lisp.org" 13880) "53d96196-24d4-4737-93d0-a282f2cf5c0b" #s(org-graph-node "53d96196-24d4-4737-93d0-a282f2cf5c0b" "PCL" "/home/ellis/comp/org/graph/lang/lisp.org" 13529) "91c00d39-6541-4b29-8d6b-a5b8c770cab0" #s(org-graph-node "91c00d39-6541-4b29-8d6b-a5b8c770cab0" "PAIP" "/home/ellis/comp/org/graph/lang/lisp.org" 13255) "04d98054-94f2-47d1-8af4-751c10827ee8" #s(org-graph-node "04d98054-94f2-47d1-8af4-751c10827ee8" "Books" "/home/ellis/comp/org/graph/lang/lisp.org" 13145) "f8f4d3ea-663a-4a8e-a9a8-f0d7813c710f" #s(org-graph-node "f8f4d3ea-663a-4a8e-a9a8-f0d7813c710f" "LAP" "/home/ellis/comp/org/graph/lang/lisp.org" 12797) "377a92dd-8e6e-4183-bd8a-70c47902d4d8" #s(org-graph-node "377a92dd-8e6e-4183-bd8a-70c47902d4d8" "CAR and CDR" "/home/ellis/comp/org/graph/lang/lisp.org" 12572) "3951ac2e-dc3d-4c25-b0ab-7b1daac53b47" #s(org-graph-node "3951ac2e-dc3d-4c25-b0ab-7b1daac53b47" "T" "/home/ellis/comp/org/graph/lang/lisp.org" 12369) "fb444369-a3e2-4451-8afc-e29571e706de" #s(org-graph-node "fb444369-a3e2-4451-8afc-e29571e706de" "History" "/home/ellis/comp/org/graph/lang/lisp.org" 12257) "92dd3f0e-4789-4016-a623-48af3c45cd05" #s(org-graph-node "92dd3f0e-4789-4016-a623-48af3c45cd05" "Packages" "/home/ellis/comp/org/graph/lang/lisp.org" 10601) "fb68413a-acd8-4107-bfb5-48ce32be8842" #s(org-graph-node "fb68413a-acd8-4107-bfb5-48ce32be8842" "ASDF" "/home/ellis/comp/org/graph/lang/lisp.org" 10431) "a6911466-c135-488c-a67e-689f22592a44" #s(org-graph-node "a6911466-c135-488c-a67e-689f22592a44" "Systems" "/home/ellis/comp/org/graph/lang/lisp.org" 10319) "3addee17-b990-4a6d-9767-071969ed9d0e" #s(org-graph-node "3addee17-b990-4a6d-9767-071969ed9d0e" "jscl" "/home/ellis/comp/org/graph/lang/lisp.org" 10047) "c560dc07-8c9c-42bc-9ce1-634630d26981" #s(org-graph-node "c560dc07-8c9c-42bc-9ce1-634630d26981" "lparallel" "/home/ellis/comp/org/graph/lang/lisp.org" 9724) "a911344d-aed1-4603-a46f-e8edf53756f5" #s(org-graph-node "a911344d-aed1-4603-a46f-e8edf53756f5" "Gambol" "/home/ellis/comp/org/graph/lang/lisp.org" 9342) "e70d50df-d897-4a5f-a669-fa5dc3f94b23" #s(org-graph-node "e70d50df-d897-4a5f-a669-fa5dc3f94b23" "Framebuffers" "/home/ellis/comp/org/graph/lang/lisp.org" 9069) "8af234c8-1455-4dc8-a2df-e6d5b5777606" #s(org-graph-node "8af234c8-1455-4dc8-a2df-e6d5b5777606" "Alloy" "/home/ellis/comp/org/graph/lang/lisp.org" 8802) "1beb282b-8c4d-4561-a293-07439d0367ae" #s(org-graph-node "1beb282b-8c4d-4561-a293-07439d0367ae" "Radiance" "/home/ellis/comp/org/graph/lang/lisp.org" 8541) "503387d8-fa9c-4269-99bc-1d29415ab290" #s(org-graph-node "503387d8-fa9c-4269-99bc-1d29415ab290" "Shirakumo Ecosystem" "/home/ellis/comp/org/graph/lang/lisp.org" 8153) "54ea6883-851d-4829-8f71-889aa7f58c45" #s(org-graph-node "54ea6883-851d-4829-8f71-889aa7f58c45" "CLX" "/home/ellis/comp/org/graph/lang/lisp.org" 7867) "82d4dffa-070c-4ead-b317-9f9b6820e2c1" #s(org-graph-node "82d4dffa-070c-4ead-b317-9f9b6820e2c1" "Libraries" "/home/ellis/comp/org/graph/lang/lisp.org" 7753) "54d32d4a-93fe-4f4d-9207-f291dbb1edc6" #s(org-graph-node "54d32d4a-93fe-4f4d-9207-f291dbb1edc6" "screenshotbot-oss" "/home/ellis/comp/org/graph/lang/lisp.org" 7399) "475491e1-eacd-4759-be06-1c027e91f565" #s(org-graph-node "475491e1-eacd-4759-be06-1c027e91f565" "Applications" "/home/ellis/comp/org/graph/lang/lisp.org" 7282) "961d0c81-11f0-49e2-8ccb-9c31f6b6528d" #s(org-graph-node "961d0c81-11f0-49e2-8ccb-9c31f6b6528d" "Compiler Macros" "/home/ellis/comp/org/graph/lang/lisp.org" 7027) "1ccb1faa-6e41-4b4f-877f-4382bc250e53" #s(org-graph-node "1ccb1faa-6e41-4b4f-877f-4382bc250e53" "Macros" "/home/ellis/comp/org/graph/lang/lisp.org" 6828) "d9062d16-09f0-4c48-99ac-2e26407fc75b" #s(org-graph-node "d9062d16-09f0-4c48-99ac-2e26407fc75b" "Concurrency" "/home/ellis/comp/org/graph/lang/lisp.org" 6414) "439a02f1-afcf-4ba3-bdf4-0304d152ba6f" #s(org-graph-node "439a02f1-afcf-4ba3-bdf4-0304d152ba6f" "Loop" "/home/ellis/comp/org/graph/lang/lisp.org" 6305) "d69c0095-59e3-4005-8360-f928c3ace460" #s(org-graph-node "d69c0095-59e3-4005-8360-f928c3ace460" "Thunk" "/home/ellis/comp/org/graph/lang/lisp.org" 5752) "7555f8c6-5dd5-4607-ae1f-32643bf03ba9" #s(org-graph-node "7555f8c6-5dd5-4607-ae1f-32643bf03ba9" "Lambda Expressions" "/home/ellis/comp/org/graph/lang/lisp.org" 3717) "ebbc665a-10c3-46a3-8052-4f46bc9ac2b1" #s(org-graph-node "ebbc665a-10c3-46a3-8052-4f46bc9ac2b1" "Functions" "/home/ellis/comp/org/graph/lang/lisp.org" 3367) "852b2c7f-238e-480d-ad63-3b5b53c58929" #s(org-graph-node "852b2c7f-238e-480d-ad63-3b5b53c58929" "Format Directives" "/home/ellis/comp/org/graph/lang/lisp.org" 3096) "4e7b8135-3d53-4739-9a72-563971a5b876" #s(org-graph-node "4e7b8135-3d53-4739-9a72-563971a5b876" "Method Combination" "/home/ellis/comp/org/graph/lang/lisp.org" 2125) "8bc4ff14-f001-4515-ac1f-fd59ef8ef506" #s(org-graph-node "8bc4ff14-f001-4515-ac1f-fd59ef8ef506" "CLOS" "/home/ellis/comp/org/graph/lang/lisp.org" 1571) "db68087d-cc4c-462d-b4e0-bbda756dc37c" #s(org-graph-node "db68087d-cc4c-462d-b4e0-bbda756dc37c" "common-lisp unicode support" "/home/ellis/comp/org/graph/lang/lisp.org" 1057) "df41336d-5185-4047-9644-e25925529f08" #s(org-graph-node "df41336d-5185-4047-9644-e25925529f08" "Syntax" "/home/ellis/comp/org/graph/lang/lisp.org" 799) "af0ed8bb-4b45-42f9-b8be-82b8ea7935a3" #s(org-graph-node "af0ed8bb-4b45-42f9-b8be-82b8ea7935a3" "Common Lisp" "/home/ellis/comp/org/graph/lang/lisp.org" 91) "58d76125-7110-4c76-b8d4-7014d407cc1d" #s(org-graph-node "58d76125-7110-4c76-b8d4-7014d407cc1d" "TypeScript" "/home/ellis/comp/org/graph/lang/javascript.org" 2245) "ccbf8bb8-4195-4e6a-8a72-87a7fed916b1" #s(org-graph-node "ccbf8bb8-4195-4e6a-8a72-87a7fed916b1" "Next.js" "/home/ellis/comp/org/graph/lang/javascript.org" 2026) "05a83166-2afc-41b2-8b64-9fcb2a33a5d8" #s(org-graph-node "05a83166-2afc-41b2-8b64-9fcb2a33a5d8" "React" "/home/ellis/comp/org/graph/lang/javascript.org" 1845) "84bd750f-75f0-4b23-b18e-7868783fdacb" #s(org-graph-node "84bd750f-75f0-4b23-b18e-7868783fdacb" "d3.js" "/home/ellis/comp/org/graph/lang/javascript.org" 1405) "b2f13ede-db9d-494b-a454-515496cb6b7e" #s(org-graph-node "b2f13ede-db9d-494b-a454-515496cb6b7e" "SVG.js" "/home/ellis/comp/org/graph/lang/javascript.org" 1201) "5886ca2e-a096-4f08-b08e-75da2c12109a" #s(org-graph-node "5886ca2e-a096-4f08-b08e-75da2c12109a" "Cytoscape.js" "/home/ellis/comp/org/graph/lang/javascript.org" 999) "1dd1ff5b-c2bb-47ff-96d0-f56d2fac465b" #s(org-graph-node "1dd1ff5b-c2bb-47ff-96d0-f56d2fac465b" "WebCola" "/home/ellis/comp/org/graph/lang/javascript.org" 442) "7ddd2d60-6a99-4948-aa7b-f36dc9839599" #s(org-graph-node "7ddd2d60-6a99-4948-aa7b-f36dc9839599" "Libraries" "/home/ellis/comp/org/graph/lang/javascript.org" 328) "d9226de2-4b80-4193-a06e-e3185ffb5217" #s(org-graph-node "d9226de2-4b80-4193-a06e-e3185ffb5217" "Javascript" "/home/ellis/comp/org/graph/lang/javascript.org" 52) "daabdec4-5708-4bfe-ad37-41469d0dfe17" #s(org-graph-node "daabdec4-5708-4bfe-ad37-41469d0dfe17" "Kotlin" "/home/ellis/comp/org/graph/lang/java.org" 1524) "84a7eea1-0059-4a07-945b-c4167ca38f26" #s(org-graph-node "84a7eea1-0059-4a07-945b-c4167ca38f26" "Groovy" "/home/ellis/comp/org/graph/lang/java.org" 1229) "6819fc08-3199-49bc-9c5d-b19419118525" #s(org-graph-node "6819fc08-3199-49bc-9c5d-b19419118525" "JVM" "/home/ellis/comp/org/graph/lang/java.org" 504) "99715e32-2635-4425-b2b5-a1fcb4ddb9a5" #s(org-graph-node "99715e32-2635-4425-b2b5-a1fcb4ddb9a5" "Java" "/home/ellis/comp/org/graph/lang/java.org" 46) "917c397b-01f2-4f02-8b27-abeeeaa463ab" #s(org-graph-node "917c397b-01f2-4f02-8b27-abeeeaa463ab" "Haskell" "/home/ellis/comp/org/graph/lang/haskell.org" 49) "f32a0d3a-79b7-4853-81e2-bafd46f33428" #s(org-graph-node "f32a0d3a-79b7-4853-81e2-bafd46f33428" "Fortran" "/home/ellis/comp/org/graph/lang/fortran.org" 49) "98bd675d-6c08-427c-acff-fecbd8dcb8b1" #s(org-graph-node "98bd675d-6c08-427c-acff-fecbd8dcb8b1" "Elixir" "/home/ellis/comp/org/graph/lang/erlang.org" 1154) "d3ec4a82-1ff7-44bc-b34f-6e2cc66dcc84" #s(org-graph-node "d3ec4a82-1ff7-44bc-b34f-6e2cc66dcc84" "BEAM" "/home/ellis/comp/org/graph/lang/erlang.org" 820) "609eef50-a8d4-465c-808d-93c623c05a85" #s(org-graph-node "609eef50-a8d4-465c-808d-93c623c05a85" "Erlang" "/home/ellis/comp/org/graph/lang/erlang.org" 48) "39af0f8f-aff7-40f3-a139-e1338a6bb966" #s(org-graph-node "39af0f8f-aff7-40f3-a139-e1338a6bb966" "Joy" "/home/ellis/comp/org/graph/lang/concat.org" 1219) "b0f61b51-fbd8-4b45-a8cd-0a2e08864fed" #s(org-graph-node "b0f61b51-fbd8-4b45-a8cd-0a2e08864fed" "Factor" "/home/ellis/comp/org/graph/lang/concat.org" 1011) "35de6467-e9fc-49f4-b46b-0e05029f9f48" #s(org-graph-node "35de6467-e9fc-49f4-b46b-0e05029f9f48" "Books" "/home/ellis/comp/org/graph/lang/concat.org" 793) "c8359e6e-401b-4c7a-915f-98dc2759c995" #s(org-graph-node "c8359e6e-401b-4c7a-915f-98dc2759c995" "Gforth" "/home/ellis/comp/org/graph/lang/concat.org" 502) "ffb8be57-d874-4540-9fe0-9efea6559185" #s(org-graph-node "ffb8be57-d874-4540-9fe0-9efea6559185" "Forth" "/home/ellis/comp/org/graph/lang/concat.org" 77) "b350b221-28ed-4866-971a-f1a4dbe4f3b4" #s(org-graph-node "b350b221-28ed-4866-971a-f1a4dbe4f3b4" "COBOL" "/home/ellis/comp/org/graph/lang/cobol.org" 47) "3021fa48-a98a-471f-896c-db237e97192b" #s(org-graph-node "3021fa48-a98a-471f-896c-db237e97192b" "Objective-C" "/home/ellis/comp/org/graph/lang/c.org" 3853) "a531e912-55ab-4889-806f-475c0316713e" #s(org-graph-node "a531e912-55ab-4889-806f-475c0316713e" "CUDA" "/home/ellis/comp/org/graph/lang/c.org" 3296) "f4bfdb27-161d-4b47-b417-55ac4eeff234" #s(org-graph-node "f4bfdb27-161d-4b47-b417-55ac4eeff234" "NaCl" "/home/ellis/comp/org/graph/lang/c.org" 2994) "d7c12344-b1ae-4bf2-a620-bc99f8e71e29" #s(org-graph-node "d7c12344-b1ae-4bf2-a620-bc99f8e71e29" "Adaptagrams" "/home/ellis/comp/org/graph/lang/c.org" 2699) "2b62b530-80c0-4a78-828e-509ac78dbfd9" #s(org-graph-node "2b62b530-80c0-4a78-828e-509ac78dbfd9" "Boost" "/home/ellis/comp/org/graph/lang/c.org" 2499) "ad099ae1-d55f-49f4-99c7-de92ced85488" #s(org-graph-node "ad099ae1-d55f-49f4-99c7-de92ced85488" "Libraries" "/home/ellis/comp/org/graph/lang/c.org" 2384) "b0ff5843-38de-4bd9-800a-728391dafc02" #s(org-graph-node "b0ff5843-38de-4bd9-800a-728391dafc02" "Libraries" "/home/ellis/comp/org/graph/lang/c.org" 2098) "c7e3f469-f1c9-4b9f-a104-72ae91abab21" #s(org-graph-node "c7e3f469-f1c9-4b9f-a104-72ae91abab21" "nostd" "/home/ellis/comp/org/graph/lang/c.org" 1050) "d77ecb14-ecd4-4432-af2e-f431bf9ea18b" #s(org-graph-node "d77ecb14-ecd4-4432-af2e-f431bf9ea18b" "libc" "/home/ellis/comp/org/graph/lang/c.org" 881) "93cddd0e-4189-4e78-a0e5-b3ceaf6b7d6e" #s(org-graph-node "93cddd0e-4189-4e78-a0e5-b3ceaf6b7d6e" "Macros" "/home/ellis/comp/org/graph/lang/c.org" 687) "5479d877-2bd1-41d9-8409-1ff0436fcc59" #s(org-graph-node "5479d877-2bd1-41d9-8409-1ff0436fcc59" "C" "/home/ellis/comp/org/graph/lang/c.org" 82) "5518920e-e160-4d02-be4f-e73e2c89af45" #s(org-graph-node "5518920e-e160-4d02-be4f-e73e2c89af45" "BASIC" "/home/ellis/comp/org/graph/lang/basic.org" 47) "650a3fc0-6eec-4b9c-8db5-b89715ff50cc" #s(org-graph-node "650a3fc0-6eec-4b9c-8db5-b89715ff50cc" "NNVM IR" "/home/ellis/comp/org/graph/lang/asm.org" 5727) "25754e07-2c57-4385-a52a-33b0179e2b85" #s(org-graph-node "25754e07-2c57-4385-a52a-33b0179e2b85" "LLVM IR" "/home/ellis/comp/org/graph/lang/asm.org" 5216) "bdae141e-3288-4108-b509-dddd4a8b3731" #s(org-graph-node "bdae141e-3288-4108-b509-dddd4a8b3731" "WASM" "/home/ellis/comp/org/graph/lang/asm.org" 4671) "e6c89750-0770-4c0f-a943-f6419313970e" #s(org-graph-node "e6c89750-0770-4c0f-a943-f6419313970e" "RISC-V" "/home/ellis/comp/org/graph/lang/asm.org" 4165) "16a8ffe9-da94-43dd-be0f-7e0d7af68476" #s(org-graph-node "16a8ffe9-da94-43dd-be0f-7e0d7af68476" "Intel VT-x" "/home/ellis/comp/org/graph/lang/asm.org" 4046) "5aabf9b2-3071-40cc-acfb-f93ed4a15afb" #s(org-graph-node "5aabf9b2-3071-40cc-acfb-f93ed4a15afb" "AMD-V" "/home/ellis/comp/org/graph/lang/asm.org" 3933) "5c9317c4-d3fc-4648-bfe2-38d9ca0719ec" #s(org-graph-node "5c9317c4-d3fc-4648-bfe2-38d9ca0719ec" "Virtualization" "/home/ellis/comp/org/graph/lang/asm.org" 3358) "96d5af9b-48f1-4d26-bcdd-a6ed47a73141" #s(org-graph-node "96d5af9b-48f1-4d26-bcdd-a6ed47a73141" "AES" "/home/ellis/comp/org/graph/lang/asm.org" 3120) "c06fcd4c-193a-4ba7-bd16-3b8e537dd2ad" #s(org-graph-node "c06fcd4c-193a-4ba7-bd16-3b8e537dd2ad" "APX" "/home/ellis/comp/org/graph/lang/asm.org" 2790) "3234c77c-97dd-4180-b8ca-48e18de7ab81" #s(org-graph-node "3234c77c-97dd-4180-b8ca-48e18de7ab81" "PAE" "/home/ellis/comp/org/graph/lang/asm.org" 2537) "37c0d23a-8c9b-49d9-98e9-964ca52be6de" #s(org-graph-node "37c0d23a-8c9b-49d9-98e9-964ca52be6de" "SSE" "/home/ellis/comp/org/graph/lang/asm.org" 2286) "9e9bfa13-eed1-49a8-bad1-bfa2f2dade86" #s(org-graph-node "9e9bfa13-eed1-49a8-bad1-bfa2f2dade86" "AVX" "/home/ellis/comp/org/graph/lang/asm.org" 2041) "d9641715-f038-4093-961d-87489fb2390d" #s(org-graph-node "d9641715-f038-4093-961d-87489fb2390d" "SIMD" "/home/ellis/comp/org/graph/lang/asm.org" 1930) "c9748bd6-8f6b-459e-b863-b2b155e3e420" #s(org-graph-node "c9748bd6-8f6b-459e-b863-b2b155e3e420" "Extensions" "/home/ellis/comp/org/graph/lang/asm.org" 1814) "4c7530b8-6d6f-475a-b2a3-986a10a0d812" #s(org-graph-node "4c7530b8-6d6f-475a-b2a3-986a10a0d812" "x86_64" "/home/ellis/comp/org/graph/lang/asm.org" 1061) "3eec30c3-ab67-42f1-b77f-191905d43c6c" #s(org-graph-node "3eec30c3-ab67-42f1-b77f-191905d43c6c" "x86" "/home/ellis/comp/org/graph/lang/asm.org" 635) "5f4daaa9-8536-4051-b2b3-b4669f7960ee" #s(org-graph-node "5f4daaa9-8536-4051-b2b3-b4669f7960ee" "NASM" "/home/ellis/comp/org/graph/lang/asm.org" 455) "c57c2462-7e95-4e6b-9f5b-d7207aeda442" #s(org-graph-node "c57c2462-7e95-4e6b-9f5b-d7207aeda442" "Assembly" "/home/ellis/comp/org/graph/lang/asm.org" 87) "ae27740f-e1fc-4daf-bd2d-d1a4bc59d193" #s(org-graph-node "ae27740f-e1fc-4daf-bd2d-d1a4bc59d193" "K" "/home/ellis/comp/org/graph/lang/apl.org" 9357) "c067cd27-99c0-4e3d-804d-e9eb1f1514ce" #s(org-graph-node "c067cd27-99c0-4e3d-804d-e9eb1f1514ce" "BQN" "/home/ellis/comp/org/graph/lang/apl.org" 1374) "eee94cd6-7a01-4bf1-8029-f98ba665e0b4" #s(org-graph-node "eee94cd6-7a01-4bf1-8029-f98ba665e0b4" "APL" "/home/ellis/comp/org/graph/lang/apl.org" 61) "b4579e67-0855-44e1-971d-1a727694af17" #s(org-graph-node "b4579e67-0855-44e1-971d-1a727694af17" "Elliptic Curve" "/home/ellis/comp/org/graph/math/struct.org" 2078) "51e7d9ad-28a2-4284-94a1-18a642d0cf3d" #s(org-graph-node "51e7d9ad-28a2-4284-94a1-18a642d0cf3d" "Curve" "/home/ellis/comp/org/graph/math/struct.org" 1850) "2616620b-782c-4c1f-97f9-e8f2d4fb8a38" #s(org-graph-node "2616620b-782c-4c1f-97f9-e8f2d4fb8a38" "Tuple" "/home/ellis/comp/org/graph/math/struct.org" 1642) "8805be63-567a-472d-a70c-6155ba2f3d02" #s(org-graph-node "8805be63-567a-472d-a70c-6155ba2f3d02" "Linked List" "/home/ellis/comp/org/graph/math/struct.org" 1416) "2b5b4c0a-c4e8-4d76-b71f-240d6707cb02" #s(org-graph-node "2b5b4c0a-c4e8-4d76-b71f-240d6707cb02" "Stack" "/home/ellis/comp/org/graph/math/struct.org" 1166) "2c184ae0-2523-4f44-9711-4e50e1c93c55" #s(org-graph-node "2c184ae0-2523-4f44-9711-4e50e1c93c55" "Edge" "/home/ellis/comp/org/graph/math/struct.org" 903) "e70dcd77-790b-4588-8abc-71b2f30c6a86" #s(org-graph-node "e70dcd77-790b-4588-8abc-71b2f30c6a86" "Vertex" "/home/ellis/comp/org/graph/math/struct.org" 661) "e2fd1fd6-2393-45a2-a073-0c44bfcfc2a0" #s(org-graph-node "e2fd1fd6-2393-45a2-a073-0c44bfcfc2a0" "Graph" "/home/ellis/comp/org/graph/math/struct.org" 308) "4850e361-e569-4b8e-a0e3-cedcc7e4b3a3" #s(org-graph-node "4850e361-e569-4b8e-a0e3-cedcc7e4b3a3" "Abstract Structure" "/home/ellis/comp/org/graph/math/struct.org" 61) "d48237d3-1559-46ff-83a0-ccfd3513a697" #s(org-graph-node "d48237d3-1559-46ff-83a0-ccfd3513a697" "Probability" "/home/ellis/comp/org/graph/math/stat.org" 385) "e986c340-2931-46e3-8adc-bfbf0cd95bd4" #s(org-graph-node "e986c340-2931-46e3-8adc-bfbf0cd95bd4" "Statistics" "/home/ellis/comp/org/graph/math/stat.org" 52) "0977c147-3689-4dc6-bde7-c7ee9eec5db0" #s(org-graph-node "0977c147-3689-4dc6-bde7-c7ee9eec5db0" "Nuclear Astrophysics" "/home/ellis/comp/org/graph/math/physics.org" 3845) "b4038fa1-5bbb-48e9-935e-293209907a8b" #s(org-graph-node "b4038fa1-5bbb-48e9-935e-293209907a8b" "Fission" "/home/ellis/comp/org/graph/math/physics.org" 3613) "90300edf-9fa4-438b-8f34-65a6857cfdab" #s(org-graph-node "90300edf-9fa4-438b-8f34-65a6857cfdab" "Nuclear Physics" "/home/ellis/comp/org/graph/math/physics.org" 3281) "b06d0c06-7561-4a7f-80d0-cf989a43ab15" #s(org-graph-node "b06d0c06-7561-4a7f-80d0-cf989a43ab15" "Particle Physics" "/home/ellis/comp/org/graph/math/physics.org" 3039) "7f7a4ace-9070-4c17-b71d-ec68141cae78" #s(org-graph-node "7f7a4ace-9070-4c17-b71d-ec68141cae78" "Atomic Physics" "/home/ellis/comp/org/graph/math/physics.org" 2803) "bfc0616e-b631-4b74-a27a-839f25455c44" #s(org-graph-node "bfc0616e-b631-4b74-a27a-839f25455c44" "Optics" "/home/ellis/comp/org/graph/math/physics.org" 2591) "c7f7b48d-23cd-44ed-be1d-223c4af3d3aa" #s(org-graph-node "c7f7b48d-23cd-44ed-be1d-223c4af3d3aa" "Quantum Physics" "/home/ellis/comp/org/graph/math/physics.org" 2316) "e802b005-157c-485d-8281-713a85c4d124" #s(org-graph-node "e802b005-157c-485d-8281-713a85c4d124" "Modern Physics" "/home/ellis/comp/org/graph/math/physics.org" 2080) "653faa00-7ff5-4e00-9a78-56b3c2e686c2" #s(org-graph-node "653faa00-7ff5-4e00-9a78-56b3c2e686c2" "Electromagnetism" "/home/ellis/comp/org/graph/math/physics.org" 1818) "a2901e49-a517-4d17-88ac-f789706c0e80" #s(org-graph-node "a2901e49-a517-4d17-88ac-f789706c0e80" "Thermodynamics" "/home/ellis/comp/org/graph/math/physics.org" 1582) "0662e746-3702-44f3-b383-e8bffc45aa6f" #s(org-graph-node "0662e746-3702-44f3-b383-e8bffc45aa6f" "Classical Physics" "/home/ellis/comp/org/graph/math/physics.org" 1337) "ceec7c59-321e-4506-9a0d-61f56247f2f2" #s(org-graph-node "ceec7c59-321e-4506-9a0d-61f56247f2f2" "Acoustics" "/home/ellis/comp/org/graph/math/physics.org" 1116) "3328ae51-9643-469e-aaf5-aec4c64338f0" #s(org-graph-node "3328ae51-9643-469e-aaf5-aec4c64338f0" "Ionization" "/home/ellis/comp/org/graph/math/physics.org" 890) "68c944e3-dabc-401c-820a-85a8028ab049" #s(org-graph-node "68c944e3-dabc-401c-820a-85a8028ab049" "Radiation" "/home/ellis/comp/org/graph/math/physics.org" 668) "9f4d121c-27af-4b5a-a54f-d77117880495" #s(org-graph-node "9f4d121c-27af-4b5a-a54f-d77117880495" "Energy" "/home/ellis/comp/org/graph/math/physics.org" 456) "873426f8-2dca-46ef-bef2-1fa1e3aa6881" #s(org-graph-node "873426f8-2dca-46ef-bef2-1fa1e3aa6881" "Physics" "/home/ellis/comp/org/graph/math/physics.org" 49) "6e99e961-7ce7-4d3f-86f8-66fde8855f4b" #s(org-graph-node "6e99e961-7ce7-4d3f-86f8-66fde8855f4b" "LLaMA" "/home/ellis/comp/org/graph/math/ml.org" 1287) "d767b814-5842-4c8f-8b97-818b53759ac3" #s(org-graph-node "d767b814-5842-4c8f-8b97-818b53759ac3" "DeepSeek" "/home/ellis/comp/org/graph/math/ml.org" 1071) "7a50d672-f3b9-4606-b4b7-3a6133c9b076" #s(org-graph-node "7a50d672-f3b9-4606-b4b7-3a6133c9b076" "GPT" "/home/ellis/comp/org/graph/math/ml.org" 769) "2a3605d9-9e3a-4743-9b59-e0f0c3c2c323" #s(org-graph-node "2a3605d9-9e3a-4743-9b59-e0f0c3c2c323" "LLM" "/home/ellis/comp/org/graph/math/ml.org" 396) "c899b4aa-563b-42ac-8e01-f488107dd63f" #s(org-graph-node "c899b4aa-563b-42ac-8e01-f488107dd63f" "Models" "/home/ellis/comp/org/graph/math/ml.org" 285) "10588a36-bec0-4a84-9cce-179cbdeb1e4e" #s(org-graph-node "10588a36-bec0-4a84-9cce-179cbdeb1e4e" "ML" "/home/ellis/comp/org/graph/math/ml.org" 58) "23328bba-a55c-475a-9438-8f86f5df6f2a" #s(org-graph-node "23328bba-a55c-475a-9438-8f86f5df6f2a" "Paradox" "/home/ellis/comp/org/graph/math/logic.org" 1268) "68ab28bf-45b9-4d51-90d0-8fb77017ec62" #s(org-graph-node "68ab28bf-45b9-4d51-90d0-8fb77017ec62" "Lambda Calculus" "/home/ellis/comp/org/graph/math/logic.org" 867) "d2bffba1-8d5e-4733-be29-8e07c2cb528c" #s(org-graph-node "d2bffba1-8d5e-4733-be29-8e07c2cb528c" "Formal System" "/home/ellis/comp/org/graph/math/logic.org" 633) "fb36a89f-2b32-452a-b480-5ea23bd63efb" #s(org-graph-node "fb36a89f-2b32-452a-b480-5ea23bd63efb" "Formal Language" "/home/ellis/comp/org/graph/math/logic.org" 393) "460c0ac9-f37b-46ba-9837-21f6424185fd" #s(org-graph-node "460c0ac9-f37b-46ba-9837-21f6424185fd" "Formal Logic" "/home/ellis/comp/org/graph/math/logic.org" 156) "9ff60117-e232-4754-8fa4-85939b519ced" #s(org-graph-node "9ff60117-e232-4754-8fa4-85939b519ced" "Logic" "/home/ellis/comp/org/graph/math/logic.org" 47) "3da5cb2e-53cf-424b-af43-580fab3e690a" #s(org-graph-node "3da5cb2e-53cf-424b-af43-580fab3e690a" "DSP" "/home/ellis/comp/org/graph/math/dsp.org" 67) "8259478a-d303-4d05-ac00-505decc39bb4" #s(org-graph-node "8259478a-d303-4d05-ac00-505decc39bb4" "Automaton" "/home/ellis/comp/org/graph/math/compsci.org" 2100) "4bec80fd-4547-462f-9945-e4e524a018c4" #s(org-graph-node "4bec80fd-4547-462f-9945-e4e524a018c4" "FSM" "/home/ellis/comp/org/graph/math/compsci.org" 1839) "160d9219-f9e4-4ab3-864d-5aa0df3f9099" #s(org-graph-node "160d9219-f9e4-4ab3-864d-5aa0df3f9099" "Abstract Machine" "/home/ellis/comp/org/graph/math/compsci.org" 1596) "6eeab81b-c95c-4991-9e0a-d3c565dc800d" #s(org-graph-node "6eeab81b-c95c-4991-9e0a-d3c565dc800d" "Automata Theory" "/home/ellis/comp/org/graph/math/compsci.org" 1357) "91c3a4e5-b6c4-49e7-8b6e-eac6e88e0b67" #s(org-graph-node "91c3a4e5-b6c4-49e7-8b6e-eac6e88e0b67" "k-d tree" "/home/ellis/comp/org/graph/math/compsci.org" 1050) "1e7845bb-a065-4e43-860b-6974ab9bbd5d" #s(org-graph-node "1e7845bb-a065-4e43-860b-6974ab9bbd5d" "Tree" "/home/ellis/comp/org/graph/math/compsci.org" 800) "825b2467-a397-4fcc-83b6-c3397e9cc091" #s(org-graph-node "825b2467-a397-4fcc-83b6-c3397e9cc091" "Array" "/home/ellis/comp/org/graph/math/compsci.org" 555) "956cb941-dd29-4b70-b0f7-53ad71362ed0" #s(org-graph-node "956cb941-dd29-4b70-b0f7-53ad71362ed0" "Data Structure" "/home/ellis/comp/org/graph/math/compsci.org" 435) "adc765c5-ae57-47f0-b220-6450dbcabebb" #s(org-graph-node "adc765c5-ae57-47f0-b220-6450dbcabebb" "Computer Science" "/home/ellis/comp/org/graph/math/compsci.org" 58) "5bb49707-e877-45fd-b2e9-a04d80ab4eca" #s(org-graph-node "5bb49707-e877-45fd-b2e9-a04d80ab4eca" "Generalized Functions" "/home/ellis/comp/org/graph/math/calc.org" 1515) "8f56ea7b-0b22-4620-a454-a7ff9d9b5a5c" #s(org-graph-node "8f56ea7b-0b22-4620-a454-a7ff9d9b5a5c" "Stochastic Calculus" "/home/ellis/comp/org/graph/math/calc.org" 1263) "a652db50-8f75-46df-8ba0-f196f4b7fb75" #s(org-graph-node "a652db50-8f75-46df-8ba0-f196f4b7fb75" "Vector Calculus" "/home/ellis/comp/org/graph/math/calc.org" 1023) "39d6876c-5605-4a33-9be4-491f592d91ec" #s(org-graph-node "39d6876c-5605-4a33-9be4-491f592d91ec" "Series" "/home/ellis/comp/org/graph/math/calc.org" 782) "ac761edc-8416-449a-9876-1564c57e06fa" #s(org-graph-node "ac761edc-8416-449a-9876-1564c57e06fa" "Integral" "/home/ellis/comp/org/graph/math/calc.org" 564) "d0976b17-9de6-4c85-9ae5-8f1e89c4941a" #s(org-graph-node "d0976b17-9de6-4c85-9ae5-8f1e89c4941a" "Differential Calculus" "/home/ellis/comp/org/graph/math/calc.org" 307) "cb921570-b908-4b8b-bf46-d4f31b3e1239" #s(org-graph-node "cb921570-b908-4b8b-bf46-d4f31b3e1239" "Calculus" "/home/ellis/comp/org/graph/math/calc.org" 50) "2dfa085f-d853-4e13-a6cf-654d0f96b81f" #s(org-graph-node "2dfa085f-d853-4e13-a6cf-654d0f96b81f" "Hopscotch hashing" "/home/ellis/comp/org/graph/math/algo.org" 794) "0756b187-0c00-434e-98a5-75e06cb3f01b" #s(org-graph-node "0756b187-0c00-434e-98a5-75e06cb3f01b" "Hash" "/home/ellis/comp/org/graph/math/algo.org" 570) "0205d00e-3ba5-4016-afcf-03f888f5bd18" #s(org-graph-node "0205d00e-3ba5-4016-afcf-03f888f5bd18" "Sort" "/home/ellis/comp/org/graph/math/algo.org" 338) "26e0dd8a-352e-4c57-b501-15bdef909d88" #s(org-graph-node "26e0dd8a-352e-4c57-b501-15bdef909d88" "Algorithm" "/home/ellis/comp/org/graph/math/algo.org" 52) "feaa8203-1dfe-4009-8a12-56b3a044d183" #s(org-graph-node "feaa8203-1dfe-4009-8a12-56b3a044d183" "Operation" "/home/ellis/comp/org/graph/math/algebra.org" 4644) "82e956dc-69e5-4eef-993f-6afa97a38312" #s(org-graph-node "82e956dc-69e5-4eef-993f-6afa97a38312" "Inverse" "/home/ellis/comp/org/graph/math/algebra.org" 4409) "39130a13-90fc-4e04-a05a-acdf31fc88ad" #s(org-graph-node "39130a13-90fc-4e04-a05a-acdf31fc88ad" "Function" "/home/ellis/comp/org/graph/math/algebra.org" 3982) "b703c556-fd85-484e-954e-2f6f163a5752" #s(org-graph-node "b703c556-fd85-484e-954e-2f6f163a5752" "Magma" "/home/ellis/comp/org/graph/math/algebra.org" 3752) "4c5eb400-b3f5-48fb-875b-f7a5f3c99ede" #s(org-graph-node "4c5eb400-b3f5-48fb-875b-f7a5f3c99ede" "Set" "/home/ellis/comp/org/graph/math/algebra.org" 3520) "c93a7820-514e-422a-af95-1dd6f8846665" #s(org-graph-node "c93a7820-514e-422a-af95-1dd6f8846665" "Group" "/home/ellis/comp/org/graph/math/algebra.org" 3282) "f66bf1e0-ef4f-4038-9da5-06dca676dba9" #s(org-graph-node "f66bf1e0-ef4f-4038-9da5-06dca676dba9" "Algebraic Structure" "/home/ellis/comp/org/graph/math/algebra.org" 3065) "bcaa674a-b485-46db-955c-17ba5eec4592" #s(org-graph-node "bcaa674a-b485-46db-955c-17ba5eec4592" "Algebraic Topology" "/home/ellis/comp/org/graph/math/algebra.org" 2708) "2054dbdf-d464-44fb-96b9-c3f41e006ca3" #s(org-graph-node "2054dbdf-d464-44fb-96b9-c3f41e006ca3" "Partial Algebra" "/home/ellis/comp/org/graph/math/algebra.org" 2466) "b7e6df5e-8393-4763-87a5-7183b62ad07e" #s(org-graph-node "b7e6df5e-8393-4763-87a5-7183b62ad07e" "Universal Algebra" "/home/ellis/comp/org/graph/math/algebra.org" 2219) "eca3fc3d-22c2-474c-9966-82ce724a0607" #s(org-graph-node "eca3fc3d-22c2-474c-9966-82ce724a0607" "Operad" "/home/ellis/comp/org/graph/math/algebra.org" 1783) "d0b0d9af-ffae-42c4-a151-1f947f348077" #s(org-graph-node "d0b0d9af-ffae-42c4-a151-1f947f348077" "Functor" "/home/ellis/comp/org/graph/math/algebra.org" 1565) "14121452-3f4f-459f-9116-f8fdafd8cd73" #s(org-graph-node "14121452-3f4f-459f-9116-f8fdafd8cd73" "Concrete Category" "/home/ellis/comp/org/graph/math/algebra.org" 1316) "0ebc3d0a-8913-49c1-b8a1-c62ac145b2ba" #s(org-graph-node "0ebc3d0a-8913-49c1-b8a1-c62ac145b2ba" "Monoidal Category" "/home/ellis/comp/org/graph/math/algebra.org" 1068) "d94b3cbc-9dca-430f-af25-523fa12273e6" #s(org-graph-node "d94b3cbc-9dca-430f-af25-523fa12273e6" "Category" "/home/ellis/comp/org/graph/math/algebra.org" 800) "993236b2-fc86-4cce-ac35-0730976a8333" #s(org-graph-node "993236b2-fc86-4cce-ac35-0730976a8333" "Category Theory" "/home/ellis/comp/org/graph/math/algebra.org" 560) "8208c5b8-462c-4f11-b935-246de88e6667" #s(org-graph-node "8208c5b8-462c-4f11-b935-246de88e6667" "Abstract Algebra" "/home/ellis/comp/org/graph/math/algebra.org" 318) "3f69489f-80bf-4b1b-8113-ab8fd5e20e33" #s(org-graph-node "3f69489f-80bf-4b1b-8113-ab8fd5e20e33" "Algebra" "/home/ellis/comp/org/graph/math/algebra.org" 49) "02999b9e-d860-4608-8b63-80265d65f951" #s(org-graph-node "02999b9e-d860-4608-8b63-80265d65f951" "ultimate traffic controller" "/home/ellis/comp/org/graph/notes.org" 17814) "aa7d66fb-d93a-49b5-9bb3-2425400f5100" #s(org-graph-node "aa7d66fb-d93a-49b5-9bb3-2425400f5100" "Enshittification of the Internet" "/home/ellis/comp/org/graph/notes.org" 15572) "1c1bfaa5-53d9-4274-b4ef-621b7b52a959" #s(org-graph-node "1c1bfaa5-53d9-4274-b4ef-621b7b52a959" "duangle texts" "/home/ellis/comp/org/graph/notes.org" 15023) "98e52e0e-104b-4dd8-b147-3a170163aeb9" #s(org-graph-node "98e52e0e-104b-4dd8-b147-3a170163aeb9" "A Narcissist's Prayer" "/home/ellis/comp/org/graph/notes.org" 14763) "138f4a50-1d52-4e13-bf67-f225ef9f6747" #s(org-graph-node "138f4a50-1d52-4e13-bf67-f225ef9f6747" "Death of the Programmer" "/home/ellis/comp/org/graph/notes.org" 14020) "6dbb0064-1421-41bb-b2df-36f694efce0a" #s(org-graph-node "6dbb0064-1421-41bb-b2df-36f694efce0a" "Get Off My Cloud" "/home/ellis/comp/org/graph/notes.org" 13136) "026c796e-dcff-4eda-ad83-12e5d60f9971" #s(org-graph-node "026c796e-dcff-4eda-ad83-12e5d60f9971" "Tree-sitter" "/home/ellis/comp/org/graph/notes.org" 12502) "9376d6e5-fe52-41f3-a821-0c2286daf1e0" #s(org-graph-node "9376d6e5-fe52-41f3-a821-0c2286daf1e0" "Release" "/home/ellis/comp/org/graph/notes.org" 12056) "68ab3b7d-272e-4807-b2e9-959f182b8966" #s(org-graph-node "68ab3b7d-272e-4807-b2e9-959f182b8966" "ops" "/home/ellis/comp/org/graph/notes.org" 11949) "86e4195d-601b-4736-b852-1209a6d38bdf" #s(org-graph-node "86e4195d-601b-4736-b852-1209a6d38bdf" "benchmark" "/home/ellis/comp/org/graph/notes.org" 11718) "69b517f2-648d-4e44-b956-7879b3dadf99" #s(org-graph-node "69b517f2-648d-4e44-b956-7879b3dadf99" "load from SBCL" "/home/ellis/comp/org/graph/notes.org" 11262) "30f4fb3e-0757-4df6-947f-8d1e11edabf9" #s(org-graph-node "30f4fb3e-0757-4df6-947f-8d1e11edabf9" "compile" "/home/ellis/comp/org/graph/notes.org" 11136) "84b5dffe-7171-4d72-9788-f288e3185070" #s(org-graph-node "84b5dffe-7171-4d72-9788-f288e3185070" "test.rs" "/home/ellis/comp/org/graph/notes.org" 10893) "e9d50e77-4d1e-4d38-90aa-9977d8c6c888" #s(org-graph-node "e9d50e77-4d1e-4d38-90aa-9977d8c6c888" "lib.rs" "/home/ellis/comp/org/graph/notes.org" 10463) "469dd142-bafa-4076-8ba9-baf088e60260" #s(org-graph-node "469dd142-bafa-4076-8ba9-baf088e60260" "build.rs" "/home/ellis/comp/org/graph/notes.org" 10103) "21d776b7-9f8d-445c-83c2-8e0c28751827" #s(org-graph-node "21d776b7-9f8d-445c-83c2-8e0c28751827" "cbindgen.toml" "/home/ellis/comp/org/graph/notes.org" 9604) "15115ab8-e7b4-4050-9567-bf026cc140d1" #s(org-graph-node "15115ab8-e7b4-4050-9567-bf026cc140d1" "install" "/home/ellis/comp/org/graph/notes.org" 9144) "435d84d6-c959-4bf6-ad37-fb6e524b54ff" #s(org-graph-node "435d84d6-c959-4bf6-ad37-fb6e524b54ff" "cbindgen" "/home/ellis/comp/org/graph/notes.org" 9063) "cfeb1299-67c5-4a64-863e-f214e195e176" #s(org-graph-node "cfeb1299-67c5-4a64-863e-f214e195e176" "Cargo" "/home/ellis/comp/org/graph/notes.org" 8228) "08420b18-3856-4b62-9523-98fb3398afca" #s(org-graph-node "08420b18-3856-4b62-9523-98fb3398afca" "Setup" "/home/ellis/comp/org/graph/notes.org" 7926) "ab04fff7-51c9-4f1c-b61b-fa4739932343" #s(org-graph-node "ab04fff7-51c9-4f1c-b61b-fa4739932343" "basic example" "/home/ellis/comp/org/graph/notes.org" 7817) "faf8fbcb-3403-4e2f-b881-ef1404ad9780" #s(org-graph-node "faf8fbcb-3403-4e2f-b881-ef1404ad9780" "Overhead" "/home/ellis/comp/org/graph/notes.org" 7365) "6c24dc95-eea6-44fb-8c7f-bb49227ca7bf" #s(org-graph-node "6c24dc95-eea6-44fb-8c7f-bb49227ca7bf" "Rust ABI" "/home/ellis/comp/org/graph/notes.org" 6267) "748ba6e4-60db-4ff7-9d78-12c3f67644d8" #s(org-graph-node "748ba6e4-60db-4ff7-9d78-12c3f67644d8" "Overview" "/home/ellis/comp/org/graph/notes.org" 5457) "a8b0dd7e-741c-4f5f-9d66-40b26ef56b14" #s(org-graph-node "a8b0dd7e-741c-4f5f-9d66-40b26ef56b14" "SBCL+Rust=?" "/home/ellis/comp/org/graph/notes.org" 5342) "c2e682b3-d72a-41b3-b093-16614e7852ff" #s(org-graph-node "c2e682b3-d72a-41b3-b093-16614e7852ff" "Intelligent Design in Software" "/home/ellis/comp/org/graph/notes.org" 4919) "9a398886-858a-450b-9029-2339cc551bc3" #s(org-graph-node "9a398886-858a-450b-9029-2339cc551bc3" "WL vs X" "/home/ellis/comp/org/graph/notes.org" 1158) "332145f8-50b4-46d1-8368-ddaf097c875f" #s(org-graph-node "332145f8-50b4-46d1-8368-ddaf097c875f" "On Infra" "/home/ellis/comp/org/graph/notes.org" 44) "c584cce5-6e64-4ad3-99ad-0d0ef2119837" #s(org-graph-node "c584cce5-6e64-4ad3-99ad-0d0ef2119837" "Windows" "/home/ellis/comp/org/graph/os/win.org" 49) "3c707aa1-be3a-4258-bcd8-195216e658b5" #s(org-graph-node "3c707aa1-be3a-4258-bcd8-195216e658b5" "Plan 9" "/home/ellis/comp/org/graph/os/plan9.org" 48) "70fae18f-5a6e-4d1b-ba88-81339f13d0ec" #s(org-graph-node "70fae18f-5a6e-4d1b-ba88-81339f13d0ec" "z/OS" "/home/ellis/comp/org/graph/os/mainframe.org" 531) "ece2479d-c9f8-4606-a137-7ca679cf7762" #s(org-graph-node "ece2479d-c9f8-4606-a137-7ca679cf7762" "IBM" "/home/ellis/comp/org/graph/os/mainframe.org" 69) "efffd050-7f0d-4286-967b-ce8471d32147" #s(org-graph-node "efffd050-7f0d-4286-967b-ce8471d32147" "MacOS" "/home/ellis/comp/org/graph/os/mac.org" 122) "21e5a881-54d0-410e-b48a-f32ee26ef90d" #s(org-graph-node "21e5a881-54d0-410e-b48a-f32ee26ef90d" "Slackware" "/home/ellis/comp/org/graph/os/linux.org" 16270) "5cbe7ad4-008a-4ed7-889d-e7ec5663dfd1" #s(org-graph-node "5cbe7ad4-008a-4ed7-889d-e7ec5663dfd1" "Gentoo" "/home/ellis/comp/org/graph/os/linux.org" 16076) "b54a3fef-192f-4767-bec2-c10058e69a89" #s(org-graph-node "b54a3fef-192f-4767-bec2-c10058e69a89" "Adélie" "/home/ellis/comp/org/graph/os/linux.org" 15866) "4e717401-7b7b-4ce6-83c7-6f8420e01b93" #s(org-graph-node "4e717401-7b7b-4ce6-83c7-6f8420e01b93" "Alpine" "/home/ellis/comp/org/graph/os/linux.org" 15667) "f03769bc-abf2-4f58-809f-b672c66120f3" #s(org-graph-node "f03769bc-abf2-4f58-809f-b672c66120f3" "Debian" "/home/ellis/comp/org/graph/os/linux.org" 15445) "5d1223c7-0ded-44b9-b494-3a3593a2fe02" #s(org-graph-node "5d1223c7-0ded-44b9-b494-3a3593a2fe02" "Ubuntu" "/home/ellis/comp/org/graph/os/linux.org" 15226) "6ef3fb84-6805-46f7-ad13-8929a023b43c" #s(org-graph-node "6ef3fb84-6805-46f7-ad13-8929a023b43c" "Arch" "/home/ellis/comp/org/graph/os/linux.org" 15037) "79c00d69-0624-4e85-a237-79e73e612dca" #s(org-graph-node "79c00d69-0624-4e85-a237-79e73e612dca" "IoT" "/home/ellis/comp/org/graph/os/linux.org" 14815) "ca6795ee-4b2c-4ec3-9bdc-f6be67c2f1ec" #s(org-graph-node "ca6795ee-4b2c-4ec3-9bdc-f6be67c2f1ec" "CoreOS" "/home/ellis/comp/org/graph/os/linux.org" 12646) "c9fdd74c-0eb2-4d8f-bc22-0cf40996f186" #s(org-graph-node "c9fdd74c-0eb2-4d8f-bc22-0cf40996f186" "Fedora" "/home/ellis/comp/org/graph/os/linux.org" 12428) "34966e81-ab92-4b85-b11e-073784261db5" #s(org-graph-node "34966e81-ab92-4b85-b11e-073784261db5" "Distros" "/home/ellis/comp/org/graph/os/linux.org" 12153) "d43311bf-7f5f-4d21-aad8-4b35548813b5" #s(org-graph-node "d43311bf-7f5f-4d21-aad8-4b35548813b5" "poll" "/home/ellis/comp/org/graph/os/linux.org" 11917) "92c2a9aa-6584-470e-977a-3547bca79414" #s(org-graph-node "92c2a9aa-6584-470e-977a-3547bca79414" "io_uring" "/home/ellis/comp/org/graph/os/linux.org" 10976) "74367b29-6a50-4eb4-ac6b-1c1b96dabd89" #s(org-graph-node "74367b29-6a50-4eb4-ac6b-1c1b96dabd89" "epoll" "/home/ellis/comp/org/graph/os/linux.org" 10738) "9d49d145-2c94-4d6f-a4e1-5016df6cbedc" #s(org-graph-node "9d49d145-2c94-4d6f-a4e1-5016df6cbedc" "IO" "/home/ellis/comp/org/graph/os/linux.org" 10535) "0c37073d-0322-410b-8258-00ffd8215eaa" #s(org-graph-node "0c37073d-0322-410b-8258-00ffd8215eaa" "Frame Buffer" "/home/ellis/comp/org/graph/os/linux.org" 10318) "19f3c5da-0f20-4eca-b142-7fc71095ca18" #s(org-graph-node "19f3c5da-0f20-4eca-b142-7fc71095ca18" "Human Interfaces" "/home/ellis/comp/org/graph/os/linux.org" 10072) "883daf4b-7084-4356-ab2d-877a8af2cd45" #s(org-graph-node "883daf4b-7084-4356-ab2d-877a8af2cd45" "NAPI" "/home/ellis/comp/org/graph/os/linux.org" 9832) "8ed2735d-d259-4a78-8891-ded98f857846" #s(org-graph-node "8ed2735d-d259-4a78-8891-ded98f857846" "Networking" "/home/ellis/comp/org/graph/os/linux.org" 9653) "5499a81e-1c6e-48d5-b906-9d2155afc562" #s(org-graph-node "5499a81e-1c6e-48d5-b906-9d2155afc562" "DFL" "/home/ellis/comp/org/graph/os/linux.org" 9308) "cde3ff32-1ad9-43ab-9ac7-05efd3f88490" #s(org-graph-node "cde3ff32-1ad9-43ab-9ac7-05efd3f88490" "SPI" "/home/ellis/comp/org/graph/os/linux.org" 9047) "ac0ae4dd-21d4-4b45-9751-a102a48f30e6" #s(org-graph-node "ac0ae4dd-21d4-4b45-9751-a102a48f30e6" "ACPI" "/home/ellis/comp/org/graph/os/linux.org" 8598) "1f938c20-8d8e-460c-8fb7-f4afaac432cc" #s(org-graph-node "1f938c20-8d8e-460c-8fb7-f4afaac432cc" "Filesystem" "/home/ellis/comp/org/graph/os/linux.org" 8272) "f28b16e2-97e5-4575-a3d6-941efeb8942d" #s(org-graph-node "f28b16e2-97e5-4575-a3d6-941efeb8942d" "Storage" "/home/ellis/comp/org/graph/os/linux.org" 8031) "c670fcee-f9b1-4acd-ab32-3b795748b544" #s(org-graph-node "c670fcee-f9b1-4acd-ab32-3b795748b544" "Core" "/home/ellis/comp/org/graph/os/linux.org" 7799) "1f728d2c-edf1-4502-9560-d0a6c45d5df8" #s(org-graph-node "1f728d2c-edf1-4502-9560-d0a6c45d5df8" "Systems" "/home/ellis/comp/org/graph/os/linux.org" 7240) "ea9bb3f9-3607-4be2-82f8-e9b3381a0524" #s(org-graph-node "ea9bb3f9-3607-4be2-82f8-e9b3381a0524" "Input Devices" "/home/ellis/comp/org/graph/os/linux.org" 6912) "d58cb494-ce43-49cc-859b-aa6a518ac314" #s(org-graph-node "d58cb494-ce43-49cc-859b-aa6a518ac314" "Userspace Block Device" "/home/ellis/comp/org/graph/os/linux.org" 6617) "639e5d85-e143-421d-86be-9bc291bc2f8b" #s(org-graph-node "639e5d85-e143-421d-86be-9bc291bc2f8b" "Frame Buffer Device" "/home/ellis/comp/org/graph/os/linux.org" 6305) "f8ce343e-c866-4fff-8e39-2da32a59d56e" #s(org-graph-node "f8ce343e-c866-4fff-8e39-2da32a59d56e" "utils" "/home/ellis/comp/org/graph/os/linux.org" 4949) "ad25b130-d832-4109-84ad-7cb9900ed227" #s(org-graph-node "ad25b130-d832-4109-84ad-7cb9900ed227" "Devices" "/home/ellis/comp/org/graph/os/linux.org" 4476) "caed860f-fcef-43a2-b080-94b01352cd43" #s(org-graph-node "caed860f-fcef-43a2-b080-94b01352cd43" "Kernel" "/home/ellis/comp/org/graph/os/linux.org" 4040) "25cc1e3f-60f0-401a-a8b6-ac8d5670233d" #s(org-graph-node "25cc1e3f-60f0-401a-a8b6-ac8d5670233d" "Netlink" "/home/ellis/comp/org/graph/os/linux.org" 3630) "5e859a3f-0c31-4796-85c6-7008b346f186" #s(org-graph-node "5e859a3f-0c31-4796-85c6-7008b346f186" "Keyutils" "/home/ellis/comp/org/graph/os/linux.org" 3320) "378227a0-d265-4272-8013-73df72b5e49a" #s(org-graph-node "378227a0-d265-4272-8013-73df72b5e49a" "RTLA" "/home/ellis/comp/org/graph/os/linux.org" 2984) "cb4a79ea-64fa-4c3a-b4bf-f3f731bc04ad" #s(org-graph-node "cb4a79ea-64fa-4c3a-b4bf-f3f731bc04ad" "eBPF" "/home/ellis/comp/org/graph/os/linux.org" 2764) "97d3d07c-e576-412b-a97a-2879efa998c5" #s(org-graph-node "97d3d07c-e576-412b-a97a-2879efa998c5" "BPF" "/home/ellis/comp/org/graph/os/linux.org" 2460) "d77d5ce5-2857-4c17-bcaf-c3eb32f93bcc" #s(org-graph-node "d77d5ce5-2857-4c17-bcaf-c3eb32f93bcc" "rv" "/home/ellis/comp/org/graph/os/linux.org" 2193) "7e8d965e-6b39-43bb-a69a-4747977b436f" #s(org-graph-node "7e8d965e-6b39-43bb-a69a-4747977b436f" "iostat" "/home/ellis/comp/org/graph/os/linux.org" 2020) "da34bba6-7ca1-4836-91d8-e16ae2a8fcb7" #s(org-graph-node "da34bba6-7ca1-4836-91d8-e16ae2a8fcb7" "perf" "/home/ellis/comp/org/graph/os/linux.org" 1663) "ef769379-7632-4c45-b933-1e3bfd858ea1" #s(org-graph-node "ef769379-7632-4c45-b933-1e3bfd858ea1" "strace" "/home/ellis/comp/org/graph/os/linux.org" 1433) "292a62ff-6d56-42e2-88fa-bd13ddbc2fb1" #s(org-graph-node "292a62ff-6d56-42e2-88fa-bd13ddbc2fb1" "Tracing" "/home/ellis/comp/org/graph/os/linux.org" 1108) "46fdde04-496d-45b4-a674-367edafb8054" #s(org-graph-node "46fdde04-496d-45b4-a674-367edafb8054" "Ublk" "/home/ellis/comp/org/graph/os/linux.org" 929) "3e6b5e34-4cf0-4289-afda-bea7c2a343dd" #s(org-graph-node "3e6b5e34-4cf0-4289-afda-bea7c2a343dd" "Libraries" "/home/ellis/comp/org/graph/os/linux.org" 815) "ab57dccf-c9f3-4347-b9d0-5731904f3d67" #s(org-graph-node "ab57dccf-c9f3-4347-b9d0-5731904f3d67" "Linux" "/home/ellis/comp/org/graph/os/linux.org" 92) "78ff8ddb-cc33-4538-9157-1a11cc04248d" #s(org-graph-node "78ff8ddb-cc33-4538-9157-1a11cc04248d" "WebGPU" "/home/ellis/comp/org/graph/proto/web.org" 69) "f1d8108d-f9fa-4ab6-b1e9-ca0b932552c5" #s(org-graph-node "f1d8108d-f9fa-4ab6-b1e9-ca0b932552c5" "POP3" "/home/ellis/comp/org/graph/proto/mail.org" 901) "3bdc7566-668c-4332-8684-7cfdbcd71c8f" #s(org-graph-node "3bdc7566-668c-4332-8684-7cfdbcd71c8f" "IMAP" "/home/ellis/comp/org/graph/proto/mail.org" 635) "1cf5b67e-e476-48a9-9560-7e0d49de9768" #s(org-graph-node "1cf5b67e-e476-48a9-9560-7e0d49de9768" "JMAP" "/home/ellis/comp/org/graph/proto/mail.org" 302) "3a05dc16-8faf-4004-a2ca-26f2eeee5dd5" #s(org-graph-node "3a05dc16-8faf-4004-a2ca-26f2eeee5dd5" "Sieve" "/home/ellis/comp/org/graph/proto/mail.org" 56) "eabb4e88-738d-42d2-986d-e5ffdd4c6fb5" #s(org-graph-node "eabb4e88-738d-42d2-986d-e5ffdd4c6fb5" "XCB" "/home/ellis/comp/org/graph/proto/desktop.org" 2338) "bde20e62-dcd9-48fe-ba2b-bf795ed81a51" #s(org-graph-node "bde20e62-dcd9-48fe-ba2b-bf795ed81a51" "RandR" "/home/ellis/comp/org/graph/proto/desktop.org" 2035) "eb66d5e4-e0bf-4f4a-a935-0fb30365dca2" #s(org-graph-node "eb66d5e4-e0bf-4f4a-a935-0fb30365dca2" "Composite" "/home/ellis/comp/org/graph/proto/desktop.org" 1806) "f0a4403d-d5f1-4f7c-8d56-ab235ecb16dd" #s(org-graph-node "f0a4403d-d5f1-4f7c-8d56-ab235ecb16dd" "Extensions" "/home/ellis/comp/org/graph/proto/desktop.org" 1553) "1b00b336-268e-4203-850d-12cb8b79c86c" #s(org-graph-node "1b00b336-268e-4203-850d-12cb8b79c86c" "X" "/home/ellis/comp/org/graph/proto/desktop.org" 1083) "6f534214-a89d-4cec-9c29-0f345fdc2199" #s(org-graph-node "6f534214-a89d-4cec-9c29-0f345fdc2199" "Secret Service" "/home/ellis/comp/org/graph/proto/desktop.org" 604) "d34f4c76-4cee-4513-b172-c2a6034c2048" #s(org-graph-node "d34f4c76-4cee-4513-b172-c2a6034c2048" "xdg-user-dirs" "/home/ellis/comp/org/graph/proto/desktop.org" 376) "e0ad1796-3d1e-4026-b019-e212756a205f" #s(org-graph-node "e0ad1796-3d1e-4026-b019-e212756a205f" "XDG" "/home/ellis/comp/org/graph/proto/desktop.org" 59) "b754ec14-7d34-4504-9494-93532bd61cd5" #s(org-graph-node "b754ec14-7d34-4504-9494-93532bd61cd5" "Rumba20" "/home/ellis/comp/org/graph/proto/crypto.org" 1591) "123c1580-8dca-4773-8879-9769ebd84ad0" #s(org-graph-node "123c1580-8dca-4773-8879-9769ebd84ad0" "Salsa20" "/home/ellis/comp/org/graph/proto/crypto.org" 1401) "2f1c6753-397b-4ab9-9457-4e0136c6bf8b" #s(org-graph-node "2f1c6753-397b-4ab9-9457-4e0136c6bf8b" "Ed25519" "/home/ellis/comp/org/graph/proto/crypto.org" 1215) "dce824ff-24e2-4bf1-b0a9-b42f778dad39" #s(org-graph-node "dce824ff-24e2-4bf1-b0a9-b42f778dad39" "EdDSA" "/home/ellis/comp/org/graph/proto/crypto.org" 963) "46e1e3dd-7c47-45bb-8b78-18a87b7258dd" #s(org-graph-node "46e1e3dd-7c47-45bb-8b78-18a87b7258dd" "Curve25519" "/home/ellis/comp/org/graph/proto/crypto.org" 724) "6723d8fb-5e3d-4b38-96d5-3b054dbb7b58" #s(org-graph-node "6723d8fb-5e3d-4b38-96d5-3b054dbb7b58" "ECDH" "/home/ellis/comp/org/graph/proto/crypto.org" 430) "5add36a0-129f-466c-b493-b34aee8b99a6" #s(org-graph-node "5add36a0-129f-466c-b493-b34aee8b99a6" "ECC" "/home/ellis/comp/org/graph/proto/crypto.org" 65) "b01ba656-940f-43bd-ae92-e0ac3b142028" #s(org-graph-node "b01ba656-940f-43bd-ae92-e0ac3b142028" "WireGuard" "/home/ellis/comp/org/graph/proto/net/vpn.org" 385) "17dd76c0-b08b-4df5-b9fb-c1dd6b84d812" #s(org-graph-node "17dd76c0-b08b-4df5-b9fb-c1dd6b84d812" "VPN" "/home/ellis/comp/org/graph/proto/net/vpn.org" 71) "e7e88a43-5294-48fd-84dc-9f90a4ae193b" #s(org-graph-node "e7e88a43-5294-48fd-84dc-9f90a4ae193b" "RTP" "/home/ellis/comp/org/graph/proto/net/udp.org" 4958) "19c29790-17f3-40f2-aa2b-03bc7e0bad68" #s(org-graph-node "19c29790-17f3-40f2-aa2b-03bc7e0bad68" "Syslog" "/home/ellis/comp/org/graph/proto/net/udp.org" 4635) "989ae244-f798-425c-bcf1-32014eafbd22" #s(org-graph-node "989ae244-f798-425c-bcf1-32014eafbd22" "WebRTC" "/home/ellis/comp/org/graph/proto/net/udp.org" 4128) "33ad3584-2728-4f90-8fae-397f026731f1" #s(org-graph-node "33ad3584-2728-4f90-8fae-397f026731f1" "OSC" "/home/ellis/comp/org/graph/proto/net/udp.org" 3844) "f10769f7-cf9b-4bb5-ada9-d499af348f9d" #s(org-graph-node "f10769f7-cf9b-4bb5-ada9-d499af348f9d" "Quinn" "/home/ellis/comp/org/graph/proto/net/udp.org" 3543) "530fbb93-e34e-45e0-b62c-4e9a5022649a" #s(org-graph-node "530fbb93-e34e-45e0-b62c-4e9a5022649a" "drafts" "/home/ellis/comp/org/graph/proto/net/udp.org" 2871) "031f06eb-b4a6-4386-a17f-33712bf67181" #s(org-graph-node "031f06eb-b4a6-4386-a17f-33712bf67181" "QUIC" "/home/ellis/comp/org/graph/proto/net/udp.org" 1645) "7f5a6675-3e8a-414b-8788-c9957708bd79" #s(org-graph-node "7f5a6675-3e8a-414b-8788-c9957708bd79" "Protocols" "/home/ellis/comp/org/graph/proto/net/udp.org" 1565) "d3e91177-ad7f-4d8d-82d9-5ac09f786774" #s(org-graph-node "d3e91177-ad7f-4d8d-82d9-5ac09f786774" "Multicasting in Rust" "/home/ellis/comp/org/graph/proto/net/udp.org" 913) "f7e112ca-25b4-41f1-a756-2492eda9dd90" #s(org-graph-node "f7e112ca-25b4-41f1-a756-2492eda9dd90" "Multicast" "/home/ellis/comp/org/graph/proto/net/udp.org" 524) "a2f33ea0-51c3-45d8-8c19-03a95321384c" #s(org-graph-node "a2f33ea0-51c3-45d8-8c19-03a95321384c" "UDP" "/home/ellis/comp/org/graph/proto/net/udp.org" 48) "10e75a1a-1de9-4ddf-a5b6-4b077d4cd4b1" #s(org-graph-node "10e75a1a-1de9-4ddf-a5b6-4b077d4cd4b1" "SSL" "/home/ellis/comp/org/graph/proto/net/tls.org" 1156) "692b4efb-ce4b-4d7b-a100-685815164ce4" #s(org-graph-node "692b4efb-ce4b-4d7b-a100-685815164ce4" "DTLS" "/home/ellis/comp/org/graph/proto/net/tls.org" 888) "a81ff891-504c-404b-9b7e-046d097b3c95" #s(org-graph-node "a81ff891-504c-404b-9b7e-046d097b3c95" "TLS" "/home/ellis/comp/org/graph/proto/net/tls.org" 69) "81e78198-a5ed-4fdd-b487-1bb3874ffa71" #s(org-graph-node "81e78198-a5ed-4fdd-b487-1bb3874ffa71" "HTTPS" "/home/ellis/comp/org/graph/proto/net/tcp.org" 1965) "5c9b8b56-6c37-4171-8da1-ac6e4e3cd0a1" #s(org-graph-node "5c9b8b56-6c37-4171-8da1-ac6e4e3cd0a1" "HTTP" "/home/ellis/comp/org/graph/proto/net/tcp.org" 848) "52a7cb9d-5b78-4681-9146-2d8f5707c1a3" #s(org-graph-node "52a7cb9d-5b78-4681-9146-2d8f5707c1a3" "WebSocket" "/home/ellis/comp/org/graph/proto/net/tcp.org" 390) "a2c33f5d-8e07-4122-98df-72d321ae313b" #s(org-graph-node "a2c33f5d-8e07-4122-98df-72d321ae313b" "TCP" "/home/ellis/comp/org/graph/proto/net/tcp.org" 48) "df23c94a-ed42-4be5-b7d9-351a4205b4d7" #s(org-graph-node "df23c94a-ed42-4be5-b7d9-351a4205b4d7" "Kademlia" "/home/ellis/comp/org/graph/proto/net/p2p.org" 276) "29fcf858-c4ca-4315-a987-dce397465f17" #s(org-graph-node "29fcf858-c4ca-4315-a987-dce397465f17" "libp2p" "/home/ellis/comp/org/graph/proto/net/p2p.org" 67) "1f6e6b6d-a64d-41d8-a60b-898c5024a87e" #s(org-graph-node "1f6e6b6d-a64d-41d8-a60b-898c5024a87e" "IP Address" "/home/ellis/comp/org/graph/proto/net/ip.org" 442) "2c915d42-3f42-4a94-a2d7-af73c9938c7b" #s(org-graph-node "2c915d42-3f42-4a94-a2d7-af73c9938c7b" "IP" "/home/ellis/comp/org/graph/proto/net/ip.org" 63) "8e929d14-5562-4e6b-8ecc-41245faecec1" #s(org-graph-node "8e929d14-5562-4e6b-8ecc-41245faecec1" "mDNS" "/home/ellis/comp/org/graph/proto/net/dns.org" 243) "78f84075-f759-43dd-be98-b23eccf26333" #s(org-graph-node "78f84075-f759-43dd-be98-b23eccf26333" "DNS" "/home/ellis/comp/org/graph/proto/net/dns.org" 64) "c73d296a-47fe-4769-9802-86cac8a86090" #s(org-graph-node "c73d296a-47fe-4769-9802-86cac8a86090" "XML" "/home/ellis/comp/org/graph/proto/dat/xml.org" 71) "f8cdf36a-9bf4-46bf-b33d-8338274ff9da" #s(org-graph-node "f8cdf36a-9bf4-46bf-b33d-8338274ff9da" "Syslog" "/home/ellis/comp/org/graph/proto/dat/syslog.org" 77) "13226398-1931-44a5-8914-7eb2be0c345e" #s(org-graph-node "13226398-1931-44a5-8914-7eb2be0c345e" "SigMF" "/home/ellis/comp/org/graph/proto/dat/sigmf.org" 59) "9dcb0f55-6bdc-4b81-a7f5-4c24901596ca" #s(org-graph-node "9dcb0f55-6bdc-4b81-a7f5-4c24901596ca" "SPARQL" "/home/ellis/comp/org/graph/proto/dat/rdf.org" 662) "69d2206b-c9bf-46ff-a354-d6428863559d" #s(org-graph-node "69d2206b-c9bf-46ff-a354-d6428863559d" "RDF" "/home/ellis/comp/org/graph/proto/dat/rdf.org" 75) "ae54516c-c8a8-49f8-aac6-a95c18f5de8e" #s(org-graph-node "ae54516c-c8a8-49f8-aac6-a95c18f5de8e" "format summary" "/home/ellis/comp/org/graph/proto/dat/parquet.org" 1061) "e71f388c-9ed1-4862-8890-7f74271e8df0" #s(org-graph-node "e71f388c-9ed1-4862-8890-7f74271e8df0" "glossary" "/home/ellis/comp/org/graph/proto/dat/parquet.org" 377) "07fcb963-c208-4735-9abb-3c55c2340a5f" #s(org-graph-node "07fcb963-c208-4735-9abb-3c55c2340a5f" "Parquet" "/home/ellis/comp/org/graph/proto/dat/parquet.org" 52) "a6410358-ee73-41e6-a8f7-271edda02309" #s(org-graph-node "a6410358-ee73-41e6-a8f7-271edda02309" "HAR" "/home/ellis/comp/org/graph/proto/dat/json.org" 157) "f4898b34-2f02-4403-bd1a-3fc984007beb" #s(org-graph-node "f4898b34-2f02-4403-bd1a-3fc984007beb" "JSON" "/home/ellis/comp/org/graph/proto/dat/json.org" 49) "e2e6f554-2d28-4474-a1ed-3df4557e091d" #s(org-graph-node "e2e6f554-2d28-4474-a1ed-3df4557e091d" "INI" "/home/ellis/comp/org/graph/proto/dat/conf.org" 523) "1507e902-f244-42d4-9bc5-c684162a3aa0" #s(org-graph-node "1507e902-f244-42d4-9bc5-c684162a3aa0" "YAML" "/home/ellis/comp/org/graph/proto/dat/conf.org" 325) "82949e4f-537a-4a3a-b901-06080eec82b1" #s(org-graph-node "82949e4f-537a-4a3a-b901-06080eec82b1" "TOML" "/home/ellis/comp/org/graph/proto/dat/conf.org" 83) "858d93bc-65b8-46e5-a8aa-342a14fbd20d" #s(org-graph-node "858d93bc-65b8-46e5-a8aa-342a14fbd20d" "OVF" "/home/ellis/comp/org/graph/sys/virt.org" 1895) "86b9ed90-dbc4-4ee8-ac8d-842ef0b39941" #s(org-graph-node "86b9ed90-dbc4-4ee8-ac8d-842ef0b39941" "VM" "/home/ellis/comp/org/graph/sys/virt.org" 1699) "c7733e64-1370-4586-94e1-dfad81080160" #s(org-graph-node "c7733e64-1370-4586-94e1-dfad81080160" "Docker" "/home/ellis/comp/org/graph/sys/virt.org" 1588) "ec17da11-a3d1-4343-9d0b-09c63c569db5" #s(org-graph-node "ec17da11-a3d1-4343-9d0b-09c63c569db5" "OCI" "/home/ellis/comp/org/graph/sys/virt.org" 1275) "94419fb9-0726-47a0-b416-dca75e9a508c" #s(org-graph-node "94419fb9-0726-47a0-b416-dca75e9a508c" "Distroless" "/home/ellis/comp/org/graph/sys/virt.org" 813) "83b24cd0-3c89-400e-b63b-64872569222b" #s(org-graph-node "83b24cd0-3c89-400e-b63b-64872569222b" "Container" "/home/ellis/comp/org/graph/sys/virt.org" 73) "f8829131-67eb-4d4d-a101-28f08eced9ae" #s(org-graph-node "f8829131-67eb-4d4d-a101-28f08eced9ae" "Evolve" "/home/ellis/comp/org/graph/sys/vcs.org" 11351) "a62a2e17-8167-4812-b5ec-f4f9ef698f56" #s(org-graph-node "a62a2e17-8167-4812-b5ec-f4f9ef698f56" "Extensions" "/home/ellis/comp/org/graph/sys/vcs.org" 11115) "b750a5f3-f12c-439a-a730-1dcea8951d43" #s(org-graph-node "b750a5f3-f12c-439a-a730-1dcea8951d43" "Web Hosting" "/home/ellis/comp/org/graph/sys/vcs.org" 5995) "11bb8531-a936-4b77-a29e-1e2d35436836" #s(org-graph-node "11bb8531-a936-4b77-a29e-1e2d35436836" "Bundles" "/home/ellis/comp/org/graph/sys/vcs.org" 5233) "879abc56-8968-43cc-8bee-76118b398eaf" #s(org-graph-node "879abc56-8968-43cc-8bee-76118b398eaf" "Git Interop" "/home/ellis/comp/org/graph/sys/vcs.org" 3241) "be8e9117-4d72-40ea-a062-8029a3342248" #s(org-graph-node "be8e9117-4d72-40ea-a062-8029a3342248" "Mercurial" "/home/ellis/comp/org/graph/sys/vcs.org" 1012) "442c8fbb-b09d-4f85-a068-2a0f6a2de430" #s(org-graph-node "442c8fbb-b09d-4f85-a068-2a0f6a2de430" "Git" "/home/ellis/comp/org/graph/sys/vcs.org" 664) "36ccc6c1-1b2d-4a48-8c1c-714a43873407" #s(org-graph-node "36ccc6c1-1b2d-4a48-8c1c-714a43873407" "VCS" "/home/ellis/comp/org/graph/sys/vcs.org" 65) "55bce339-207c-47fc-b829-7567d95e46fa" #s(org-graph-node "55bce339-207c-47fc-b829-7567d95e46fa" "Templates" "/home/ellis/comp/org/graph/sys/srv.org" 2365) "5fb03f4f-e7ba-47fe-a502-185348417aa4" #s(org-graph-node "5fb03f4f-e7ba-47fe-a502-185348417aa4" "Units" "/home/ellis/comp/org/graph/sys/srv.org" 947) "27dd8c6f-e018-4c91-9113-325be8ee483a" #s(org-graph-node "27dd8c6f-e018-4c91-9113-325be8ee483a" "systemd" "/home/ellis/comp/org/graph/sys/srv.org" 353) "da8ae0b8-adcf-4639-9cfa-01b7b9fb3c44" #s(org-graph-node "da8ae0b8-adcf-4639-9cfa-01b7b9fb3c44" "Init Systems" "/home/ellis/comp/org/graph/sys/srv.org" 50) "2f1f89cb-1b42-4155-b79e-b531659323af" #s(org-graph-node "2f1f89cb-1b42-4155-b79e-b531659323af" "Buddy Allocator" "/home/ellis/comp/org/graph/sys/mem.org" 663) "2ae80374-cb47-494a-be51-e7f267f80a99" #s(org-graph-node "2ae80374-cb47-494a-be51-e7f267f80a99" "Memory Pool" "/home/ellis/comp/org/graph/sys/mem.org" 249) "e485721a-4cd8-4bae-8d62-45e11729da70" #s(org-graph-node "e485721a-4cd8-4bae-8d62-45e11729da70" "Memory" "/home/ellis/comp/org/graph/sys/mem.org" 70) "3c828873-641e-4846-abd6-781605f33f60" #s(org-graph-node "3c828873-641e-4846-abd6-781605f33f60" "ZFS" "/home/ellis/comp/org/graph/sys/fs.org" 7815) "be04dc90-86a6-46c5-9dcf-25519ebed34d" #s(org-graph-node "be04dc90-86a6-46c5-9dcf-25519ebed34d" "[2023-08-09 Wed] ioctls" "/home/ellis/comp/org/graph/sys/fs.org" 7554) "1d1a6211-c91f-48ae-8113-0ddada286cee" #s(org-graph-node "1d1a6211-c91f-48ae-8113-0ddada286cee" "send-stream format" "/home/ellis/comp/org/graph/sys/fs.org" 6402) "7535f844-330b-4f9c-b2a1-4578d64acbf7" #s(org-graph-node "7535f844-330b-4f9c-b2a1-4578d64acbf7" "on-disk format" "/home/ellis/comp/org/graph/sys/fs.org" 4456) "9ddb1caf-014a-4d0f-972e-82028e8be286" #s(org-graph-node "9ddb1caf-014a-4d0f-972e-82028e8be286" "MacOS support" "/home/ellis/comp/org/graph/sys/fs.org" 4230) "2b662144-97b2-4736-a8fc-bc8f861b9829" #s(org-graph-node "2b662144-97b2-4736-a8fc-bc8f861b9829" "[2023-08-08 Tue] btrfs performance speculation" "/home/ellis/comp/org/graph/sys/fs.org" 1514) "3e7bb82e-7dae-476a-8ed0-18c361c9bd1b" #s(org-graph-node "3e7bb82e-7dae-476a-8ed0-18c361c9bd1b" "BTRFS" "/home/ellis/comp/org/graph/sys/fs.org" 301) "8ff74861-a0bc-49e1-83eb-3a32f8f8fb78" #s(org-graph-node "8ff74861-a0bc-49e1-83eb-3a32f8f8fb78" "FS" "/home/ellis/comp/org/graph/sys/fs.org" 81) "9933d695-6379-4903-a4d5-0aa887bfa7d9" #s(org-graph-node "9933d695-6379-4903-a4d5-0aa887bfa7d9" "tigerbeetle" "/home/ellis/comp/org/graph/sys/db.org" 2648) "dd24ce27-3907-48e4-8b5d-8be8b2035ae1" #s(org-graph-node "dd24ce27-3907-48e4-8b5d-8be8b2035ae1" "Arrow" "/home/ellis/comp/org/graph/sys/db.org" 2436) "3ce0b887-31ea-4a78-96a2-6671907a687a" #s(org-graph-node "3ce0b887-31ea-4a78-96a2-6671907a687a" "DataFusion" "/home/ellis/comp/org/graph/sys/db.org" 2129) "b569a646-de4c-4287-8599-52b237a753b4" #s(org-graph-node "b569a646-de4c-4287-8599-52b237a753b4" "RocksDB" "/home/ellis/comp/org/graph/sys/db.org" 1950) "3bd5f5f8-956b-49a4-b280-eec4a8c0f85e" #s(org-graph-node "3bd5f5f8-956b-49a4-b280-eec4a8c0f85e" "DBMS" "/home/ellis/comp/org/graph/sys/db.org" 1150) "03aa2c81-5318-45d7-853f-bbcfdb8e7d48" #s(org-graph-node "03aa2c81-5318-45d7-853f-bbcfdb8e7d48" "Shard" "/home/ellis/comp/org/graph/sys/db.org" 892) "f239f934-a477-4050-8d19-3c2597a64b34" #s(org-graph-node "f239f934-a477-4050-8d19-3c2597a64b34" "Partition" "/home/ellis/comp/org/graph/sys/db.org" 649) "a833eb98-c31e-4492-ac07-e718a9bce086" #s(org-graph-node "a833eb98-c31e-4492-ac07-e718a9bce086" "DB" "/home/ellis/comp/org/graph/sys/db.org" 51) "9464f3df-5d9a-4ec8-a629-4c080399d664" #s(org-graph-node "9464f3df-5d9a-4ec8-a629-4c080399d664" "CMS" "/home/ellis/comp/org/graph/theory/system.org" 5987) "9574ca65-e7f3-40cf-94c1-f05bc6628fd0" #s(org-graph-node "9574ca65-e7f3-40cf-94c1-f05bc6628fd0" "Content" "/home/ellis/comp/org/graph/theory/system.org" 5741) "1a791c60-412b-415d-89bc-06ff9d166931" #s(org-graph-node "1a791c60-412b-415d-89bc-06ff9d166931" "Web" "/home/ellis/comp/org/graph/theory/system.org" 5562) "10f68fe0-0451-4c43-b61a-69adf139f060" #s(org-graph-node "10f68fe0-0451-4c43-b61a-69adf139f060" "Testing" "/home/ellis/comp/org/graph/theory/system.org" 5139) "7eb1d3c6-606d-425d-8c2b-3847e42f0134" #s(org-graph-node "7eb1d3c6-606d-425d-8c2b-3847e42f0134" "Frameworks" "/home/ellis/comp/org/graph/theory/system.org" 4918) "dc13038b-91ba-4a5c-bc62-ad189033023d" #s(org-graph-node "dc13038b-91ba-4a5c-bc62-ad189033023d" "Expert System" "/home/ellis/comp/org/graph/theory/system.org" 4609) "8889ae64-a982-4f6c-a875-5cbae6dbb323" #s(org-graph-node "8889ae64-a982-4f6c-a875-5cbae6dbb323" "Knowledge System" "/home/ellis/comp/org/graph/theory/system.org" 4264) "dbbe76e3-42ae-4cd3-b39a-a8c8d3a7c7c3" #s(org-graph-node "dbbe76e3-42ae-4cd3-b39a-a8c8d3a7c7c3" "Certification" "/home/ellis/comp/org/graph/theory/system.org" 4020) "188c1d7d-879b-4a72-a963-af278db56f99" #s(org-graph-node "188c1d7d-879b-4a72-a963-af278db56f99" "Tests" "/home/ellis/comp/org/graph/theory/system.org" 3802) "0881a735-21ea-4509-aa97-b2d239cbbaf0" #s(org-graph-node "0881a735-21ea-4509-aa97-b2d239cbbaf0" "POSIX" "/home/ellis/comp/org/graph/theory/system.org" 3345) "d20534de-706b-43cb-b1e9-f054d534a848" #s(org-graph-node "d20534de-706b-43cb-b1e9-f054d534a848" "SUS" "/home/ellis/comp/org/graph/theory/system.org" 2930) "7f92b7d3-8c42-4d25-849d-58928bc12ebb" #s(org-graph-node "7f92b7d3-8c42-4d25-849d-58928bc12ebb" "UNIX" "/home/ellis/comp/org/graph/theory/system.org" 2730) "33392043-87af-4826-ae73-1d722ec650ee" #s(org-graph-node "33392043-87af-4826-ae73-1d722ec650ee" "Operating Systems" "/home/ellis/comp/org/graph/theory/system.org" 2551) "adcd747b-2fdf-4686-abbb-26940bbb1a20" #s(org-graph-node "adcd747b-2fdf-4686-abbb-26940bbb1a20" "Utena" "/home/ellis/comp/org/graph/theory/system.org" 2291) "e976f7ec-0ee0-46cc-8b5a-29afbd713fed" #s(org-graph-node "e976f7ec-0ee0-46cc-8b5a-29afbd713fed" "Maximalist" "/home/ellis/comp/org/graph/theory/system.org" 2176) "bd25630a-b72a-46c5-abf1-733f5c892bf6" #s(org-graph-node "bd25630a-b72a-46c5-abf1-733f5c892bf6" "Lisp Machine" "/home/ellis/comp/org/graph/theory/system.org" 1447) "fcd2d202-b02b-44a7-a218-59b5bfeca1c7" #s(org-graph-node "fcd2d202-b02b-44a7-a218-59b5bfeca1c7" "HLLCA" "/home/ellis/comp/org/graph/theory/system.org" 1337) "0e6b0635-a1ed-41ff-9129-a2e72461dc0b" #s(org-graph-node "0e6b0635-a1ed-41ff-9129-a2e72461dc0b" "Von Neumann Machine" "/home/ellis/comp/org/graph/theory/system.org" 1076) "ae2eadd2-e305-44b4-bff3-952aa09d2943" #s(org-graph-node "ae2eadd2-e305-44b4-bff3-952aa09d2943" "Computer Architecture" "/home/ellis/comp/org/graph/theory/system.org" 951) "69e45a0c-8352-4810-952a-c81b0f99d21b" #s(org-graph-node "69e45a0c-8352-4810-952a-c81b0f99d21b" "Hysteresis" "/home/ellis/comp/org/graph/theory/system.org" 572) "f08e3bbb-44cf-4036-8fb9-406d9f030f4f" #s(org-graph-node "f08e3bbb-44cf-4036-8fb9-406d9f030f4f" "OSI" "/home/ellis/comp/org/graph/theory/system.org" 55) "483ef3a4-c1d8-4fc4-988a-03e9f5e789ac" #s(org-graph-node "483ef3a4-c1d8-4fc4-988a-03e9f5e789ac" "The Power of 10" "/home/ellis/comp/org/graph/theory/style.org" 555) "10cdeed6-9dca-42af-9b33-3d2a6addbddc" #s(org-graph-node "10cdeed6-9dca-42af-9b33-3d2a6addbddc" "Tiger Style" "/home/ellis/comp/org/graph/theory/style.org" 288) "25fede3d-355d-4644-a0eb-df2d828157ab" #s(org-graph-node "25fede3d-355d-4644-a0eb-df2d828157ab" "Coding Style" "/home/ellis/comp/org/graph/theory/style.org" 171) "6b994f9a-2584-4f8f-8739-d9d70847e8aa" #s(org-graph-node "6b994f9a-2584-4f8f-8739-d9d70847e8aa" "Style" "/home/ellis/comp/org/graph/theory/style.org" 62) "54831ddf-56d9-4307-a7e3-3790b13c6c9e" #s(org-graph-node "54831ddf-56d9-4307-a7e3-3790b13c6c9e" "Kernelization" "/home/ellis/comp/org/graph/theory/process.org" 3001) "e8371372-77fa-4e44-aca1-d2d5eacc7fb9" #s(org-graph-node "e8371372-77fa-4e44-aca1-d2d5eacc7fb9" "DOPE" "/home/ellis/comp/org/graph/theory/process.org" 2497) "bd66a9d3-9720-4db6-9d29-cb5ee241b8a5" #s(org-graph-node "bd66a9d3-9720-4db6-9d29-cb5ee241b8a5" "Pattern Analysis" "/home/ellis/comp/org/graph/theory/process.org" 2250) "d4140692-ebb8-478e-b933-062726efa859" #s(org-graph-node "d4140692-ebb8-478e-b933-062726efa859" "Performance Analysis" "/home/ellis/comp/org/graph/theory/process.org" 2002) "d181e466-49d6-4421-9282-d227618c5188" #s(org-graph-node "d181e466-49d6-4421-9282-d227618c5188" "Information" "/home/ellis/comp/org/graph/theory/process.org" 1378) "4700f502-0bab-4887-b925-224003cc3663" #s(org-graph-node "4700f502-0bab-4887-b925-224003cc3663" "Information Management" "/home/ellis/comp/org/graph/theory/process.org" 1008) "b597822b-b956-4959-a5e1-6bf42c191320" #s(org-graph-node "b597822b-b956-4959-a5e1-6bf42c191320" "Content Management" "/home/ellis/comp/org/graph/theory/process.org" 792) "9d05f7b3-fc57-41ea-828e-f482be342bb7" #s(org-graph-node "9d05f7b3-fc57-41ea-828e-f482be342bb7" "Operations Management" "/home/ellis/comp/org/graph/theory/process.org" 536) "dfd57e14-4ef7-4bb9-9b86-0352cbf14c90" #s(org-graph-node "dfd57e14-4ef7-4bb9-9b86-0352cbf14c90" "Task Management" "/home/ellis/comp/org/graph/theory/process.org" 298) "4b96aef0-69cd-4493-be15-9ba0d62012c2" #s(org-graph-node "4b96aef0-69cd-4493-be15-9ba0d62012c2" "Project Management" "/home/ellis/comp/org/graph/theory/process.org" 51) "f48341d3-f9ab-44ac-9387-4d32e92aa011" #s(org-graph-node "f48341d3-f9ab-44ac-9387-4d32e92aa011" "Contract Programming" "/home/ellis/comp/org/graph/theory/plt.org" 2826) "4bbc6288-b410-4171-aaca-db1c9bdec7e3" #s(org-graph-node "4bbc6288-b410-4171-aaca-db1c9bdec7e3" "Promise/Future" "/home/ellis/comp/org/graph/theory/plt.org" 2577) "e980058d-60f2-482e-96ef-5e7323ccebf7" #s(org-graph-node "e980058d-60f2-482e-96ef-5e7323ccebf7" "Async/Await" "/home/ellis/comp/org/graph/theory/plt.org" 2295) "5fd4a7b5-2d71-4373-8c56-f65461e4d633" #s(org-graph-node "5fd4a7b5-2d71-4373-8c56-f65461e4d633" "Asynchrony" "/home/ellis/comp/org/graph/theory/plt.org" 1633) "2cf671a3-f33d-420e-9a9d-2eedd6cdcd43" #s(org-graph-node "2cf671a3-f33d-420e-9a9d-2eedd6cdcd43" "Deductive Programming" "/home/ellis/comp/org/graph/theory/plt.org" 1307) "7dfd88e4-5511-4ff8-99ce-0fbf464bde58" #s(org-graph-node "7dfd88e4-5511-4ff8-99ce-0fbf464bde58" "Functional Programming" "/home/ellis/comp/org/graph/theory/plt.org" 832) "44659589-80a3-459b-ad29-d2e5b208b451" #s(org-graph-node "44659589-80a3-459b-ad29-d2e5b208b451" "OOP" "/home/ellis/comp/org/graph/theory/plt.org" 482) "3a1058df-158c-49eb-bcc5-21b842ec966e" #s(org-graph-node "3a1058df-158c-49eb-bcc5-21b842ec966e" "PLT" "/home/ellis/comp/org/graph/theory/plt.org" 69) "5f17b96f-915b-460d-a60a-4b9bc9d7b007" #s(org-graph-node "5f17b96f-915b-460d-a60a-4b9bc9d7b007" "Derivative" "/home/ellis/comp/org/graph/theory/money.org" 378) "5bea8dac-44fa-48e6-b7b6-4f971fad73e8" #s(org-graph-node "5bea8dac-44fa-48e6-b7b6-4f971fad73e8" "Finance" "/home/ellis/comp/org/graph/theory/money.org" 163) "1488ce14-b340-49ed-ba7c-cbecf8212b47" #s(org-graph-node "1488ce14-b340-49ed-ba7c-cbecf8212b47" "Money" "/home/ellis/comp/org/graph/theory/money.org" 54) "2ab524ef-e77e-4482-b563-123b556f431f" #s(org-graph-node "2ab524ef-e77e-4482-b563-123b556f431f" "Scripting" "/home/ellis/comp/org/graph/theory/hacking.org" 904) "598fc07b-3eab-46d7-abd2-510ee8135584" #s(org-graph-node "598fc07b-3eab-46d7-abd2-510ee8135584" "Rubberducking" "/home/ellis/comp/org/graph/theory/hacking.org" 656) "fd1c94ca-18f8-420a-9ee5-2ed7b6ddfb9b" #s(org-graph-node "fd1c94ca-18f8-420a-9ee5-2ed7b6ddfb9b" "Cracking" "/home/ellis/comp/org/graph/theory/hacking.org" 421) "904371de-eaaf-4df9-a9df-4a2a443f2066" #s(org-graph-node "904371de-eaaf-4df9-a9df-4a2a443f2066" "Wardriving" "/home/ellis/comp/org/graph/theory/hacking.org" 58) "d3a6a367-5817-4bec-911a-87610ec7de92" #s(org-graph-node "d3a6a367-5817-4bec-911a-87610ec7de92" "Conway's Game of Life" "/home/ellis/comp/org/graph/theory/econ.org" 970) "f346f656-c938-46fa-b1e8-334c1eba3b21" #s(org-graph-node "f346f656-c938-46fa-b1e8-334c1eba3b21" "Games" "/home/ellis/comp/org/graph/theory/econ.org" 749) "b579b27e-6057-4012-9503-0eb710490ec1" #s(org-graph-node "b579b27e-6057-4012-9503-0eb710490ec1" "Macroeconomics" "/home/ellis/comp/org/graph/theory/econ.org" 513) "6e111491-9ca8-4535-9642-d0bec178eed2" #s(org-graph-node "6e111491-9ca8-4535-9642-d0bec178eed2" "Microeconomics" "/home/ellis/comp/org/graph/theory/econ.org" 277) "f21933e9-5fd6-4cc8-a964-2b75c753c8d4" #s(org-graph-node "f21933e9-5fd6-4cc8-a964-2b75c753c8d4" "Economics" "/home/ellis/comp/org/graph/theory/econ.org" 57) "23185c5d-7470-4bf5-a700-99752c334333" #s(org-graph-node "23185c5d-7470-4bf5-a700-99752c334333" "Tree Shaking" "/home/ellis/comp/org/graph/theory/compiler.org" 805) "9e3802e1-6e58-4a5a-9a30-509e25122d31" #s(org-graph-node "9e3802e1-6e58-4a5a-9a30-509e25122d31" "IR" "/home/ellis/comp/org/graph/theory/compiler.org" 526) "3638f1d2-ebc8-4bbb-9242-4e6070a3b121" #s(org-graph-node "3638f1d2-ebc8-4bbb-9242-4e6070a3b121" "Optimizing Compiler" "/home/ellis/comp/org/graph/theory/compiler.org" 275) "439686d0-5275-4e0d-8eab-b6fd87d7a547" #s(org-graph-node "439686d0-5275-4e0d-8eab-b6fd87d7a547" "Compiler" "/home/ellis/comp/org/graph/theory/compiler.org" 58) "789aa097-5f4a-4131-b9bd-0f153f8df88c" #s(org-graph-node "789aa097-5f4a-4131-b9bd-0f153f8df88c" "Kernel Machines" "/home/ellis/comp/org/graph/theory/ai.org" 795) "976c3073-07c5-4901-bb64-2b2e2f799170" #s(org-graph-node "976c3073-07c5-4901-bb64-2b2e2f799170" "GenAI" "/home/ellis/comp/org/graph/theory/ai.org" 514) "cd514a66-4979-4983-8c9b-29b54eafa8dd" #s(org-graph-node "cd514a66-4979-4983-8c9b-29b54eafa8dd" "AI" "/home/ellis/comp/org/graph/theory/ai.org" 65) "dc19bb9a-3f8e-41ba-b352-2787b5f68897" #s(org-graph-node "dc19bb9a-3f8e-41ba-b352-2787b5f68897" "reddit.com" "/home/ellis/comp/org/graph/web/sites.org" 9640) "15830f8c-99cf-4034-9df2-86aea530a8ce" #s(org-graph-node "15830f8c-99cf-4034-9df2-86aea530a8ce" "arxiv.org" "/home/ellis/comp/org/graph/web/sites.org" 9436) "58e80e6d-e99d-46db-8da8-ff397a304fb9" #s(org-graph-node "58e80e6d-e99d-46db-8da8-ff397a304fb9" "dnsdumpster.com" "/home/ellis/comp/org/graph/web/sites.org" 9125) "86df9eba-9175-43c8-b083-d263cf0c800c" #s(org-graph-node "86df9eba-9175-43c8-b083-d263cf0c800c" "yahoo.com" "/home/ellis/comp/org/graph/web/sites.org" 8876) "0459c77d-86b9-4fbd-85fc-485c8923d457" #s(org-graph-node "0459c77d-86b9-4fbd-85fc-485c8923d457" "stackoverflow.com" "/home/ellis/comp/org/graph/web/sites.org" 8648) "0c83fea5-c697-4409-961d-440a9ba2b548" #s(org-graph-node "0c83fea5-c697-4409-961d-440a9ba2b548" "savannah.gnu.org" "/home/ellis/comp/org/graph/web/sites.org" 8435) "04f8bf69-e4bc-4a5a-83ba-f211df606857" #s(org-graph-node "04f8bf69-e4bc-4a5a-83ba-f211df606857" "gnu.org" "/home/ellis/comp/org/graph/web/sites.org" 8190) "043f7b08-abcf-4727-a772-9b64f7f43d58" #s(org-graph-node "043f7b08-abcf-4727-a772-9b64f7f43d58" "wikipedia.org" "/home/ellis/comp/org/graph/web/sites.org" 7994) "9cad378b-bb5d-4005-9059-d8ac639ca85c" #s(org-graph-node "9cad378b-bb5d-4005-9059-d8ac639ca85c" "amazon.com" "/home/ellis/comp/org/graph/web/sites.org" 7742) "99c4fb1a-715e-45aa-bac8-cd588fac8f0f" #s(org-graph-node "99c4fb1a-715e-45aa-bac8-cd588fac8f0f" "google.com" "/home/ellis/comp/org/graph/web/sites.org" 7491) "41dfdeb8-e1c8-44ba-8235-e48da9c0ca32" #s(org-graph-node "41dfdeb8-e1c8-44ba-8235-e48da9c0ca32" "youtube.com" "/home/ellis/comp/org/graph/web/sites.org" 7233) "537c7ed7-c5a3-43a0-8636-6f9185711622" #s(org-graph-node "537c7ed7-c5a3-43a0-8636-6f9185711622" "linkedin.com" "/home/ellis/comp/org/graph/web/sites.org" 6973) "8e4d1a1b-9497-4291-b9fe-6d814b6935b4" #s(org-graph-node "8e4d1a1b-9497-4291-b9fe-6d814b6935b4" "discord.com" "/home/ellis/comp/org/graph/web/sites.org" 6683) "005a209d-c429-410e-9ca0-f347b0ff646a" #s(org-graph-node "005a209d-c429-410e-9ca0-f347b0ff646a" "electricitymaps.com" "/home/ellis/comp/org/graph/web/sites.org" 6286) "eb20a9f9-4c80-40d5-b4c1-153c8976db19" #s(org-graph-node "eb20a9f9-4c80-40d5-b4c1-153c8976db19" "freesound.org" "/home/ellis/comp/org/graph/web/sites.org" 5964) "29407696-fd6e-428b-85a1-5616baf554d9" #s(org-graph-node "29407696-fd6e-428b-85a1-5616baf554d9" "musicbrainz.org" "/home/ellis/comp/org/graph/web/sites.org" 5520) "ae7cfa47-aecd-4ce4-a0a7-19f71efe12ff" #s(org-graph-node "ae7cfa47-aecd-4ce4-a0a7-19f71efe12ff" "metabrainz.org" "/home/ellis/comp/org/graph/web/sites.org" 5311) "d3271956-f2d8-41cf-ab3c-02b7f86e6cf4" #s(org-graph-node "d3271956-f2d8-41cf-ab3c-02b7f86e6cf4" "pitchfork.com" "/home/ellis/comp/org/graph/web/sites.org" 4952) "246f5fca-c142-4c9e-b5f8-e59bb89feb9e" #s(org-graph-node "246f5fca-c142-4c9e-b5f8-e59bb89feb9e" "weather.gov" "/home/ellis/comp/org/graph/web/sites.org" 4636) "67cd18d7-3c2d-461c-a61e-32cbff5be10a" #s(org-graph-node "67cd18d7-3c2d-461c-a61e-32cbff5be10a" "noaa.gov" "/home/ellis/comp/org/graph/web/sites.org" 4295) "b03233cd-2dd2-4dc8-83ea-75f74981c4fa" #s(org-graph-node "b03233cd-2dd2-4dc8-83ea-75f74981c4fa" "usa.gov" "/home/ellis/comp/org/graph/web/sites.org" 4043) "52f85631-e0b4-402d-8300-3b0f96cff72e" #s(org-graph-node "52f85631-e0b4-402d-8300-3b0f96cff72e" "iana.org" "/home/ellis/comp/org/graph/web/sites.org" 3712) "8c348a7e-3d6c-4ee8-9bd5-1e57a9754a24" #s(org-graph-node "8c348a7e-3d6c-4ee8-9bd5-1e57a9754a24" "ietf.org" "/home/ellis/comp/org/graph/web/sites.org" 3353) "9edf9c19-de57-46f2-85c6-8de9df888057" #s(org-graph-node "9edf9c19-de57-46f2-85c6-8de9df888057" "ebay.com" "/home/ellis/comp/org/graph/web/sites.org" 3060) "314f6109-db30-45de-bda1-3b1084224b40" #s(org-graph-node "314f6109-db30-45de-bda1-3b1084224b40" "craigslist.org" "/home/ellis/comp/org/graph/web/sites.org" 2509) "6448b881-6310-4f17-9d3d-874ec5fa3972" #s(org-graph-node "6448b881-6310-4f17-9d3d-874ec5fa3972" "nytimes.com" "/home/ellis/comp/org/graph/web/sites.org" 1673) "218869f2-d154-490b-ab0a-88fb23ca0368" #s(org-graph-node "218869f2-d154-490b-ab0a-88fb23ca0368" "pcpartpicker.com" "/home/ellis/comp/org/graph/web/sites.org" 525) "0ef132b4-d324-4bf9-86d0-94ada3ef04b3" #s(org-graph-node "0ef132b4-d324-4bf9-86d0-94ada3ef04b3" "ozbargain.com.au" "/home/ellis/comp/org/graph/web/sites.org" 50) "59e3ba53-3f40-47db-929c-acc998f9092d" #s(org-graph-node "59e3ba53-3f40-47db-929c-acc998f9092d" "public datasets" "/home/ellis/comp/org/graph/web/data.org" 58) "89ecd1b0-6a7e-43c2-8612-5dc8e94aab28" #s(org-graph-node "89ecd1b0-6a7e-43c2-8612-5dc8e94aab28" "Overview" "/home/ellis/comp/org/graph/readme.org" 25479))) #s(hash-table test equal data ("173d1ace-338d-4656-9cb6-39e974ce83d4" #s(org-graph-edge relation "173d1ace-338d-4656-9cb6-39e974ce83d4" nil (0 12 1 8 3 2025 nil -1 nil) 528 "https://en.wikipedia.org/wiki/Non-volatile_random-access_memory") "83089757-22c3-456d-9b2c-c119adefd8c2" #s(org-graph-edge relation "83089757-22c3-456d-9b2c-c119adefd8c2" nil (0 12 1 8 3 2025 nil -1 nil) 220 "https://en.wikipedia.org/wiki/Random-access_memory") "533c2390-63c9-4cac-b0ff-2e7e93b4c60f" #s(org-graph-edge relation "533c2390-63c9-4cac-b0ff-2e7e93b4c60f" nil (0 9 1 8 3 2025 nil -1 nil) 271 "https://uefi.org/specs/UEFI/2.11/22_EFI_Byte_Code_Virtual_Machine.html") "163facc3-2d47-47ee-b0c8-0512a3efcd13" #s(org-graph-edge relation "163facc3-2d47-47ee-b0c8-0512a3efcd13" nil (0 22 17 3 3 2025 nil -1 nil) 6036 "https://httpd.apache.org/") "e0d6567f-73e8-4a02-8360-4938d7994f3a" #s(org-graph-edge relation "e0d6567f-73e8-4a02-8360-4938d7994f3a" nil (0 21 17 3 3 2025 nil -1 nil) 5867 "man:nginx") "2415d486-e74b-4318-90cc-8d68c4bffb2e" #s(org-graph-edge relation "2415d486-e74b-4318-90cc-8d68c4bffb2e" nil (0 23 21 21 2 2025 nil -1 nil) 4123 "https://caddyserver.com/docs/") "f7a60f4c-2aa4-4330-95bb-7077ab534258" #s(org-graph-edge relation "f7a60f4c-2aa4-4330-95bb-7077ab534258" nil (0 23 17 3 3 2025 nil -1 nil) 3800 "https://developer.mozilla.org/en-US/docs/Learn_web_development/Howto/Web_mechanics/What_is_a_web_server") "74e5db7a-bb98-4a54-a7e6-fab58f580acf" #s(org-graph-edge relation "74e5db7a-bb98-4a54-a7e6-fab58f580acf" nil (0 17 17 3 3 2025 nil -1 nil) 3479 "https://github.com/transmission/transmission") "cae8de41-beb8-42b3-bec8-20f0a29dd59c" #s(org-graph-edge relation "cae8de41-beb8-42b3-bec8-20f0a29dd59c" nil (0 37 12 3 3 2025 nil -1 nil) 2984 "https://gnuzilla.gnu.org/") "0290f01c-13ab-4268-b9de-030ffda5a4b8" #s(org-graph-edge relation "0290f01c-13ab-4268-b9de-030ffda5a4b8" nil (0 30 19 17 1 2025 nil -1 nil) 2409 "https://github.com/atlas-engineer/nyxt") "de59cc69-d16c-4ff9-87f4-1d95f34525e9" #s(org-graph-edge relation "de59cc69-d16c-4ff9-87f4-1d95f34525e9" nil (0 31 12 3 3 2025 nil -1 nil) 1646 "https://www.mozilla.org/en-US/firefox/") "51cb270e-5c5a-4605-9867-aa40a68ddceb" #s(org-graph-edge relation "51cb270e-5c5a-4605-9867-aa40a68ddceb" nil (0 39 21 2 3 2025 nil -1 nil) 957 "https://chromedevtools.github.io/devtools-protocol/") "49a90b67-054a-4591-b73f-8821dba7c060" #s(org-graph-edge relation "49a90b67-054a-4591-b73f-8821dba7c060" nil (0 31 16 3 3 2025 nil -1 nil) 667 "man:chromium") "df400751-0b3e-41a5-8512-a778a58cc1bd" #s(org-graph-edge relation "df400751-0b3e-41a5-8512-a778a58cc1bd" nil (0 2 18 4 3 2025 nil -1 nil) 524 "https://www.vim.org/") "17d03ada-139b-4127-8865-df1b5b50eaba" #s(org-graph-edge relation "17d03ada-139b-4127-8865-df1b5b50eaba" nil (0 14 15 4 3 2025 nil -1 nil) 265 "https://ex-vi.sourceforge.net/") "3c83b6e7-fa30-4e48-88b2-5d96e749e60a" #s(org-graph-edge relation "3c83b6e7-fa30-4e48-88b2-5d96e749e60a" nil (0 25 16 3 3 2025 nil -1 nil) 1357 "man:tmux") "8c91f0e4-8cc5-4622-8e34-0f0eab0818ae" #s(org-graph-edge relation "8c91f0e4-8cc5-4622-8e34-0f0eab0818ae" nil (0 21 16 3 3 2025 nil -1 nil) 957 "https://github.com/wezterm/wezterm") "b6cc9844-e152-4227-820d-d7d00c7381aa" #s(org-graph-edge relation "b6cc9844-e152-4227-820d-d7d00c7381aa" nil (0 20 16 3 3 2025 nil -1 nil) 655 "https://github.com/alacritty/alacritty") "a1bc7f75-4b67-452d-9c30-54420f66e1c5" #s(org-graph-edge relation "a1bc7f75-4b67-452d-9c30-54420f66e1c5" nil (0 18 16 3 3 2025 nil -1 nil) 238 "https://en.wikipedia.org/wiki/Terminal_emulator") "3efd02f4-b340-4566-a7fc-95b3c895c762" #s(org-graph-edge relation "3efd02f4-b340-4566-a7fc-95b3c895c762" nil (0 30 16 3 3 2025 nil -1 nil) 516 "man:buildah") "89199dcd-fabd-4952-b5e9-1b3ffaf06e6b" #s(org-graph-edge relation "89199dcd-fabd-4952-b5e9-1b3ffaf06e6b" nil (0 30 16 3 3 2025 nil -1 nil) 298 "man:podman") "b52fdc61-2fcc-42e0-a1df-66ebd0ca0488" #s(org-graph-edge relation "b52fdc61-2fcc-42e0-a1df-66ebd0ca0488" nil (0 54 15 4 3 2025 nil -1 nil) 1635 "https://docs.alpinelinux.org/user-handbook/0.1a/Working/apk.html") "3c814d4d-8635-4c6f-a849-5c7d72db20fe" #s(org-graph-edge relation "3c814d4d-8635-4c6f-a849-5c7d72db20fe" nil (0 29 16 3 3 2025 nil -1 nil) 1425 "https://wiki.archlinux.org/title/Pacman") "836933b5-3035-4e8c-a2b9-63a773a359db" #s(org-graph-edge relation "836933b5-3035-4e8c-a2b9-63a773a359db" nil (0 18 19 22 2 2025 nil -1 nil) 1022 "https://coreos.github.io/rpm-ostree/") "0a40d25f-0fe5-4b71-9d22-07d4bb355ff4" #s(org-graph-edge relation "0a40d25f-0fe5-4b71-9d22-07d4bb355ff4" nil (0 6 19 22 2 2025 nil -1 nil) 753 "https://en.wikipedia.org/wiki/List_of_Linux_distributions#RPM-based") "26b32ae2-b49c-42cb-a0d7-4823221b79f2" #s(org-graph-edge relation "26b32ae2-b49c-42cb-a0d7-4823221b79f2" nil (0 1 19 22 2 2025 nil -1 nil) 281 "https://docs.fedoraproject.org/en-US/fedora/latest/release-notes/sysadmin/#dnf-5") "bad99155-7f62-404c-ae48-18d753bcdfb4" #s(org-graph-edge relation "bad99155-7f62-404c-ae48-18d753bcdfb4" nil (0 28 16 3 3 2025 nil -1 nil) 251 "info:notmuch") "c272a3f2-b0b0-4784-aeaf-4c677cbbd708" #s(org-graph-edge relation "c272a3f2-b0b0-4784-aeaf-4c677cbbd708" nil (0 32 16 3 3 2025 nil -1 nil) 553 "man:gnuradio-companion") "c92b3830-3836-41b0-a502-f04b44cd3292" #s(org-graph-edge relation "c92b3830-3836-41b0-a502-f04b44cd3292" nil (0 23 22 14 2 2025 nil -1 nil) 239 "https://wiki.gnuradio.org/index.php?title=What_Is_GNU_Radio") "defa663e-3522-475c-ad44-615b64edabf1" #s(org-graph-edge relation "defa663e-3522-475c-ad44-615b64edabf1" nil (0 44 13 3 3 2025 nil -1 nil) 6688 "https://beepb00p.xyz/cloudmacs.html") "c40383a3-c717-43c6-8188-e2a564a641a1" #s(org-graph-edge relation "c40383a3-c717-43c6-8188-e2a564a641a1" nil (0 58 19 3 3 2025 nil -1 nil) 6265 "info:ses") "8b1452eb-fc57-4026-8587-91ff8ebccba6" #s(org-graph-edge relation "8b1452eb-fc57-4026-8587-91ff8ebccba6" nil (0 57 19 3 3 2025 nil -1 nil) 6095 "info:eglot") "86dbf792-301b-405e-806b-3df7e9531279" #s(org-graph-edge relation "86dbf792-301b-405e-806b-3df7e9531279" nil (0 51 15 4 3 2025 nil -1 nil) 5873 "https://www.gonsie.com/blorg/eshell.html") "f499c680-9a01-4a11-bc69-81861fd864d0" #s(org-graph-edge relation "f499c680-9a01-4a11-bc69-81861fd864d0" nil (0 46 17 3 3 2025 nil -1 nil) 5167 "info:slime") "db8e43f4-78ec-4fb1-93e7-11ac7ee87799" #s(org-graph-edge relation "db8e43f4-78ec-4fb1-93e7-11ac7ee87799" nil (0 19 20 3 3 2025 nil -1 nil) 4846 "https://savannah.nongnu.org/projects/bbdb/") "b72f96f7-4040-4548-8da2-e619d26c4887" #s(org-graph-edge relation "b72f96f7-4040-4548-8da2-e619d26c4887" nil (0 48 16 3 3 2025 nil -1 nil) 4525 "info:eudc") "a42c2aaa-8dda-40ca-b455-7511f0cb084a" #s(org-graph-edge relation "a42c2aaa-8dda-40ca-b455-7511f0cb084a" nil (0 46 16 3 3 2025 nil -1 nil) 4356 "info:erc") "2cebd8b2-615e-44b2-afd4-2e302f836dd3" #s(org-graph-edge relation "2cebd8b2-615e-44b2-afd4-2e302f836dd3" nil (0 44 13 3 3 2025 nil -1 nil) 4112 "info:speedbar") "21adcc1c-67ee-4f50-9049-12794824b2c7" #s(org-graph-edge relation "21adcc1c-67ee-4f50-9049-12794824b2c7" nil (0 36 13 1 3 2025 nil -1 nil) 3711 "https://www.emacswiki.org/emacs/eww") "3bb08e71-1ce9-46ed-844a-31305162645e" #s(org-graph-edge link "3bb08e71-1ce9-46ed-844a-31305162645e" nil (0 47 19 3 3 2025 nil -1 nil) 3178 "8889ae64-a982-4f6c-a875-5cbae6dbb323") "bdf4ac96-f9a6-47ea-a27a-89a8d2b20ba7" #s(org-graph-edge relation "bdf4ac96-f9a6-47ea-a27a-89a8d2b20ba7" nil (0 10 20 4 3 2025 nil -1 nil) 2888 "https://orgmode.org/worg/dev/org-element-api.html") "09edda89-63e0-4496-84eb-764fb9b0b7c3" #s(org-graph-edge link "09edda89-63e0-4496-84eb-764fb9b0b7c3" nil (0 51 14 6 3 2025 nil -1 nil) 2671 "d9226de2-4b80-4193-a06e-e3185ffb5217") "f46c1c20-c958-4068-bf0c-bf6f4f77546f" #s(org-graph-edge relation "f46c1c20-c958-4068-bf0c-bf6f4f77546f" nil (0 1 18 4 3 2025 nil -1 nil) 2257 "https://yiming.dev/blog/2018/03/02/my-org-refile-workflow/") "9cb4a1c7-4798-4ac9-8958-9e3d86673d95" #s(org-graph-edge relation "9cb4a1c7-4798-4ac9-8958-9e3d86673d95" nil (0 46 14 6 3 2025 nil -1 nil) 1874 "info:org#HTML Export") "d26e1dac-f9cc-47a0-9a61-f32463247ec9" #s(org-graph-edge relation "d26e1dac-f9cc-47a0-9a61-f32463247ec9" nil (0 45 14 6 3 2025 nil -1 nil) 1694 "info:org#Exporting") "9cfcee92-d862-400f-a80f-7bb538b27b45" #s(org-graph-edge relation "9cfcee92-d862-400f-a80f-7bb538b27b45" nil (0 13 20 16 2 2025 nil -1 nil) 1343 "https://orgmode.org/worg/library-of-babel.html") "cea03181-b97b-494d-b362-28056416469d" #s(org-graph-edge relation "cea03181-b97b-494d-b362-28056416469d" nil (0 2 10 7 3 2025 nil -1 nil) 958 "info:org") "5fc53135-1b6c-4260-b264-66be7a2b8ff0" #s(org-graph-edge relation "5fc53135-1b6c-4260-b264-66be7a2b8ff0" nil (0 27 16 3 3 2025 nil -1 nil) 490 "man:emacs") "cb4981e6-af47-400e-a761-4a73b3dd791e" #s(org-graph-edge relation "cb4981e6-af47-400e-a761-4a73b3dd791e" nil (0 51 17 3 3 2025 nil -1 nil) 1863 "https://swaywm.org/") "b8588986-ec59-41d1-91a4-901e3c7217d3" #s(org-graph-edge relation "b8588986-ec59-41d1-91a4-901e3c7217d3" nil (0 28 17 3 3 2025 nil -1 nil) 1481 "https://stumpwm.github.io/") "9b98c316-303e-4919-8a7c-09965fff6c17" #s(org-graph-edge relation "9b98c316-303e-4919-8a7c-09965fff6c17" nil (0 29 17 3 3 2025 nil -1 nil) 1166 "https://i3wm.org/") "4f39c714-4a7b-4cd3-89a2-0c0c7b0953b9" #s(org-graph-edge relation "4f39c714-4a7b-4cd3-89a2-0c0c7b0953b9" nil (0 33 17 3 3 2025 nil -1 nil) 942 "https://www.hack.org/mc/hacks/mcwm/") "d6d7338a-e161-45b0-bcf9-e50fef6d9b86" #s(org-graph-edge relation "d6d7338a-e161-45b0-bcf9-e50fef6d9b86" nil (0 32 17 3 3 2025 nil -1 nil) 746 "https://github.com/venam/2bwm") "4b669611-0283-4a6c-acfd-942868d5bee3" #s(org-graph-edge parent "4b669611-0283-4a6c-acfd-942868d5bee3" nil (0 31 17 3 3 2025 nil -1 nil) 549 "1b00b336-268e-4203-850d-12cb8b79c86c") "cabd6581-92db-4e5e-b9cd-f5a1c09a8145" #s(org-graph-edge relation "cabd6581-92db-4e5e-b9cd-f5a1c09a8145" nil (0 26 17 3 3 2025 nil -1 nil) 251 "https://wiki.archlinux.org/title/Window_manager") "c33a5587-daab-4e61-a0df-fc6856b00f70" #s(org-graph-edge parent "c33a5587-daab-4e61-a0df-fc6856b00f70" nil (0 7 14 6 3 2025 nil -1 nil) 11340 "868e5534-1ab9-49aa-88c8-f9529b3dfc98") "6beca36e-6264-4741-9180-66e81bf58c49" #s(org-graph-edge parent "6beca36e-6264-4741-9180-66e81bf58c49" nil (0 57 17 3 3 2025 nil -1 nil) 10763 "23185c5d-7470-4bf5-a700-99752c334333") "624cbc9a-9797-4889-a8b5-8440b04d9c01" #s(org-graph-edge relation "624cbc9a-9797-4889-a8b5-8440b04d9c01" nil (0 14 19 28 2 2025 nil -1 nil) 10466 "https://cmucl.org/downloads/doc/cmu-user-2010-05-03/compiler-hint.html") "86674fe2-4105-4246-9682-f6e3fb84f7de" #s(org-graph-edge link "86674fe2-4105-4246-9682-f6e3fb84f7de" nil (0 54 20 8 3 2025 nil -1 nil) 9697 "c57c2462-7e95-4e6b-9f5b-d7207aeda442") "93e1ed13-dc82-4a9b-8b9e-f60f06b01a4f" #s(org-graph-edge relation "93e1ed13-dc82-4a9b-8b9e-f60f06b01a4f" nil (0 10 19 28 2 2025 nil -1 nil) 9364 "https://www.sbcl.org/sbcl-internals/Linkage_002dtable.html#Linkage_002dtable") "f9bcac71-99b9-4375-9c23-8b650d21d86c" #s(org-graph-edge relation "f9bcac71-99b9-4375-9c23-8b650d21d86c" nil (0 12 19 28 2 2025 nil -1 nil) 8792 "http://lisphacker.com/codex/001-sbcl-vops.txt") "a4d05da6-b90d-4a9f-8237-67a10c8c4588" #s(org-graph-edge relation "a4d05da6-b90d-4a9f-8237-67a10c8c4588" nil (0 22 14 9 2 2025 nil -1 nil) 6598 "https://www.sbcl.org/sbcl-internals/Binding-and-unbinding.html") "9aac997a-5d9c-43dd-b2ca-8b8b02d9f2dd" #s(org-graph-edge relation "9aac997a-5d9c-43dd-b2ca-8b8b02d9f2dd" nil (0 3 19 17 1 2025 nil -1 nil) 5198 "https://github.com/guicho271828/sbcl-wiki/wiki/") "bb27d9c3-513a-4ac6-8780-580c09257040" #s(org-graph-edge relation "bb27d9c3-513a-4ac6-8780-580c09257040" nil (0 13 14 6 3 2025 nil -1 nil) 4925 "info:sbcl#Atomic Operations") "7bf0993f-6212-4635-a071-bf2e7d9ba7f9" #s(org-graph-edge relation "7bf0993f-6212-4635-a071-bf2e7d9ba7f9" nil (0 8 14 6 3 2025 nil -1 nil) 4591 "info:sbcl#Threading") "6ff7096f-a666-4103-8f32-1dc62c04cb35" #s(org-graph-edge relation "6ff7096f-a666-4103-8f32-1dc62c04cb35" nil (0 19 14 6 3 2025 nil -1 nil) 4326 "info:sbcl#Timers") "868e5534-1ab9-49aa-88c8-f9529b3dfc98" #s(org-graph-edge child "868e5534-1ab9-49aa-88c8-f9529b3dfc98" nil (0 7 14 6 3 2025 nil -1 nil) 647 "c33a5587-daab-4e61-a0df-fc6856b00f70") "a7f9b428-9323-492f-aaa5-94669bfbc55b" #s(org-graph-edge relation "a7f9b428-9323-492f-aaa5-94669bfbc55b" nil (0 34 16 3 3 2025 nil -1 nil) 280 "man:sbcl") "339518e9-2112-4c79-9471-ccc8f57b8105" #s(org-graph-edge child "339518e9-2112-4c79-9471-ccc8f57b8105" nil (0 33 14 3 3 2025 nil -1 nil) 1637 "650a3fc0-6eec-4b9c-8db5-b89715ff50cc") "f283db5a-bbe5-477f-834f-46b9ac992baf" #s(org-graph-edge relation "f283db5a-bbe5-477f-834f-46b9ac992baf" nil (0 19 21 14 2 2025 nil -1 nil) 1142 "https://clang.llvm.org/docs/LanguageExtensions.html") "3f0ed70c-6774-499c-9c15-a28a5e653161" #s(org-graph-edge relation "3f0ed70c-6774-499c-9c15-a28a5e653161" nil (0 37 16 3 3 2025 nil -1 nil) 967 "man:clang") "05eeed21-6ed4-447d-8c8f-daee2dd112bf" #s(org-graph-edge relation "05eeed21-6ed4-447d-8c8f-daee2dd112bf" nil (0 18 21 14 2 2025 nil -1 nil) 758 "https://llvm.org/docs/Extensions.html") "496b952f-4c98-4303-92b4-1c766565092c" #s(org-graph-edge child "496b952f-4c98-4303-92b4-1c766565092c" nil (0 32 14 3 3 2025 nil -1 nil) 409 "25754e07-2c57-4385-a52a-33b0179e2b85") "9a00b903-ea15-48d3-8440-025998ca857b" #s(org-graph-edge relation "9a00b903-ea15-48d3-8440-025998ca857b" nil (0 34 18 6 2 2025 nil -1 nil) 181 "https://www.haskell.org/ghc/") "ad2e3567-2c78-40f5-9a5d-2ffb66e5fae2" #s(org-graph-edge relation "ad2e3567-2c78-40f5-9a5d-2ffb66e5fae2" nil (0 16 21 14 2 2025 nil -1 nil) 1397 "https://gcc.gnu.org/onlinedocs/gcc/Pragmas.html") "f6074a9e-0c44-4dd7-a472-dfae30ce34db" #s(org-graph-edge relation "f6074a9e-0c44-4dd7-a472-dfae30ce34db" nil (0 6 21 14 2 2025 nil -1 nil) 1065 "https://gcc.gnu.org/onlinedocs/gcc-4.5.3/gcc/Function-Attributes.html") "2a3947b0-a120-4c48-a8d5-f9c01deb49b9" #s(org-graph-edge relation "2a3947b0-a120-4c48-a8d5-f9c01deb49b9" nil (0 14 21 14 2 2025 nil -1 nil) 828 "https://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html") "b3639401-b960-42d3-8325-7b5e056e3478" #s(org-graph-edge relation "b3639401-b960-42d3-8325-7b5e056e3478" nil (0 38 16 3 3 2025 nil -1 nil) 370 "info:gccinstall") "03934099-5cca-488c-aa5b-ed5dd4bfb428" #s(org-graph-edge relation "03934099-5cca-488c-aa5b-ed5dd4bfb428" nil (0 57 16 3 3 2025 nil -1 nil) 222 "man:ecl") "978eae63-4d8e-4dbf-bfba-b135d82ab027" #s(org-graph-edge relation "978eae63-4d8e-4dbf-bfba-b135d82ab027" nil (0 3 23 17 1 2025 nil -1 nil) 428 "https://semiconductor.samsung.com/consumer-storage/") "f67cc642-30fe-4dd9-a78d-6c5296dc861a" #s(org-graph-edge relation "f67cc642-30fe-4dd9-a78d-6c5296dc861a" nil (0 18 16 17 1 2025 nil -1 nil) 180 "https://en.wikipedia.org/wiki/Samsung_Electronics") "eaf2ecf5-7748-40e5-bd1b-c8fc2053d050" #s(org-graph-edge child "eaf2ecf5-7748-40e5-bd1b-c8fc2053d050" nil (0 47 14 3 3 2025 nil -1 nil) 235 "a531e912-55ab-4889-806f-475c0316713e") "4555306b-b68c-43a9-8a54-e4066ca7437d" #s(org-graph-edge relation "4555306b-b68c-43a9-8a54-e4066ca7437d" nil (0 43 11 3 3 2025 nil -1 nil) 234 "https://www.intel.com/") "632212eb-accb-4660-a46a-c8688c5d237a" #s(org-graph-edge relation "632212eb-accb-4660-a46a-c8688c5d237a" nil (0 8 16 17 1 2025 nil -1 nil) 375 "https://www.digikey.com/en/products/detail/benjamin-vernoux/HYDRABUS-V1/15652912") "f213dab2-1cda-47ee-88f6-6f7e7754f74e" #s(org-graph-edge relation "f213dab2-1cda-47ee-88f6-6f7e7754f74e" nil (0 14 16 17 1 2025 nil -1 nil) 1092 "https://github.com/commaai/opendbc/tree/master/opendbc/dbc/generator/honda") "0a1a68f5-acee-4762-8136-477f8fe3e5ad" #s(org-graph-edge relation "0a1a68f5-acee-4762-8136-477f8fe3e5ad" nil (0 12 16 17 1 2025 nil -1 nil) 832 "https://www.autohack.org/") "99c456f5-d1cc-4de3-8c76-6b02990b8e30" #s(org-graph-edge relation "99c456f5-d1cc-4de3-8c76-6b02990b8e30" nil (0 16 16 17 1 2025 nil -1 nil) 573 "https://github.com/librick/ic1101/tree/main") "0cbdde1c-8f48-40eb-b090-975cff3ffeae" #s(org-graph-edge backlink "0cbdde1c-8f48-40eb-b090-975cff3ffeae" nil (0 48 22 17 1 2025 nil -1 nil) 368 "e6a7db9a-b591-48f9-aa9c-296968821599") "74f75829-fdc6-456e-b306-ab42b18260f3" #s(org-graph-edge relation "74f75829-fdc6-456e-b306-ab42b18260f3" nil (0 31 18 17 1 2025 nil -1 nil) 399 "https://greatscottgadgets.com/hackrf/") "f8b83779-83c1-47fc-88e7-c76018e4b8df" #s(org-graph-edge relation "f8b83779-83c1-47fc-88e7-c76018e4b8df" nil (0 27 18 17 1 2025 nil -1 nil) 192 "https://greatscottgadgets.com/") "05a6ae25-b2ed-4edb-9104-e6894819b96e" #s(org-graph-edge relation "05a6ae25-b2ed-4edb-9104-e6894819b96e" nil (0 0 23 17 1 2025 nil -1 nil) 232 "https://en.wikipedia.org/wiki/Graphics_processing_unit") "cf84218a-5bbc-4b73-919b-994cbd0e2845" #s(org-graph-edge relation "cf84218a-5bbc-4b73-919b-994cbd0e2845" nil (0 30 12 3 3 2025 nil -1 nil) 2314 "https://www.intel.com/content/www/us/en/products/details/processors/xeon.html") "b64ab310-f4f1-4be7-991b-d38ef4ad686f" #s(org-graph-edge relation "b64ab310-f4f1-4be7-991b-d38ef4ad686f" nil (0 30 12 3 3 2025 nil -1 nil) 1988 "https://www.intel.com/content/www/us/en/products/details/processors/core.html") "86c29a1a-359d-4049-816d-2ec56e6bdd5f" #s(org-graph-edge relation "86c29a1a-359d-4049-816d-2ec56e6bdd5f" nil (0 46 11 3 3 2025 nil -1 nil) 1022 "https://www.amd.com/en/products/processors/server/epyc.html") "1b41d186-948d-4ef1-b36d-f3e2fa14fa3d" #s(org-graph-edge relation "1b41d186-948d-4ef1-b36d-f3e2fa14fa3d" nil (0 10 12 3 3 2025 nil -1 nil) 577 "https://en.wikipedia.org/wiki/Zen_(microarchitecture)") "20e26c76-3247-4434-89dc-cbd5712fdf67" #s(org-graph-edge relation "20e26c76-3247-4434-89dc-cbd5712fdf67" nil (0 59 22 17 1 2025 nil -1 nil) 232 "https://en.wikipedia.org/wiki/Central_processing_unit") "e6a7db9a-b591-48f9-aa9c-296968821599" #s(org-graph-edge link "e6a7db9a-b591-48f9-aa9c-296968821599" nil (0 48 22 17 1 2025 nil -1 nil) 297 "0cbdde1c-8f48-40eb-b090-975cff3ffeae") "c5d7a7b3-09f1-4f0e-909a-63111c039cc3" #s(org-graph-edge backlink "c5d7a7b3-09f1-4f0e-909a-63111c039cc3" nil (0 14 20 3 3 2025 nil -1 nil) 375 "3021fa48-a98a-471f-896c-db237e97192b") "e2368655-59e9-404b-9ac6-cecb35216c11" #s(org-graph-edge relation "e2368655-59e9-404b-9ac6-cecb35216c11" nil (0 46 11 3 3 2025 nil -1 nil) 232 "https://www.amd.com") "24f9cd96-0ad1-412a-a24b-c3fa1bdf3c98" #s(org-graph-edge relation "24f9cd96-0ad1-412a-a24b-c3fa1bdf3c98" nil (0 0 21 2 3 2025 nil -1 nil) 160 "https://ziglang.org/") "d7b78cc9-8fa4-40ad-be46-ea205c59e3dd" #s(org-graph-edge link "d7b78cc9-8fa4-40ad-be46-ea205c59e3dd" nil (0 14 20 3 3 2025 nil -1 nil) 251 "c5d7a7b3-09f1-4f0e-909a-63111c039cc3") "ef41c99e-99fb-4a46-9578-73f8ed85b925" #s(org-graph-edge relation "ef41c99e-99fb-4a46-9578-73f8ed85b925" nil (0 5 21 3 3 2025 nil -1 nil) 172 "https://en.wikipedia.org/wiki/Smalltalk") "c1cb5688-a66f-43e7-8997-1aebe845a7f6" #s(org-graph-edge relation "c1cb5688-a66f-43e7-8997-1aebe845a7f6" nil (0 56 16 27 2 2025 nil -1 nil) 875 "https://en.wikipedia.org/wiki/Batch_file") "b4048114-ec39-4e53-816f-2f1319d404ee" #s(org-graph-edge relation "b4048114-ec39-4e53-816f-2f1319d404ee" nil (0 32 22 16 1 2025 nil -1 nil) 388 "https://github.com/nushell/nu_scripts") "5ffb08b8-d27d-4b1f-ae05-03da0207ccdf" #s(org-graph-edge relation "5ffb08b8-d27d-4b1f-ae05-03da0207ccdf" nil (0 3 22 7 3 2025 nil -1 nil) 6025 "https://github.com/rust-lang/cargo/issues/12207") "79ad4134-5182-4001-b404-faeb9abd2474" #s(org-graph-edge relation "79ad4134-5182-4001-b404-faeb9abd2474" nil (0 9 15 3 3 2025 nil -1 nil) 4258 "http://dalek.rs/") "7dd61019-39f3-4706-bfc4-ea48bf76da9c" #s(org-graph-edge link "7dd61019-39f3-4706-bfc4-ea48bf76da9c" nil (0 6 22 1 2 2025 nil -1 nil) 190 "d3e91177-ad7f-4d8d-82d9-5ac09f786774") "2e7cc5b2-718c-4968-84c0-f881e702a616" #s(org-graph-edge relation "2e7cc5b2-718c-4968-84c0-f881e702a616" nil (0 33 21 2 3 2025 nil -1 nil) 1615 "https://clojure.github.io/clojure-contrib/doc/datalog.html") "3ac23a84-ba2e-41a1-9ea4-268e01891930" #s(org-graph-edge backlink "3ac23a84-ba2e-41a1-9ea4-268e01891930" nil (0 11 18 4 3 2025 nil -1 nil) 1297 "a911344d-aed1-4603-a46f-e8edf53756f5") "da0aecca-6d5b-4719-9235-6a11fe978b11" #s(org-graph-edge parent "da0aecca-6d5b-4719-9235-6a11fe978b11" nil (0 4 17 3 3 2025 nil -1 nil) 630 "2cf671a3-f33d-420e-9a9d-2eedd6cdcd43") "90b5d156-6fd6-47de-9e76-32e69115f5ac" #s(org-graph-edge relation "90b5d156-6fd6-47de-9e76-32e69115f5ac" nil (0 6 21 2 3 2025 nil -1 nil) 244 "https://en.wikipedia.org/wiki/SQL") "45c83abe-cff5-4d00-9f01-f61c55525ca9" #s(org-graph-edge parent "45c83abe-cff5-4d00-9f01-f61c55525ca9" nil (0 44 19 3 3 2025 nil -1 nil) 23372 "6819fc08-3199-49bc-9c5d-b19419118525") "358a0e2b-b5e0-47ad-9c70-7bb72b1c548f" #s(org-graph-edge relation "358a0e2b-b5e0-47ad-9c70-7bb72b1c548f" nil (0 8 14 3 3 2025 nil -1 nil) 23064 "info:elisp#overlays") "c3aeb32d-5353-40e3-9817-c086f6beb58b" #s(org-graph-edge relation "c3aeb32d-5353-40e3-9817-c086f6beb58b" nil (0 8 14 3 3 2025 nil -1 nil) 22880 "info:elisp#svg images") "401e2cbd-2769-4c73-979e-ca98f4f6208c" #s(org-graph-edge relation "401e2cbd-2769-4c73-979e-ca98f4f6208c" nil (0 8 14 3 3 2025 nil -1 nil) 22695 "info:elisp#xwidgets") "114b1269-7400-45a7-ac41-17032015ffaa" #s(org-graph-edge relation "114b1269-7400-45a7-ac41-17032015ffaa" nil (0 5 14 3 3 2025 nil -1 nil) 22497 "info:elisp#abstract display") "dd393948-c526-4216-bf9b-5869a7121933" #s(org-graph-edge relation "dd393948-c526-4216-bf9b-5869a7121933" nil (0 5 14 3 3 2025 nil -1 nil) 22250 "info:elisp#Display") "da96454b-fc70-4a5c-bd7a-e66d148eb1d9" #s(org-graph-edge link "da96454b-fc70-4a5c-bd7a-e66d148eb1d9" nil (0 3 14 3 3 2025 nil -1 nil) 22047 "8bc4ff14-f001-4515-ac1f-fd59ef8ef506") "95427021-7e0c-4657-9b70-a7ed874fe35a" #s(org-graph-edge relation "95427021-7e0c-4657-9b70-a7ed874fe35a" nil (0 1 20 3 3 2025 nil -1 nil) 18885 "info:widget") "5510378f-d1a7-4642-8a24-ada2d7f7e54d" #s(org-graph-edge relation "5510378f-d1a7-4642-8a24-ada2d7f7e54d" nil (0 14 14 3 3 2025 nil -1 nil) 18704 "info:elisp#Threads") "6c69c42b-3d0a-48bf-a5ad-43b350477387" #s(org-graph-edge parent "6c69c42b-3d0a-48bf-a5ad-43b350477387" nil (0 1 14 3 3 2025 nil -1 nil) 18501 "5fc53135-1b6c-4260-b264-66be7a2b8ff0") "e21c02a5-5039-42c2-8416-aa5d45e70cb6" #s(org-graph-edge link "e21c02a5-5039-42c2-8416-aa5d45e70cb6" nil (0 2 20 3 3 2025 nil -1 nil) 17888 "bd25630a-b72a-46c5-abf1-733f5c892bf6") "66e2ab9a-51e3-4360-b7ad-0b38eb0dd6e5" #s(org-graph-edge relation "66e2ab9a-51e3-4360-b7ad-0b38eb0dd6e5" nil (0 3 20 3 3 2025 nil -1 nil) 17523 "https://www.gnu.org/software/guile/") "79ecc4f2-f223-4045-a31a-565192efaf49" #s(org-graph-edge child "79ecc4f2-f223-4045-a31a-565192efaf49" nil (0 3 14 6 3 2025 nil -1 nil) 17270 "c560dc07-8c9c-42bc-9ce1-634630d26981") "c1fdfebb-0dec-420d-abf9-aec7a2de5633" #s(org-graph-edge link "c1fdfebb-0dec-420d-abf9-aec7a2de5633" nil (0 0 14 6 3 2025 nil -1 nil) 16847 "f48341d3-f9ab-44ac-9387-4d32e92aa011") "74140b0d-af83-4516-ac70-b62bfa3de68d" #s(org-graph-edge relation "74140b0d-af83-4516-ac70-b62bfa3de68d" nil (0 51 13 6 3 2025 nil -1 nil) 16461 "https://docs.racket-lang.org/reference/index.html") "cce00db3-1428-4380-aa5d-8d2ec767b873" #s(org-graph-edge relation "cce00db3-1428-4380-aa5d-8d2ec767b873" nil (0 20 14 3 3 2025 nil -1 nil) 16145 "https://www.scheme.org/") "6cfca9d2-8d3d-4725-a08f-349e08fd44e3" #s(org-graph-edge relation "6cfca9d2-8d3d-4725-a08f-349e08fd44e3" nil (0 54 20 26 2 2025 nil -1 nil) 15793 "https://ultralisp.org/") "0b568dbe-fc89-4ce6-be86-fd18d1d2d5c0" #s(org-graph-edge relation "0b568dbe-fc89-4ce6-be86-fd18d1d2d5c0" nil (0 7 16 1 3 2025 nil -1 nil) 14853 "https://github.com/quicklisp") "2b73b4e2-495a-4af0-9777-294196ad7f4d" #s(org-graph-edge relation "2b73b4e2-495a-4af0-9777-294196ad7f4d" nil (0 56 9 7 3 2025 nil -1 nil) 14410 "http://landoflisp.com/") "11b9f51e-4d47-41ba-814f-aa6738a65881" #s(org-graph-edge relation "11b9f51e-4d47-41ba-814f-aa6738a65881" nil (0 4 18 4 3 2025 nil -1 nil) 14071 "https://github.com/thephoeron/let-over-lambda/tree/master") "53d96196-24d4-4737-93d0-a282f2cf5c0b" #s(org-graph-edge relation "53d96196-24d4-4737-93d0-a282f2cf5c0b" nil (0 6 18 4 3 2025 nil -1 nil) 13729 "https://www.cliki.net/practical%20common%20lisp") "91c00d39-6541-4b29-8d6b-a5b8c770cab0" #s(org-graph-edge parent "91c00d39-6541-4b29-8d6b-a5b8c770cab0" nil (0 4 16 4 3 2025 nil -1 nil) 13373 "dc13038b-91ba-4a5c-bc62-ad189033023d") "f8f4d3ea-663a-4a8e-a9a8-f0d7813c710f" #s(org-graph-edge relation "f8f4d3ea-663a-4a8e-a9a8-f0d7813c710f" nil (0 30 23 7 3 2025 nil -1 nil) 12984 "https://www.softwarepreservation.org/projects/LISP/lisp2/TM-3417_400_00_LISP2_LAP_Spec.pdf") "377a92dd-8e6e-4183-bd8a-70c47902d4d8" #s(org-graph-edge relation "377a92dd-8e6e-4183-bd8a-70c47902d4d8" nil (0 32 23 7 3 2025 nil -1 nil) 12697 "https://www.iwriteiam.nl/HaCAR_CDR.html") "3951ac2e-dc3d-4c25-b0ab-7b1daac53b47" #s(org-graph-edge relation "3951ac2e-dc3d-4c25-b0ab-7b1daac53b47" nil (0 32 23 7 3 2025 nil -1 nil) 12484 "https://www.paulgraham.com/thist.html") "92dd3f0e-4789-4016-a623-48af3c45cd05" #s(org-graph-edge relation "92dd3f0e-4789-4016-a623-48af3c45cd05" nil (0 51 15 1 3 2025 nil -1 nil) 10722 "https://www.lispworks.com/documentation/HyperSpec/Body/m_defpkg.htm") "fb68413a-acd8-4107-bfb5-48ce32be8842" #s(org-graph-edge relation "fb68413a-acd8-4107-bfb5-48ce32be8842" nil (0 54 18 3 3 2025 nil -1 nil) 10548 "info:asdf") "3addee17-b990-4a6d-9767-071969ed9d0e" #s(org-graph-edge relation "3addee17-b990-4a6d-9767-071969ed9d0e" nil (0 52 20 2 3 2025 nil -1 nil) 10165 "https://github.com/jscl-project/jscl") "c560dc07-8c9c-42bc-9ce1-634630d26981" #s(org-graph-edge parent "c560dc07-8c9c-42bc-9ce1-634630d26981" nil (0 3 14 6 3 2025 nil -1 nil) 9958 "79ecc4f2-f223-4045-a31a-565192efaf49") "a911344d-aed1-4603-a46f-e8edf53756f5" #s(org-graph-edge link "a911344d-aed1-4603-a46f-e8edf53756f5" nil (0 11 18 4 3 2025 nil -1 nil) 9536 "3ac23a84-ba2e-41a1-9ea4-268e01891930") "e70d50df-d897-4a5f-a669-fa5dc3f94b23" #s(org-graph-edge relation "e70d50df-d897-4a5f-a669-fa5dc3f94b23" nil (0 13 20 2 3 2025 nil -1 nil) 9196 "https://github.com/Shirakumo/framebuffers") "8af234c8-1455-4dc8-a2df-e6d5b5777606" #s(org-graph-edge relation "8af234c8-1455-4dc8-a2df-e6d5b5777606" nil (0 12 20 2 3 2025 nil -1 nil) 8922 "https://github.com/Shirakumo/alloy") "1beb282b-8c4d-4561-a293-07439d0367ae" #s(org-graph-edge relation "1beb282b-8c4d-4561-a293-07439d0367ae" nil (0 11 20 2 3 2025 nil -1 nil) 8664 "https://github.com/Shirakumo/radiance") "503387d8-fa9c-4269-99bc-1d29415ab290" #s(org-graph-edge relation "503387d8-fa9c-4269-99bc-1d29415ab290" nil (0 12 20 2 3 2025 nil -1 nil) 8286 "https://github.com/Shirakumo") "54ea6883-851d-4829-8f71-889aa7f58c45" #s(org-graph-edge relation "54ea6883-851d-4829-8f71-889aa7f58c45" nil (0 15 15 22 2 2025 nil -1 nil) 7984 "https://github.com/sharplispers/clx") "54d32d4a-93fe-4f4d-9207-f291dbb1edc6" #s(org-graph-edge relation "54d32d4a-93fe-4f4d-9207-f291dbb1edc6" nil (0 20 19 17 1 2025 nil -1 nil) 7530 "https://github.com/screenshotbot/screenshotbot-oss") "961d0c81-11f0-49e2-8ccb-9c31f6b6528d" #s(org-graph-edge relation "961d0c81-11f0-49e2-8ccb-9c31f6b6528d" nil (0 27 18 28 2 2025 nil -1 nil) 7156 "https://www.lispworks.com/documentation/HyperSpec/Body/03_bba.htm") "1ccb1faa-6e41-4b4f-877f-4382bc250e53" #s(org-graph-edge relation "1ccb1faa-6e41-4b4f-877f-4382bc250e53" nil (0 18 15 22 2 2025 nil -1 nil) 6947 "https://letoverlambda.com/") "d9062d16-09f0-4c48-99ac-2e26407fc75b" #s(org-graph-edge relation "d9062d16-09f0-4c48-99ac-2e26407fc75b" nil (0 5 14 6 3 2025 nil -1 nil) 6701 "https://lispcookbook.github.io/cl-cookbook/process.html") "7555f8c6-5dd5-4607-ae1f-32643bf03ba9" #s(org-graph-edge relation "7555f8c6-5dd5-4607-ae1f-32643bf03ba9" nil (0 9 16 25 2 2025 nil -1 nil) 3849 "https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node64.html#SECTION00922000000000000000") "ebbc665a-10c3-46a3-8052-4f46bc9ac2b1" #s(org-graph-edge relation "ebbc665a-10c3-46a3-8052-4f46bc9ac2b1" nil (0 8 16 25 2 2025 nil -1 nil) 3489 "https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node62.html") "852b2c7f-238e-480d-ad63-3b5b53c58929" #s(org-graph-edge relation "852b2c7f-238e-480d-ad63-3b5b53c58929" nil (0 20 20 14 2 2025 nil -1 nil) 3226 "https://gist.github.com/WetHat/a49e6f2140b401a190d45d31e052af8f") "4e7b8135-3d53-4739-9a72-563971a5b876" #s(org-graph-edge relation "4e7b8135-3d53-4739-9a72-563971a5b876" nil (0 16 21 7 2 2025 nil -1 nil) 2653 "https://www.lispworks.com/documentation/HyperSpec/Body/m_defi_4.htm") "8bc4ff14-f001-4515-ac1f-fd59ef8ef506" #s(org-graph-edge backlink "8bc4ff14-f001-4515-ac1f-fd59ef8ef506" nil (0 3 14 3 3 2025 nil -1 nil) 2042 "da96454b-fc70-4a5c-bd7a-e66d148eb1d9") "af0ed8bb-4b45-42f9-b8be-82b8ea7935a3" #s(org-graph-edge relation "af0ed8bb-4b45-42f9-b8be-82b8ea7935a3" nil (0 56 9 7 3 2025 nil -1 nil) 696 "https://en.wikiquote.org/wiki/Lisp_(programming_language)") "58d76125-7110-4c76-b8d4-7014d407cc1d" #s(org-graph-edge relation "58d76125-7110-4c76-b8d4-7014d407cc1d" nil (0 45 19 3 3 2025 nil -1 nil) 2367 "https://www.typescriptlang.org/") "ccbf8bb8-4195-4e6a-8a72-87a7fed916b1" #s(org-graph-edge relation "ccbf8bb8-4195-4e6a-8a72-87a7fed916b1" nil (0 28 19 4 3 2025 nil -1 nil) 2148 "https://nextjs.org/") "05a83166-2afc-41b2-8b64-9fcb2a33a5d8" #s(org-graph-edge relation "05a83166-2afc-41b2-8b64-9fcb2a33a5d8" nil (0 28 19 4 3 2025 nil -1 nil) 1964 "https://react.dev/") "84bd750f-75f0-4b23-b18e-7868783fdacb" #s(org-graph-edge relation "84bd750f-75f0-4b23-b18e-7868783fdacb" nil (0 50 20 2 3 2025 nil -1 nil) 1524 "https://d3js.org/") "b2f13ede-db9d-494b-a454-515496cb6b7e" #s(org-graph-edge relation "b2f13ede-db9d-494b-a454-515496cb6b7e" nil (0 49 20 2 3 2025 nil -1 nil) 1321 "https://svgjs.dev/docs/3.2/") "5886ca2e-a096-4f08-b08e-75da2c12109a" #s(org-graph-edge relation "5886ca2e-a096-4f08-b08e-75da2c12109a" nil (0 48 20 2 3 2025 nil -1 nil) 1125 "https://js.cytoscape.org/") "1dd1ff5b-c2bb-47ff-96d0-f56d2fac465b" #s(org-graph-edge relation "1dd1ff5b-c2bb-47ff-96d0-f56d2fac465b" nil (0 47 20 2 3 2025 nil -1 nil) 687 "https://marvl.infotech.monash.edu/webcola/") "d9226de2-4b80-4193-a06e-e3185ffb5217" #s(org-graph-edge backlink "d9226de2-4b80-4193-a06e-e3185ffb5217" nil (0 51 14 6 3 2025 nil -1 nil) 239 "09edda89-63e0-4496-84eb-764fb9b0b7c3") "daabdec4-5708-4bfe-ad37-41469d0dfe17" #s(org-graph-edge parent "daabdec4-5708-4bfe-ad37-41469d0dfe17" nil (0 44 19 3 3 2025 nil -1 nil) 1725 "6819fc08-3199-49bc-9c5d-b19419118525") "84a7eea1-0059-4a07-945b-c4167ca38f26" #s(org-graph-edge parent "84a7eea1-0059-4a07-945b-c4167ca38f26" nil (0 43 19 3 3 2025 nil -1 nil) 1442 "6819fc08-3199-49bc-9c5d-b19419118525") "6819fc08-3199-49bc-9c5d-b19419118525" #s(org-graph-edge relation "6819fc08-3199-49bc-9c5d-b19419118525" nil (0 43 20 3 3 2025 nil -1 nil) 1065 "https://docs.oracle.com/javase/specs/jvms/se7/html/index.html") "99715e32-2635-4425-b2b5-a1fcb4ddb9a5" #s(org-graph-edge relation "99715e32-2635-4425-b2b5-a1fcb4ddb9a5" nil (0 1 21 2 3 2025 nil -1 nil) 422 "https://jdk.java.net/") "917c397b-01f2-4f02-8b27-abeeeaa463ab" #s(org-graph-edge link "917c397b-01f2-4f02-8b27-abeeeaa463ab" nil (0 9 20 3 3 2025 nil -1 nil) 241 "7dfd88e4-5511-4ff8-99ce-0fbf464bde58") "98bd675d-6c08-427c-acff-fecbd8dcb8b1" #s(org-graph-edge parent "98bd675d-6c08-427c-acff-fecbd8dcb8b1" nil (0 4 21 3 3 2025 nil -1 nil) 1493 "d3ec4a82-1ff7-44bc-b34f-6e2cc66dcc84") "d3ec4a82-1ff7-44bc-b34f-6e2cc66dcc84" #s(org-graph-edge child "d3ec4a82-1ff7-44bc-b34f-6e2cc66dcc84" nil (0 4 21 3 3 2025 nil -1 nil) 1070 "98bd675d-6c08-427c-acff-fecbd8dcb8b1") "609eef50-a8d4-465c-808d-93c623c05a85" #s(org-graph-edge relation "609eef50-a8d4-465c-808d-93c623c05a85" nil (0 58 20 3 3 2025 nil -1 nil) 697 "https://en.wikipedia.org/wiki/Open_Telecom_Platform") "39af0f8f-aff7-40f3-a139-e1338a6bb966" #s(org-graph-edge relation "39af0f8f-aff7-40f3-a139-e1338a6bb966" nil (0 55 18 6 2 2025 nil -1 nil) 1334 "https://hypercubed.github.io/joy/html/j02maf.html") "b0f61b51-fbd8-4b45-a8cd-0a2e08864fed" #s(org-graph-edge relation "b0f61b51-fbd8-4b45-a8cd-0a2e08864fed" nil (0 34 22 13 2 2025 nil -1 nil) 1129 "https://factorcode.org/") "35de6467-e9fc-49f4-b46b-0e05029f9f48" #s(org-graph-edge relation "35de6467-e9fc-49f4-b46b-0e05029f9f48" nil (0 33 22 13 2 2025 nil -1 nil) 911 "https://vfxforth.com/arena/ProgramForth.pdf") "c8359e6e-401b-4c7a-915f-98dc2759c995" #s(org-graph-edge relation "c8359e6e-401b-4c7a-915f-98dc2759c995" nil (0 5 20 3 3 2025 nil -1 nil) 738 "info:gforth") "ffb8be57-d874-4540-9fe0-9efea6559185" #s(org-graph-edge relation "ffb8be57-d874-4540-9fe0-9efea6559185" nil (0 33 22 13 2 2025 nil -1 nil) 194 "https://www.forth.com/") "b350b221-28ed-4866-971a-f1a4dbe4f3b4" #s(org-graph-edge link "b350b221-28ed-4866-971a-f1a4dbe4f3b4" nil (0 39 19 4 3 2025 nil -1 nil) 355 "70fae18f-5a6e-4d1b-ba88-81339f13d0ec") "3021fa48-a98a-471f-896c-db237e97192b" #s(org-graph-edge link "3021fa48-a98a-471f-896c-db237e97192b" nil (0 14 20 3 3 2025 nil -1 nil) 4230 "c5d7a7b3-09f1-4f0e-909a-63111c039cc3") "a531e912-55ab-4889-806f-475c0316713e" #s(org-graph-edge parent "a531e912-55ab-4889-806f-475c0316713e" nil (0 47 14 3 3 2025 nil -1 nil) 3651 "eaf2ecf5-7748-40e5-bd1b-c8fc2053d050") "f4bfdb27-161d-4b47-b417-55ac4eeff234" #s(org-graph-edge relation "f4bfdb27-161d-4b47-b417-55ac4eeff234" nil (0 1 15 3 3 2025 nil -1 nil) 3167 "https://nacl.cr.yp.to/secretbox.html") "d7c12344-b1ae-4bf2-a620-bc99f8e71e29" #s(org-graph-edge relation "d7c12344-b1ae-4bf2-a620-bc99f8e71e29" nil (0 46 20 2 3 2025 nil -1 nil) 2886 "https://www.adaptagrams.org/") "2b62b530-80c0-4a78-828e-509ac78dbfd9" #s(org-graph-edge relation "2b62b530-80c0-4a78-828e-509ac78dbfd9" nil (0 46 20 2 3 2025 nil -1 nil) 2618 "https://www.boost.org/") "c7e3f469-f1c9-4b9f-a104-72ae91abab21" #s(org-graph-edge relation "c7e3f469-f1c9-4b9f-a104-72ae91abab21" nil (0 34 12 7 3 2025 nil -1 nil) 1169 "https://gist.github.com/tcoppex/443d1dd45f873d96260195d6431b0989") "d77ecb14-ecd4-4432-af2e-f431bf9ea18b" #s(org-graph-edge relation "d77ecb14-ecd4-4432-af2e-f431bf9ea18b" nil (0 32 12 7 3 2025 nil -1 nil) 998 "info:libc") "5479d877-2bd1-41d9-8409-1ff0436fcc59" #s(org-graph-edge child "5479d877-2bd1-41d9-8409-1ff0436fcc59" nil (0 11 20 3 3 2025 nil -1 nil) 329 "3021fa48-a98a-471f-896c-db237e97192b") "5518920e-e160-4d02-be4f-e73e2c89af45" #s(org-graph-edge relation "5518920e-e160-4d02-be4f-e73e2c89af45" nil (0 59 16 27 2 2025 nil -1 nil) 164 "https://en.wikipedia.org/wiki/BASIC") "650a3fc0-6eec-4b9c-8db5-b89715ff50cc" #s(org-graph-edge parent "650a3fc0-6eec-4b9c-8db5-b89715ff50cc" nil (0 48 14 3 3 2025 nil -1 nil) 6047 "339518e9-2112-4c79-9471-ccc8f57b8105") "25754e07-2c57-4385-a52a-33b0179e2b85" #s(org-graph-edge parent "25754e07-2c57-4385-a52a-33b0179e2b85" nil (0 32 14 3 3 2025 nil -1 nil) 5645 "496b952f-4c98-4303-92b4-1c766565092c") "bdae141e-3288-4108-b509-dddd4a8b3731" #s(org-graph-edge relation "bdae141e-3288-4108-b509-dddd4a8b3731" nil (0 40 21 2 3 2025 nil -1 nil) 5074 "https://webassembly.github.io/spec/core/") "e6c89750-0770-4c0f-a943-f6419313970e" #s(org-graph-edge relation "e6c89750-0770-4c0f-a943-f6419313970e" nil (0 23 21 2 3 2025 nil -1 nil) 4559 "https://riscv.org/specifications/ratified/") "5c9317c4-d3fc-4648-bfe2-38d9ca0719ec" #s(org-graph-edge relation "5c9317c4-d3fc-4648-bfe2-38d9ca0719ec" nil (0 56 16 3 3 2025 nil -1 nil) 3598 "https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/5/html/virtualization/sect-virtualization-troubleshooting-enabling_intel_vt_and_amd_v_virtualization_hardware_extensions_in_bios") "96d5af9b-48f1-4d26-bcdd-a6ed47a73141" #s(org-graph-edge relation "96d5af9b-48f1-4d26-bcdd-a6ed47a73141" nil (0 37 14 3 3 2025 nil -1 nil) 3238 "https://en.wikipedia.org/wiki/AES_instruction_set") "c06fcd4c-193a-4ba7-bd16-3b8e537dd2ad" #s(org-graph-edge relation "c06fcd4c-193a-4ba7-bd16-3b8e537dd2ad" nil (0 36 14 3 3 2025 nil -1 nil) 2908 "https://www.intel.com/content/www/us/en/developer/articles/technical/advanced-performance-extensions-apx.html") "3234c77c-97dd-4180-b8ca-48e18de7ab81" #s(org-graph-edge relation "3234c77c-97dd-4180-b8ca-48e18de7ab81" nil (0 35 14 3 3 2025 nil -1 nil) 2656 "https://en.wikipedia.org/wiki/Physical_Address_Extension") "37c0d23a-8c9b-49d9-98e9-964ca52be6de" #s(org-graph-edge relation "37c0d23a-8c9b-49d9-98e9-964ca52be6de" nil (0 34 14 3 3 2025 nil -1 nil) 2405 "https://en.wikipedia.org/wiki/Streaming_SIMD_Extensions") "4c7530b8-6d6f-475a-b2a3-986a10a0d812" #s(org-graph-edge relation "4c7530b8-6d6f-475a-b2a3-986a10a0d812" nil (0 21 21 2 3 2025 nil -1 nil) 1477 "https://www.intel.com/content/www/us/en/developer/articles/technical/intel-sdm.html") "3eec30c3-ab67-42f1-b77f-191905d43c6c" #s(org-graph-edge relation "3eec30c3-ab67-42f1-b77f-191905d43c6c" nil (0 38 14 3 3 2025 nil -1 nil) 932 "https://en.wikipedia.org/wiki/X86_instruction_listings") "5f4daaa9-8536-4051-b2b3-b4669f7960ee" #s(org-graph-edge relation "5f4daaa9-8536-4051-b2b3-b4669f7960ee" nil (0 23 18 17 1 2025 nil -1 nil) 572 "https://www.nasm.us/") "c57c2462-7e95-4e6b-9f5b-d7207aeda442" #s(org-graph-edge backlink "c57c2462-7e95-4e6b-9f5b-d7207aeda442" nil (0 54 20 8 3 2025 nil -1 nil) 274 "86674fe2-4105-4246-9682-f6e3fb84f7de") "b4579e67-0855-44e1-971d-1a727694af17" #s(org-graph-edge child "b4579e67-0855-44e1-971d-1a727694af17" nil (0 1 17 3 3 2025 nil -1 nil) 2308 "5add36a0-129f-466c-b493-b34aee8b99a6") "51e7d9ad-28a2-4284-94a1-18a642d0cf3d" #s(org-graph-edge relation "51e7d9ad-28a2-4284-94a1-18a642d0cf3d" nil (0 59 16 3 3 2025 nil -1 nil) 1967 "https://en.wikipedia.org/wiki/Algebraic_curve") "2616620b-782c-4c1f-97f9-e8f2d4fb8a38" #s(org-graph-edge relation "2616620b-782c-4c1f-97f9-e8f2d4fb8a38" nil (0 19 19 28 2 2025 nil -1 nil) 1759 "https://en.wikipedia.org/wiki/Tuple") "8805be63-567a-472d-a70c-6155ba2f3d02" #s(org-graph-edge relation "8805be63-567a-472d-a70c-6155ba2f3d02" nil (0 18 19 28 2 2025 nil -1 nil) 1539 "https://en.wikipedia.org/wiki/Linked_list") "2b5b4c0a-c4e8-4d76-b71f-240d6707cb02" #s(org-graph-edge relation "2b5b4c0a-c4e8-4d76-b71f-240d6707cb02" nil (0 18 19 28 2 2025 nil -1 nil) 1283 "https://en.wikipedia.org/wiki/Stack_(abstract_data_type)") "e70dcd77-790b-4588-8abc-71b2f30c6a86" #s(org-graph-edge relation "e70dcd77-790b-4588-8abc-71b2f30c6a86" nil (0 15 19 28 2 2025 nil -1 nil) 780 "https://en.wikipedia.org/wiki/Vertex_(graph_theory)") "e2fd1fd6-2393-45a2-a073-0c44bfcfc2a0" #s(org-graph-edge relation "e2fd1fd6-2393-45a2-a073-0c44bfcfc2a0" nil (0 0 19 28 2 2025 nil -1 nil) 556 "https://en.wikipedia.org/wiki/Graph_theory") "4850e361-e569-4b8e-a0e3-cedcc7e4b3a3" #s(org-graph-edge relation "4850e361-e569-4b8e-a0e3-cedcc7e4b3a3" nil (0 19 18 28 2 2025 nil -1 nil) 191 "https://en.wikipedia.org/wiki/Abstract_structure") "d48237d3-1559-46ff-83a0-ccfd3513a697" #s(org-graph-edge relation "d48237d3-1559-46ff-83a0-ccfd3513a697" nil (0 22 18 28 2 2025 nil -1 nil) 509 "https://en.wikipedia.org/wiki/Probability_theory") "e986c340-2931-46e3-8adc-bfbf0cd95bd4" #s(org-graph-edge relation "e986c340-2931-46e3-8adc-bfbf0cd95bd4" nil (0 52 21 14 2 2025 nil -1 nil) 174 "https://en.wikipedia.org/wiki/Statistics") "0977c147-3689-4dc6-bde7-c7ee9eec5db0" #s(org-graph-edge relation "0977c147-3689-4dc6-bde7-c7ee9eec5db0" nil (0 49 18 28 2 2025 nil -1 nil) 3979 "https://en.wikipedia.org/wiki/Nuclear_astrophysics") "b4038fa1-5bbb-48e9-935e-293209907a8b" #s(org-graph-edge relation "b4038fa1-5bbb-48e9-935e-293209907a8b" nil (0 47 18 28 2 2025 nil -1 nil) 3734 "https://en.wikipedia.org/wiki/Nuclear_fission") "90300edf-9fa4-438b-8f34-65a6857cfdab" #s(org-graph-edge relation "90300edf-9fa4-438b-8f34-65a6857cfdab" nil (0 46 18 28 2 2025 nil -1 nil) 3409 "https://en.wikipedia.org/wiki/Nuclear_physics") "b06d0c06-7561-4a7f-80d0-cf989a43ab15" #s(org-graph-edge relation "b06d0c06-7561-4a7f-80d0-cf989a43ab15" nil (0 45 18 28 2 2025 nil -1 nil) 3168 "https://en.wikipedia.org/wiki/Particle_physics") "7f7a4ace-9070-4c17-b71d-ec68141cae78" #s(org-graph-edge relation "7f7a4ace-9070-4c17-b71d-ec68141cae78" nil (0 44 18 28 2 2025 nil -1 nil) 2930 "https://en.wikipedia.org/wiki/Atomic_physics") "bfc0616e-b631-4b74-a27a-839f25455c44" #s(org-graph-edge relation "bfc0616e-b631-4b74-a27a-839f25455c44" nil (0 43 18 28 2 2025 nil -1 nil) 2710 "https://en.wikipedia.org/wiki/Optics") "c7f7b48d-23cd-44ed-be1d-223c4af3d3aa" #s(org-graph-edge relation "c7f7b48d-23cd-44ed-be1d-223c4af3d3aa" nil (0 42 18 28 2 2025 nil -1 nil) 2444 "https://en.wikipedia.org/wiki/Introduction_to_quantum_mechanics") "e802b005-157c-485d-8281-713a85c4d124" #s(org-graph-edge relation "e802b005-157c-485d-8281-713a85c4d124" nil (0 41 18 28 2 2025 nil -1 nil) 2207 "https://en.wikipedia.org/wiki/Modern_physics") "653faa00-7ff5-4e00-9a78-56b3c2e686c2" #s(org-graph-edge relation "653faa00-7ff5-4e00-9a78-56b3c2e686c2" nil (0 44 18 28 2 2025 nil -1 nil) 1947 "https://en.wikipedia.org/wiki/Classical_electromagnetism") "a2901e49-a517-4d17-88ac-f789706c0e80" #s(org-graph-edge relation "a2901e49-a517-4d17-88ac-f789706c0e80" nil (0 41 18 28 2 2025 nil -1 nil) 1709 "https://en.wikipedia.org/wiki/Thermodynamics") "0662e746-3702-44f3-b383-e8bffc45aa6f" #s(org-graph-edge relation "0662e746-3702-44f3-b383-e8bffc45aa6f" nil (0 40 18 28 2 2025 nil -1 nil) 1467 "https://en.wikipedia.org/wiki/Classical_physics") "ceec7c59-321e-4506-9a0d-61f56247f2f2" #s(org-graph-edge relation "ceec7c59-321e-4506-9a0d-61f56247f2f2" nil (0 40 18 28 2 2025 nil -1 nil) 1238 "https://en.wikipedia.org/wiki/Acoustics") "3328ae51-9643-469e-aaf5-aec4c64338f0" #s(org-graph-edge relation "3328ae51-9643-469e-aaf5-aec4c64338f0" nil (0 51 18 28 2 2025 nil -1 nil) 1014 "https://en.wikipedia.org/wiki/Ionization") "68c944e3-dabc-401c-820a-85a8028ab049" #s(org-graph-edge relation "68c944e3-dabc-401c-820a-85a8028ab049" nil (0 50 18 28 2 2025 nil -1 nil) 791 "https://en.wikipedia.org/wiki/Radiation") "9f4d121c-27af-4b5a-a54f-d77117880495" #s(org-graph-edge relation "9f4d121c-27af-4b5a-a54f-d77117880495" nil (0 50 18 28 2 2025 nil -1 nil) 575 "https://en.wikipedia.org/wiki/Energy") "873426f8-2dca-46ef-bef2-1fa1e3aa6881" #s(org-graph-edge relation "873426f8-2dca-46ef-bef2-1fa1e3aa6881" nil (0 39 18 28 2 2025 nil -1 nil) 168 "https://en.wikipedia.org/wiki/Physics") "6e99e961-7ce7-4d3f-86f8-66fde8855f4b" #s(org-graph-edge relation "6e99e961-7ce7-4d3f-86f8-66fde8855f4b" nil (0 2 22 14 2 2025 nil -1 nil) 1522 "https://arxiv.org/abs/2302.13971") "d767b814-5842-4c8f-8b97-818b53759ac3" #s(org-graph-edge relation "d767b814-5842-4c8f-8b97-818b53759ac3" nil (0 59 21 14 2 2025 nil -1 nil) 1195 "https://github.com/deepseek-ai/DeepSeek-R1") "7a50d672-f3b9-4606-b4b7-3a6133c9b076" #s(org-graph-edge relation "7a50d672-f3b9-4606-b4b7-3a6133c9b076" nil (0 57 21 14 2 2025 nil -1 nil) 887 "https://en.wikipedia.org/wiki/Generative_pre-trained_transformer") "2a3605d9-9e3a-4743-9b59-e0f0c3c2c323" #s(org-graph-edge relation "2a3605d9-9e3a-4743-9b59-e0f0c3c2c323" nil (0 55 21 14 2 2025 nil -1 nil) 513 "https://en.wikipedia.org/wiki/Large_language_model") "10588a36-bec0-4a84-9cce-179cbdeb1e4e" #s(org-graph-edge relation "10588a36-bec0-4a84-9cce-179cbdeb1e4e" nil (0 54 21 14 2 2025 nil -1 nil) 172 "https://en.wikipedia.org/wiki/Machine_learning") "68ab28bf-45b9-4d51-90d0-8fb77017ec62" #s(org-graph-edge relation "68ab28bf-45b9-4d51-90d0-8fb77017ec62" nil (0 24 18 28 2 2025 nil -1 nil) 997 "https://en.wikipedia.org/wiki/Lambda_calculus") "d2bffba1-8d5e-4733-be29-8e07c2cb528c" #s(org-graph-edge relation "d2bffba1-8d5e-4733-be29-8e07c2cb528c" nil (0 24 18 28 2 2025 nil -1 nil) 760 "https://en.wikipedia.org/wiki/Formal_system") "fb36a89f-2b32-452a-b480-5ea23bd63efb" #s(org-graph-edge relation "fb36a89f-2b32-452a-b480-5ea23bd63efb" nil (0 54 18 28 2 2025 nil -1 nil) 522 "https://en.wikipedia.org/wiki/Formal_language") "460c0ac9-f37b-46ba-9837-21f6424185fd" #s(org-graph-edge relation "460c0ac9-f37b-46ba-9837-21f6424185fd" nil (0 53 18 28 2 2025 nil -1 nil) 302 "https://en.wikipedia.org/wiki/Logic") "3da5cb2e-53cf-424b-af43-580fab3e690a" #s(org-graph-edge relation "3da5cb2e-53cf-424b-af43-580fab3e690a" nil (0 35 22 14 2 2025 nil -1 nil) 182 "https://en.wikipedia.org/wiki/Digital_signal_processing") "8259478a-d303-4d05-ac00-505decc39bb4" #s(org-graph-edge relation "8259478a-d303-4d05-ac00-505decc39bb4" nil (0 57 18 28 2 2025 nil -1 nil) 2223 "https://en.wikipedia.org/wiki/Automaton") "4bec80fd-4547-462f-9945-e4e524a018c4" #s(org-graph-edge relation "4bec80fd-4547-462f-9945-e4e524a018c4" nil (0 58 18 28 2 2025 nil -1 nil) 1957 "https://en.wikipedia.org/wiki/Finite-state_machine") "160d9219-f9e4-4ab3-864d-5aa0df3f9099" #s(org-graph-edge relation "160d9219-f9e4-4ab3-864d-5aa0df3f9099" nil (0 56 18 28 2 2025 nil -1 nil) 1726 "https://en.wikipedia.org/wiki/Abstract_machine") "6eeab81b-c95c-4991-9e0a-d3c565dc800d" #s(org-graph-edge relation "6eeab81b-c95c-4991-9e0a-d3c565dc800d" nil (0 56 18 28 2 2025 nil -1 nil) 1485 "https://en.wikipedia.org/wiki/Automata_theory") "91c3a4e5-b6c4-49e7-8b6e-eac6e88e0b67" #s(org-graph-edge relation "91c3a4e5-b6c4-49e7-8b6e-eac6e88e0b67" nil (0 50 20 3 3 2025 nil -1 nil) 1173 "https://en.wikipedia.org/wiki/K-d_tree") "1e7845bb-a065-4e43-860b-6974ab9bbd5d" #s(org-graph-edge relation "1e7845bb-a065-4e43-860b-6974ab9bbd5d" nil (0 49 20 3 3 2025 nil -1 nil) 918 "https://en.wikipedia.org/wiki/Tree_(abstract_data_type)") "825b2467-a397-4fcc-83b6-c3397e9cc091" #s(org-graph-edge relation "825b2467-a397-4fcc-83b6-c3397e9cc091" nil (0 20 19 28 2 2025 nil -1 nil) 674 "https://en.wikipedia.org/wiki/Array_(data_structure)") "5bb49707-e877-45fd-b2e9-a04d80ab4eca" #s(org-graph-edge relation "5bb49707-e877-45fd-b2e9-a04d80ab4eca" nil (0 32 18 28 2 2025 nil -1 nil) 1649 "https://en.wikipedia.org/wiki/Generalized_function") "8f56ea7b-0b22-4620-a454-a7ff9d9b5a5c" #s(org-graph-edge relation "8f56ea7b-0b22-4620-a454-a7ff9d9b5a5c" nil (0 38 18 28 2 2025 nil -1 nil) 1395 "https://en.wikipedia.org/wiki/Stochastic_calculus") "a652db50-8f75-46df-8ba0-f196f4b7fb75" #s(org-graph-edge relation "a652db50-8f75-46df-8ba0-f196f4b7fb75" nil (0 37 18 28 2 2025 nil -1 nil) 1151 "https://en.wikipedia.org/wiki/Vector_calculus") "39d6876c-5605-4a33-9be4-491f592d91ec" #s(org-graph-edge relation "39d6876c-5605-4a33-9be4-491f592d91ec" nil (0 37 18 28 2 2025 nil -1 nil) 901 "https://en.wikipedia.org/wiki/Series_(mathematics)") "ac761edc-8416-449a-9876-1564c57e06fa" #s(org-graph-edge relation "ac761edc-8416-449a-9876-1564c57e06fa" nil (0 35 18 28 2 2025 nil -1 nil) 685 "https://en.wikipedia.org/wiki/Integral") "d0976b17-9de6-4c85-9ae5-8f1e89c4941a" #s(org-graph-edge relation "d0976b17-9de6-4c85-9ae5-8f1e89c4941a" nil (0 33 18 28 2 2025 nil -1 nil) 441 "https://en.wikipedia.org/wiki/Differential_calculus") "2dfa085f-d853-4e13-a6cf-654d0f96b81f" #s(org-graph-edge relation "2dfa085f-d853-4e13-a6cf-654d0f96b81f" nil (0 34 21 24 2 2025 nil -1 nil) 925 "https://en.wikipedia.org/wiki/Hopscotch_hashing") "0756b187-0c00-434e-98a5-75e06cb3f01b" #s(org-graph-edge relation "0756b187-0c00-434e-98a5-75e06cb3f01b" nil (0 21 18 28 2 2025 nil -1 nil) 687 "https://en.wikipedia.org/wiki/Hash_function") "0205d00e-3ba5-4016-afcf-03f888f5bd18" #s(org-graph-edge relation "0205d00e-3ba5-4016-afcf-03f888f5bd18" nil (0 20 18 28 2 2025 nil -1 nil) 455 "https://en.wikipedia.org/wiki/Sorting_algorithm") "26e0dd8a-352e-4c57-b501-15bdef909d88" #s(org-graph-edge relation "26e0dd8a-352e-4c57-b501-15bdef909d88" nil (0 39 17 28 2 2025 nil -1 nil) 239 "https://en.wikipedia.org/wiki/Algorithm") "feaa8203-1dfe-4009-8a12-56b3a044d183" #s(org-graph-edge relation "feaa8203-1dfe-4009-8a12-56b3a044d183" nil (0 31 18 28 2 2025 nil -1 nil) 4767 "https://en.wikipedia.org/wiki/Operation_(mathematics)") "82e956dc-69e5-4eef-993f-6afa97a38312" #s(org-graph-edge relation "82e956dc-69e5-4eef-993f-6afa97a38312" nil (0 36 18 28 2 2025 nil -1 nil) 4531 "https://en.wikipedia.org/wiki/Inverse_function") "39130a13-90fc-4e04-a05a-acdf31fc88ad" #s(org-graph-edge relation "39130a13-90fc-4e04-a05a-acdf31fc88ad" nil (0 31 18 28 2 2025 nil -1 nil) 4104 "https://en.wikipedia.org/wiki/Function_(mathematics)") "b703c556-fd85-484e-954e-2f6f163a5752" #s(org-graph-edge relation "b703c556-fd85-484e-954e-2f6f163a5752" nil (0 31 18 28 2 2025 nil -1 nil) 3871 "https://en.wikipedia.org/wiki/Magma_(algebra)") "4c5eb400-b3f5-48fb-875b-f7a5f3c99ede" #s(org-graph-edge relation "4c5eb400-b3f5-48fb-875b-f7a5f3c99ede" nil (0 30 18 28 2 2025 nil -1 nil) 3637 "https://en.wikipedia.org/wiki/Set_(mathematics)") "c93a7820-514e-422a-af95-1dd6f8846665" #s(org-graph-edge relation "c93a7820-514e-422a-af95-1dd6f8846665" nil (0 29 18 28 2 2025 nil -1 nil) 3401 "https://en.wikipedia.org/wiki/Group_(mathematics)") "bcaa674a-b485-46db-955c-17ba5eec4592" #s(org-graph-edge relation "bcaa674a-b485-46db-955c-17ba5eec4592" nil (0 13 18 28 2 2025 nil -1 nil) 2950 "https://en.wikipedia.org/wiki/Topological_space") "2054dbdf-d464-44fb-96b9-c3f41e006ca3" #s(org-graph-edge relation "2054dbdf-d464-44fb-96b9-c3f41e006ca3" nil (0 26 18 28 2 2025 nil -1 nil) 2596 "https://en.wikipedia.org/wiki/Partial_algebra") "b7e6df5e-8393-4763-87a5-7183b62ad07e" #s(org-graph-edge relation "b7e6df5e-8393-4763-87a5-7183b62ad07e" nil (0 58 17 28 2 2025 nil -1 nil) 2350 "https://en.wikipedia.org/wiki/Universal_algebra") "eca3fc3d-22c2-474c-9966-82ce724a0607" #s(org-graph-edge relation "eca3fc3d-22c2-474c-9966-82ce724a0607" nil (0 5 18 28 2 2025 nil -1 nil) 1904 "https://en.wikipedia.org/wiki/Operad") "d0b0d9af-ffae-42c4-a151-1f947f348077" #s(org-graph-edge relation "d0b0d9af-ffae-42c4-a151-1f947f348077" nil (0 13 18 28 2 2025 nil -1 nil) 1687 "https://en.wikipedia.org/wiki/Functor") "14121452-3f4f-459f-9116-f8fdafd8cd73" #s(org-graph-edge relation "14121452-3f4f-459f-9116-f8fdafd8cd73" nil (0 7 18 28 2 2025 nil -1 nil) 1449 "https://en.wikipedia.org/wiki/Concrete_category") "0ebc3d0a-8913-49c1-b8a1-c62ac145b2ba" #s(org-graph-edge relation "0ebc3d0a-8913-49c1-b8a1-c62ac145b2ba" nil (0 8 18 28 2 2025 nil -1 nil) 1200 "https://en.wikipedia.org/wiki/Monoidal_category") "d94b3cbc-9dca-430f-af25-523fa12273e6" #s(org-graph-edge relation "d94b3cbc-9dca-430f-af25-523fa12273e6" nil (0 7 18 28 2 2025 nil -1 nil) 923 "https://en.wikipedia.org/wiki/Category_(mathematics)") "993236b2-fc86-4cce-ac35-0730976a8333" #s(org-graph-edge relation "993236b2-fc86-4cce-ac35-0730976a8333" nil (0 56 17 28 2 2025 nil -1 nil) 689 "https://en.wikipedia.org/wiki/Category_theory") "8208c5b8-462c-4f11-b935-246de88e6667" #s(org-graph-edge relation "8208c5b8-462c-4f11-b935-246de88e6667" nil (0 56 17 28 2 2025 nil -1 nil) 447 "https://en.wikipedia.org/wiki/Abstract_algebra") "3f69489f-80bf-4b1b-8113-ab8fd5e20e33" #s(org-graph-edge relation "3f69489f-80bf-4b1b-8113-ab8fd5e20e33" nil (0 49 17 28 2 2025 nil -1 nil) 168 "https://en.wikipedia.org/wiki/Algebra") "02999b9e-d860-4608-8b63-80265d65f951" #s(org-graph-edge relation "02999b9e-d860-4608-8b63-80265d65f951" nil (0 21 15 3 3 2025 nil -1 nil) 17919 "https://lartc.org/howto/lartc.cookbook.ultimate-tc.html") "1c1bfaa5-53d9-4274-b4ef-621b7b52a959" #s(org-graph-edge relation "1c1bfaa5-53d9-4274-b4ef-621b7b52a959" nil (0 23 12 1 3 2025 nil -1 nil) 15148 "https://git.sr.ht/~duangle/texts") "98e52e0e-104b-4dd8-b147-3a170163aeb9" #s(org-graph-edge relation "98e52e0e-104b-4dd8-b147-3a170163aeb9" nil (0 41 11 1 3 2025 nil -1 nil) 14896 "https://narcissistprayer.com/narcissistsprayer/") "026c796e-dcff-4eda-ad83-12e5d60f9971" #s(org-graph-edge relation "026c796e-dcff-4eda-ad83-12e5d60f9971" nil (0 45 18 26 2 2025 nil -1 nil) 12896 "https://tree-sitter.github.io/tree-sitter/3-syntax-highlighting.html") "c584cce5-6e64-4ad3-99ad-0d0ef2119837" #s(org-graph-edge relation "c584cce5-6e64-4ad3-99ad-0d0ef2119837" nil (0 5 18 3 3 2025 nil -1 nil) 345 "https://learn.microsoft.com/en-us/windows/") "70fae18f-5a6e-4d1b-ba88-81339f13d0ec" #s(org-graph-edge backlink "70fae18f-5a6e-4d1b-ba88-81339f13d0ec" nil (0 39 19 4 3 2025 nil -1 nil) 738 "b350b221-28ed-4866-971a-f1a4dbe4f3b4") "ece2479d-c9f8-4606-a137-7ca679cf7762" #s(org-graph-edge relation "ece2479d-c9f8-4606-a137-7ca679cf7762" nil (0 47 19 22 2 2025 nil -1 nil) 415 "https://www.ibm.com/z/operating-systems") "efffd050-7f0d-4286-967b-ce8471d32147" #s(org-graph-edge relation "efffd050-7f0d-4286-967b-ce8471d32147" nil (0 5 18 3 3 2025 nil -1 nil) 394 "https://developer.apple.com/documentation/packagedescription/platform/macos") "21e5a881-54d0-410e-b48a-f32ee26ef90d" #s(org-graph-edge relation "21e5a881-54d0-410e-b48a-f32ee26ef90d" nil (0 43 19 22 2 2025 nil -1 nil) 16393 "http://www.slackware.com/") "5cbe7ad4-008a-4ed7-889d-e7ec5663dfd1" #s(org-graph-edge relation "5cbe7ad4-008a-4ed7-889d-e7ec5663dfd1" nil (0 42 19 22 2 2025 nil -1 nil) 16196 "https://www.gentoo.org/") "b54a3fef-192f-4767-bec2-c10058e69a89" #s(org-graph-edge relation "b54a3fef-192f-4767-bec2-c10058e69a89" nil (0 27 15 4 3 2025 nil -1 nil) 15986 "https://www.adelielinux.org/") "4e717401-7b7b-4ce6-83c7-6f8420e01b93" #s(org-graph-edge relation "4e717401-7b7b-4ce6-83c7-6f8420e01b93" nil (0 41 19 22 2 2025 nil -1 nil) 15787 "https://www.alpinelinux.org/") "f03769bc-abf2-4f58-809f-b672c66120f3" #s(org-graph-edge relation "f03769bc-abf2-4f58-809f-b672c66120f3" nil (0 41 19 22 2 2025 nil -1 nil) 15565 "https://www.debian.org/") "5d1223c7-0ded-44b9-b494-3a3593a2fe02" #s(org-graph-edge relation "5d1223c7-0ded-44b9-b494-3a3593a2fe02" nil (0 41 19 22 2 2025 nil -1 nil) 15346 "https://ubuntu.com/") "6ef3fb84-6805-46f7-ad13-8929a023b43c" #s(org-graph-edge relation "6ef3fb84-6805-46f7-ad13-8929a023b43c" nil (0 40 19 22 2 2025 nil -1 nil) 15155 "https://archlinux.org/") "79c00d69-0624-4e85-a237-79e73e612dca" #s(org-graph-edge relation "79c00d69-0624-4e85-a237-79e73e612dca" nil (0 34 19 22 2 2025 nil -1 nil) 14933 "https://docs.fedoraproject.org/en-US/iot/") "ca6795ee-4b2c-4ec3-9bdc-f6be67c2f1ec" #s(org-graph-edge relation "ca6795ee-4b2c-4ec3-9bdc-f6be67c2f1ec" nil (0 32 19 22 2 2025 nil -1 nil) 12858 "https://docs.fedoraproject.org/en-US/fedora-coreos/") "c9fdd74c-0eb2-4d8f-bc22-0cf40996f186" #s(org-graph-edge relation "c9fdd74c-0eb2-4d8f-bc22-0cf40996f186" nil (0 32 19 22 2 2025 nil -1 nil) 12548 "https://fedoraproject.org/") "34966e81-ab92-4b85-b11e-073784261db5" #s(org-graph-edge relation "34966e81-ab92-4b85-b11e-073784261db5" nil (0 31 19 22 2 2025 nil -1 nil) 12273 "https://en.wikipedia.org/wiki/List_of_Linux_distributions") "d43311bf-7f5f-4d21-aad8-4b35548813b5" #s(org-graph-edge relation "d43311bf-7f5f-4d21-aad8-4b35548813b5" nil (0 43 19 27 2 2025 nil -1 nil) 12037 "https://man7.org/linux/man-pages/man2/poll.2.html") "92c2a9aa-6584-470e-977a-3547bca79414" #s(org-graph-edge relation "92c2a9aa-6584-470e-977a-3547bca79414" nil (0 42 19 27 2 2025 nil -1 nil) 11833 "https://unixism.net/loti/") "74367b29-6a50-4eb4-ac6b-1c1b96dabd89" #s(org-graph-edge relation "74367b29-6a50-4eb4-ac6b-1c1b96dabd89" nil (0 42 19 27 2 2025 nil -1 nil) 10859 "https://man7.org/linux/man-pages/man7/epoll.7.html") "0c37073d-0322-410b-8258-00ffd8215eaa" #s(org-graph-edge relation "0c37073d-0322-410b-8258-00ffd8215eaa" nil (0 40 15 7 3 2025 nil -1 nil) 10446 "https://docs.kernel.org/fb/index.html") "19f3c5da-0f20-4eca-b142-7fc71095ca18" #s(org-graph-edge relation "19f3c5da-0f20-4eca-b142-7fc71095ca18" nil (0 39 15 7 3 2025 nil -1 nil) 10203 "https://docs.kernel.org/subsystem-apis.html#human-interfaces") "883daf4b-7084-4356-ab2d-877a8af2cd45" #s(org-graph-edge relation "883daf4b-7084-4356-ab2d-877a8af2cd45" nil (0 31 15 7 3 2025 nil -1 nil) 9952 "https://docs.kernel.org/networking/napi.html") "5499a81e-1c6e-48d5-b906-9d2155afc562" #s(org-graph-edge relation "5499a81e-1c6e-48d5-b906-9d2155afc562" nil (0 19 19 4 3 2025 nil -1 nil) 9495 "https://docs.kernel.org/fpga/dfl.html") "cde3ff32-1ad9-43ab-9ac7-05efd3f88490" #s(org-graph-edge relation "cde3ff32-1ad9-43ab-9ac7-05efd3f88490" nil (0 20 19 4 3 2025 nil -1 nil) 9165 "https://docs.kernel.org/spi/index.html") "ac0ae4dd-21d4-4b45-9751-a102a48f30e6" #s(org-graph-edge relation "ac0ae4dd-21d4-4b45-9751-a102a48f30e6" nil (0 16 19 4 3 2025 nil -1 nil) 8866 "https://docs.kernel.org/firmware-guide/acpi/index.html") "1f938c20-8d8e-460c-8fb7-f4afaac432cc" #s(org-graph-edge relation "1f938c20-8d8e-460c-8fb7-f4afaac432cc" nil (0 4 19 22 2 2025 nil -1 nil) 8459 "https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard") "f28b16e2-97e5-4575-a3d6-941efeb8942d" #s(org-graph-edge relation "f28b16e2-97e5-4575-a3d6-941efeb8942d" nil (0 36 15 7 3 2025 nil -1 nil) 8153 "https://docs.kernel.org/subsystem-apis.html#storage-interfaces") "c670fcee-f9b1-4acd-ab32-3b795748b544" #s(org-graph-edge relation "c670fcee-f9b1-4acd-ab32-3b795748b544" nil (0 35 15 7 3 2025 nil -1 nil) 7918 "https://docs.kernel.org/subsystem-apis.html#core-subsystems") "1f728d2c-edf1-4502-9560-d0a6c45d5df8" #s(org-graph-edge relation "1f728d2c-edf1-4502-9560-d0a6c45d5df8" nil (0 46 19 27 2 2025 nil -1 nil) 7632 "https://github.com/torvalds/linux/blob/master/arch/x86/entry/syscalls/syscall_64.tbl") "ea9bb3f9-3607-4be2-82f8-e9b3381a0524" #s(org-graph-edge relation "ea9bb3f9-3607-4be2-82f8-e9b3381a0524" nil (0 51 18 27 2 2025 nil -1 nil) 7125 "https://www.kernel.org/doc/Documentation/input/input.txt") "d58cb494-ce43-49cc-859b-aa6a518ac314" #s(org-graph-edge relation "d58cb494-ce43-49cc-859b-aa6a518ac314" nil (0 10 19 6 2 2025 nil -1 nil) 6754 "https://docs.kernel.org/block/ublk.html") "639e5d85-e143-421d-86be-9bc291bc2f8b" #s(org-graph-edge relation "639e5d85-e143-421d-86be-9bc291bc2f8b" nil (0 15 19 17 1 2025 nil -1 nil) 6439 "https://docs.kernel.org/fb/framebuffer.html") "caed860f-fcef-43a2-b080-94b01352cd43" #s(org-graph-edge relation "caed860f-fcef-43a2-b080-94b01352cd43" nil (0 12 20 16 2 2025 nil -1 nil) 4335 "https://www.kernel.org/doc/html/latest/") "25cc1e3f-60f0-401a-a8b6-ac8d5670233d" #s(org-graph-edge relation "25cc1e3f-60f0-401a-a8b6-ac8d5670233d" nil (0 14 19 4 3 2025 nil -1 nil) 3896 "https://docs.kernel.org/userspace-api/netlink/index.html") "5e859a3f-0c31-4796-85c6-7008b346f186" #s(org-graph-edge relation "5e859a3f-0c31-4796-85c6-7008b346f186" nil (0 12 22 14 2 2025 nil -1 nil) 3507 "https://man7.org/linux/man-pages/man7/keyutils.7.html") "378227a0-d265-4272-8013-73df72b5e49a" #s(org-graph-edge relation "378227a0-d265-4272-8013-73df72b5e49a" nil (0 6 19 4 3 2025 nil -1 nil) 3171 "https://docs.kernel.org/tools/rtla/index.html") "cb4a79ea-64fa-4c3a-b4bf-f3f731bc04ad" #s(org-graph-edge relation "cb4a79ea-64fa-4c3a-b4bf-f3f731bc04ad" nil (0 3 19 4 3 2025 nil -1 nil) 2883 "https://www.brendangregg.com/ebpf.html") "97d3d07c-e576-412b-a97a-2879efa998c5" #s(org-graph-edge relation "97d3d07c-e576-412b-a97a-2879efa998c5" nil (0 2 19 4 3 2025 nil -1 nil) 2647 "https://docs.kernel.org/bpf/") "d77d5ce5-2857-4c17-bcaf-c3eb32f93bcc" #s(org-graph-edge relation "d77d5ce5-2857-4c17-bcaf-c3eb32f93bcc" nil (0 40 19 4 3 2025 nil -1 nil) 2310 "https://www.kernel.org/doc/html/latest/trace/rv/index.html") "7e8d965e-6b39-43bb-a69a-4747977b436f" #s(org-graph-edge relation "7e8d965e-6b39-43bb-a69a-4747977b436f" nil (0 59 18 4 3 2025 nil -1 nil) 2141 "man:iostat") "da34bba6-7ca1-4836-91d8-e16ae2a8fcb7" #s(org-graph-edge relation "da34bba6-7ca1-4836-91d8-e16ae2a8fcb7" nil (0 58 18 4 3 2025 nil -1 nil) 1924 "https://www.brendangregg.com/perf.html") "ef769379-7632-4c45-b933-1e3bfd858ea1" #s(org-graph-edge relation "ef769379-7632-4c45-b933-1e3bfd858ea1" nil (0 50 17 4 3 2025 nil -1 nil) 1600 "https://strace.io/") "292a62ff-6d56-42e2-88fa-bd13ddbc2fb1" #s(org-graph-edge relation "292a62ff-6d56-42e2-88fa-bd13ddbc2fb1" nil (0 48 17 4 3 2025 nil -1 nil) 1295 "https://docs.kernel.org/trace/index.html") "ab57dccf-c9f3-4347-b9d0-5731904f3d67" #s(org-graph-edge parent "ab57dccf-c9f3-4347-b9d0-5731904f3d67" nil (0 11 9 6 3 2025 nil -1 nil) 279 "7f92b7d3-8c42-4d25-849d-58928bc12ebb") "78ff8ddb-cc33-4538-9157-1a11cc04248d" #s(org-graph-edge relation "78ff8ddb-cc33-4538-9157-1a11cc04248d" nil (0 48 22 13 2 2025 nil -1 nil) 258 "https://sotrh.github.io/learn-wgpu/") "f1d8108d-f9fa-4ab6-b1e9-ca0b932552c5" #s(org-graph-edge relation "f1d8108d-f9fa-4ab6-b1e9-ca0b932552c5" nil (0 55 16 3 3 2025 nil -1 nil) 1017 "https://www.ietf.org/rfc/rfc1939.html") "3bdc7566-668c-4332-8684-7cfdbcd71c8f" #s(org-graph-edge relation "3bdc7566-668c-4332-8684-7cfdbcd71c8f" nil (0 54 16 3 3 2025 nil -1 nil) 751 "https://datatracker.ietf.org/doc/html/rfc9051") "1cf5b67e-e476-48a9-9560-7e0d49de9768" #s(org-graph-edge relation "1cf5b67e-e476-48a9-9560-7e0d49de9768" nil (0 53 16 3 3 2025 nil -1 nil) 518 "https://datatracker.ietf.org/group/jmap/about/") "3a05dc16-8faf-4004-a2ca-26f2eeee5dd5" #s(org-graph-edge relation "3a05dc16-8faf-4004-a2ca-26f2eeee5dd5" nil (0 52 16 3 3 2025 nil -1 nil) 173 "https://datatracker.ietf.org/doc/html/rfc5228") "eabb4e88-738d-42d2-986d-e5ffdd4c6fb5" #s(org-graph-edge relation "eabb4e88-738d-42d2-986d-e5ffdd4c6fb5" nil (0 35 17 3 3 2025 nil -1 nil) 2454 "https://xcb.freedesktop.org/") "bde20e62-dcd9-48fe-ba2b-bf795ed81a51" #s(org-graph-edge relation "bde20e62-dcd9-48fe-ba2b-bf795ed81a51" nil (0 37 17 3 3 2025 nil -1 nil) 2154 "https://gitlab.freedesktop.org/xorg/proto/xorgproto/-/blob/master/randrproto.txt?ref_type=heads") "eb66d5e4-e0bf-4f4a-a935-0fb30365dca2" #s(org-graph-edge relation "eb66d5e4-e0bf-4f4a-a935-0fb30365dca2" nil (0 14 15 22 2 2025 nil -1 nil) 1929 "https://www.freedesktop.org/wiki/Software/CompositeExt/") "f0a4403d-d5f1-4f7c-8d56-ab235ecb16dd" #s(org-graph-edge relation "f0a4403d-d5f1-4f7c-8d56-ab235ecb16dd" nil (0 13 15 22 2 2025 nil -1 nil) 1676 "https://www.x.org/wiki/guide/extensions/") "1b00b336-268e-4203-850d-12cb8b79c86c" #s(org-graph-edge child "1b00b336-268e-4203-850d-12cb8b79c86c" nil (0 31 17 3 3 2025 nil -1 nil) 1331 "4b669611-0283-4a6c-acfd-942868d5bee3") "6f534214-a89d-4cec-9c29-0f345fdc2199" #s(org-graph-edge relation "6f534214-a89d-4cec-9c29-0f345fdc2199" nil (0 44 21 14 2 2025 nil -1 nil) 914 "https://www.gnu.org/software/emacs/manual/html_node/auth/Secret-Service-API.html") "d34f4c76-4cee-4513-b172-c2a6034c2048" #s(org-graph-edge relation "d34f4c76-4cee-4513-b172-c2a6034c2048" nil (0 38 13 9 2 2025 nil -1 nil) 502 "http://freedesktop.org/wiki/Software/xdg-user-dirs") "e0ad1796-3d1e-4026-b019-e212756a205f" #s(org-graph-edge relation "e0ad1796-3d1e-4026-b019-e212756a205f" nil (0 37 13 9 2 2025 nil -1 nil) 269 "https://gitlab.freedesktop.org/xdg") "b754ec14-7d34-4504-9494-93532bd61cd5" #s(org-graph-edge relation "b754ec14-7d34-4504-9494-93532bd61cd5" nil (0 13 15 3 3 2025 nil -1 nil) 1713 "https://cr.yp.to/rumba20.html") "123c1580-8dca-4773-8879-9769ebd84ad0" #s(org-graph-edge relation "123c1580-8dca-4773-8879-9769ebd84ad0" nil (0 12 15 3 3 2025 nil -1 nil) 1522 "https://cr.yp.to/salsa20.html") "2f1c6753-397b-4ab9-9457-4e0136c6bf8b" #s(org-graph-edge relation "2f1c6753-397b-4ab9-9457-4e0136c6bf8b" nil (0 4 15 3 3 2025 nil -1 nil) 1336 "https://ed25519.cr.yp.to/") "dce824ff-24e2-4bf1-b0a9-b42f778dad39" #s(org-graph-edge relation "dce824ff-24e2-4bf1-b0a9-b42f778dad39" nil (0 11 15 3 3 2025 nil -1 nil) 1081 "https://en.wikipedia.org/wiki/EdDSA") "46e1e3dd-7c47-45bb-8b78-18a87b7258dd" #s(org-graph-edge relation "46e1e3dd-7c47-45bb-8b78-18a87b7258dd" nil (0 6 15 3 3 2025 nil -1 nil) 848 "https://cr.yp.to/ecdh.html") "6723d8fb-5e3d-4b38-96d5-3b054dbb7b58" #s(org-graph-edge relation "6723d8fb-5e3d-4b38-96d5-3b054dbb7b58" nil (0 7 15 3 3 2025 nil -1 nil) 547 "https://en.wikipedia.org/wiki/Elliptic-curve_Diffie%E2%80%93Hellman") "5add36a0-129f-466c-b493-b34aee8b99a6" #s(org-graph-edge parent "5add36a0-129f-466c-b493-b34aee8b99a6" nil (0 1 17 3 3 2025 nil -1 nil) 309 "b4579e67-0855-44e1-971d-1a727694af17") "b01ba656-940f-43bd-ae92-e0ac3b142028" #s(org-graph-edge relation "b01ba656-940f-43bd-ae92-e0ac3b142028" nil (0 36 15 3 3 2025 nil -1 nil) 673 "https://www.wireguard.com/repositories/") "17dd76c0-b08b-4df5-b9fb-c1dd6b84d812" #s(org-graph-edge relation "17dd76c0-b08b-4df5-b9fb-c1dd6b84d812" nil (0 36 15 3 3 2025 nil -1 nil) 258 "https://en.wikipedia.org/wiki/Virtual_private_network") "e7e88a43-5294-48fd-84dc-9f90a4ae193b" #s(org-graph-edge relation "e7e88a43-5294-48fd-84dc-9f90a4ae193b" nil (0 10 22 1 2 2025 nil -1 nil) 5075 "https://en.wikipedia.org/wiki/Real-time_Transport_Protocol") "19c29790-17f3-40f2-aa2b-03bc7e0bad68" #s(org-graph-edge relation "19c29790-17f3-40f2-aa2b-03bc7e0bad68" nil (0 24 17 4 3 2025 nil -1 nil) 4822 "https://datatracker.ietf.org/doc/html/rfc5426") "989ae244-f798-425c-bcf1-32014eafbd22" #s(org-graph-edge link "989ae244-f798-425c-bcf1-32014eafbd22" nil (0 46 15 3 3 2025 nil -1 nil) 4548 "52a7cb9d-5b78-4681-9146-2d8f5707c1a3") "33ad3584-2728-4f90-8fae-397f026731f1" #s(org-graph-edge relation "33ad3584-2728-4f90-8fae-397f026731f1" nil (0 37 15 3 3 2025 nil -1 nil) 4031 "https://ccrma.stanford.edu/groups/osc/index.html") "031f06eb-b4a6-4386-a17f-33712bf67181" #s(org-graph-edge parent "031f06eb-b4a6-4386-a17f-33712bf67181" nil (0 46 15 3 3 2025 nil -1 nil) 1977 "81e78198-a5ed-4fdd-b487-1bb3874ffa71") "d3e91177-ad7f-4d8d-82d9-5ac09f786774" #s(org-graph-edge link "d3e91177-ad7f-4d8d-82d9-5ac09f786774" nil (0 27 22 1 2 2025 nil -1 nil) 1237 "8e929d14-5562-4e6b-8ecc-41245faecec1") "f7e112ca-25b4-41f1-a756-2492eda9dd90" #s(org-graph-edge relation "f7e112ca-25b4-41f1-a756-2492eda9dd90" nil (0 11 22 1 2 2025 nil -1 nil) 789 "https://datatracker.ietf.org/doc/html/rfc7346") "a2f33ea0-51c3-45d8-8c19-03a95321384c" #s(org-graph-edge parent "a2f33ea0-51c3-45d8-8c19-03a95321384c" nil (0 47 15 3 3 2025 nil -1 nil) 327 "2c915d42-3f42-4a94-a2d7-af73c9938c7b") "10e75a1a-1de9-4ddf-a5b6-4b077d4cd4b1" #s(org-graph-edge relation "10e75a1a-1de9-4ddf-a5b6-4b077d4cd4b1" nil (0 34 19 3 2 2025 nil -1 nil) 1271 "https://letsencrypt.org/2014/11/18/announcing-lets-encrypt/") "692b4efb-ce4b-4d7b-a100-685815164ce4" #s(org-graph-edge relation "692b4efb-ce4b-4d7b-a100-685815164ce4" nil (0 21 21 1 2 2025 nil -1 nil) 1004 "https://www.rfc-editor.org/rfc/rfc9147") "a81ff891-504c-404b-9b7e-046d097b3c95" #s(org-graph-edge relation "a81ff891-504c-404b-9b7e-046d097b3c95" nil (0 36 19 3 2 2025 nil -1 nil) 573 "https://certifi.io/") "81e78198-a5ed-4fdd-b487-1bb3874ffa71" #s(org-graph-edge child "81e78198-a5ed-4fdd-b487-1bb3874ffa71" nil (0 46 15 3 3 2025 nil -1 nil) 2413 "031f06eb-b4a6-4386-a17f-33712bf67181") "5c9b8b56-6c37-4171-8da1-ac6e4e3cd0a1" #s(org-graph-edge relation "5c9b8b56-6c37-4171-8da1-ac6e4e3cd0a1" nil (0 40 15 3 3 2025 nil -1 nil) 1035 "https://developer.mozilla.org/en-US/docs/Web/HTTP") "52a7cb9d-5b78-4681-9146-2d8f5707c1a3" #s(org-graph-edge backlink "52a7cb9d-5b78-4681-9146-2d8f5707c1a3" nil (0 46 15 3 3 2025 nil -1 nil) 623 "989ae244-f798-425c-bcf1-32014eafbd22") "a2c33f5d-8e07-4122-98df-72d321ae313b" #s(org-graph-edge parent "a2c33f5d-8e07-4122-98df-72d321ae313b" nil (0 47 15 3 3 2025 nil -1 nil) 310 "2c915d42-3f42-4a94-a2d7-af73c9938c7b") "df23c94a-ed42-4be5-b7d9-351a4205b4d7" #s(org-graph-edge relation "df23c94a-ed42-4be5-b7d9-351a4205b4d7" nil (0 59 20 1 2 2025 nil -1 nil) 396 "https://pdos.csail.mit.edu/~petar/papers/maymounkov-kademlia-lncs.pdf") "29fcf858-c4ca-4315-a987-dce397465f17" #s(org-graph-edge relation "29fcf858-c4ca-4315-a987-dce397465f17" nil (0 57 20 1 2 2025 nil -1 nil) 185 "https://github.com/libp2p/specs") "1f6e6b6d-a64d-41d8-a60b-898c5024a87e" #s(org-graph-edge relation "1f6e6b6d-a64d-41d8-a60b-898c5024a87e" nil (0 24 15 22 2 2025 nil -1 nil) 777 "https://datatracker.ietf.org/doc/html/rfc6890") "2c915d42-3f42-4a94-a2d7-af73c9938c7b" #s(org-graph-edge child "2c915d42-3f42-4a94-a2d7-af73c9938c7b" nil (0 47 15 3 3 2025 nil -1 nil) 361 "a2c33f5d-8e07-4122-98df-72d321ae313b") "8e929d14-5562-4e6b-8ecc-41245faecec1" #s(org-graph-edge backlink "8e929d14-5562-4e6b-8ecc-41245faecec1" nil (0 27 22 1 2 2025 nil -1 nil) 570 "d3e91177-ad7f-4d8d-82d9-5ac09f786774") "c73d296a-47fe-4769-9802-86cac8a86090" #s(org-graph-edge relation "c73d296a-47fe-4769-9802-86cac8a86090" nil (0 51 22 13 2 2025 nil -1 nil) 186 "https://www.w3.org/TR/xml/") "f8cdf36a-9bf4-46bf-b33d-8338274ff9da" #s(org-graph-edge relation "f8cdf36a-9bf4-46bf-b33d-8338274ff9da" nil (0 24 17 4 3 2025 nil -1 nil) 195 "https://datatracker.ietf.org/doc/html/rfc5424") "13226398-1931-44a5-8914-7eb2be0c345e" #s(org-graph-edge relation "13226398-1931-44a5-8914-7eb2be0c345e" nil (0 13 19 17 1 2025 nil -1 nil) 176 "https://github.com/sigmf/SigMF/blob/sigmf-v1.x/sigmf-spec.md") "9dcb0f55-6bdc-4b81-a7f5-4c24901596ca" #s(org-graph-edge relation "9dcb0f55-6bdc-4b81-a7f5-4c24901596ca" nil (0 6 20 10 2 2025 nil -1 nil) 781 "https://www.w3.org/2001/sw/wiki/SPARQL") "69d2206b-c9bf-46ff-a354-d6428863559d" #s(org-graph-edge relation "69d2206b-c9bf-46ff-a354-d6428863559d" nil (0 10 20 10 2 2025 nil -1 nil) 409 "https://neo4j.com/blog/rdf-vs-property-graphs-knowledge-graphs/") "a6410358-ee73-41e6-a8f7-271edda02309" #s(org-graph-edge relation "a6410358-ee73-41e6-a8f7-271edda02309" nil (0 37 21 2 3 2025 nil -1 nil) 273 "https://en.wikipedia.org/wiki/HAR_(file_format)") "e2e6f554-2d28-4474-a1ed-3df4557e091d" #s(org-graph-edge relation "e2e6f554-2d28-4474-a1ed-3df4557e091d" nil (0 28 17 4 3 2025 nil -1 nil) 638 "https://en.wikipedia.org/wiki/INI_file") "1507e902-f244-42d4-9bc5-c684162a3aa0" #s(org-graph-edge relation "1507e902-f244-42d4-9bc5-c684162a3aa0" nil (0 27 17 4 3 2025 nil -1 nil) 441 "https://yaml.org/") "82949e4f-537a-4a3a-b901-06080eec82b1" #s(org-graph-edge relation "82949e4f-537a-4a3a-b901-06080eec82b1" nil (0 27 17 4 3 2025 nil -1 nil) 199 "https://toml.io/en/") "858d93bc-65b8-46e5-a8aa-342a14fbd20d" #s(org-graph-edge relation "858d93bc-65b8-46e5-a8aa-342a14fbd20d" nil (0 33 21 14 2 2025 nil -1 nil) 2011 "https://en.wikipedia.org/wiki/Open_Virtualization_Format") "ec17da11-a3d1-4343-9d0b-09c63c569db5" #s(org-graph-edge child "ec17da11-a3d1-4343-9d0b-09c63c569db5" nil (0 41 20 18 1 2025 nil -1 nil) 1504 "89199dcd-fabd-4952-b5e9-1b3ffaf06e6b") "83b24cd0-3c89-400e-b63b-64872569222b" #s(org-graph-edge relation "83b24cd0-3c89-400e-b63b-64872569222b" nil (0 49 22 22 2 2025 nil -1 nil) 391 "https://github.com/containers/") "f8829131-67eb-4d4d-a101-28f08eced9ae" #s(org-graph-edge relation "f8829131-67eb-4d4d-a101-28f08eced9ae" nil (0 22 21 14 2 2025 nil -1 nil) 11567 "https://wiki.mercurial-scm.org/ChangesetEvolution") "a62a2e17-8167-4812-b5ec-f4f9ef698f56" #s(org-graph-edge relation "a62a2e17-8167-4812-b5ec-f4f9ef698f56" nil (0 21 21 14 2 2025 nil -1 nil) 11239 "https://wiki.mercurial-scm.org/UsingExtensions") "be8e9117-4d72-40ea-a062-8029a3342248" #s(org-graph-edge relation "be8e9117-4d72-40ea-a062-8029a3342248" nil (0 21 21 14 2 2025 nil -1 nil) 1199 "https://www.mercurial-scm.org/") "442c8fbb-b09d-4f85-a068-2a0f6a2de430" #s(org-graph-edge relation "442c8fbb-b09d-4f85-a068-2a0f6a2de430" nil (0 20 21 14 2 2025 nil -1 nil) 907 "https://git-scm.com/book/en/v2/Git-Tools-Submodules") "36ccc6c1-1b2d-4a48-8c1c-714a43873407" #s(org-graph-edge relation "36ccc6c1-1b2d-4a48-8c1c-714a43873407" nil (0 40 18 6 2 2025 nil -1 nil) 252 "https://en.wikipedia.org/wiki/Version_control") "55bce339-207c-47fc-b829-7567d95e46fa" #s(org-graph-edge relation "55bce339-207c-47fc-b829-7567d95e46fa" nil (0 8 21 16 2 2025 nil -1 nil) 2489 "https://www.freedesktop.org/software/systemd/man/latest/systemd.service.html#Service%20Templates") "5fb03f4f-e7ba-47fe-a502-185348417aa4" #s(org-graph-edge relation "5fb03f4f-e7ba-47fe-a502-185348417aa4" nil (0 2 19 16 2 2025 nil -1 nil) 1066 "https://www.freedesktop.org/software/systemd/man/latest/systemd.unit.html") "27dd8c6f-e018-4c91-9113-325be8ee483a" #s(org-graph-edge relation "27dd8c6f-e018-4c91-9113-325be8ee483a" nil (0 55 18 16 2 2025 nil -1 nil) 832 "https://www.freedesktop.org/software/systemd/man/latest/systemd.html#") "da8ae0b8-adcf-4639-9cfa-01b7b9fb3c44" #s(org-graph-edge relation "da8ae0b8-adcf-4639-9cfa-01b7b9fb3c44" nil (0 52 18 16 2 2025 nil -1 nil) 237 "https://en.wikipedia.org/wiki/Init") "2f1f89cb-1b42-4155-b79e-b531659323af" #s(org-graph-edge relation "2f1f89cb-1b42-4155-b79e-b531659323af" nil (0 29 22 13 2 2025 nil -1 nil) 850 "https://jvernay.fr/en/blog/buddy-allocator/implementation/") "2ae80374-cb47-494a-be51-e7f267f80a99" #s(org-graph-edge relation "2ae80374-cb47-494a-be51-e7f267f80a99" nil (0 32 22 13 2 2025 nil -1 nil) 559 "https://en.wikipedia.org/wiki/Memory_pool") "9933d695-6379-4903-a4d5-0aa887bfa7d9" #s(org-graph-edge relation "9933d695-6379-4903-a4d5-0aa887bfa7d9" nil (0 17 16 27 2 2025 nil -1 nil) 2835 "https://github.com/tigerbeetle/tigerbeetle") "dd24ce27-3907-48e4-8b5d-8be8b2035ae1" #s(org-graph-edge relation "dd24ce27-3907-48e4-8b5d-8be8b2035ae1" nil (0 2 18 27 2 2025 nil -1 nil) 2556 "https://arrow.apache.org/") "3ce0b887-31ea-4a78-96a2-6671907a687a" #s(org-graph-edge relation "3ce0b887-31ea-4a78-96a2-6671907a687a" nil (0 16 19 16 2 2025 nil -1 nil) 2316 "https://datafusion.apache.org/") "3bd5f5f8-956b-49a4-b280-eec4a8c0f85e" #s(org-graph-edge relation "3bd5f5f8-956b-49a4-b280-eec4a8c0f85e" nil (0 16 19 16 2 2025 nil -1 nil) 1337 "https://www.ibm.com/docs/en/zos-basic-skills?") "03aa2c81-5318-45d7-853f-bbcfdb8e7d48" #s(org-graph-edge relation "03aa2c81-5318-45d7-853f-bbcfdb8e7d48" nil (0 7 19 16 2 2025 nil -1 nil) 1011 "https://en.wikipedia.org/wiki/Shard_(database_architecture)") "f239f934-a477-4050-8d19-3c2597a64b34" #s(org-graph-edge relation "f239f934-a477-4050-8d19-3c2597a64b34" nil (0 8 19 16 2 2025 nil -1 nil) 771 "https://en.wikipedia.org/wiki/Partition_(database)") "a833eb98-c31e-4492-ac07-e718a9bce086" #s(org-graph-edge relation "a833eb98-c31e-4492-ac07-e718a9bce086" nil (0 6 19 16 2 2025 nil -1 nil) 238 "https://en.wikipedia.org/wiki/Database") "9464f3df-5d9a-4ec8-a629-4c080399d664" #s(org-graph-edge relation "9464f3df-5d9a-4ec8-a629-4c080399d664" nil (0 36 17 4 3 2025 nil -1 nil) 6247 "https://www.ibm.com/think/topics/content-management-system") "9574ca65-e7f3-40cf-94c1-f05bc6628fd0" #s(org-graph-edge backlink "9574ca65-e7f3-40cf-94c1-f05bc6628fd0" nil (0 59 17 4 3 2025 nil -1 nil) 5861 "b597822b-b956-4959-a5e1-6bf42c191320") "10f68fe0-0451-4c43-b61a-69adf139f060" #s(org-graph-edge relation "10f68fe0-0451-4c43-b61a-69adf139f060" nil (0 32 17 4 3 2025 nil -1 nil) 5429 "https://en.wikipedia.org/wiki/System_integration_testing") "7eb1d3c6-606d-425d-8c2b-3847e42f0134" #s(org-graph-edge relation "7eb1d3c6-606d-425d-8c2b-3847e42f0134" nil (0 33 17 4 3 2025 nil -1 nil) 5040 "https://en.wikipedia.org/wiki/Framework") "dc13038b-91ba-4a5c-bc62-ad189033023d" #s(org-graph-edge child "dc13038b-91ba-4a5c-bc62-ad189033023d" nil (0 4 16 4 3 2025 nil -1 nil) 4836 "91c00d39-6541-4b29-8d6b-a5b8c770cab0") "8889ae64-a982-4f6c-a875-5cbae6dbb323" #s(org-graph-edge backlink "8889ae64-a982-4f6c-a875-5cbae6dbb323" nil (0 47 19 3 3 2025 nil -1 nil) 4523 "3bb08e71-1ce9-46ed-844a-31305162645e") "dbbe76e3-42ae-4cd3-b39a-a8c8d3a7c7c3" #s(org-graph-edge relation "dbbe76e3-42ae-4cd3-b39a-a8c8d3a7c7c3" nil (0 32 15 4 3 2025 nil -1 nil) 4147 "https://posix.opengroup.org/certification_guide.html") "188c1d7d-879b-4a72-a963-af278db56f99" #s(org-graph-edge relation "188c1d7d-879b-4a72-a963-af278db56f99" nil (0 56 15 4 3 2025 nil -1 nil) 3921 "https://posix.opengroup.org/testsuites.html") "0881a735-21ea-4509-aa97-b2d239cbbaf0" #s(org-graph-edge relation "0881a735-21ea-4509-aa97-b2d239cbbaf0" nil (0 56 15 4 3 2025 nil -1 nil) 3650 "https://posix.opengroup.org/posixfaq.html") "d20534de-706b-43cb-b1e9-f054d534a848" #s(org-graph-edge relation "d20534de-706b-43cb-b1e9-f054d534a848" nil (0 30 15 4 3 2025 nil -1 nil) 3172 "https://unix.org/what_is_unix/single_unix_specification.html") "7f92b7d3-8c42-4d25-849d-58928bc12ebb" #s(org-graph-edge child "7f92b7d3-8c42-4d25-849d-58928bc12ebb" nil (0 11 9 6 3 2025 nil -1 nil) 2847 "ab57dccf-c9f3-4347-b9d0-5731904f3d67") "adcd747b-2fdf-4686-abbb-26940bbb1a20" #s(org-graph-edge relation "adcd747b-2fdf-4686-abbb-26940bbb1a20" nil (0 39 18 17 1 2025 nil -1 nil) 2410 "https://cal-coop.gitlab.io/utena/utena-specification/main.pdf") "bd25630a-b72a-46c5-abf1-733f5c892bf6" #s(org-graph-edge backlink "bd25630a-b72a-46c5-abf1-733f5c892bf6" nil (0 2 20 3 3 2025 nil -1 nil) 1672 "e21c02a5-5039-42c2-8416-aa5d45e70cb6") "0e6b0635-a1ed-41ff-9129-a2e72461dc0b" #s(org-graph-edge relation "0e6b0635-a1ed-41ff-9129-a2e72461dc0b" nil (0 46 20 26 2 2025 nil -1 nil) 1208 "https://en.wikipedia.org/wiki/Von_Neumann_architecture") "69e45a0c-8352-4810-952a-c81b0f99d21b" #s(org-graph-edge relation "69e45a0c-8352-4810-952a-c81b0f99d21b" nil (0 25 19 22 2 2025 nil -1 nil) 694 "https://en.wikipedia.org/wiki/Hysteresis") "f08e3bbb-44cf-4036-8fb9-406d9f030f4f" #s(org-graph-edge relation "f08e3bbb-44cf-4036-8fb9-406d9f030f4f" nil (0 9 19 1 2 2025 nil -1 nil) 170 "https://en.wikipedia.org/wiki/OSI_model") "483ef3a4-c1d8-4fc4-988a-03e9f5e789ac" #s(org-graph-edge relation "483ef3a4-c1d8-4fc4-988a-03e9f5e789ac" nil (0 48 16 27 2 2025 nil -1 nil) 684 "https://web.eecs.umich.edu/~imarkov/10rules.pdf") "10cdeed6-9dca-42af-9b33-3d2a6addbddc" #s(org-graph-edge relation "10cdeed6-9dca-42af-9b33-3d2a6addbddc" nil (0 47 16 27 2 2025 nil -1 nil) 413 "https://github.com/tigerbeetle/tigerbeetle/blob/main/docs/TIGER_STYLE.md") "54831ddf-56d9-4307-a7e3-3790b13c6c9e" #s(org-graph-edge link "54831ddf-56d9-4307-a7e3-3790b13c6c9e" nil (0 57 10 6 3 2025 nil -1 nil) 3329 "789aa097-5f4a-4131-b9bd-0f153f8df88c") "bd66a9d3-9720-4db6-9d29-cb5ee241b8a5" #s(org-graph-edge relation "bd66a9d3-9720-4db6-9d29-cb5ee241b8a5" nil (0 47 10 6 3 2025 nil -1 nil) 2378 "https://en.wikipedia.org/wiki/Pattern_recognition") "d4140692-ebb8-478e-b933-062726efa859" #s(org-graph-edge relation "d4140692-ebb8-478e-b933-062726efa859" nil (0 4 19 4 3 2025 nil -1 nil) 2134 "https://www.brendangregg.com/methodology.html") "d181e466-49d6-4421-9282-d227618c5188" #s(org-graph-edge relation "d181e466-49d6-4421-9282-d227618c5188" nil (0 21 20 16 2 2025 nil -1 nil) 1502 "https://en.wikipedia.org/wiki/Information") "4700f502-0bab-4887-b925-224003cc3663" #s(org-graph-edge relation "4700f502-0bab-4887-b925-224003cc3663" nil (0 22 20 16 2 2025 nil -1 nil) 1261 "https://en.wikipedia.org/wiki/Information_system") "b597822b-b956-4959-a5e1-6bf42c191320" #s(org-graph-edge link "b597822b-b956-4959-a5e1-6bf42c191320" nil (0 59 17 4 3 2025 nil -1 nil) 922 "9574ca65-e7f3-40cf-94c1-f05bc6628fd0") "9d05f7b3-fc57-41ea-828e-f482be342bb7" #s(org-graph-edge relation "9d05f7b3-fc57-41ea-828e-f482be342bb7" nil (0 38 22 14 2 2025 nil -1 nil) 669 "https://en.wikipedia.org/wiki/Operations_management") "dfd57e14-4ef7-4bb9-9b86-0352cbf14c90" #s(org-graph-edge relation "dfd57e14-4ef7-4bb9-9b86-0352cbf14c90" nil (0 38 22 14 2 2025 nil -1 nil) 425 "https://en.wikipedia.org/wiki/Task_management") "4b96aef0-69cd-4493-be15-9ba0d62012c2" #s(org-graph-edge relation "4b96aef0-69cd-4493-be15-9ba0d62012c2" nil (0 38 22 14 2 2025 nil -1 nil) 181 "https://en.wikipedia.org/wiki/Project_management") "f48341d3-f9ab-44ac-9387-4d32e92aa011" #s(org-graph-edge backlink "f48341d3-f9ab-44ac-9387-4d32e92aa011" nil (0 0 14 6 3 2025 nil -1 nil) 3070 "c1fdfebb-0dec-420d-abf9-aec7a2de5633") "4bbc6288-b410-4171-aaca-db1c9bdec7e3" #s(org-graph-edge relation "4bbc6288-b410-4171-aaca-db1c9bdec7e3" nil (0 49 13 6 3 2025 nil -1 nil) 2705 "https://en.wikipedia.org/wiki/Futures_and_promises") "e980058d-60f2-482e-96ef-5e7323ccebf7" #s(org-graph-edge relation "e980058d-60f2-482e-96ef-5e7323ccebf7" nil (0 2 11 6 3 2025 nil -1 nil) 2420 "https://en.wikipedia.org/wiki/Multithreading_(computer_architecture)") "5fd4a7b5-2d71-4373-8c56-f65461e4d633" #s(org-graph-edge backlink "5fd4a7b5-2d71-4373-8c56-f65461e4d633" nil (0 7 14 6 3 2025 nil -1 nil) 2208 "7bf0993f-6212-4635-a071-bf2e7d9ba7f9") "2cf671a3-f33d-420e-9a9d-2eedd6cdcd43" #s(org-graph-edge child "2cf671a3-f33d-420e-9a9d-2eedd6cdcd43" nil (0 4 17 3 3 2025 nil -1 nil) 1552 "da0aecca-6d5b-4719-9235-6a11fe978b11") "7dfd88e4-5511-4ff8-99ce-0fbf464bde58" #s(org-graph-edge backlink "7dfd88e4-5511-4ff8-99ce-0fbf464bde58" nil (0 9 20 3 3 2025 nil -1 nil) 1019 "917c397b-01f2-4f02-8b27-abeeeaa463ab") "44659589-80a3-459b-ad29-d2e5b208b451" #s(org-graph-edge relation "44659589-80a3-459b-ad29-d2e5b208b451" nil (0 10 21 7 2 2025 nil -1 nil) 669 "https://en.wikipedia.org/wiki/Object-oriented_programming") "3a1058df-158c-49eb-bcc5-21b842ec966e" #s(org-graph-edge relation "3a1058df-158c-49eb-bcc5-21b842ec966e" nil (0 8 21 7 2 2025 nil -1 nil) 256 "https://en.wikipedia.org/wiki/Programming_language_theory") "5f17b96f-915b-460d-a60a-4b9bc9d7b007" #s(org-graph-edge relation "5f17b96f-915b-460d-a60a-4b9bc9d7b007" nil (0 20 22 14 2 2025 nil -1 nil) 502 "https://en.wikipedia.org/wiki/Derivative_(finance)") "5bea8dac-44fa-48e6-b7b6-4f971fad73e8" #s(org-graph-edge relation "5bea8dac-44fa-48e6-b7b6-4f971fad73e8" nil (0 20 22 14 2 2025 nil -1 nil) 283 "https://en.wikipedia.org/wiki/Finance") "598fc07b-3eab-46d7-abd2-510ee8135584" #s(org-graph-edge relation "598fc07b-3eab-46d7-abd2-510ee8135584" nil (0 27 12 1 3 2025 nil -1 nil) 781 "https://en.wikipedia.org/wiki/Rubber_duck_debugging") "fd1c94ca-18f8-420a-9ee5-2ed7b6ddfb9b" #s(org-graph-edge relation "fd1c94ca-18f8-420a-9ee5-2ed7b6ddfb9b" nil (0 47 18 17 1 2025 nil -1 nil) 541 "https://en.wikipedia.org/wiki/Software_cracking") "904371de-eaaf-4df9-a9df-4a2a443f2066" #s(org-graph-edge relation "904371de-eaaf-4df9-a9df-4a2a443f2066" nil (0 45 18 17 1 2025 nil -1 nil) 180 "https://en.wikipedia.org/wiki/Wardriving") "d3a6a367-5817-4bec-911a-87610ec7de92" #s(org-graph-edge relation "d3a6a367-5817-4bec-911a-87610ec7de92" nil (0 27 14 6 3 2025 nil -1 nil) 1105 "https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life") "f346f656-c938-46fa-b1e8-334c1eba3b21" #s(org-graph-edge relation "f346f656-c938-46fa-b1e8-334c1eba3b21" nil (0 41 22 14 2 2025 nil -1 nil) 867 "https://en.wikipedia.org/wiki/Game_theory") "b579b27e-6057-4012-9503-0eb710490ec1" #s(org-graph-edge relation "b579b27e-6057-4012-9503-0eb710490ec1" nil (0 57 22 14 2 2025 nil -1 nil) 640 "https://en.wikipedia.org/wiki/Macroeconomics") "6e111491-9ca8-4535-9642-d0bec178eed2" #s(org-graph-edge relation "6e111491-9ca8-4535-9642-d0bec178eed2" nil (0 40 22 14 2 2025 nil -1 nil) 404 "https://en.wikipedia.org/wiki/Microeconomics") "f21933e9-5fd6-4cc8-a964-2b75c753c8d4" #s(org-graph-edge relation "f21933e9-5fd6-4cc8-a964-2b75c753c8d4" nil (0 57 22 14 2 2025 nil -1 nil) 178 "https://en.wikipedia.org/wiki/Economics") "23185c5d-7470-4bf5-a700-99752c334333" #s(org-graph-edge child "23185c5d-7470-4bf5-a700-99752c334333" nil (0 57 17 3 3 2025 nil -1 nil) 1028 "6beca36e-6264-4741-9180-66e81bf58c49") "9e3802e1-6e58-4a5a-9a30-509e25122d31" #s(org-graph-edge relation "9e3802e1-6e58-4a5a-9a30-509e25122d31" nil (0 57 20 3 3 2025 nil -1 nil) 641 "https://en.wikipedia.org/wiki/Intermediate_representation") "3638f1d2-ebc8-4bbb-9242-4e6070a3b121" #s(org-graph-edge relation "3638f1d2-ebc8-4bbb-9242-4e6070a3b121" nil (0 56 20 3 3 2025 nil -1 nil) 407 "https://en.wikipedia.org/wiki/Optimizing_compiler") "439686d0-5275-4e0d-8eab-b6fd87d7a547" #s(org-graph-edge relation "439686d0-5275-4e0d-8eab-b6fd87d7a547" nil (0 56 20 3 3 2025 nil -1 nil) 178 "https://en.wikipedia.org/wiki/Compiler") "789aa097-5f4a-4131-b9bd-0f153f8df88c" #s(org-graph-edge backlink "789aa097-5f4a-4131-b9bd-0f153f8df88c" nil (0 57 10 6 3 2025 nil -1 nil) 1024 "54831ddf-56d9-4307-a7e3-3790b13c6c9e") "976c3073-07c5-4901-bb64-2b2e2f799170" #s(org-graph-edge relation "976c3073-07c5-4901-bb64-2b2e2f799170" nil (0 1 22 14 2 2025 nil -1 nil) 632 "https://en.wikipedia.org/wiki/Generative_artificial_intelligence") "cd514a66-4979-4983-8c9b-29b54eafa8dd" #s(org-graph-edge relation "cd514a66-4979-4983-8c9b-29b54eafa8dd" nil (0 1 22 14 2 2025 nil -1 nil) 252 "https://en.wikipedia.org/wiki/Artificial_intelligence") "dc19bb9a-3f8e-41ba-b352-2787b5f68897" #s(org-graph-edge relation "dc19bb9a-3f8e-41ba-b352-2787b5f68897" nil (0 40 20 2 3 2025 nil -1 nil) 9827 "https://reddit.com") "15830f8c-99cf-4034-9df2-86aea530a8ce" #s(org-graph-edge relation "15830f8c-99cf-4034-9df2-86aea530a8ce" nil (0 39 20 2 3 2025 nil -1 nil) 9557 "https://arxiv.org/") "58e80e6d-e99d-46db-8da8-ff397a304fb9" #s(org-graph-edge relation "58e80e6d-e99d-46db-8da8-ff397a304fb9" nil (0 39 20 2 3 2025 nil -1 nil) 9312 "https://dnsdumpster.com/") "86df9eba-9175-43c8-b083-d263cf0c800c" #s(org-graph-edge relation "86df9eba-9175-43c8-b083-d263cf0c800c" nil (0 38 20 2 3 2025 nil -1 nil) 9063 "https://yahoo.com") "0459c77d-86b9-4fbd-85fc-485c8923d457" #s(org-graph-edge relation "0459c77d-86b9-4fbd-85fc-485c8923d457" nil (0 38 20 2 3 2025 nil -1 nil) 8777 "https://stackoverflow.com/") "0c83fea5-c697-4409-961d-440a9ba2b548" #s(org-graph-edge relation "0c83fea5-c697-4409-961d-440a9ba2b548" nil (0 38 20 2 3 2025 nil -1 nil) 8564 "https://savannah.gnu.org/") "04f8bf69-e4bc-4a5a-83ba-f211df606857" #s(org-graph-edge relation "04f8bf69-e4bc-4a5a-83ba-f211df606857" nil (0 37 20 2 3 2025 nil -1 nil) 8377 "https://gnu.org") "043f7b08-abcf-4727-a772-9b64f7f43d58" #s(org-graph-edge relation "043f7b08-abcf-4727-a772-9b64f7f43d58" nil (0 36 20 2 3 2025 nil -1 nil) 8119 "https://wikipedia.org/") "9cad378b-bb5d-4005-9059-d8ac639ca85c" #s(org-graph-edge relation "9cad378b-bb5d-4005-9059-d8ac639ca85c" nil (0 35 20 2 3 2025 nil -1 nil) 7929 "https://amazon.com/") "99c4fb1a-715e-45aa-bac8-cd588fac8f0f" #s(org-graph-edge relation "99c4fb1a-715e-45aa-bac8-cd588fac8f0f" nil (0 35 20 2 3 2025 nil -1 nil) 7678 "http://google.com/") "41dfdeb8-e1c8-44ba-8235-e48da9c0ca32" #s(org-graph-edge relation "41dfdeb8-e1c8-44ba-8235-e48da9c0ca32" nil (0 35 20 2 3 2025 nil -1 nil) 7420 "https://www.youtube.com/") "537c7ed7-c5a3-43a0-8636-6f9185711622" #s(org-graph-edge relation "537c7ed7-c5a3-43a0-8636-6f9185711622" nil (0 34 20 2 3 2025 nil -1 nil) 7160 "https://www.linkedin.com/") "8e4d1a1b-9497-4291-b9fe-6d814b6935b4" #s(org-graph-edge relation "8e4d1a1b-9497-4291-b9fe-6d814b6935b4" nil (0 34 20 2 3 2025 nil -1 nil) 6870 "https://discord.com/") "005a209d-c429-410e-9ca0-f347b0ff646a" #s(org-graph-edge relation "005a209d-c429-410e-9ca0-f347b0ff646a" nil (0 13 12 1 3 2025 nil -1 nil) 6417 "https://www.electricitymaps.com/") "eb20a9f9-4c80-40d5-b4c1-153c8976db19" #s(org-graph-edge relation "eb20a9f9-4c80-40d5-b4c1-153c8976db19" nil (0 32 8 28 2 2025 nil -1 nil) 6151 "https://freesound.org/") "29407696-fd6e-428b-85a1-5616baf554d9" #s(org-graph-edge relation "29407696-fd6e-428b-85a1-5616baf554d9" nil (0 29 8 28 2 2025 nil -1 nil) 5707 "https://musicbrainz.org/") "ae7cfa47-aecd-4ce4-a0a7-19f71efe12ff" #s(org-graph-edge relation "ae7cfa47-aecd-4ce4-a0a7-19f71efe12ff" nil (0 31 8 28 2 2025 nil -1 nil) 5437 "https://metabrainz.org/") "d3271956-f2d8-41cf-ab3c-02b7f86e6cf4" #s(org-graph-edge relation "d3271956-f2d8-41cf-ab3c-02b7f86e6cf4" nil (0 28 8 28 2 2025 nil -1 nil) 5139 "https://pitchfork.com/") "246f5fca-c142-4c9e-b5f8-e59bb89feb9e" #s(org-graph-edge relation "246f5fca-c142-4c9e-b5f8-e59bb89feb9e" nil (0 53 19 22 2 2025 nil -1 nil) 4761 "https://www.weather.gov/") "67cd18d7-3c2d-461c-a61e-32cbff5be10a" #s(org-graph-edge relation "67cd18d7-3c2d-461c-a61e-32cbff5be10a" nil (0 53 19 22 2 2025 nil -1 nil) 4416 "https://www.noaa.gov/") "b03233cd-2dd2-4dc8-83ea-75f74981c4fa" #s(org-graph-edge relation "b03233cd-2dd2-4dc8-83ea-75f74981c4fa" nil (0 57 19 22 2 2025 nil -1 nil) 4230 "https://www.usa.gov/") "52f85631-e0b4-402d-8300-3b0f96cff72e" #s(org-graph-edge relation "52f85631-e0b4-402d-8300-3b0f96cff72e" nil (0 30 15 22 2 2025 nil -1 nil) 3832 "https://www.iana.org/") "8c348a7e-3d6c-4ee8-9bd5-1e57a9754a24" #s(org-graph-edge relation "8c348a7e-3d6c-4ee8-9bd5-1e57a9754a24" nil (0 27 15 22 2 2025 nil -1 nil) 3565 "https://datatracker.ietf.org/") "9edf9c19-de57-46f2-85c6-8de9df888057" #s(org-graph-edge relation "9edf9c19-de57-46f2-85c6-8de9df888057" nil (0 36 19 11 2 2025 nil -1 nil) 3247 "https://developer.ebay.com/develop") "314f6109-db30-45de-bda1-3b1084224b40" #s(org-graph-edge relation "314f6109-db30-45de-bda1-3b1084224b40" nil (0 34 19 11 2 2025 nil -1 nil) 2953 "https://bapi.craigslist.org/bulkpost-docs/v1/") "6448b881-6310-4f17-9d3d-874ec5fa3972" #s(org-graph-edge relation "6448b881-6310-4f17-9d3d-874ec5fa3972" nil (0 29 19 11 2 2025 nil -1 nil) 1983 "https://open.nytimes.com/abra-an-enterprise-framework-for-experimentation-at-the-times-57f8931449cd") "218869f2-d154-490b-ab0a-88fb23ca0368" #s(org-graph-edge relation "218869f2-d154-490b-ab0a-88fb23ca0368" nil (0 29 15 1 2 2025 nil -1 nil) 712 "https://www.reddit.com/r/buildapc/comments/g7tum/comment/c1lkk6i/") "0ef132b4-d324-4bf9-86d0-94ada3ef04b3" #s(org-graph-edge relation "0ef132b4-d324-4bf9-86d0-94ada3ef04b3" nil (0 51 16 1 2 2025 nil -1 nil) 237 "https://www.ozbargain.com.au/node/675611"))))
48. make-dot-tree dot
(mapcar #'(lambda (x)
(princ (format "\"%s\" -> \"%s\";\n" (cl-first x) (cl-second x))))
table)
49. gen-dot-tree dot
digraph {
rankdir=TB;
splines=true;
node [shape=box];
$input
}
50. dot-version dot
dot - graphviz version 12.2.1 (0)
51. slime lisp
(unless (slime-connected-p)
(slime))
52. user-slime lisp
(when (slime-connected-p)
(slime-eval '(asdf:load-system :user ))
(slime-repl-set-package "USER" ))
53. prelude-slime lisp
(when (slime-connected-p)
(slime-eval '(asdf:load-system :prelude ))
(slime-repl-set-package "USER" ))
54. std-slime lisp
(when (slime-connected-p)
(slime-eval '(asdf:load-system :std ))
(slime-repl-set-package "STD-USER" ))
55. test-slime lisp
(when (slime-connected-p)
(slime-eval '(asdf:load-system :core/tests ))
(slime-repl-set-package "CORE/TESTS" ))
56. lisp-system-files* lisp
(let ((*print-length* 512)
(system (asdf:find-system system)))
(flatten
(mapcar
(lambda (s)
(mapcar
(lambda (x) (remove-string (namestring (asdf:system-source-directory system)) (namestring x)))
(doc:doc-files s)))
(doc:doc-dependencies (doc:system-documentation system)))))
57. lisp-system-files lisp
(let ((system (asdf:find-system system)))
(flatten
(mapcar
(lambda (x) (remove-string (namestring (asdf:system-source-directory system)) (namestring x)))
(doc:doc-files (doc:system-documentation system)))))
58. lisp-dist-stats lisp
(let ((dist (ql-dist:dist dist)))
`((:systems ,(length (ql-dist:provided-systems dist)))
(:packages ,(length (list-all-packages)))
(:symbols ,(length (package-symbols :core )))
(:features ,(length *features*))
(:shared-objects ,(length sb-sys:*shared-objects*))
(:linkage-info ,(length (hash-table-keys (car sb-sys:*linkage-info*))))
(:logical-hosts ,(length *logical-hosts*))))
:SYSTEMS
5688
:PACKAGES
593
:SYMBOLS
3255
:FEATURES
86
:SHARED-OBJECTS
20
:LINKAGE-INFO
2194
:LOGICAL-HOSTS
2
59. lisp-system-directory lisp
(namestring (asdf:system-source-directory (asdf:find-system system)))
60. lisp-system-depends-on lisp
(asdf:system-depends-on (asdf:find-system system))
61. lisp-system-dependents lisp
(mapcar 'asdf:component-name (doc::find-system-dependents (asdf:find-system system)))
62. lisp-system-depencies lisp
(mapcar 'name (doc:doc-dependencies (doc:system-documentation system)))
63. lisp-system-packages lisp
(mapcar 'name (doc:doc-packages (doc:system-documentation system)))
64. lisp-system-tests lisp
(mapcar 'name (rt:tests (rt:find-suite system)))
65. lisp-test-system lisp
(rt:do-tests (rt:find-suite system) :force t)
66. lisp-package-dependencies lisp
(mapcar 'name (flatten (doc:doc-dependencies (doc:package-documentation package))))
67. lisp-package-dependents lisp
(mapcar 'name (flatten (doc:doc-dependents (doc:package-documentation package))))
68. lisp-package-files lisp
(mapcar 'namestring (map 'list 'path (doc:doc-files (doc:package-documentation package))))
69. lisp-package-symbols lisp
(map 'list 'name (doc:doc-symbols (doc:package-documentation package)))
70. lisp-dist-systems lisp
(map 'list 'ql-dist:name (doc::doc-systems (doc:dist-documentation dist)))
71. cargo-update-dir rust
set -eu
case $0 in
(/*) dir =${0 %/*}/;;
(*/*) dir =./${0 %/*};;
(*) dir =.;;
esac
find "$dir/.." -name Cargo.toml -execdir cargo update \;
72. rust-target-triple rust
rustc -vV | sed -n -e 's/^host: //p'
73. post-align-table table
(with-temp-buffer
(erase-buffer)
(cl-assert text nil "PostAlignTables received nil instead of text " )
(insert text)
(beginning-of-buffer)
(org-mode)
(while
(search-forward-regexp org-table-any-line-regexp nil t)
(org-table-align)
(org-table-recalculate 'iterate)
(goto-char (org-table-end)))
(buffer-string))
74. insert-table-from-file table fs
(let* ((klist (cl-remove-if (lambda (x) (equal (cadr x) "" ))
`(("ATTR_LATEX" ,newattr) ("CAPTION" ,newcaption) ("NAME" ,newname))))
(tbl
(with-temp-buffer
(org-mode)
(insert-file-contents fname)
(goto-char (point-min))
(unless (re-search-forward
(concat "^[ \t]*#\\+ \\ ( tbl \\ ) ?name:[ \t]*"
(regexp-quote tname) "[ \t]*$" )
nil t)
(user-error "Can't find table named %s in file" tname fname))
(forward-line 0)
(let ((tstart (match-beginning 0))
tend)
(while (looking-at "^[ \t]*#\\+ \\ ( [ ^ :]+ \\ ) : * \\ ( .* \\ ) " )
(add-to-list 'klist `(,(upcase (match-string 1)) ,(match-string 2)))
(delete-region (point) (line-end-position))
(kill-line))
(unless (looking-at org-table-line-regexp)
(looking-at "^.*$" )
(user-error "no table at location of %s, Looking-at: ' %s '" tname (match-string 0)))
(goto-char (org-table-end))
(while (looking-at-p "^[ \t]*#\\+TBLFM:" )
(forward-line 1))
(buffer-substring tstart (point))))))
(setq klist (nreverse klist))
(dolist (elem '("NAME" "CAPTION" "ATTR_LATEX" ))
(when (assoc elem klist)
(princ (format "#+%s: %s\n" elem (cadr (assoc elem klist))))))
(princ tbl))
76. filter-table table
(let ((lst (split-string vals)))
(concatenate 'list (loop for row in tbl
if (member (let ((field (nth col row)))
(if (numberp field)
(number-to-string field)
field)) lst)
collect row into newtbl
finally return newtbl)))
77. filter-table-re table rx
(let ((lst (split-string vals)))
(concatenate 'list (loop for row in tbl
if (let* ((rawfield (nth col row))
(field (if (numberp rawfield)
(number-to-string rawfield)
rawfield)))
(loop for regx in lst
when(string-match-p regx field) return 't
finally return nil))
collect row into newtbl
finally return newtbl)))
78. group-table table
import pandas as pd
import numpy as np
import orgbabelhelper as obh
import sys
import re
df = obh.orgtable_to_dataframe(tbl)
grparr = re.split(r",\s*" , grp)
df = df[re.split(r",\s*" , rescols) + grparr]
for elem in grparr:
assert elem in df.columns, "Error: group column %s not in table columns %s" % (elem, "," .join(df.columns))
if op == "sum" :
res = df.groupby(grparr).sum ()
else :
error("operation %s not implemented" % op)
sys.exit (1)
print (obh.dataframe_to_orgtable(res))
79. insert-file fs
(cl-labels ((wrap-src
(lang)
(list (format "#+BEGIN_SRC %s :eval never :exports source\n" lang)
"#+END_SRC\n" )))
(let ((wrappers
(pcase (file-name-extension filename)
("py" (wrap-src "python" ))
(".el" (wrap-src "emacs-lisp" ))
(t '("#+BEGIN_EXAMPLE\n" "#+END_EXAMPLE\n" )))))
(with-temp-buffer
(goto-char (point-min))
(insert (format-time-string "# inserted at %Y-%m-%d %H:%M:%S\n" ))
(insert (car wrappers))
(insert-file-contents filename)
(goto-char (point-max))
(insert (car (cdr wrappers)))
(buffer-string))))
80. random io
dd if =/dev/urandom of =$file count =$count bs =$bs
dd if =/dev/urandom count =1 bs =128 | sha512sum
5f6ce6c42a70f997248c5b811a31057943b786082a9954483d675061c4c2b0195d5645d98f5b2433a0dbdb8fffbd00bafaf3b17ba1137e173d268b2adf8d8c74 -