Files
Kathleen Fitzpatrick 4277f0cd61 rebuild 11ty 3.1.0
2025-05-13 11:56:49 -04:00

763 lines
23 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Teaching Carnival 3.2</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>/**
* okaidia theme for JavaScript, CSS and HTML
* Loosely based on Monokai textmate theme by http://www.monokai.nl/
* @author ocodia
*/
code[class*="language-"],
pre[class*="language-"] {
color: #f8f8f2;
background: none;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
font-size: 1em;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
border-radius: 0.3em;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #272822;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #8292a2;
}
.token.punctuation {
color: #f8f8f2;
}
.token.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
color: #f92672;
}
.token.boolean,
.token.number {
color: #ae81ff;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #a6e22e;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
color: #f8f8f2;
}
.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
color: #e6db74;
}
.token.keyword {
color: #66d9ef;
}
.token.regex,
.token.important {
color: #fd971f;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
/*
* 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 */
}
/* 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;
}
}</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/">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="teaching-carnival-3-2">Teaching Carnival 3.2</h1>
<ul class="post-metadata">
<li><time datetime="2009-02-24">24 February 2009</time></li>
<li><a href="/tags/blogging/" class="post-tag">blogging</a>, </li>
<li><a href="/tags/teaching/" class="post-tag">teaching</a></li>
</ul>
<p>Im deep in the thick of the best semester Ive had in several years, so its taken some doing to pry me away from teaching in order to see what teaching-related stuff is going on out there in the blogosphere. Having spent some time poking around, though, Ive found a bunch of exciting stuff for this fortnights only one day late Teaching Carnival! Before we start, a few reminders about <a href="http://teachingcarnival.blogspot.com/2009/01/tc30-definitions-instructions.html">the nature of the ride</a>, a warning to <a href="http://ghw.wordherders.net/archives/004742.html">keep your arms and legs inside the car at all times</a>, and a big thank you to <a href="http://www.jbj.wordherders.net/2009/02/10/teaching-carnival-31/">our guide last time</a>. Now, off we go!</p>
<p>Lots of folks other than me are having good semesters, and are doing some cool stuff:</p>
<ul>
<li>Collin Brooke <a href="http://www.collinvsblog.net/2009/02/party-like-its-19992000.html">updates us on his experiment with his graduate course</a>.</li>
<li>David Silver took his class on what sounds like <a href="http://silverinsf.blogspot.com/2009/02/north-beach-project.html">a yummy field trip to North Beach</a>.</li>
<li>Scott Eric Kaufman builds on his <a href="http://acephalous.typepad.com/acephalous/2009/01/dark-knight-scene-analysis.html">“how to teach film responsibly in a comp class”</a> essay (also linked in the last TC) by posting more of <a href="http://acephalous.typepad.com/acephalous/2009/02/little-bit-more-on-teaching-the-dark-knight.html">his teaching notes on film</a> (also <a href="http://acephalous.typepad.com/acephalous/2009/02/batman-begins-works-because-christopher-nolan-decided-to-spend-the-first-hour-and-twenty-minutes-denying-the-audience-what-it.html">a bit more</a>), as well as thinking about teaching <a href="http://acephalous.typepad.com/acephalous/2009/02/like-what-i-did-with-the-dark-knight-only-this-time-about-the-fourth-issue-of-watchmenin-making-comics-scott-mccloud-argue.html">comics</a> (of which theres <a href="http://acephalous.typepad.com/acephalous/2009/02/more-on-watchmen-dave-gibbons-layout-and-john-higgins-ink-in-the-age-of-mechanical-reproduction.html">also a bit more</a>).</li>
<li>Chuck Tryons <a href="http://fsuenglish.blogspot.com/">graduate course on teaching with technology</a> is producing some fascinating posts.</li>
<li>The Undergraduate Historian <a href="http://historystudent.wordpress.com/2009/01/10/writing-history-research/">discusses the research essay</a>.</li>
<li>Lanette Cadle and her class are working on a <a href="http://www.techsophist.net/Techsophist/Blog/Entries/2009/2/6_Basic_Writing_wikibook.html">basic writing wikibook</a>.</li>
<li>Michael Arnzens students produced <a href="http://blogs.setonhill.edu/MikeArnzen/praxis/collage_and_analysis_in_the_english.html">some impressive collages</a>.</li>
</ul>
<p>Many of us are nonetheless faced with the semesters frustrations:</p>
<ul>
<li>Sisyphus, for instance, struggles with <a href="http://academiccog.blogspot.com/2009/02/sometimes-you-must-destroy-program-to.html">ambivalence</a>.</li>
<li><strike>Professor Unexpected</strike> Terminal Degree faces <a href="http://www.terminaldegree.net/2009/02/r-word.html">thoughtless language</a> amongst her students, and <a href="http://www.terminaldegree.net/2009/02/r-word-part-2.html">finds a great way to deal with it</a>, but then hits the trifecta: <a href="http://www.terminaldegree.net/2009/02/teaching-frustrations-and-rambling-post.html">absences, tears, and plagiarism</a>.</li>
<li>Dr. Virago wonders whether <a href="http://quodshe.blogspot.com/2009/01/when-dissertation-directors-have-too.html">some dissertation directors have too much power</a>.</li>
<li>Dr. No, however, dares to ask <a href="http://acadamnit.blogspot.com/2009/02/meeeeemories.html">that question</a>.</li>
<li>Flavia is tickled <a href="http://feruleandfescue.blogspot.com/2009/01/demonized.html">by a comment in her course evaluations</a>.</li>
<li>And ScienceWoman <a href="http://scienceblogs.com/sciencewoman/2009/02/an_open_letter_to_my_students.php">reminds her students that shes human</a>.</li>
</ul>
<p>Lots of us are similarly thinking about the relationship between our lives and our jobs:</p>
<ul>
<li>Dr. Crazy, for instance, <a href="http://reassignedtime.blogspot.com/2009/02/identity-and-academic-life.html">ponders the relationship between identity and academic life</a>.</li>
<li>Julie Meloni points out the value of <a href="http://www.academicsandbox.com/blog/?p=43">staying politically neutral</a> in the classroom.</li>
<li>Mike Edwards ponders the <a href="http://www.vitia.org/wordpress/2009/02/16/kitchen-tables/">quotidian nature</a> of heroism.</li>
</ul>
<p>And were not the only ones:</p>
<ul>
<li>David Silvers <a href="http://silverinsf.blogspot.com/2009/02/twitter-assignment.html">twitter assignment</a> leads to a great discussion of the value of asking students to do public, internet-based work under their own names, with key input from the students themselves.</li>
</ul>
<p>Many of us are pondering the future of the profession, our fields, or our institutions:</p>
<ul>
<li>Horace <a href="http://delightandinstruct.blogspot.com/2009/02/now-you-tell-me-or-how-to-design.html">ponders the MLAs Teagle Report</a> and its recommendations for the future of the English major.</li>
<li>(At the risk of over-blowing my own horn, Ill point out that I <a href="/media-studies-and-literary-studies/">did too</a>, but a bit more, um, against the grain.)</li>
<li>Dave Parry argues the case for the <a href="http://academhack.outsidethetext.com/home/2009/tenure-round-1-the-issues/">elimination of tenure</a>.</li>
<li>Steve Krause considers <a href="http://stevendkrause.com/2009/02/17/the-library-web-site-of-the-future-and-the-espresso-book-machine/">the library website of the future</a>.</li>
<li>Annie Em gets the wake-up call from <a href="http://annieem.wordpress.com/2009/02/15/good-pedagogy-aka-good-teachin/">the new epistemology</a>.</li>
<li>Alex Reid answers the question, <a href="http://www.alex-reid.net/2009/02/what-do-you-do-with-an-english-degree.html">what do you do with a degree in English?</a></li>
<li>And JBJ altruistically <a href="http://www.jbj.wordherders.net/2009/02/17/an-offer-to-uconn/">offers to stretch outside his field</a>, for the good of the institution.</li>
</ul>
<p>Others of us are less sanguine about things, though:</p>
<ul>
<li>Mills Kelly worries about the relationship between <a href="http://edwired.org/?p=459">good teaching and the cash nexus</a>.</li>
<li>And it will not shock you to hear that lots of us are thinking about the grade inflation and student effort, including <a href="http://weblogs.swarthmore.edu/burke/?p=724">Timothy Burke</a>, <a href="http://lefarkins.blogspot.com/2009/02/aye.html">Robert Farley</a>, <a href="http://acephalous.typepad.com/acephalous/2009/02/where-i-am-i-dont-know-ill-never-know-in-the-silence-you-dont-know-you-must-go-on-i-cant-go-on.html">Scott Eric Kaufman</a>, <a href="http://learningaboutpolitics.blogspot.com/2009/02/students-feel-entitled-to-high-grades_22.html">Dr. N</a>, <a href="http://colossus.mu.nu/archives/283228.php">Hube</a>, and <a href="http://thicketandthorp.wordpress.com/2009/02/20/on-student-expectations-and-grades-and-other-things/">Jonathan</a>.</li>
<li>Analepsis uses the issue as <a href="http://analepsis.wordpress.com/2009/02/21/b-is-for-breathing/">a teachable moment</a>.</li>
<li>Silvia ponders the disconnect between faculty expectations and <a href="http://antioppressive.wordpress.com/2009/02/18/%e2%80%9cnobody-told-me-im-responsible-for-my-own-learning%e2%80%9d/">student perceptions of responsibility</a> for their own learning.</li>
<li>Dave Mazella thinks about <a href="http://long18th.wordpress.com/2009/02/19/gordon-ramsay-and-teaching-prn/">teaching p*rn</a>, and returns to consider <a href="http://long18th.wordpress.com/2009/02/21/the-resistance-to-learning/">student resistance</a>.</li>
<li>Dean Dad considers the effects of <a href="http://suburbdad.blogspot.com/2009/02/error-and-failure.html">student fears of failure</a>.</li>
</ul>
<p>Finally, this episode of Teaching Carnival could not be complete without a section devoted to the Facebook TOS dust-up of February 2009:</p>
<ul>
<li>Rana presents <a href="http://palimpsest.typepad.com/frogsandravens/2009/02/the-great-facebook-rights-grab-of-2009.html">an excellent analysis</a> of the issue.</li>
<li>Amanda French <a href="http://amandafrench.net/2009/02/16/facebook-terms-of-service-compared/">compares the new Facebook TOS</a> (now the old-new Facebook TOS, I guess, sort of like New Coke, so I guess were all drinking the Classic Facebook TOS now!) with the terms of a number of other social media sites.</li>
<li>Chuck uses the occasion to think about <a href="http://www.chutry.wordherders.net/wp/?p=2095">public media 2.0</a>.</li>
<li>And several of us invent <a href="/my-new-tos/">our own new TOS</a>.</li>
</ul>
<p>Thats it for this carnival! Tune in, well, 13 days from now for Teaching Carnival 3.3, hosted by the probably more responsible and on top of things <a href="http://bomphiologia.livejournal.com/">Alan Benson</a>, and remember, tag posts of yours or other folks with “teaching-carnival” on Delicious or Technorati if youd like them included.</p>
<ul class="links-nextprev"><li class="links-nextprev-prev">← Previous<br> <a href="/teaching-carnival-tk/">Teaching Carnival, TK</a></li><li class="links-nextprev-next">Next →<br><a href="/digital-humanities-roundup/">Digital Humanities Roundup</a></li>
</ul>
<hyvor-talk-comments website-id="9100" page-id="/teaching-carnival-32/"></hyvor-talk-comments>
<div class="webmentions" id="webmentions">
<h3 id="webmentions-2">Webmentions</h3>
<p>No replies yet.</p>
</div>
</heading-anchors>
</main>
<footer>
<p><em>Built with <a href="https://www.11ty.dev/">Eleventy v3.1.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>
<script type="module" src="/dist/rJ3_G-2ArF.js"></script>
</body>
</html>