Files
kfitz-site/jazz-fest/index.html
Kathleen Fitzpatrick 90058ac608 rebuild for webmentions
2025-02-18 08:22:59 -05:00

728 lines
23 KiB
HTML
Raw 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>Jazz Fest</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="jazz-fest">Jazz Fest</h1>
<ul class="post-metadata">
<li><time datetime="2006-04-30">30 April 2006</time></li>
<li><a href="/tags/listening/" class="post-tag">listening</a></li>
</ul>
<p>What I had intended was a series of daily updates. Of course, I also thought that I was going to use my hotels gym several times this weekend, so I clearly had some misunderstandings about how general time management was going to function while in New Orleans. But then, time management issues are not unusual in this city: theres a reason why so many waiters and bartenders in NOLA are, or were, at least, in the years before Katrina, fortyish men whom we used to refer to collectively as the Lost Boys. Many of them moved to New Orleans at 18 or so, found themselves caught up in the music and the food and the nightlife, and next thing they knew two decades had gone by, and whatever plans theyd come here with had drifted away, like smoke in the breeze.</p>
<p>Fortunately, this was only a weekend, and one that was meant to be lost, anyhow.</p>
<p>I spent Friday morning in my hotel room, writing a couple of posts, catching up on email, and waiting for my mother to get down here from Baton Rouge. She had a morning meeting, and was a bit delayed, so by the time we left the hotel to catch the shuttle over to the Fairgrounds, it was around 2.30. Catching the shuttle was easy, though the ride from the center of Canal Streets tourist district to the flood-ravaged <a href="http://www.google.com/local?hl=en&amp;hs=v68&amp;lr=&amp;client=firefox-a&amp;rls=org.mozilla:en-US:official&amp;q=new+orleans+fairgrounds&amp;near=New+Orleans,+LA&amp;sa=X&amp;oi=local&amp;ct=title">Mid-City</a> was dramatic, and shocking. Claiborne Avenue runs on both sides of the pillars of the elevated 10 freeway as it passes through the city, and now the parking lots directly under the freeway are filled with junked cars, cars with their hoods and trunks open, cars once submerged in the muck that Katrina left behind. St. Bernard Avenue is lined with the rubble of buildings that have been gutted. Many of the houses in the neighborhood still bear the spray-painted signs of the search and rescue crew. And nearly all of them still bear a high-water mark, somewhere in the middle of the first floor.</p>
<p>Jazz Fest itself, however, seemed an oasis away from all that, a defiant statement that New Orleans would not be allowed to die without a fight. Fridays <a href="http://www.nola.com/search/index.ssf?/base/library-101/1146206811171040.xml?nola">Times-Picayune</a> carried a front-page article about what exactly it took in order to make Jazz Fest happen this year at all, ranging from desalinating and reseeding the racetracks infield to housing musicians whod been displaced. Given that — and given the organizers sense that the festival was a hairs-breadth away from collapse, had it not been for the corporate sponsorship they worked out this year — both the event and the turnout seemed miraculous. Everything moved fluidly, from transportation to admission to food and beverage service to the many fantastic performances, and everyone was there, from locals to out-of-towners, from those who came for the first time to those who come every year. Every venue we wandered into or past was full, and every moment was a celebration of a culture and a city that would not be washed away. There is, needless to say, an <a href="http://www.dailykos.com/storyonly/2006/4/28/11541/9811">overwhelming</a> amount yet to be <a href="/new_orleans_jazz_heritage/">done</a>, but these crowds seemed, at least, to be insisting that it <em>will</em> get done.</p>
<p>As to the music: Friday afternoon we wandered a bit, before cramming our way into the area in front of the Acura Stage, where Bob Dylan was due to start around 3.35. He did finally take the stage about 4.00, and… well, for me, at least, was disappointing. His band sounded great. He, however, sounded pretty bad, but not “bad” in the practiced way that Dylan was always bad, the rough-around-the-edges whiskey and cigarettes voice, the ostensibly untrained, improvised, shooting from the hip style. He instead sounded like he wasnt actually there, a pale (and I do mean pale) shadow of his former self. The music was still the music, but the performance felt a bit hollow. After a bit, we fought our way out of the crowd — which took some doing, and required a very conscious squelching of my crowd-panic — and headed over to the BellSouth WWOZ Jazz Tent, where we caught the last couple of numbers by <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&amp;path=ASIN/B0000B17QJ&amp;tag=plannedobsole-20&amp;camp=1789&amp;creative=9325">Charmaine Neville</a> and her band. It was a study in contrasts — she was astonishingly energetic, at the end of an hour-long set, and her voice was rich and powerful. This was a woman, it was clear, who had <a href="http://www.counterpunch.org/neville09072005.html">survived</a> what I hope is the worst event ever to face a major American city, and who would not be beaten down by it. Finally, after Nevilles set ended, we headed back over to the Acura Stage, where we found a much less crowded spot in the back, and settled down to people-watch and wait for <a href="http://www.drjohn.org/">Dr. John</a>s set to begin. Dr. John is one of the official <a href="http://www.npr.org/templates/story/story.php?storyId=5240124">voices</a> of New Orleans, and one who has done <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&amp;path=ASIN/B000002LTW&amp;tag=plannedobsole-20&amp;camp=1789&amp;creative=9325">the most</a> to preserve and rebuild the New Orleans music scene, and he was greeted with a heros welcome, from a city that wants all its displaced to come back home.</p>
<p>Saturday morning we headed out to the Fairgrounds a bit earlier, and after a bit of poster and t-shirt shopping, found a spot in front of the Southern Comfort Blues Stage and parked ourselves for the day. Mom and I caught the end of the performance by Cajun music Hall of Famer <a href="http://www.lsue.edu/acadgate/music/brichard.htm">Belton Richard</a> and the Louisiana Aces, followed by 50s R&amp;B legend <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&amp;path=ASIN/B000002OC4&amp;tag=plannedobsole-20&amp;camp=1789&amp;creative=9325">Clarence “Frogman” Henry</a>. Mom had to leave after that, but I hung around, defending my little patch of ground as the crowd poured in to hear legendary blues guitarist <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&amp;path=ASIN/B000A3EJOK&amp;tag=plannedobsole-20&amp;camp=1789&amp;creative=9325">Snooks Eaglin</a>. Just after his set, R. showed up, and we sat back and listened to <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&amp;path=ASIN/B00000IKU1&amp;tag=plannedobsole-20&amp;camp=1789&amp;creative=9325">Luther Kent and Trick Bag</a>. But finally, the thing Id been waiting for, the highlight of my day — hell, the highlight of my spring: <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&amp;path=ASIN/B000EBGEZU&amp;tag=plannedobsole-20&amp;camp=1789&amp;creative=9325">Etta James</a>. Ive wanted to see her for as long as I can remember, and boy, was she worth the wait. But she wasnt what I was expecting. I knew that she hadnt been well recently, and given the <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&amp;path=ASIN/B000002OBX&amp;tag=plannedobsole-20&amp;camp=1789&amp;creative=9325">image</a> of her I had in my mind, based on the last pictures Id seen, I was expecting her to be, well, large, and somewhat disabled by that largeness. I was stunned when she walked out on stage: according to her <a href="http://www.etta-james.com/">website</a>, James has very recently lost more than 200 pounds and, not to put to fine a point on it, but shes really, <em>really</em> hot. Her voice hasnt lost any of the rich growl its always had, but her performance is now raunchy and gorgeous, all of the sexual subtext of all her songs laid right out on the surface. She sang for a little over an hour, and Ill say that it was an hour that will be hard for anyone today to match.</p>
<p>That said, todays lineup includes <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&amp;path=ASIN/B000FA58IY&amp;tag=plannedobsole-20&amp;camp=1789&amp;creative=9325">Allen Toussaint and Elvis Costello</a> and <a href="http://www.amazon.com/exec/obidos/redirect?link_code=as2&amp;path=ASIN/B000EU1PNC&amp;tag=plannedobsole-20&amp;camp=1789&amp;creative=9325">Bruce Springsteen with the Seeger Sessions Band</a>. Springsteen has <a href="http://www.nola.com/search/index.ssf?/base/library-101/1146291616240880.xml?nola">rewritten</a> Blind Alfred Reeds song “How Can a Poor Man Stand Such Times and Live” for the city of New Orleans, which hell be performing today:</p>
<blockquote>
<p>He says, “Me and my old school pals had some mighty high times down here<br>
And what happened to you poor black folks, well it just aint fair”<br>
He took a look around, gave a little pep talk, said, “Im with you” then he took a little walk<br>
Tell me, how can a poor man stand such times and live?</p>
<p>Theres bodies floatin on Canal and the levees gone to hell<br>
Martha, get me my sixteen gauge and some dry shells<br>
Them whos got got out of town<br>
And them who aint got left to drown<br>
Tell me, how can a poor man stand such times and live?</p>
<p>I got family scattered from Texas all the way to Baltimore<br>
And I aint got no home in this world no more<br>
Gonna be a judgment thats a fact, a righteous train rollin down this track<br>
Tell me, how can a poor man stand such times and live?</p>
</blockquote>
<ul class="links-nextprev"><li class="links-nextprev-prev">← Previous<br> <a href="/new-orleans-jazz-heritage/">New Orleans Jazz &amp; Heritage</a></li><li class="links-nextprev-next">Next →<br><a href="/me-the-boss/">Me &amp; the Boss</a></li>
</ul>
<hyvor-talk-comments website-id="9100" page-id="/jazz-fest/"></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.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 `/jazz-fest/` was built on 2025-02-18T13:19:09.277Z -->
<script type="module" src="/dist/rJ3_G-2ArF.js"></script>
</body>
</html>