diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index 67fcf45..ead1f1b 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -4,22 +4,22 @@ "type": "split", "children": [ { - "id": "c0783aa6d60b87aa", + "id": "e9047e1a14e59897", "type": "tabs", "children": [ { - "id": "9343c744a97d01a4", + "id": "f83b38ff735bcd79", "type": "leaf", "state": { "type": "markdown", "state": { - "file": "content/week-notes/027.md", + "file": "content/week-notes/028.md", "mode": "source", "source": false, "backlinks": false }, "icon": "lucide-file", - "title": "027" + "title": "028" } } ] @@ -158,10 +158,12 @@ "obsidian-git:Open Git source control": false } }, - "active": "caf2074a3f9acbd7", + "active": "f83b38ff735bcd79", "lastOpenFiles": [ - "content/posts/test.md", + "content/posts/2025-08-11.md", + "content/week-notes/028.md", "content/week-notes/027.md", + "content/posts/test.md", "content/week-notes/026.md", "content/templates/(week notes N).md", "content/week-notes/025 unused.md", @@ -184,8 +186,6 @@ "content/week-notes/016.md", "content/week-notes/017.md", "content/week-notes/018.md", - "content/week-notes/019.md", - "content/week-notes/020.md", "public/posts/fx-chains-by-the-utterly-inept/index.html", "public/posts/fx-chains-by-the-utterly-inept", "public/tags/podcasting/index.xml", diff --git a/content/week-notes/028.md b/content/week-notes/028.md new file mode 100644 index 0000000..8b47f6f --- /dev/null +++ b/content/week-notes/028.md @@ -0,0 +1,20 @@ +--- +title: (week notes 28) +date: 2025-08-11 +tags: + - week-notes +draft: true +url: week-notes/028 +--- +## Doing + +## Reading + +## Watching + +## Playing + +## Listening +I finally got around to listening to *SOPHIE* by SOPHIE. Man, I have such mixed feelings about posthumous releases. The greedy bitch in me wants more, always, especially from artists who died way too young. I know SOPHIE's brother, who finished the album, insists that SOPHIE was nearly done with it at the time of her death, but the stretch between "nearly finished" and "actually ready to release" can be miles long for an artist. I'm not an artist, by any means, of SOPHIE's caliber, but a piece of writing for me can completely transform in the edit. Posthumous albums too often feel like an early sketch[^1], a pastiche of the auteur that are perhaps categorically incapable of capturing the genuine vision and artistry of the deceased. Unfortunately, this was the case for me with *SOPHIE*: "Reason Why" and "Live in My Truth" were standouts, but in general, it lacked the thrill and voice of SOPHIE (RIP). + +[^1]: I had [similar beef](https://cassie.ink/week-notes/021/) with Mac Miller's *Circles*. \ No newline at end of file diff --git a/layouts/home.rss.xml b/layouts/home.rss.xml new file mode 100644 index 0000000..f195e53 --- /dev/null +++ b/layouts/home.rss.xml @@ -0,0 +1,59 @@ +{{- $authorEmail := "" }} +{{- with site.Params.author }} + {{- if reflect.IsMap . }} + {{- with .email }} + {{- $authorEmail = . }} + {{- end }} + {{- end }} +{{- end }} + +{{- $authorName := "" }} +{{- with site.Params.author }} + {{- if reflect.IsMap . }} + {{- with .name }} + {{- $authorName = . }} + {{- end }} + {{- else }} + {{- $authorName = . }} + {{- end }} +{{- end }} + +{{- $pctx := . }} +{{- if .IsHome }}{{ $pctx = .Site }}{{ end }} +{{- $pages := slice }} +{{- if or $.IsHome $.IsSection }} +{{- $pages = $pctx.RegularPages }} +{{- else }} +{{- $pages = $pctx.Pages }} +{{- end }} +{{- $limit := .Site.Config.Services.RSS.Limit }} +{{- if ge $limit 1 }} +{{- $pages = $pages | first $limit }} +{{- end }} +{{- printf "" | safeHTML }} + + + {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} on {{ end }}{{ .Site.Title }}{{ end }} + {{ .Permalink }} + Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{ . }} {{ end }}{{ end }}on {{ .Site.Title }} + Hugo + {{ site.Language.LanguageCode }}{{ with $authorEmail }} + {{.}}{{ with $authorName }} ({{ . }}){{ end }}{{ end }}{{ with $authorEmail }} + {{ . }}{{ with $authorName }} ({{ . }}){{ end }}{{ end }}{{ with .Site.Copyright }} + {{ . }}{{ end }}{{ if not .Date.IsZero }} + {{ (index $pages.ByLastmod.Reverse 0).Lastmod.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}{{ end }} + {{- with .OutputFormats.Get "RSS" }} + {{ printf "" .Permalink .MediaType | safeHTML }} + {{- end }} + {{- range $pages }} + + {{ .Title }} + {{ .Permalink }} + {{ .PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} + {{- with $authorEmail }}{{ . }}{{ with $authorName }} ({{ . }}){{ end }}{{ end }} + {{ .Permalink }} + {{ .Content | transform.XMLEscape | safeHTML }} + + {{- end }} + + \ No newline at end of file diff --git a/themes/neverhungoveragain/layouts/_partials/head.html b/themes/neverhungoveragain/layouts/_partials/head.html index ed54314..cc455c1 100644 --- a/themes/neverhungoveragain/layouts/_partials/head.html +++ b/themes/neverhungoveragain/layouts/_partials/head.html @@ -7,4 +7,7 @@ {{ end }} {{ if .IsHome }}{{ site.Title }}{{ else }}{{ printf "%s | %s" .Title site.Title }}{{ end }} {{ partialCached "head/css.html" . }} -{{ partialCached "head/js.html" . }} \ No newline at end of file +{{ partialCached "head/js.html" . }} +{{ with .OutputFormats.Get "rss" }} + {{ printf `` .Rel .MediaType.Type .Permalink site.Title | safeHTML }} +{{ end }} \ No newline at end of file