%% 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-02-04 | %%
%% DATAVIEW_PUBLISHER: end %%
# tl;dr
UX Research leader with over a decade of experience directing mixed-methods initiatives, scaling research operations, and developing talent.
[[about|Read more about my practice →]]
# featured projects
>[!infobox|cover hfull no-t]
>[![[ppl-0_0-cover.png]]](<price presentation levers>)
>
>### [[price presentation levers|Deconstructing Price: A Competitive Analysis of Price Presentation Levers]]
>
>Developing a strategic framework to deconstruct competitor pricing strategies and inform product roadmap.
>[!infobox|cover hfull no-t]
>[![[mmm-0_0-cover.png]]](<mixed-methods modeling>)
>
>### [[mixed-methods modeling|Mixed-Methods Modeling: Architecting Data-Driven Personas for a $25B Market]]
>
>Developing foundational personas to unlock market share in the ~$25B promotional products industry.
>[!infobox|cover hfull no-t]
>[![[fko-00-cover.png]]](<flashpoint archive>)
>
>### [[21_site/flashpoint archive|Mapping Knowledge Organization: Visualizing Emergent Strategy in the Flashpoint Archive]]
>
>Analyzing a digital preservation project's multi-platform knowledge organization strategy.
>[!infobox|cover hfull no-t]
>[![[hmr-00-cover.png]]](<gamifying pharma.md>)
>
>### [[gamifying pharma|Keep It Going: A Data-Driven Analysis of a Gamified Conference Installation]]
>
>Designing and evaluating a multi-screen, motion-sensing game installation for a leading pharmaceutical brand.
![[contact#^83635d]]