645 lines
26 KiB
HTML
645 lines
26 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Presentations</title>
|
|
<meta name="description" content="The long-running and erratically updated blog of Kathleen Fitzpatrick.">
|
|
<link rel="alternate" href="feed/feed.xml" type="application/atom+xml" title="kfitz">
|
|
<script async="" src="https://talk.hyvor.com/embed/embed.js" type="module"></script>
|
|
<link rel="webmention" href="https://webmention.io/kfitz.info/webmention">
|
|
<link rel="pingback" href="https://webmention.io/kfitz.info/xmlrpc">
|
|
|
|
|
|
|
|
|
|
|
|
<style>/* This is an arbitrary CSS string added to the bundle */
|
|
/* Defaults */
|
|
@font-face {
|
|
font-family: "Atkinson Hyperlegible";
|
|
src: url('/css/files/atkinson-hyperlegible-latin-400-normal.woff2') format('woff2');
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: "Atkinson Hyperlegible";
|
|
font-weight: bold;
|
|
src: url('/css/files/atkinson-hyperlegible-latin-700-normal.woff2') format('woff2');
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: "Atkinson Hyperlegible";
|
|
font-style: italic
|
|
src: url('/css/files/atkinson-hyperlegible-latin-400-italic.woff2') format('woff2');
|
|
font-display: swap;
|
|
}
|
|
|
|
:root {
|
|
--font-family: "Atkinson Hyperlegible", -apple-system, system-ui, sans-serif;
|
|
--font-family-monospace: Consolas, Menlo, Monaco, Andale Mono WT, Andale Mono, Lucida Console, Lucida Sans Typewriter, DejaVu Sans Mono, Bitstream Vera Sans Mono, Liberation Mono, Nimbus Mono L, Courier New, Courier, monospace;
|
|
font-size: 18px;
|
|
}
|
|
|
|
/* Theme colors */
|
|
:root {
|
|
--color-gray-20: #e0e0e0;
|
|
--color-gray-50: #C0C0C0;
|
|
--color-gray-90: #333;
|
|
|
|
--background-color: #fff;
|
|
|
|
--text-color: var(--color-gray-90);
|
|
--text-color-link: #d61d4a;
|
|
--text-color-link-active: #853439;
|
|
--text-color-link-visited: #e8325e;
|
|
|
|
--syntax-tab-size: 2;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--color-gray-20: #e0e0e0;
|
|
--color-gray-50: #C0C0C0;
|
|
--color-gray-90: #dad8d8;
|
|
|
|
/* --text-color is assigned to --color-gray-_ above */
|
|
--text-color-link: #1493fb;
|
|
--text-color-link-active: #6969f7;
|
|
--text-color-link-visited: #a6a6f8;
|
|
|
|
--background-color: #15202b;
|
|
}
|
|
}
|
|
|
|
|
|
/* Global stylesheet */
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
@view-transition {
|
|
navigation: auto;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
padding: 0;
|
|
margin: 0 auto;
|
|
font-family: var(--font-family);
|
|
color: var(--text-color);
|
|
background-color: var(--background-color);
|
|
}
|
|
html {
|
|
overflow-y: scroll;
|
|
}
|
|
body {
|
|
max-width: 40em;
|
|
}
|
|
|
|
/* https://www.a11yproject.com/posts/how-to-hide-content/ */
|
|
.visually-hidden {
|
|
clip: rect(0 0 0 0);
|
|
clip-path: inset(50%);
|
|
height: 1px;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
white-space: nowrap;
|
|
width: 1px;
|
|
}
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
p {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
li {
|
|
line-height: 1.5;
|
|
}
|
|
|
|
a[href] {
|
|
color: var(--text-color-link);
|
|
}
|
|
a[href]:visited {
|
|
color: var(--text-color-link-visited);
|
|
}
|
|
a[href]:hover,
|
|
a[href]:active {
|
|
color: var(--text-color-link-active);
|
|
}
|
|
|
|
main,
|
|
footer {
|
|
padding: 1rem;
|
|
}
|
|
main :first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
header {
|
|
border-bottom: 1px dashed var(--color-gray-20);
|
|
}
|
|
header:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
footer {
|
|
border-top: 1px dashed var(--color-gray-50);
|
|
}
|
|
|
|
.links-nextprev {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: .5em 1em;
|
|
list-style: "";
|
|
border-top: 1px dashed var(--color-gray-20);
|
|
padding: 1em 0;
|
|
}
|
|
.links-nextprev > * {
|
|
flex-grow: 1;
|
|
}
|
|
.links-nextprev-next {
|
|
text-align: right;
|
|
}
|
|
|
|
table {
|
|
margin: 1em 0;
|
|
}
|
|
table td,
|
|
table th {
|
|
padding-right: 1em;
|
|
}
|
|
|
|
pre,
|
|
code {
|
|
font-family: var(--font-family-monospace);
|
|
}
|
|
pre:not([class*="language-"]) {
|
|
margin: .5em 0;
|
|
line-height: 1.375; /* 22px /16 */
|
|
-moz-tab-size: var(--syntax-tab-size);
|
|
-o-tab-size: var(--syntax-tab-size);
|
|
tab-size: var(--syntax-tab-size);
|
|
-webkit-hyphens: none;
|
|
-ms-hyphens: none;
|
|
hyphens: none;
|
|
direction: ltr;
|
|
text-align: left;
|
|
white-space: pre;
|
|
word-spacing: normal;
|
|
word-break: normal;
|
|
overflow-x: auto;
|
|
}
|
|
code {
|
|
word-break: break-all;
|
|
}
|
|
|
|
/* Header */
|
|
header {
|
|
display: flex;
|
|
gap: 1em .5em;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
padding: 1em;
|
|
}
|
|
.home-link {
|
|
font-size: 1.5em; /* 16px /16 */
|
|
font-weight: 700;
|
|
margin-right: 2em;
|
|
}
|
|
.home-link:link:not(:hover) {
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Nav */
|
|
.nav {
|
|
display: flex;
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
.nav-item {
|
|
display: inline-block;
|
|
margin-right: 1em;
|
|
}
|
|
.nav-item a[href]:not(:hover) {
|
|
text-decoration: none;
|
|
}
|
|
.nav a[href][aria-current="page"] {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Posts list */
|
|
.postlist {
|
|
list-style: none;
|
|
padding: 0;
|
|
padding-left: 1.5rem;
|
|
}
|
|
.postlist-item {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: baseline;
|
|
counter-increment: start-from -1;
|
|
margin-bottom: 1em;
|
|
}
|
|
.postlist-item:before {
|
|
display: inline-block;
|
|
pointer-events: none;
|
|
content: "" counter(start-from, decimal-leading-zero) ". ";
|
|
line-height: 100%;
|
|
text-align: right;
|
|
margin-left: -1.5rem;
|
|
}
|
|
.postlist-date,
|
|
.postlist-item:before {
|
|
font-size: 0.8125em; /* 13px /16 */
|
|
color: var(--color-gray-90);
|
|
}
|
|
.postlist-date {
|
|
word-spacing: -0.5px;
|
|
}
|
|
.postlist-link {
|
|
font-size: 1.1875em; /* 19px /16 */
|
|
font-weight: 700;
|
|
flex-basis: calc(100% - 1.5rem);
|
|
padding-left: .25em;
|
|
padding-right: .5em;
|
|
text-underline-position: from-font;
|
|
text-underline-offset: 0;
|
|
text-decoration-thickness: 1px;
|
|
}
|
|
.postlist-item-active .postlist-link {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Archive list */
|
|
.archivelist {
|
|
padding: 0;
|
|
padding-left: 2.5rem;
|
|
}
|
|
.archivelist-item {
|
|
align-items: baseline;
|
|
margin-bottom: 1em;
|
|
}
|
|
.archivelist-item::marker {
|
|
text-align: right;
|
|
margin-left: -1.5rem;
|
|
font-size: 0.8125em; /* 13px /16 */
|
|
color: var(--color-gray-90);
|
|
}
|
|
.archivelist-date {
|
|
font-size: 0.8125em; /* 13px /16 */
|
|
color: var(--color-gray-90);
|
|
word-spacing: -0.5px;
|
|
}
|
|
.archivelist-link {
|
|
font-size: 1.1875em; /* 19px /16 */
|
|
font-weight: 700;
|
|
flex-basis: calc(100% - 1.5rem);
|
|
padding-left: .25em;
|
|
padding-right: .5em;
|
|
text-underline-position: from-font;
|
|
text-underline-offset: 0;
|
|
text-decoration-thickness: 1px;
|
|
}
|
|
.archivelist-item-active .archivelist-link {
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
/* Tags */
|
|
.post-tag {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-transform: capitalize;
|
|
font-style: italic;
|
|
}
|
|
.postlist-item > .post-tag {
|
|
align-self: center;
|
|
}
|
|
|
|
/* Tags list */
|
|
.post-metadata {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
gap: .5em;
|
|
list-style: none;
|
|
border-top: 1px dashed var(--color-gray-20);
|
|
border-bottom: 1px dashed var(--color-gray-20);
|
|
padding: 3px 0px 3px 0px;
|
|
margin: 0;
|
|
font-size: .8em;
|
|
}
|
|
.post-metadata time {
|
|
margin-right: 1em;
|
|
}
|
|
|
|
/* Direct Links / Markdown Headers */
|
|
.header-anchor {
|
|
text-decoration: none;
|
|
font-style: normal;
|
|
font-size: 1em;
|
|
margin-left: .1em;
|
|
}
|
|
a[href].header-anchor,
|
|
a[href].header-anchor:visited {
|
|
color: transparent;
|
|
}
|
|
a[href].header-anchor:focus,
|
|
a[href].header-anchor:hover {
|
|
text-decoration: underline;
|
|
}
|
|
a[href].header-anchor:focus,
|
|
:hover > a[href].header-anchor {
|
|
color: #aaa;
|
|
}
|
|
|
|
h2 + .header-anchor {
|
|
font-size: 1.5em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
h1 {
|
|
font-weight: bolder;
|
|
}
|
|
|
|
summary {
|
|
font-size: 1.5em;
|
|
font-weight: bold;
|
|
margin-bottom: .5em;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
blockquote {
|
|
display: block;
|
|
margin-left: 2em;
|
|
margin-right: 3em;
|
|
padding-left: 10px;
|
|
border-left: 10px solid var(--text-color-link);
|
|
}
|
|
|
|
hr.new {
|
|
border: none;
|
|
border-top: 1px dashed var(--color-gray-50);
|
|
}
|
|
/* Webmention Section */
|
|
|
|
.webmentions {
|
|
display:block;
|
|
text-align: left;
|
|
}
|
|
.webmentions__facepile {
|
|
display:flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
.webmentions__face {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
flex: none;
|
|
}
|
|
.webmentions__list {
|
|
list-style-type: none;
|
|
padding:0;
|
|
}
|
|
.webmentions__item {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
/* Single Webmention */
|
|
|
|
.webmention {
|
|
display:block;
|
|
}
|
|
.webmention__meta,
|
|
.webmention__author {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
.webmention__meta {
|
|
margin-bottom:.5rem;
|
|
}
|
|
.webmention__author {
|
|
margin-right:.25rem;
|
|
}
|
|
.webmention__author__photo {
|
|
height: 3rem;
|
|
width: 3rem;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
margin-right:.5rem;
|
|
}
|
|
.webmention__pubdate {
|
|
font-style: italic;
|
|
}
|
|
/* Message Box */
|
|
.message-box {
|
|
--color-message-box: #ffc;
|
|
|
|
display: block;
|
|
background-color: var(--color-message-box);
|
|
color: var(--color-gray-90);
|
|
padding: 1em 0.625em; /* 16px 10px /16 */
|
|
}
|
|
.message-box ol {
|
|
margin-top: 0;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.message-box {
|
|
--color-message-box: #082840;
|
|
}
|
|
}
|
|
/*
|
|
* New diff- syntax
|
|
*/
|
|
|
|
pre[class*="language-diff-"] {
|
|
--eleventy-code-padding: 1.25em;
|
|
padding-left: var(--eleventy-code-padding);
|
|
padding-right: var(--eleventy-code-padding);
|
|
}
|
|
.token.deleted {
|
|
background-color: hsl(0, 51%, 37%);
|
|
color: inherit;
|
|
}
|
|
.token.inserted {
|
|
background-color: hsl(126, 31%, 39%);
|
|
color: inherit;
|
|
}
|
|
|
|
/* Make the + and - characters unselectable for copy/paste */
|
|
.token.prefix.unchanged,
|
|
.token.prefix.inserted,
|
|
.token.prefix.deleted {
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding-top: 2px;
|
|
padding-bottom: 2px;
|
|
}
|
|
.token.prefix.inserted,
|
|
.token.prefix.deleted {
|
|
width: var(--eleventy-code-padding);
|
|
background-color: rgba(0,0,0,.2);
|
|
}
|
|
|
|
/* Optional: full-width background color */
|
|
.token.inserted:not(.prefix),
|
|
.token.deleted:not(.prefix) {
|
|
display: block;
|
|
margin-left: calc(-1 * var(--eleventy-code-padding));
|
|
margin-right: calc(-1 * var(--eleventy-code-padding));
|
|
text-decoration: none; /* override del, ins, mark defaults */
|
|
color: inherit; /* override del, ins, mark defaults */
|
|
}</style>
|
|
</head>
|
|
<body>
|
|
<a href="#skip" class="visually-hidden">Skip to main content</a>
|
|
|
|
<header>
|
|
<a href="/" class="home-link">kfitz</a>
|
|
<nav>
|
|
<h2 class="visually-hidden" id="top-level-navigation-menu">Top level navigation menu</h2>
|
|
<ul class="nav">
|
|
<li class="nav-item"><a href="/">Home</a></li>
|
|
<li class="nav-item"><a href="/blog/">Archive</a></li>
|
|
<li class="nav-item"><a href="/about/">About</a></li>
|
|
<li class="nav-item"><a href="/projects/">Projects</a></li>
|
|
<li class="nav-item"><a href="/presentations/" aria-current="page">Presentations</a></li>
|
|
<li class="nav-item"><a href="/teaching/">Teaching</a></li>
|
|
<li class="nav-item"><a href="/feed/feed.xml">Feed</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<link href="/pagefind/pagefind-ui.css" rel="stylesheet">
|
|
<script src="/pagefind/pagefind-ui.js"></script>
|
|
<div id="search"></div>
|
|
<script>
|
|
window.addEventListener('DOMContentLoaded', (event) => {
|
|
new PagefindUI({ element: "#search", showSubResults: true });
|
|
});
|
|
</script>
|
|
|
|
<main id="skip">
|
|
<heading-anchors>
|
|
<h1 id="presentations">Presentations</h1>
|
|
<p>Giving talks is a major component of my scholarly practice, enabling me to share my work directly with a range of different audiences and engage with their responses as my projects evolve. This is a non-exhaustive collection of the presentations I've given over the last few years.</p>
|
|
<h2 id="2024">2024</h2>
|
|
<ul>
|
|
<li>"<a href="https://presentations.kfitz.info/dlf24.html" target="_new">Open Matters</a>," opening keynote, DLF24, Michigan State University, 30 July 2024.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/inke24.html" target="_new">Open Infrastructures and the Future of Knowledge Production</a>," keynote, INKE annual meeting, Creative Approaches to Open Social Scholarship, Université de Montréal, 17 June 2024.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/suny.html" target="_new">Open Matters</a>," keynote, SUNY Digital Learning Conference, 19 April 2024.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/timemgt.html" target="_new">Time Management for Mortals</a>," MSU OFASD Leadership Institute, Michigan State University, 19 January 2024.</li>
|
|
</ul>
|
|
<h2 id="2023">2023</h2>
|
|
<ul>
|
|
<li>"<a href="https://presentations.kfitz.info/utk.html" target="_new">Open Infrastructures and the Future of Knowledge Production</a>," Distinguished Visiting Lecture, University of Tennessee Humanities Center, 6 November 2023.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/uwm.html" target="_new">Building a More Generous University: Collaboration, Community, Solidarity</a>," keynote, The Future of Humanities Publishing Workshop, University of Wisconsin Milwaukee, 2 November 2023.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/oai13.html" target="_new">OA Without Tears: Platforms and Workflows for Actually Equitable Open Scholarly Communication</a>," paper in session on Diamond Open Access, OAI13, 8 September 2023.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/reclaim.html" target="_new">We Have Never Been Social: Web 2.0 and What Went Wrong,</a>" keynote, Reclaim Open, 6 June 2023.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/newschool.html" target="_new">What We Could Be: The University After the Crisis,</a>" part of "Remaking, Relearning," a dialogue hosted by the Consortium for Trans/disciplinarity, New School, 7 April 2023.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/mla23-1.html" target="_new">Leading Generously: The Liberal Arts and Tools for Transformation,</a>" paper in session "How the Liberal Arts Works," MLA 2023, 5 January 2023.</li>
|
|
</ul>
|
|
<h2 id="2022">2022</h2>
|
|
<ul>
|
|
<li>"<a href="https://presentations.kfitz.info/montana.html" target="_new">The Humanities, The Commons, and What We Have to Share</a>," inaugural lecture, "Humanities Matters," Montana State University, 29 November 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/comps.html" target="_new">Comps!</a>," Writing and Pedagogy Workshop, Department of English, Michigan State University, 11 November 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/moh.html" target="_new">Humanities Commons: What We Have to Share</a>," keynote, Making of the Humanities X, 4 November 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/marist.html" target="_new">Building a More Generous Institution: Collaboration, Community, Solidarity</a>," Marist College, 26 October 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/oaspa.html" target="_new">Humanities Commons: What We Have to Share</a>," presented on panel entitled, "What Open Means for the Humanities," OASPA annual meeting, 21 September 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/cdhi.html" target="_new">Humanities Commons</a>," Critical Digital Humanities Initiative, University of Toronto, 20 September 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/maps.html" target="_new">Engaged Leadership in Disengaged Times</a>," panel, MAPS Leadership Institute, MLA, 27 June 2022</li>
|
|
<li>"<a href="https://presentations.kfitz.info/amical.html" target="_new">Digital Platforms and Possibilities</a>," keynote, AMICAL, 14 June 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/dhneo.html" target="_new">DH and the Neoliberal University</a>," German American Studies Association (DGfA) town hall, 1 April 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/plymouth.html" target="_new">Building a More Generous University: Collaboration, Community, Solidarity</a>," public talk, Plymouth State University, 1 April 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/review.html" target="_new">DH@MSU: What We've Done So Far, and Where We Go From Here</a>," presentation as part of my contract renewal process, 2 March 2022.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/inke.html" target="_new">Generosity, Collaboration, and the Common Good: Platform as Scholarly Practice</a>," Launching a Digital Commons for the Humanities and Social Sciences series, Implementing New Knowledge Environments Partnership (INKE), 24 January 2022.</li>
|
|
</ul>
|
|
<h2 id="2021">2021</h2>
|
|
<ul>
|
|
<li>"<a href="https://presentations.kfitz.info/OSU.html" target="_new">No Carrots, No Sticks: Creating a Digital Humanities Consortium on a Shoestring</a>," invited talk, OSU Digital Humanities Working Group, 29 November 2021.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/goethe.html" target="_new">Generous Thinking and Sustainable Scholarly Communities</a>," invited lecture, Goethe University Frankfurt, 16 November 2021.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/jfki.html" target="_new">Failures of Leadership: Rethinking the University in the United States</a>," keynote, The Failures of Institutional Knowledge, JFK Institute, Freie Universität Berlin, November 10, 2021.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/opened.html" target="_new">Open Education: Infrastructure for the Common Good</a>," keynote, Open Ed, 19 October 2021.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/cece.html" target="_new">Higher Education as a Social Good</a>," keynote, APLU Commission on Economic and Community Engagement annual meeting, 14 June 2021.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/pace.html" target="_new">Building a More Generous University: Collaboration, Community, Solidarity</a>," keynote, Pace University Institute for Teaching and Learning, 13 May 2021</li>
|
|
<li>"<a href="https://presentations.kfitz.info/muse.html" target="_new">Better: Thoughts Toward a More Generous Future</a>," MUSE Meets 2021 keynote, April 27, 2021.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/btaa.html" target="_new">Collective Action and the Common Good</a>," BTAA BIG Collection convening keynote, 19 April 2021.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/umn.html" target="_new">Generous Thinking: A Radical Approach to Saving the University</a>," University of Minnesota Institute for Advanced Study, 18 February 2021.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/ku.html" target="_new">Toward a More Generous University (Even in Hard Times)</a>," public lecture, University of Kansas, 27 January 2021.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/mla21.html" target="_new">Writing in Public</a>,” paper in session "Opening Publishing to the Public," Modern Language Association annual meeting, 7 January 2021.</li>
|
|
</ul>
|
|
<h2 id="2020">2020</h2>
|
|
<ul>
|
|
<li>“<a href="https://presentations.kfitz.info/ucsd.html" target="_new">Toward a More Generous University (Even in Hard Times)</a>,” keynote, UCSD Student Affairs Professional Development Day, 15 December 2020.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/ubc.html" target="_new">Working in Public</a>,” UBC Public Humanities Hub and UBC Library, University of British Columbia, 3 November 2020.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/cerada.html" target="_new">Toward a More Generous University</a>,” keynote, CERADA, Uniarts Helsinki, 14 September 2020.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/writinginpublic.html" target="_new">Writing in Public</a>,” invited talk, Cal State Mellon-Mays Undergraduate Fellows, 11 September 2020.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/apereo.html" target="_new">Collaborative Software Communities: Sustainability, Solidarity, and the Common Good</a>,” keynote, OpenApereo, 15 June 2020.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/aiea.html" target="_new">Generous Education: Critique, Community, Collaboration</a>,” keynote, AIEA 2020, Washington DC, 17 February 2020.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/friday.html" target="_new">Toward a More Generous University</a>," Friday Forum on Neoliberalism and Public Higher Education, Michigan State University, 14 February 2020.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/mwallt.html" target="_new">Working in Public: New Structures for Better Institutions</a>,” keynote, Midwest Association of Language Learning Technology (MWALLT) annual meeting, 8 February 2020.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/nyuad.html" target="_new">Generous Thinking: Argumentation and Collaboration</a>,” NYU Abu Dhabi, 5 February 2020.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/mla20.html" target="_new">Generous Argument: Critique, Community, Pedagogy</a>,” Modern Language Association annual meeting, 10 January 2020.</li>
|
|
</ul>
|
|
<h2 id="2019">2019</h2>
|
|
<ul>
|
|
<li>"<a href="https://presentations.kfitz.info/dearborn.html" target="_new">Generous Thinking: A Radical Approach to Saving the University</a>," public lecture, UM Dearborn, 3 December 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/alma.html" target="_new">Generous Thinking and the Future of the Liberal Arts</a>," public lecture, Alma College, Alma MI, 20 November 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/indiana.html" target="_new">Generous Thinking: Toward a More Generous University</a>," public lecture, Indiana University, 14 November 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/wsu.html" target="_new">Generous Thinking: A Radical Approach to Saving the University</a>," invited lecture, Washington State University, 24 October 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/wsu2.html" target="_new">Working in Public</a>," workshop, Washington State University, 24 October 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/sus.html" target="_new">Generous Thinking: Toward a More Generous University</a>,” Society for Utopian Studies, 18 October 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/purdue1.html" target="_new">Digital, Public, Scholarship: Sustainable Infrastructure for the Future of the University</a>," invited talk, Purdue University, 14 October 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/vatech2.html" target="_new">Generous Thinking and External Partnerships</a>," Virginia Tech Research Center, 10 October 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/vatech.html" target="_new">Generous Thinking and the Future of the University</a>," public lecture, Virginia Tech, 9 October 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/vatech1.html" target="_new">Generous Thinking and Diversity and Inclusion</a>," Virginia Tech Carilion School of Medicine, 8 October 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/waynestate.html" target="_new">Generous Thinking: Working in Public</a>," invited lecture, Wayne State University, 3 October 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/vanderbilt.html" target="_new">What Matters? Who Counts? Generous Thinking and the Future of the University</a>," keynote, Humanities 20/20, Robert Penn Warren Center for the Humanities, Vanderbilt University, 27 September 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/buffalo.html" target="_new">Digital, Public, Scholarship</a>," keynote, University at Buffalo Digital Scholarship Studio and Network launch, 05 September 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/bucknell.html" target="_new">Generous Thinking: A Radical Approach to Saving the University</a>," workshop, Bucknell University Humanities Center, 19-20 August 2019.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/p2l3.html" target="_new">GT: Sustainability, Solidarity, and the Common Good</a>,” keynote, P2L3 meeting, 14 June 2019.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/rutgers.html" target="_new">Generous Thinking: Sustainability, Solidarity, and the Common Good</a>,” keynote, State of the Libraries meeting, Rutgers University, 12 June 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/it-retreat.html" target="_new">Generous Thinking: Sustainability, Solidarity, and the Common Good</a>," keynote, MSUIT Strategy Retreat, 3 June 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/generous-argument.html" target="_new">Generous Thinking: Argument, Community, Pedagogy</a>," keynote, Student Learning and Success Symposium, Michigan State University, 7 May 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/cni19s.html" target="_new">Generous Thinking: Sustainability, Solidarity, and the Common Good</a>," keynote, CNI Spring Meeting, Denver CO, 8 April 2019.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/generous-thinking.html" target="_new">Generous Thinking: A Radical Approach to Saving the University</a>," Winter Lecture, Purdue University Fort Wayne, 2 April 2019.</li>
|
|
</ul>
|
|
<h2 id="2018">2018</h2>
|
|
<ul>
|
|
<li>“<a href="https://presentations.kfitz.info/workinginpublic.html" target="_new">Generous Thinking: Working in Public</a>,” invited speaker, Public Scholarship lecture series, Trinity College, 5 November 2018.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/sustainability.html" target="_new_">Sustainability and Solidarity</a>," keynote, Politics and Aesthetics of Obsolescence, University of Minnesota, 12 October 2018.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/generous-university.html" target="_new">The Public University and the Public Good</a>”, invited presenter, Humanities and Arts in the Age of Big Data, University of Illinois Urbana-Champaign, 4 October 2018.</li>
|
|
<li>“<a href="https://presentations.kfitz.info/scholarly-networks.html" target="_new">Scholarly Networks: Possibilities for the Digital Beyond DH</a>,” invited presenter, Digital Scholarship Symposium, Marquette University, 27 September 2018.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/whatcounts.html" target="_new">What Counts</a>," keynote, Scholarly Communication symposium, University of North Carolina Greensboro, 2 April 2018.</li>
|
|
<li>"<a href="https://presentations.kfitz.info/scholcomm.html" target="_new">Scholarly Communication</a>," presented in DH865, Spring 2018.</li>
|
|
</ul>
|
|
|
|
</heading-anchors>
|
|
</main>
|
|
|
|
<footer>
|
|
<p><em>Built with <a href="https://www.11ty.dev/">Eleventy v3.0.0</a>. All content <a href="https://creativecommons.org/licenses/by/4.0/deed.en">CC BY 4.0</a> if you're human.</em></p><p></p>
|
|
</footer>
|
|
|
|
<!-- This page `/presentations/` was built on 2024-12-22T15:59:58.921Z -->
|
|
<script type="module" src="/dist/rJ3_G-2ArF.js"></script>
|
|
</body>
|
|
</html>
|