%% DATAVIEW_PUBLISHER: start
```dataviewjs
const table = dv.markdownTable(
["Metadata Field", "Value"],
Object.entries(dv.current())
.filter(([key]) => {
const allowedKeys = ["tags", "post_status", "date_modified"];
return allowedKeys.includes(key);
})
.map(([key, value]) => {
try {
// --- Key Renaming ---
if (key === "post_status") {
key = "post status";
} else if (key === "date_modified") {
key = "last modified";
}
// --- Value Reformatting ---
if (key === "last modified") {
try {
const parsedDate = moment(new Date(value));
if (parsedDate.isValid()) {
value = parsedDate.format("YYYY-MM-DD");
} else {
console.log("Invalid date format:", value);
}
} catch (error) {
console.error("Error parsing date:", error);
}
} else if (Array.isArray(value)) {
value = value.map((item) => "#" + item);
}
return [
key, // Removed icon prepending
key === "tags" || key === "post status" ? value.join(" ") : value,
];
} catch (error) {
console.error("Error processing metadata:", error);
return [key, "Error"];
}
}),
);
dv.paragraph(table);
```
%%
| Metadata Field | Value |
| -------------- | ------------------------------------------------ |
| tags | [#meta](app://obsidian.md/index.html#meta) |
| post status | [#article](app://obsidian.md/index.html#article) |
| last modified | 2025-01-02 |
%% DATAVIEW_PUBLISHER: end %%
# currently
- Conducting my [[c.v.#LIU Palmer iSchool | dissertation research]], which is concerned with the #digital-preservation of multi-platform, participatory hypermedia
- Leading cross-disciplinary customer intelligence initiatives as a Senior User Researcher II at [[c.v.#Custom Ink | Custom Ink]]
- Working on the `rsdx-rngr` color system for use in terminals, Neovim,[^1] Obsidian,[^2] and this site
- Reading _Cultural Analytics_ by Lev Manovich[^3] and _The Creative Act: A Way of Being_ by Rick Rubin[^4]
- Playing _UFO 50_[^5] and _Gunbrella_[^6]
- Listening to _SOS Deluxe: LANA_ by SZA,[^7] _GNX_ by Kendrick Lamar,[^8] _the whaler_ by Home Is Where,[^9] and _Alligator Bites Never Heal_ by Doechii[^10]
# generally
- Learn more [[about]] me
- View my [[c.v.]]
![[contact#^83635d]]
# footnotes
[^1]: “Home - Neovim.” Accessed December 23, 2024. https://neovim.io/.
[^2]: “Obsidian - Sharpen Your Thinking.” Accessed December 23, 2024. https://obsidian.md/.
[^3]: Manovich, Lev. “Cultural Analytics,” December 31, 2019. https://openlibrary.org/books/OL30203804M/Cultural_Analytics#about/about.
[^4]: OpenLibrary.org. “The Creative Act: A Way of Being by Rick Rubin | Open Library.” Accessed December 29, 2024. https://openlibrary.org/works/OL27955361W/Creative_Act?edition=key%3A/books/OL46638712M.
[^5]: “UFO 50 (2024).” Accessed December 23, 2024. https://www.mobygames.com/game/230810/ufo-50/.
[^6]: “Gunbrella (2023).” Accessed December 29, 2024. https://www.mobygames.com/game/208577/gunbrella/.
[^7]: “Release ‘SOS Deluxe: LANA’ by SZA - MusicBrainz.” Accessed December 23, 2024. https://musicbrainz.org/release/4fe782ec-2737-46bf-8744-f089891a8bf3.
[^8]: “Release ‘GNX’ by Kendrick Lamar - MusicBrainz.” Accessed December 23, 2024. https://musicbrainz.org/release/dc1c0a48-7c6b-4602-8e57-6e8be9b8a118.
[^9]: “Release ‘the Whaler’ by Home Is Where - MusicBrainz.” Accessed December 23, 2024. https://musicbrainz.org/release/798ab36b-3c74-4b77-954c-8f586388c7c4.
[^10]: “Release ‘Alligator Bites Never Heal’ by Doechii - MusicBrainz.” Accessed December 23, 2024. https://musicbrainz.org/release/951b3104-9f52-4fdb-acc5-974f39f27320.