;;; links.lisp --- A collection of useful links ;; $Id: links.lisp,v 1.38 2024/05/16 20:12:51 oc45ujef Exp $ ;; Author: Florian Guthmann ;; Created: 2023-07-10 ;; Version: 0.1 ;; Copyright (C) 2023 Florian Guthmann ;;; Commentary: ;; Die Klammern wie ein Labyrinth, verschlungen und verflochten, ;; Enthüllten sie Geheimnisse, die dem Verstand entfloh'n, ;; Ein Schatz, verborgen tief im Wald, den nur die Weisen mochten, ;; In ihrer Programmierkunst fanden sie den gold'nen Lohn. ;;; Code: (require "asdf") (eval-when (:compile-toplevel :load-toplevel :execute) (asdf:load-system :spinneret) (asdf:load-system :local-time)) (defpackage :links (:use :common-lisp :spinneret :local-time)) (in-package :links) (defun unwords-symbols (symbols) (unless (null symbols) (format nil "~{~a~^ ~}" (mapcar #'(lambda (tag) (string-downcase (symbol-name tag))) symbols)))) (defun timestamp () (format-timestring nil (now) :format '(:year #\- (:month) #\- (:day 2) " " :short-weekday " " (:hour 2) #\: (:min 2)))) (defun names (ns) (if (listp ns) (format nil "~{~a~^, ~}" ns) ns)) (deftag link (body attrs &key href title author tags) (declare (ignore body)) `(:li (:a :href ,href :class (unwords-symbols (,@tags)) ,@attrs ,title) ,(when author `(:span :class "link-author" ,author)))) (deftag song (body attrs &key href title artist) (declare (ignore body)) `(:li (:a :href ,href ,title ,@attrs (:span :class "song-artist" (names (,@artist)))))) (deftag recording (body attrs &key href title artist location year) (declare (ignore body)) `(:li (:a :href ,href ,@attrs ,(when title `(:span :class "recording-title" ,title)) ,(when artist `(:span :class "recording-artist" (names (,@artist)))) ,(when location `(:span :class "recording-location" ,location)) ,(when year `(:span :class "recording-year" ,year))))) (deftag category (entries attrs &key title id description collapsed) (if collapsed `(:section :id ,id ,@attrs (:details (:summary ,title) ,(when description `(:p ,description)) (:ul (progn ,@entries)))) `(:section :id ,id ,@attrs ,(when description `(:p ,description)) (:h* ,title) (:ul (progn ,@entries))))) (deftag site (entries attrs &key title description author style lang) `(progn (:doctype) (:html :lang ,lang ,@attrs (:head (:title ,title) (:meta :charset "utf-8") (:meta :name "description" :content ,description) (:meta :name "viewport" :content "width=device-width, initial-scale=1") (:link :rel "stylesheet" :type "text/css" :href ,style) (:link :rel "icon" :type "image/png" :href "/icons/world1.png")) (:body (:h* ,title) (:main (progn ,@entries)) (:footer (let ((time (timestamp))) (:time :datetime time time)) (:a :href "/~oc45ujef" ,author) (:a :href "/~oc45ujef/links.diff.html" "History") (:a :href "links.lisp" "Peel slowly and see")))))) (with-open-file (output-stream "links.html" :direction :output :if-exists :supersede :if-does-not-exist :create) (let ((*html* output-stream)) (with-html (site :title "Links zu interessanten Themen" :description "Eine Sammlung von Links, zu diversen Themen" :author "Florian Guthmann" :style "/~oc45ujef/style/pages/links.css" :lang "de" (category :title "Nix" :id "nix" (link :href "https://nixos.wiki" :title "NixOS Wiki") (link :href "https://book.divnix.com" :title "Nix Book") (link :href "https://search.nix.gsc.io" :title "Nixpkgs Code Search") (link :href "https://status.nixos.org" :title "Nix Channel Status") (link :href "https://nix-community.github.io/home-manager" :title "Home Manager Manual") (link :href "https://nix.dev" :title "Nix development guide") (link :href "https://noogle.dev" :title "noogle (hoogle for nix)")) (category :title "Programmiersprachen" :id "plt" (link :href "https://www.okmij.org/ftp" :title "The FTP site") (link :href "https://esolangs.org" :title "Esoteric Programming Languages Wiki") (link :href "http://www.rbjones.com/rbjpub/logic/cl/tlc001.htm" :title "Barendregt's Lambda Cube") (link :href "https://www.win.tue.nl/%7Ewscor/woeginger/P-versus-NP.htm" :title "P-versus-NP page") (category :title "Haskell" (link :href "https://ghc.gitlab.haskell.org/ghc/doc/users_guide/exts.html" :title "GHC Language extensions") (link :href "https://serokell.io/blog/type-families-haskell" :title "Type Families in Haskell: The Definitive Guide") (link :href "https://lexi-lambda.github.io/blog/2021/03/25/an-introduction-to-typeclass-metaprogramming" :title "An Introduction To Typeclass Metaprogramming") (link :href "https://blog.ocharles.org.uk/blog/posts/2016-01-26-transformers-free-monads-mtl-laws.html" :title "Monad transformers, free monads, mtl, laws and a new approach") (link :href "https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/parallel_haskell2.pdf" :title "A Tutorial on Parallel and Concurrent Programming in Haskell" :tags '(pdf) :author (:abbr :title "Simon Peyton Jones" "spj")) (link :href "https://web.cecs.pdx.edu/~mpj/pubs/springschool95.pdf" :title "Functional Programming with Overloading and Higher-Order Polymorphism" :tags '(pdf)) (link :href "https://www.cse.chalmers.se/~rjmh/afp-arrows.pdf" :title "Programming with Arrows" :tags '(pdf)) (link :href "https://wiki.haskell.org/Meet_Bob_The_Monadic_Lover" :title "Meet Bob The Monadic Lover") (link :href "https://www.willamette.edu/~fruehr/haskell/evolution.html" :title "The Evolution of a Haskell Programmer")) (category :title "Agda" (link :href "https://agda.readthedocs.io/en/latest" :title "Agda Documentation") (link :href "https://plfa.github.io" :title "Programming Language Foundations In Agda") (link :href "https://github.com/cedille/ial" :title "Iowa Agda Library") (link :href "https://github.com/NixOS/nixpkgs/blob/master/doc/languages-frameworks/agda.section.md" :title "Use Agda Libraries on NixOS") (link :href "https://arxiv.org/abs/2005.07059" :title "Formalizing Category Theory in Agda" :tags '(arxiv)) (link :href "https://unimath.github.io/agda-unimath" :title "Univalent mathematics in Agda")) (category :title "Kategorientheorie" (link :href "http://conal.net/papers/compiling-to-categories/compiling-to-categories.pdf" :title "Compiling to Categories" :tags '(pdf)) (link :href "https://boris-marinov.github.io/category-theory-illustrated" :title "Category Theory Illustrated") (link :href "https://www.youtube.com/watch?v=H0Ek86IH-3Y" :title "27 Unhelpful Facts About Category Theory" :tags '(video)) (link :href "https://bartoszmilewski.com/2014/10/28/category-theory-for-programmers-the-preface" :title "Category Theory for Programmers" :author "Bartosz Milewski") (link :href "https://kerodon.net" :title "kerodon - homotopy coherent mathematics")) (category :title "Coq" (link :href "https://pjreddie.com/coq-tactics" :title "Coq Tactics Index") (link :href "https://coq.inria.fr/refman/proof-engine/ssreflect-proof-language.html" :title "ssreflect") (link :href "https://zenodo.org/record/4457887/files/book.pdf" :title "Mathematical Components" :tags '(pdf)) (link :href "http://adam.chlipala.net/cpdt/html/toc.html" :title "Certified Programming with Dependent Types" :author "Adam Chlipala") (link :href "http://www.konne.me/2015/08/17/paradoxes.html" :title "3 Shocking Ways to Break Mathematics") (link :href "https://hal.science/hal-02127698/document" :title "Graph Theory In Coq" :tags '(pdf)) (link :href "https://thaliaarchi.github.io/coq-turing-typeclass" :title "Coq typeclass resolution is Turing-complete")) (category :title (:abbr :title "Homotopy Type Theory" "HoTT") (link :href "https://homotopytypetheory.org/2011/04/10/just-kidding-understanding-identity-elimination-in-homotopy-type-theory" :title "Identity Elimination in HoTT") (link :href "https://1lab.dev" :title "1lab") (link :href "https://thehottgameguide.readthedocs.io/en/latest/index.html" :title "The HoTT Game") (link :href "https://github.com/martinescardo/HoTTEST-Summer-School" :title "HoTTEST Summer School") (link :href "https://raw.githubusercontent.com/martinescardo/HoTTEST-Summer-School/main/HoTT/hott-intro.pdf" :title "Introduction to Homotopy Type Theory" :tags '(pdf))) (category :title "Konkatenative Sprachen" (link :href "https://concatenative.org" :title "Concatenative Language Wiki") (link :href "https://nsl.com/misc/papers/The%20Theory%20of%20Concatenative%20Combinators.htm" :title "The Theory of Concatenative Combinators") (link :href "https://hypercubed.github.io/joy/html/j02maf.html" :title "Mathematical foundations of Joy")) (category :title "Idris" (link :href "https://www.type-driven.org.uk/edwinb/papers/idris2.pdf" :title "Idris 2: Quantitative Type Theory in Action" :tags '(pdf))) (category :title "{λ,}Prolog" :id "prolog" (link :href "https://www.metalevel.at/prolog" :title "The Power of Prolog") (link :href "https://prologhub.com" :title "PrologHub") (link :href "https://arxiv.org/pdf/0911.2899.pdf" :title "Coding Guidelines for Prolog" :tags '(pdf)) (link :href "https://book.simply-logical.space/src/simply-logical.html" :title "Simply Logical - Intelligent Reasoning by Example")) (category :title "C" :id "c" (link :href "https://raw.githubusercontent.com/VernonGrant/gnu-c-language-manual/main/gnu-c-language-manual.pdf" :title "GNU C Language Introduction and Reference Manual" :tags '(pdf) :author (:abbr :title "Richard Stallman" "rms")) (link :href "https://hal.inria.fr/hal-02383654/file/ModernC.pdf" :title "Modern C" :tags '(pdf)) (link :href "https://cdecl.org" :title "C gibberish ↔ English")) (category :title "Sonstiges" (link :href "https://www.microsoft.com/en-us/research/wp-content/uploads/2016/08/algeff-tr-2016-v2.pdf" :title "Algebraic Effects for Functional Programming" :tags '(pdf)) (link :href "https://dl.acm.org/doi/pdf/10.1145/99370.99404" :title "Theorems for free!" :author "Philip Wadler" :tags '(pdf)) (link :href "https://arxiv.org/pdf/1311.6125.pdf" :title "Full Abstraction for PCF" :tags '(pdf)) (link :href "https://openscad.org/cheatsheet" :title "OpenSCAD Cheatsheet"))) (category :title "Besondere Bücher/Paper" :id "books" (link :href "https://www-cs-faculty.stanford.edu/~knuth/taocp.html" :title (:abbr :title "The Art of Computer Programming" "TAoCP") :author "Donald E. Knuth") (link :href "https://en.wikipedia.org/wiki/G%C3%B6del,_Escher,_Bach" :title (:abbr :title "Gödel, Escher, Bach" "GEB")) (link :href "https://dl.acm.org/doi/pdf/10.1145/359576.359579" :title "Can Programming Be Liberated from the von Neumann Style? A Functional Style and Its Algebra of Programs" :author "John Backus" :tags '(pdf)) (link :href "https://www.cs.utexas.edu/users/EWD" :title "Manuscripts of Edsger W. Dijkstra" :author "E. W. Dijkstra") (link :href "http://www.rbjones.com/rbjpub/index.htm" :title "The Philosophy of Roger Bishop Jones")) (category :title "{,La}TeX" :id "latex" (link :href "https://assets.bitbashing.io/modern-latex.pdf" :title "Modern LaTeX" :tags '(pdf)) (link :href "https://detexify.kirelabs.org/classify.html" :title "Detexify") (link :href "https://math.mit.edu/~dspivak/files/symbols-all.pdf" :title "The Comprehensive LaTeX Symbol List" :tags '(pdf)) (link :href "https://mirror.dogado.de/tex-archive/macros/latex/contrib/prftree/prftreedoc.pdf" :title "Proof Trees in LaTeX" :tags '(pdf)) (link :href "https://www.ams.org/arc/tex/amsmath/amsldoc.pdf" :title (progn "User's Guide for the " (:code "amsmath") " Package") :tags '(pdf)) (link :href "https://ctan.net/macros/latex/contrib/nag/nag.pdf" :title (progn "The " (:code "nag") " package") :tags '(pdf)) (link :href "https://texfaq.org" :title "The TeX Frequently Asked Question List") (link :href "https://plain-xetex.neocities.org" :title "Plain XeTeX")) (category :title "git" :id "git" (link :href "https://docs.gitlab.com/ee/topics/git" :title "Git Tutorial") (link :href "https://learngitbranching.js.org" :title "Learn Git Branching") (link :href "https://git-send-email.io" :title "Learn to use git send-email")) (category :title "Emacs" :id "emacs" (link :href "https://emacsdocs.org" :title "Emacs Docs") (link :href "https://github.com/meow-edit/meow/blob/master/EXPLANATION.org" :title "meow-edit") (link :href "https://orgmode.org/org.html" :title "The Org Manual") (link :href "https://www.finseth.com/craft" :title "The Craft of Text Editing --or-- Emacs for the Modern World")) (category :title (:code "{shell,unix}") :id "shell" (link :href "https://onceupon.github.io/Bash-Oneliner" :title "Bash Oneliners") (link :href "https://wiki.bash-hackers.org" :title "The Bash Hackers Wiki") (link :href "https://github.com/dylanaraps/pure-sh-bible" :title "pure sh bible") (link :href "https://cron.help" :title "cron helper") (link :href "http://texteditors.org" :title "Text Editor Wiki") (link :href "https://web.mit.edu/~simsong/www/ugh.pdf" :title "Unix Haters Handbook" :tags '(pdf)) (link :href "https://readline.kablamo.org/emacs.html" :title "Readline Cheat Sheet")) (category :title "Web" :id "web" (link :href "https://developer.mozilla.org/en-US/docs/Web/HTML/Element" :title "HTML elements reference") (link :href "https://unicode-table.com" :title "Unicode Table") (link :href "https://webdevelopmentmanifesto.com" :title "Web Development Manifesto") (link :href "https://colorbrewer2.org" :title "colorbrewer") (link :href "https://infiniteundo.com/post/25326999628/falsehoods-programmers-believe-about-time" :title "Falsehoods Programmers Believe About Time") (link :href "https://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-titles" :title "Falsehoods Programmers Believe About Titles") (link :title "ublock filter templates" :href "https://letsblock.it/filters")) (category :title "Kryptographie" :id "crypto" (link :href "https://madaidans-insecurities.github.io" :title "Security & Privacy Evaluations") (link :href "https://cryptopals.com" :title "cryptopals") (link :href "https://cryptohack.org" :title "cryptohack")) (category :title "Mathematik" :id "maths" (link :href "https://ncatlab.org" :title "nLab") (category :title "Logik" (link :href "https://www.cip.ifi.lmu.de/~langeh/test/1924%20-%20Schoenfinkel%20-%20Ueber%20die%20Bausteine%20der%20mathematischen%20Logik.pdf" :title "Über die Bausteine der mathematischen Logik" :tags '(pdf)) (link :href "https://web.archive.org/web/20200219165057/https://pdfs.semanticscholar.org/9bea/866c143326aeb700c20165a933f583b16a46.pdf" :title "Modal Logic for Open Minds" :tags '(pdf)) (link :href "https://github.com/michaelt/martin-lof" :title "The collected works of Per Martin-Löf") (link :href "https://www.solipsys.co.uk/new/APointAgainstTheAxiomOfChoice.html?AxiomOfChoice" :title "A Point Against The Axiom Of Choice") (link :href "https://www.solipsys.co.uk/new/InDefenseOfTheAxiomOfChoice.html?APointAgainstTheAxiomOfChoice" :title "In Defense Of The Axiom Of Choice") (link :href "https://www.logicmatters.net" :title "Logic Matters")) (category :title "Spieltheorie" (link :href "https://par.nsf.gov/servlets/purl/10050159" :title "Algorithmic Game Theory in Coq" :tags '(pdf)) (link :href "https://arxiv.org/abs/2212.07735" :title "Higher-order Games with Dependent Types" :tags '(arxiv))) (category :title "Topologie" (link :href "https://ncatlab.org/nlab/show/Introduction+to+Topology" :title "Introduction to Topology") (link :href "https://faubox.rrze.uni-erlangen.de/dl/fi58aN6vhfMSDdqCsZM5Xc7H/?inline" :title "Topologie" :author "Meusburger") (link :href "https://www.youtube.com/playlist?list=PLd8NbPjkXPliJunBhtDNMuFsnZPeHpm-0" :title "Topology Video Series" :author "Marius Furter" :tags '(video)) (link :href "https://topology.pi-base.org" :title "π-Base – A community database of topological counterexamples")) (category :title "Diverses" (link :href "https://www.solipsys.co.uk/new/ThePointOfTheBanachTarskiTheorem.html" :title "The Point Of The Banach Tarski Theorem") (link :href "https://plato.stanford.edu/entries/platonism-mathematics" :title "Platonism in the Philosophy of Mathematics") (link :href "https://rue-a.github.io/L-Systems" :title "Lindenmayer Systems") (link :href "https://www1.biologie.uni-hamburg.de/b-online/e28_3/lsys.html" :title "An introduction to Lindenmayer Systems") (link :href "https://easings.net" :title "Easing functions"))) (category :title "Philosophie" :id "phil" (link :href "https://plato.stanford.edu" :title "Stanford Encyclopedia of Philosophy") (link :href "https://www.existentialcomics.com" :title "Existential Comics") (link :href "https://historyofphilosophy.net" :title "History Of Philosophy Without Any Gaps") (link :href "https://terpconnect.umd.edu/~dcrocker/Courses/Docs/Singer-Famine%20Affluence%20Morality.pdf" :title "Famine, Affluence, and Morality" :tags '(pdf)) (link :href "https://kumu.io/GOliveira/philosophers-web" :title "Map of influences in philosophy")) (category :title "Sonstiges" :id "misc" (link :href "https://choosealicense.com" :title "Choose an open source license") (link :href "https://eurkey.steffen.bruentjen.eu" :title "EurKey - The European Keyboard Layout") (link :href "https://www.phrases.org.uk" :title "The Phrase Finder") (link :href "http://shell.aiei.ch/typography" :title "Font Specimen Creator") (category :title "File Sharing" (link :href "https://snapdrop.net" :title "snapdrop (LAN)") (link :href "https://github.com/magic-wormhole/magic-wormhole" :title "magic-wormhole") (link :href "http://www.complang.tuwien.ac.at/anton/why-not-pdf.html" :title "What is the PDF format good for?")) (category :title "„Spiele“" (link :href "https://decisionproblem.com/paperclips" :title "Paperclips") (link :href "https://type-signature.com" :title "Type-Signature") (link :href "http://recursivedrawing.com/draw.html" :title "Recursive Drawing"))) (category :title "Musik" :id "music" (link :href "/~oc45ujef/misc/songs.html" :title "Lieder die ich mag") (category :title "Lieder" :id "songs" :collapsed t :description "Live-Aufnahmen / Lieder die nicht auf einschlägigen Streaming-Plattformen (außer YouTube) erhältlich sind." (song :title "Sleep" :artist "Slowdive" :href "https://www.youtube.com/watch?v=6ey4yAgLZlw") (song :title "Ants" :artist "John Frusciante" :href "https://www.youtube.com/watch?v=0RfQ3m5sjGM") (song :title "Ride Into The Sun" :artist "The Velvet Underground" :href "https://www.youtube.com/watch?v=ydA0bmL-UEk") (recording :artist "Los Bitchos" :location "Live on KEXP" :year 2019 :href "https://www.youtube.com/watch?v=iPp2fdHMxTM") (song :title "I'm for things you do" :artist "The Enfields" :href "https://www.youtube.com/watch?v=qIcSkgF0TLo") (song :title "Pictures of a Bleeding Boy" :artist "The God Machine" :href "https://www.youtube.com/watch?v=2A6uGWCj4Ks") (song :title "リサフランク420 / 現代のコンピュー" :artist "Macintosh Plus" :href "https://www.youtube.com/watch?v=aQkPcPqTq4M") (recording :artist "King Gizzard & The Lizard Wizard" :location "Live on KEXP" :year 2017 :href "https://www.youtube.com/watch?v=G5Z4bma_tUM") (song :title "Pachuco Cadaver" :artist "Captain Beefheart" :href "https://www.youtube.com/watch?v=PvdrwRs27hE") (song :title "Печаль моя светла" :artist "Янка" :href "https://www.youtube.com/watch?v=ENv4ro2EklU") (recording :artist "Talking Heads" :title "Life During Wartime" :location "Los Angeles" :year 1983 :href "https://www.youtube.com/watch?v=jShMQw2H2cM") (song :title "Scenic" :artist "Ozean" :href "https://www.youtube.com/watch?v=ppOMMZWagB0") (song :title "3" :artist "Pita" :href "https://www.youtube.com/watch?v=kSCZVkQJw7U") (recording :artist "Warpaint" :title "Beetles" :location "Live at Rock Werchter" :year 2011 :href "https://www.youtube.com/watch?v=mdDYpw38xeU") (song :artist "Gioachino Rossini" :title "La gazza ladra (abridged)" :href "https://www.youtube.com/watch?v=Ceh0-42FXg0") (song :artist "Kraftwerk" :title "Trans Europa Express (Orginal)" :href "https://www.youtube.com/watch?v=XMVokT5e0zs") (recording :artist "Nirvana" :title "Blew" :location "Live at Reading" :year 1992 :href "https://www.youtube.com/watch?v=97KwmvleRok") (recording :artist "Stevie Ray Vaughan" :title "Texas Flood" :location "Live at the El Mocambo" :year 1983 :href "https://www.youtube.com/watch?v=KC5H9P4F5Uk") (song :title "Of Before" :artist "John Frusciante" :href "https://www.youtube.com/watch?v=SK8suMMbxvE") (song :href "https://www.youtube.com/watch?v=JxYyzKo0CKo" :title "Morning After" :artist '("Ariel Pink" "Weyes Blood")) (song :artist "The Shaggs" :title "Philosophy of the world" :href "https://www.youtube.com/watch?v=hxPsXPCR5MU") (song :artist "Sorry3000" :title "Fitness" :href "https://www.youtube.com/watch?v=vnP2eZoTzm8") (recording :artist "black midi" :location "Live on KEXP" :year 2019 :href "https://www.youtube.com/watch?v=TMn1UuEIVvA") (song :artist '("Ambros" "Tauchen" "Prokopetz") :title "Der Watzmann ruft" :href "https://www.youtube.com/watch?v=m_nEzIFXFUg") (song :artist "Arnold Schönberg" :title "Verklärte Nacht" :href "https://www.youtube.com/watch?v=U-pVz2LTakM") (recording :artist "Khruangbin" :location "NPR Tiny Desk Concert" :year 2018 :href "https://www.youtube.com/watch?v=vWLJeqLPfSU") (recording :artist "Fugazi" :title "Latest Disgrace" :location "Live at Philadelphia" :year 1995 :href "https://www.youtube.com/watch?v=HPtwIjPx8Gg") (recording :artist "Tame Impala" :title "On Track" :location "Aria Awards" :year 2020 :href "https://www.youtube.com/watch?v=PsHnP2RjCF4") (recording :artist '("Courtney Barnett" "Kurt Vile") :location "NPR Tiny Desk Concert" :year 2017 :href "https://www.youtube.com/watch?v=JQs5XagfheI") (recording :artist "Pink Floyd" :title "Echoes" :location "Live at Pompeii" :year 1971 :href "https://www.youtube.com/watch?v=PGwPSPIhohk") (song :artist "Frédéric Chopin" :title "Prélude 4 in e-moll" :href "https://www.youtube.com/watch?v=FDT_gtC5faQ") (recording :artist "Kurt Vile" :title "Wakin on a Pretty Day" :location "Live on Sound Opinions" :year 2013 :href "https://www.youtube.com/watch?v=UovytItuSkM") (song :artist "Dmitri Schostakowitsch" :title "12. Sinfonie (Zum Gedenken an Lenin)" :href "https://www.youtube.com/watch?v=srh97TbXN8A") (song :artist "Sergei Rachmaninoff" :title "Präludium in cis-moll" :href "https://www.youtube.com/watch?v=wXQCPAR0EHo") (recording :artist "IDLES" :title "MTT 420 RR" :location "From The Basement" :year 2022 :href "https://www.youtube.com/watch?v=2nHWE1NnrA0") (recording :artist "rauchen" :location "Wellenbrecher" :year 2021 :href "https://www.youtube.com/watch?v=pxLqfKCS1Ww") (song :artist "Godspeed You! Black Emperor" :title "F# A# ∞ (Full Album)" :href "https://www.youtube.com/watch?v=wy4IsC5eb7o") (song :artist "Boards of Canada" :title "Echus" :href "https://www.youtube.com/watch?v=fjrPpzNeNZ0") (song :artist "my bloody valentine" :title "only shallow" :href "https://www.youtube.com/watch?v=4nzZeUUiG2c") (recording :artist "Aphex Twin" :title "Heliosphan" :location "Live" :href "https://www.youtube.com/watch?v=MkDkF1psd4U") (recording :artist "Jethro Tull" :location "Live" :title "Bourée" :year 1969 :href "https://www.youtube.com/watch?v=iWJgJkVL0xM") (recording :artist "The Beatles" :location "Get Back" :title "Dig It (Very Alternate Version)" :year 1969 :href "https://www.youtube.com/watch?v=Pc6KjxrbxAk") (recording :artist "Parquet Courts" :location "Live on KEXP" :title "Almost Had to Start a Fight / In and Out of Patience" :year 2018 :href "https://www.youtube.com/watch?v=xiaTB18adYs") (recording :artist "Kraftwerk" :location "Live in Amsterdam" :title "Ohm Sweet Ohm" :year 1976 :href "https://www.youtube.com/watch?v=UDM79ZEk3t8") (recording :artist "Kate Bush" :location "Live at Hammersmith Odeon" :title "Wuthering Heights" :year 1979 :href "https://www.youtube.com/watch?v=uRQL_B41Bu0") (recording :artist "Kraftwerk" :location "Live" :year 1971 :title "Köln II" :href "https://www.youtube.com/watch?v=BIoNn1YQf8c") (recording :artist "audiobooks" :location "6 Music Festival" :year 2022 :title "The Doll" :href "https://www.youtube.com/watch?v=pr8dU8fGJ1A") (song :artist "Wapassou" :title "Femmes-fleurs" :href "https://www.youtube.com/watch?v=zL4QmTNAJvc") (song :artist "Das Flug" :title "Alles musz in Flammen stehen" :href "https://www.youtube.com/watch?v=W_oJf54ZoRE") (song :artist "Various artists" :title "(Artificial Intelligence)" :href "https://www.youtube.com/watch?v=jaysR-sashY") (recording :artist "Mike Oldfield" :location "BBC" :year 1973 :title "Tubular Bells" :href "https://www.youtube.com/watch?v=KXatvzWAzLU") (recording :artist '("Omar Rodriguez-Lopez" "John Frusciante" "Flea") :year 2004 :title "Jam" :href "https://www.youtube.com/watch?v=NwPlsRf-9Ws") (recording :artist "Weyes Blood" :title "Andromeda" :year 2019 :location "Live on KEXP" :href "https://www.youtube.com/watch?v=U-mf2sFcLXA") (recording :artist "Weyes Blood" :title "Wild Time" :year 2019 :location "Live at The Current" :href "https://www.youtube.com/watch?v=SOhHj0nGX0c") (recording :artist "Air (French band)" :title "La Femme d'Argent" :year 2012 :location "Live at Studio Atlas" :href "https://www.youtube.com/watch?v=1Vxxn_YnLQ4") (song :artist "Funki Porcini" :title "Moog River" :href "https://www.youtube.com/watch?v=cCYl4s5Kjow") (song :artist "John Frusciante" :title "Interstate Sex" :href "https://www.youtube.com/watch?v=USD_qTm5yNw") (song :artist "Эдуард Артемьев" :title "Поход" :href "https://www.youtube.com/watch?v=sJj9y4t9UnU")) (link :href "https://roland50.studio" :title "Roland Studio") (link :href "https://webmusic.pages.dev/apps" :title "Web Music Apps For Everybody") (link :href "https://muted.io/cheat-sheet" :title "Music Theory Cheatsheet")) (category :title "Kochen" :id "cooking" (link :title "Cracking The Bread Code" :href "https://github.com/hedricius/the-bread-code") (link :title "Plant-based cooking website" :href "https://grimgrains.com")) (category :title "Linguistik" (link :href "https://www.atlas-alltagssprache.de" :title "Atlas Alltagssprache") (link :href "https://prowiki.ids-mannheim.de/bin/view/AADG" :title "Atlas zur Aussprache des deutschen Gebrauchsstandards")) (category :title "Interessante Wikipedia-Seiten" :id "wiki" (link :href "https://en.wikipedia.org/wiki/List_of_hat_styles" :title "List of hat styles") (link :href "https://en.wikipedia.org/wiki/List_of_obsolete_units_of_measurement" :title "List of obsolete units of measurement") (link :href "https://en.wikipedia.org/wiki/Abstract_nonsense" :title "Abstract nonsense") (link :href "https://en.wikipedia.org/wiki/Wikipedia:Lamest_edit_wars" :title "Wikipedia: Lamest edit wars") (link :href "https://de.wikipedia.org/wiki/Verwandtschaftsbeziehung" :title "Verwandtschaftsbeziehung") (link :href "https://commons.wikimedia.org/wiki/Category:Typeface_samples_%28Font_Specimen_Creator%29" :title "Typeface samples")) (category :title "Andere Link-Sammlungen" :id "other" (link :title "Sammlung Interessanter Websiten" :href "https://wwwcip.cs.fau.de/~oj14ozun/links.html") (link :title "Links" :href "https://wwwcip.cs.fau.de/~qy15sije/links.html"))))))