<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Gus Cuddy - RSS Feed</title><description>All content from guscuddy.com</description><link>https://guscuddy.com/</link><item><title>Consolidating obsidian images as markdown images</title><link>https://guscuddy.com/notes/consolidating-obsidian-images-into-markdown-images/</link><guid isPermaLink="true">https://guscuddy.com/notes/consolidating-obsidian-images-into-markdown-images/</guid><pubDate>Thu, 11 Apr 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;m adding a simple workflow for myself to publish micro-logs more regularly to my blog. I write these in Obsidian and copy them over to my Astro site, similar to the workflow that &lt;a href=&quot;https://macwright.com/2023/12/14/blog-about-blog&quot;&gt;Tom Macwright uses&lt;/a&gt;. One frustration I have with Obsidian is its handling of images. When you drag in an image, it does it in the proprietary embed syntax that Obsidian uses, which is not standard markdown. Then when you copy over the markdown, images will fail to get copied over as well.&lt;/p&gt;
&lt;p&gt;I searched for an Obsidian plugin to help solve this, but none seemed to fit the bill. I toyed with writing my own, before realizing it would just be easiest to write a simple script to fix this. My favorite way to write scripts like these these days is with Bun, which has an ingenious new &quot;Shell&quot; API that makes writing shell scripts a breeze, with the convenience of Typescript. With a quick and dirty regex, we can cover almost all my use cases. I also used the beloved magic-string library, which is great for modifying string indices and not really thinking about it too much.&lt;/p&gt;
&lt;p&gt;Image files get copied over to an assets folder inside my blog folder, and then the markdown is modified to use markdown image links that point to the new files. Then we can cp this whole directory into our Astro content directory, and take advantage of Astro image processing. Works beautifully! Here&apos;s the gist:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;import { $ } from &quot;bun&quot;;
import path from &quot;node:path&quot;;
import MagicString from &quot;magic-string&quot;;
import slugify from &quot;slugify&quot;;

const VAULT = &quot;/Users/guscuddy/Mainframe&quot;;

const file = Bun.argv.slice(2)[0];

const text = await Bun.file(file).text();

const r = /!\[\[(.*?)\]\]/g;

const IMAGE_EXTS = [&quot;.jpg&quot;, &quot;.png&quot;, &quot;.gif&quot;, &quot;.svg&quot;];

function escapeParentheses(str: string) {
  return str.replace(/([()])/g, &quot;\\$1&quot;);
}
const matches = Array.from(text.matchAll(r));

const folder = path.dirname(file);

const s = new MagicString(text);

for (const match of matches) {
  if (IMAGE_EXTS.some((i) =&amp;gt; match[1].endsWith(i))) {
    const escaped = escapeParentheses(match[1]);
    const slug = slugify(match[1], { lower: true });

    try {
      const file = (await $`fd ${escaped} ${VAULT}`.text()).trim();

      await $`mkdir -p ${folder}/assets &amp;amp;&amp;amp; cp ${file} ${folder}/assets/${slug}`;

      const startingIndex = match.index;
      const endingIndex = match.index + match[0].length;
      s.update(startingIndex, endingIndex, `![](./assets/${slug})`);
    } catch (e) {
      console.error(e);
    }
  }
}

const finalText = s.toString();

await Bun.write(file, finalText);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;a href=&quot;https://gist.github.com/gcuddy/2a897188c5e125ce2d34e64e98587613&quot;&gt;And here it is as a gist.&lt;/a&gt;&lt;/p&gt;
</content:encoded></item><item><title>Some notes on CSV spelunking</title><link>https://guscuddy.com/notes/some-notes-on-csv-spelunking/</link><guid isPermaLink="true">https://guscuddy.com/notes/some-notes-on-csv-spelunking/</guid><pubDate>Thu, 11 Apr 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Recently I made a web app to explore the &lt;a href=&quot;https://www.theyshootpictures.com/&quot;&gt;They Shoot Pictures Don&apos;t They&lt;/a&gt; list of greatest films of all time. TSPDT fortunately provides a &lt;a href=&quot;https://www.theyshootpictures.com/gf1000_startinglist_table.php&quot;&gt;massive spreadsheet export&lt;/a&gt; of their starting list of ~24,000 films. However, the data is a bit chaotic - you get an XLS file of all the films with title, director, year, country, length, color, genre, the ranking of the movie over time, an IMDB link, and a tspdt id (a universal identifier for future versions of TSPDT). I had previously attempted this with previous years, which did not include an IMDB link --- matching movies by title and year is doable, but not as accurate as if we get a canonical ID.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Luckily, the IMDB link is huge — via the IMDB ID we can look the movie up in The Movie Database (TMDB), which is a beacon of open, free APIs that one can build on (Letterboxd uses them, among many other apps). We can get photos, credits, descriptions, keywords, and more. Just need to use the &lt;a href=&quot;https://developer.themoviedb.org/reference/find-by-id&quot;&gt;Find by Id&lt;/a&gt; endpoint.&lt;/p&gt;
&lt;p&gt;In order to get our XLS file in a workable format, we have a few choices. The most direct way would be to use any spreadsheet app to convert it to CSV. Once it&apos;s in CSV, we can use D3&apos;s &lt;code&gt;csvParse&lt;/code&gt; method to get it into a JavaScript object we can manipulate. Not too bad!&lt;/p&gt;
&lt;p&gt;But we&apos;re left with one big problem: the IMDB Link is provided as a &lt;em&gt;rich link&lt;/em&gt;, not just the URL. Oh, no! Why! When we export that to CSV, by default Numbers.app will just list that cell&apos;s value as &quot;IMDb&quot;. Not helpful!&lt;/p&gt;
&lt;p&gt;My Excel Fu is terrible, and I don&apos;t have a copy of Excel, so I fired up Google Sheets. Unbelievably, Google Sheets does not give you an easy way to do this. The best answers they gave you were to press command c and command v - obviously undesirable for 24,000 links! Google Sheets provides &quot;App Scripts&quot; which lets me write JavaScript to extract a link. However, this didn&apos;t work for a massive list of 24,000 films --- the tab just froze for me.&lt;/p&gt;
&lt;p&gt;Turns out there&apos;s two different kinds of hyperlinks in Google Sheets: rich hyperlinks, with no formula, and hyperlinks which are made with a formula. Written as a formula, hyperlinks can be extracted. But as a rich link, I had to turn to the weird world of Google Sheets apps. I found one that promised to extract URLs, gave it write access to all my spreadsheets (lol), and ran it. It worked for one cell, but once again gave errors when I ran it for the entire spreadsheet.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Sometimes, when chasing rabbit holes like this, it&apos;s better to just do things the &quot;unoptimal&quot; way and move on rather than spend hours trying to find the perfect way. So I ended up selecting 1,000 rows at a time and just doing this 24 times to get the rich links transformed to a formula &lt;code&gt;HYPERLINK(URL, DISPLAY)&lt;/code&gt; of sorts. Then I could write a regex to match the ID. Luckily this was trivial since the URLs were all formatted in the same way (with a trailing slash), so I could actually just call &lt;code&gt;FORMULATEXT&lt;/code&gt; and do something like &lt;code&gt;REGEXEXTRACT(FORMULATEXT(AB3), &quot;title/(.*?)/&quot;)&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;With  a quick download to CSV, &lt;em&gt;finally&lt;/em&gt;... we have a CSV with the IMDB IDs.&lt;/p&gt;
&lt;h2&gt;Transforming CSV into Javascript Objects and Relational SQL&lt;/h2&gt;
&lt;p&gt;Once we have data in CSV form, it becomes a lot easier to parse and do things with.&lt;/p&gt;
&lt;p&gt;D3 conveniently provides &lt;a href=&quot;https://d3js.org/d3-dsv&quot;&gt;csvParse&lt;/a&gt;, which works great --- you give it some CSV as a string, and it turns it into an array of JavaScript Objects. It&apos;s typescript-friendly, as well, taking a generic of the column headers. So we can do something like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;type MovieData = {
  &quot;2007&quot;: string;
  &quot;2008&quot;: string;
  &quot;2010&quot;: string;
  &quot;2011&quot;: string;
  &quot;2012&quot;: string;
  &quot;2013&quot;: string;
  &quot;2014&quot;: string;
  &quot;2015&quot;: string;
  &quot;2016&quot;: string;
  &quot;2017&quot;: string;
  &quot;2018&quot;: string;
  &quot;2019&quot;: string;
  &quot;2020&quot;: string;
  &quot;2021&quot;: string;
  &quot;2022&quot;: string;
  &quot;2023&quot;: string;
  &quot;2024&quot;: string;
  New: string;
  &quot;Director(s)&quot;: string;
  Title: string;
  Year: string;
  Country: string;
  Length: string;
  Colour: string;
  Genre: string;
  &quot;Dec-06&quot;: string;
  &quot;Mar-06&quot;: string;
  IMDb: string;
  IMDB_ID: string;
  idTSPDT: string;
};

type MovieColumn = keyof MovieData;

const parsed = csvParse&amp;lt;MovieColumn&amp;gt;(text);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;(Btw, I generated that intial type by just copying the columns and asking Copilot to turn it into a type.)&lt;/p&gt;
&lt;p&gt;Once we have everything parsed, we can loop through, query the TMDB API, and grab the movie. I saved all this into a SQLite database, extracted text embeddings from the overview and saved it into a vector database, but that&apos;s beyond the scope of this post.&lt;/p&gt;
&lt;p&gt;For more, you can view &lt;a href=&quot;https://github.com/gcuddy/tspdt-explorer&quot;&gt;the codebase&lt;/a&gt;, &lt;a href=&quot;https://github.com/gcuddy/tspdt-explorer/blob/main/packages/api/seed/generate-seed.ts&quot;&gt;the specific CSV parsing file&lt;/a&gt;, or look at &lt;a href=&quot;https://tspdt.pages.dev/&quot;&gt;the finished project&lt;/a&gt;.&lt;/p&gt;
</content:encoded></item><item><title>Arc Browser Act 2 (concerns)</title><link>https://guscuddy.com/notes/arc-browser-thoughts/</link><guid isPermaLink="true">https://guscuddy.com/notes/arc-browser-thoughts/</guid><pubDate>Sat, 03 Feb 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Not sure at all about the &quot;Act 2&quot; of &lt;a href=&quot;http://arc.net&quot;&gt;Arc Browser&lt;/a&gt; as announced in &lt;a href=&quot;https://www.youtube.com/watch?v=WIeJF3kL5ng&quot;&gt;&quot;Meet Act II of Arc Browser - A browser that browses for you&quot;&lt;/a&gt; on February 1st, 2024.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;I&apos;m disappointed that the company seems to be going down the AI rabbit hole, but strangely under the false guise of freedom from search engines and advertising. They present a classic &quot;take out the middleman&quot; disrupter energy that startups love to inhabit, as if they&apos;ve revolutionized and/or democratized some core evil thing. I&apos;m in agreement with them that Big Search™ is not good, and that Google has a monopoly on search. But AI as the answer is just... not it.&lt;/li&gt;
&lt;li&gt;Instant Links kind of just seems like Google&apos;s &quot;I&apos;m Feeling Lucky&quot; with a few extra fancy language parsing features&lt;/li&gt;
&lt;li&gt;Live Folders could be interesting, but it does seem like we just keep re-inventing RSS, but with weirder proprietary systems. Because this is just RSS, right?&lt;/li&gt;
&lt;li&gt;Arc Explore / Search - some pretty big red flags for me.&lt;/li&gt;
&lt;li&gt;Yes, searching for recipes and getting listicles and pages with lots of ads sucks. Capitalism sucks and that part of the web is broken because of bad incentives. Anyway, the answer to me is not to build &quot;a new category of software&quot; which is basically just doing a google search and then summarizing the first few web pages. The whole slick thing of &quot;follow the money&quot; and &quot;we&apos;re pulling the internet into the future&quot; doesn&apos;t add up. For one, the actual engineering of the core of Arc is still built on Chromium — instead of actually delivering competition to Google&apos;s iron grasp on the web browser. (I get that Chromium is open source, but it&apos;s still primarily a Google thing.) So the stuff about how bad Google is kind of rings false. Moreover, I &lt;em&gt;do not&lt;/em&gt; trust LLMs to do the &lt;em&gt;very important&lt;/em&gt; job of curation, which is so much of what the internet has moved away from with the algorithmic feed. RSS, bookmarking, blogs, forums... they aren&apos;t perfect, we don&apos;t want just nostalgia, but I&apos;m not convinced at all that a browser that &quot;browses for you&quot; is the way forward.&lt;/li&gt;
&lt;li&gt;The AI making the web page thing is strange, and the workflow they presented of trying to cook a dish felt incredibly contrived. AI has no sense of context or taste; does it know what a good cookbook looks like? Where&apos;s the joy of &lt;em&gt;browsing&lt;/em&gt;?&lt;/li&gt;
&lt;li&gt;Calling this a new category of software also just seems... goofy. Framing it as some historically revisionist march towards rebellious justice rubs me the wrong way, it feels like a lot of hype hype hype for what amounts to a web browser with AI features. (Weirdly there&apos;s prominently a Bernie sticker in the diner window behind Josh&apos;s head; what was the curious decision making behind leaving that in? A socialist web browser this is not.)&lt;/li&gt;
&lt;li&gt;And this is all with ignoring the most obvious problem to the AI search thing, which is the same as most all non-personal LLM things: what about attribution? What about copyright and credit? So the AI just steals a bunch of work and gives it to you? There&apos;s a major ethical gray area that they kind of seem willfully oblivious to? I didn&apos;t see anything presented that alleviated any concerns around that. Having tried the Arc Search iPhone app I&apos;m left with more questions than answers.&lt;/li&gt;
&lt;li&gt;That being said — I was an Arc early adopter and have liked some of what Arc has done (though to be honest I&apos;ve grown more weary of the sidebar as good UX). More web browsers is good, we need more diversity! I&apos;m just worried about the direction they&apos;re taking with putting all their chips on AI. Some of their ideas they started out with (Easels, for instance) seemed more promising to me.&lt;/li&gt;
&lt;li&gt;&quot;A Browser that browses for you&quot; is probably not going to be good for privacy.&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>Crisis of Worldless Individualism (Apple Vision Pro)</title><link>https://guscuddy.com/notes/apple-vision-pro-initial-thoughts/</link><guid isPermaLink="true">https://guscuddy.com/notes/apple-vision-pro-initial-thoughts/</guid><pubDate>Fri, 02 Feb 2024 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Here are some initial thoughts on the Apple Vision Pro, which launched on February 2nd, 2024. I have not tried it yet — I&apos;m just speculating.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It&apos;s incredible the amount of effort we put into technology that does seemingly nothing for the betterment of humanity. Technology historically contains within it some emanicpatory potential (i.e. in my view Technology should be liberatory). The latest technological developments are not emancipatory, unless it&apos;s framed only from the cruel perspective of liberating us from the ugliness of our own consciousness. There&apos;s some libidinal psychology here going on; the Apple Vision Pro allows us to further repress the mysteries of our unconscious.&lt;/li&gt;
&lt;li&gt;Marc Andreessen has spoken about &lt;a href=&quot;https://www.youtube.com/watch?v=HOn9_StvCwM&quot;&gt;&apos;reality privelege&apos;&lt;/a&gt; when he talks about the virtues of the metaverse. No matter how hard we try, we just can&apos;t seem to materially lift people out of poverty. We swear — there&apos;s just no solution, be pragmatic. The most practical thing is instead to give people reality distorting goggles that transport your sense of self and space/time and consciousness. Not quite another world — but rather an eerie sense of &lt;a href=&quot;https://twitter.com/lmsacasas/status/1754551247179317371?s=12&quot;&gt;worldlessness&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Reality Distortion: When you strap on the AVP, Apple wants you to &lt;em&gt;not&lt;/em&gt; enter a VR world like the Oculus, but to be able to spatially compute through your existing surroundings. But the &lt;a href=&quot;https://www.theverge.com/24054862/apple-vision-pro-review-vr-ar-headset-features-price&quot;&gt;early reviews&lt;/a&gt; point out the video passthrough on the Apple Vision Pro (AVP) is not perfect — it often has trouble with light. (Hm.) What you&apos;re seeing is a simulacrum — a projection of your world captured on camera and sped through to your eye senses at a high-speed refresh rate. This is a fascinating and philosophical technical decision (or limitation); like the shadows in Plato&apos;s cave.&lt;/li&gt;
&lt;li&gt;You&apos;ll notice that Apple, in their presentation, never uses the terms Augmented Reality (AR), Virtual Reality (VR), or the Metaverse. Instead, they seek to push the term Spatial Computing. Spatial computing feels very much in line with tools for thought land.&lt;/li&gt;
&lt;li&gt;No longer is computing confined to rectangular screens, our eyes all day struggling as they stare at two dimensions trying to unlock a third or even fourth. There are certainly compelling ideas here.&lt;/li&gt;
&lt;li&gt;Interestingly, Dynamicland and Folk Computer are also exploring a kind of Spatial Computing. But they do it through real physical objects: paper, blocks. Grounded in the real world. Bret Victor famously &lt;a href=&quot;http://worrydream.com/ABriefRantOnTheFutureOfInteractionDesign/&quot;&gt;ranted against the limitations of glass screens&lt;/a&gt;. While there is exploratory potential to augmenting your surroundings with computing, doing so on a closed-off, individual headset — as opposed to being with others in space — and waving your hands, manipulating &lt;em&gt;air&lt;/em&gt;... seems suspect.&lt;/li&gt;
&lt;li&gt;I haven&apos;t tried it yet, but how satisfying is it to type on an imaginary keyboard, your fingers wiggling through some limbic space-time continuum? Does it feel good to pick up the edge of a window, with no tactile feedback, and resize it?&lt;/li&gt;
&lt;li&gt;Apple Vision Pro is too expensive to worry much about its immediate impact, but I have worries that AVP will be like the Walkman for consciousness. It will lead us into a cold individualism that removes us from the world and from our community. The Walkman turned music inwards, away from the communal, into the individualized (The Walkman marked the movement of music from external to internal 20220201220251). With music, this can certainly be a nice thing. But what about with your whole vision? Projects like Dynamicland and Folk Computer are built around collective computing experiences. People doing stuff together in space. With Apple Vision Pro, you&apos;re merely looking at strange glass, fingers pointing at moons.&lt;/li&gt;
&lt;li&gt;It seems awfully lonely in there.&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>The Disneyfication of Hamilton</title><link>https://guscuddy.com/writing/hamilton/</link><guid isPermaLink="true">https://guscuddy.com/writing/hamilton/</guid><description>The mania is back, and there&apos;s a lot of cash behind it.</description><pubDate>Tue, 07 Jul 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;em&gt;Hamilton&lt;/em&gt; has finally launched on Disney+, over a year earlier than originally slated. It&apos;s been interesting to go through the release of Hamilton all over again, five years after it premiered. 2015---and the subsequent 2016 mania---seems like a world away. A show that was universally esteemed back then---&lt;a href=&quot;https://www.currentaffairs.org/2016/07/you-should-be-terrified-that-people-who-like-hamilton-run-our-country&quot;&gt;there were&lt;/a&gt; &lt;a href=&quot;https://www.currentaffairs.org/2019/02/ishmael-reed-doesnt-like-hamilton&quot;&gt;dissenters&lt;/a&gt;! but they seemed to be drowned out by Michelle Obama calling it &lt;a href=&quot;https://mashable.com/2016/03/14/michelle-obama-hamilton/&quot;&gt;the greatest work of art she&apos;d ever experienced&lt;/a&gt;---has had its fair share of &lt;a href=&quot;https://news.harvard.edu/gazette/story/2016/10/correcting-hamilton/?fbclid=IwAR31b1xKkGZ2nvp2xGl_cRUngrmG5TLBigknNhKxV_E9_DrJKsh9FfMnPPk&quot;&gt;reconsiderations and critical thought&lt;/a&gt; over the years. The world---and culture--is in a much different place than it was.&lt;/p&gt;
&lt;p&gt;Suddenly, however, &lt;em&gt;Hamilton&lt;/em&gt; is back and it&apos;s a huge success---no surprise. &lt;a href=&quot;https://variety.com/2020/digital/news/hamilton-disney-plus-premiere-app-downloads-72-percent-1234698795/&quot;&gt;It&apos;s driving downloads of Disney+&lt;/a&gt;, and interest is at an all-time high:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;But times have changed. I won&apos;t re-iterate &lt;a href=&quot;https://www.currentaffairs.org/2016/07/you-should-be-terrified-that-people-who-like-hamilton-run-our-country&quot;&gt;what others have written about before&lt;/a&gt;, but what felt like a radical reclaiming of history in 2016 now feels a bit, well, simplistic. For one, there&apos;s a type of Obama-era naïveté present when we look at &lt;em&gt;Hamilton&lt;/em&gt; now. By heroizing the founding fathers and largely erasing their sins of slavery---even with (or, even more sadly, especially with) BIPOC playing these roles---you get a piece of pop culture perfectly aligned for white neoliberal elites. The idea that this was an artistic piece that &quot;unified&quot; us under its scrappy patriotism was a centrist, shortsighted myth. Fundamentally, &lt;em&gt;Hamilton&lt;/em&gt; is a show that celebrates our founding fathers, that gives them a mostly free pass for their evils. Hell, how radical can you be &lt;a href=&quot;https://thehill.com/blogs/in-the-know/in-the-know/272964-obama-hamilton-is-the-only-thing-dick-cheney-and-i-agree-on&quot;&gt;when Dick Cheney loves your show&lt;/a&gt;?&lt;/p&gt;
&lt;p&gt;Which isn&apos;t to erase the achievements of &lt;em&gt;Hamilton&lt;/em&gt;, which I was obsessed with for all of 2015/2016. Lin-Manuel Miranda created a work of furiously American pop culture that is riddled with some of the same contradictions of the country itself. He himself has acknowledged that he couldn&apos;t cover it all, and that the criticisms are valid:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;But it might be easier to forgive the show for its flaws if it weren&apos;t for its post-fame production path, which has turned a work of theatre not only into a hyper-capitalist status symbol of a ticket, but now a Disney-presented movie. Disney, which bought the movie rights to the *recording of a stage play *&lt;a href=&quot;https://deadline.com/2020/02/disney-paid-75-million-hamilton-movie-deal-lin-manuel-miranda-largest-film-acquisition-ever-1202849929/&quot;&gt;for a cool $75 million&lt;/a&gt; (!!), is a company that wants to convince us that it&apos;s on the &quot;good side&quot; of the conversation around representation and diversity (don&apos;t worry, &lt;a href=&quot;https://variety.com/2020/tv/news/colin-kaepernick-walt-disney-first-look-deal-espn-1234698911/&quot;&gt;they secured the Kaepernick deal&lt;/a&gt;). So while there&apos;s something perverse about seeing the Disney Logo bookend the &lt;em&gt;Hamilton&lt;/em&gt; movie, there&apos;s something also infuriatingly on-brand about it. The &lt;em&gt;Hamilton&lt;/em&gt; producers have been ruthless with how they&apos;ve monopolized and monetized their &quot;product&quot; (sadly, there will be no other director&apos;s version of &lt;em&gt;Hamilton&lt;/em&gt; for a long, long time); &lt;a href=&quot;https://www.vulture.com/2019/10/disney-is-quietly-placing-classic-fox-movies-into-its-vault.html&quot;&gt;Disney does the same thing&lt;/a&gt; with its fabled &quot;vault&quot;.&lt;/p&gt;
&lt;p&gt;It makes sense that Disney would be able to market &lt;em&gt;Hamilton&lt;/em&gt; to its customers. It&apos;s the perfect addition to their lineup, to sell a vision of America that has the veneer of the fresh and radical without ruffling too many feathers. They&apos;re desperate for this venn diagram of material. Because when you look inside the castle, &lt;a href=&quot;https://theankler.com/p/class-photos&quot;&gt;what you see is not pretty&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I want to be clear: I &lt;em&gt;do&lt;/em&gt; think it&apos;s great that there is a well-produced video of a Broadway show that enables millions more to be able to &quot;experience&quot; it at home. Theatre has a long, long way when it comes to this kind of digital accessibility. In an ideal world, every successful Broadway show &lt;em&gt;should&lt;/em&gt; have this kind of (expensive) recording done. And there needs to be a platform to seamlessly distribute video to those who want to see! But what I find more distressing about this whole situation is that &lt;a href=&quot;https://www.nytimes.com/2020/06/25/movies/hamilton-movie-disney-streaming.html&quot;&gt;this &lt;em&gt;Hamilton&lt;/em&gt; recording was from &lt;strong&gt;four years ago&lt;/strong&gt;&lt;/a&gt;. It took this long to get out to people because the producers needed to squeeze every last drop of money out of this as possible, and eventually submit to the Disney Machine. This isn&apos;t a triumph for theatre and digital media; it&apos;s the unfortunate reality that rich shows like &lt;em&gt;Hamilton&lt;/em&gt; are the ones that get this platform, and only when they participate in &lt;a href=&quot;https://www.nytimes.com/interactive/2019/08/14/magazine/slavery-capitalism.html&quot;&gt;a racist, capitalist system&lt;/a&gt; that isn&apos;t equipped to serve the needs of theatre, or the needs of the young and scrappy immigrants that the show claims to be about. That&apos;s not the type of future I want for theatre or &lt;a href=&quot;https://www.guscuddy.com/unprofitability&quot;&gt;believe that art needs&lt;/a&gt;.&lt;/p&gt;
</content:encoded></item><item><title>New Forms: Could film and theatre converge?</title><link>https://guscuddy.com/writing/2020-05-20-new-forms/</link><guid isPermaLink="true">https://guscuddy.com/writing/2020-05-20-new-forms/</guid><description>&quot;My First Film&quot;, &quot;What Do We Need To Talk About?&quot;, and the new forms that might emerge from this moment</description><pubDate>Wed, 20 May 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;This week I saw two exceptional pieces that blended the lines between theatre and film in fascinating ways.&lt;/p&gt;
&lt;p&gt;The first was Zia Anger&apos;s exceptional &lt;em&gt;&lt;a href=&quot;https://memory.is/my-first-film&quot;&gt;My First Film&lt;/a&gt;.&lt;/em&gt; Anger first debuted her piece as &lt;a href=&quot;https://www.newyorker.com/culture/the-front-row/an-extraordinary-performance-at-metrograph-zia-angers-my-first-film&quot;&gt;a live cinema performance&lt;/a&gt; that has been touring around the country since 2018. In it, Anger projects her laptop onto the theater&apos;s big screen, where she plays segments from her &quot;abandoned&quot; first film, speaks only through typing text into TextEdit, clicks around on video files, and interacts with audience members digitally (she asks them to leave their phones on). In other words, it&apos;s an experience that, in many ways, could translate perfectly to a live stream.&lt;/p&gt;
&lt;p&gt;In the live stream rendition, all those elements are still there. What makes it different, however, is that we aren&apos;t amidst an actual &lt;em&gt;physical&lt;/em&gt; audience. Instead, Anger has figured out how to expertly capture the feeling of being in a collective space with others, better than any online theatre I have seen so far. To begin with, the space in the live stream is limited: it&apos;s capped at a number I&apos;m assuming is under 100 people. Anger would tweet about an upcoming &quot;show&quot; on Twitter, and spots would fill up within a day. Already, entering the stream, there is an aura of exclusivity, of this being a singular experience we are going to share in---not something pre-recorded that can never capture the feeling of &quot;liveness&quot;.&lt;/p&gt;
&lt;p&gt;When we enter the live stream, however, Anger immediately makes it a collective digital circle. With a soft hum of music playing, she puts a note on her screen that gives us an Apple ID to text. With Messages open on her screen, people start texting in, and we see their messages and their phone numbers. (She makes clear that you need to be comfortable with your number being shared in the space.) Anger plays short videos from her computer (actually old saved Instagram stories), and sends them live to people texting in, often writing back with short messages. She also encourages anyone who gets a text back to start texting others, creating a virtuous circle of sharing. It&apos;s actually the most connected to others I&apos;ve felt in a &quot;theatre-y&quot; way since we lost live theatre.&lt;/p&gt;
&lt;p&gt;Throughout the performance---which primarily covers her using her sadly lost and abandoned film to explore personal and professional trauma---we never lose the sense of this being a communal experience. There are several more instances throughout the show of &quot;audience interaction&quot; as well, some of which are very powerful.&lt;/p&gt;
&lt;p&gt;While &lt;em&gt;My First Film&lt;/em&gt; is classified as a &quot;live cinema presentation&quot;, I&apos;m not sure if it can really fit neatly into any category at all. It&apos;s not quite theatre, and it&apos;s not quite a movie---but it&apos;s something somewhere in between, a birth of a wholly original new form. As I&apos;ve &lt;a href=&quot;https://guscuddy.substack.com/p/the-curtain-55-a-collective-breath&quot;&gt;written about before&lt;/a&gt;, sharing one&apos;s screen is an alluring kind of nakedness and vulnerability right now, when all so many of us. seem able to do is stare at our screens. It makes sense that there is much to be excavated in the way of creating art in this realm, especially when leveraging the power of the live experience.&lt;/p&gt;
&lt;p&gt;Richard Nelson&apos;s excellent new &quot;Zoom&quot; play *&lt;a href=&quot;https://publictheater.org/news-items/buckets/conversations/what-do-we-need-to-talk-about/&quot;&gt;What Do We Need To Talk About?&lt;/a&gt; *creates a different kind of &quot;theatre&quot; experience. Nelson&apos;s latest is a continuation of his Apple Family cycle, one of the two main play cycles that he has been presenting at the Public Theater over the last ten years. It was originally presented as a Youtube live stream for some 5,000 viewers, but is now available to replay on demand. The convenience of being able to hit &quot;play&quot; on a play whenever you want is nice, but you do certainly lose something of the live experience---especially in contrast to something like Anger&apos;s &lt;em&gt;My First Film&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Nevertheless, there is something that feels like &lt;em&gt;theatre&lt;/em&gt; here---though it&apos;s not immediately clear what &lt;em&gt;it&lt;/em&gt; is. As Helen Shaw &lt;a href=&quot;https://www.vulture.com/2020/04/the-apple-family-is-muted-in-grief-but-not-on-zoom.html&quot;&gt;writes&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;In the Time Before, I tended to be a bit glib about what constitutes &quot;theater&quot;---I like a big tent, so I figured anything (dance, storytelling, drama) that happened in a theater counted. But now even that expansive definition seems paltry. What Do We Need to Talk About? was made for and with screens, yet it still tastes totally of theater. &lt;strong&gt;Maybe it&apos;s the top notes of language, or the length of engagement among the cast, or the way that the audience&apos;s own imagination is a crucial player?&lt;/strong&gt; I&apos;m trying to place it.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;For starters, it&apos;s a piece of &quot;digital&quot; theatre---though can you really call it that, if it&apos;s just theatre?---that feels uniquely suited to its form. &lt;a href=&quot;https://www.newyorker.com/magazine/2020/05/18/the-first-great-original-play-of-quarantine&quot;&gt;Writes Alexandra Schwartz&lt;/a&gt;: &quot;&quot;What Do We Need to Talk About?&quot; (directed by Nelson) takes place, inevitably, on Zoom, which, for once, &lt;strong&gt;isn&apos;t an irritating technical compromise but an integral plot point&lt;/strong&gt;.&quot;&lt;/p&gt;
&lt;p&gt;Like all good theatre, *What Do We Need To Talk About? *considers carefully its form, and what it is that makes it unique. In this case, it makes use of Zoom to highlight its hyper-realism, retain a sense of intimacy, and let its terrific actors&apos; subtle performances truly shine. The play is moving and funny, blending &lt;a href=&quot;https://www.guscuddy.com/tellthetruth&quot;&gt;fact with fiction&lt;/a&gt;, and feels like it was always meant to be seen this way, in this moment---a mirror of our own lives.&lt;/p&gt;
&lt;p&gt;It&apos;s interesting to consider the quality of video presented in Nelson&apos;s production; it differs greatly from video used in a lot of other theatre, like that used in &lt;a href=&quot;https://www.guscuddy.com/conservatism-in-minimalism&quot;&gt;an Ivo Van Hove show&lt;/a&gt;. Another lesson to take from the success of &lt;em&gt;What Do We Need To Talk About?&lt;/em&gt; is that video does have a tonal quality---not everything needs to be super HD. In fact, the imperfection of webcams over Zoom &lt;em&gt;helps&lt;/em&gt; the production---it would have a very different feel if it were all shot perfectly in high-definition.&lt;/p&gt;
&lt;p&gt;But I still wonder if there&apos;s a way to combine the live energy of &lt;em&gt;My First Film&lt;/em&gt; with the theatrical hyper-realism that&apos;s found in &lt;em&gt;What Do We Need To Talk About?.&lt;/em&gt; Both feel fresh and alive, distinctive works that aren&apos;t marred by the lack of a physical, live space but instead are helped by it. They also feel on the verge of something even deeper and perhaps grander: could film and theatre---different forms, but ever intertwined---find ways to converge into an entirely new-but-familiar form that emerges from and speaks to this moment in time?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://publictheater.org/news-items/buckets/conversations/what-do-we-need-to-talk-about/&quot;&gt;What Do We Need To Talk About?&lt;/a&gt; &lt;em&gt;is available to stream for free &lt;a href=&quot;https://www.youtube.com/watch?v=R76oRm76mMM&amp;amp;feature=emb_title&quot;&gt;on Youtube&lt;/a&gt; until June 28th.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Sign up for the &lt;a href=&quot;https://memory.is/my-first-film&quot;&gt;MEMORY mailing list&lt;/a&gt; or &lt;a href=&quot;https://twitter.com/AngerZia&quot;&gt;follow Zia Anger on Twitter&lt;/a&gt; for updates on future showings of&lt;/em&gt; My First Film.&lt;/p&gt;
</content:encoded></item><item><title>The Long and the Short of It</title><link>https://guscuddy.com/writing/longandshort/</link><guid isPermaLink="true">https://guscuddy.com/writing/longandshort/</guid><description>On the future of live art.</description><pubDate>Tue, 12 May 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This week, &lt;a href=&quot;https://www.youtube.com/watch?v=eZ1b8XX0XZA&quot;&gt;this video&lt;/a&gt; from &lt;a href=&quot;https://www.guthrietheater.org/&quot;&gt;Guthrie Theater&lt;/a&gt; Artistic Director Joseph Haj was shared a lot.&lt;/p&gt;
&lt;p&gt;Haj declares that nothing can replace the liveness of theatre, a tradition that has been around for centuries and centuries and will, undoubtedly, be around for centuries more. I like and respect Haj and I agree with the sentiment that he expresses: there is something indestructible about theatre. The fact that it is still around shows that it is, in some way, intertwined with what it means to be a human in civilization. The long past of theatre stretches out into a presumably long future.&lt;/p&gt;
&lt;p&gt;But is this the sentiment we need right now? I too am not particularly worried about the long-term future of theatre and live art. I am, however, worried about the short to medium term future of theaters. By Haj&apos;s own admission, theaters are not doing well right now. The Guthrie setting up &lt;a href=&quot;https://www.americantheatre.org/2020/05/09/guthrie-to-stay-closed-until-march-2021-mini-season/&quot;&gt;a mini-season in March 2021&lt;/a&gt;is, at least, an honest admission that theatre is not going to be around for a while. (Broadway keeps pushing back &lt;a href=&quot;https://t.co/ETNVxGthxp&quot;&gt;their start date&lt;/a&gt; to still-unrealistic times.) But who is to say that March is going to be that much better? Nobody has any sense of certainty about any part of this situation; if the United States response continues to be disastrous, and no miracle vaccine is procured by early 2021, we could be in for a long, dark road ahead.&lt;/p&gt;
&lt;p&gt;Suffice to say: in the short to medium term, theatre is not going to be OK. Many theaters &lt;a href=&quot;https://www.eventcombo.com/e/small-venue-rent-forgiveness-town-hall---litindiespace-39242&quot;&gt;have&lt;/a&gt; and will close. We need massive fundraising (&lt;a href=&quot;https://www.woollymammoth.net/events/springbenefit&quot;&gt;virtual&lt;/a&gt; &lt;a href=&quot;https://www.classy.org/campaign/the-tank-gala-2020/c276195&quot;&gt;galas&lt;/a&gt; galore!), rent freezes, funding and bailouts. But we also need new ways of thinking about theatre, new ways of exploring its language. It&apos;s a medium of many things: of &lt;a href=&quot;https://guscuddy.substack.com/p/the-curtain-55-a-collective-breath?r=iq1l&amp;amp;utm_campaign=post&amp;amp;utm_medium=web&amp;amp;utm_source=copy&quot;&gt;breath&lt;/a&gt;, of physicality, of metaphor. Some of those languages are certainly not replicable online; some, in new and exciting ways, may be.&lt;/p&gt;
&lt;p&gt;To be clear: some day, we will return to theaters. It&apos;s not that theatre won&apos;t survive in the long run---it will---but that that is, in effect, a both romantic and almost defeatist attitude. It&apos;s a form of throwing our hands up to tradition, without doing any deeper interrogating into how theatre might be able to evolve. Haj is right that live theatre cannot be replaced by any video form (&quot;we have a name for it&quot;, he says, referring to performances on camera, &quot;that&apos;s what film is, and that&apos;s what TV is&quot;), but it&apos;s not a stretch to say it can be supplemented (by amazing content like Playwrights Horizons POP masterclasses) and even expanded upon. We&apos;re only very early on, and we&apos;ve already seen some intriguing examples, both in the sense of &lt;a href=&quot;https://www.newyorker.com/magazine/2020/05/18/the-first-great-original-play-of-quarantine&quot;&gt;actual content&lt;/a&gt; and in &lt;a href=&quot;https://www.timeout.com/newyork/theater/the-best-theater-to-watch-online-may-12&quot;&gt;accessibility&lt;/a&gt;. Instead of falling back on old clichés about the durability of the live experience, we need new thinking, new forms, new paradigms, new roles that old institutions might not be able to fulfill under a limited view of what theatre can be.&lt;/p&gt;
</content:encoded></item><item><title>“Necessary” and “Essential”</title><link>https://guscuddy.com/writing/2020-05-12-necessary-essential/</link><guid isPermaLink="true">https://guscuddy.com/writing/2020-05-12-necessary-essential/</guid><description>What does it mean to create art when you&apos;re inessential?</description><pubDate>Tue, 12 May 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;
&lt;em&gt;art by &lt;a href=&quot;https://www.instagram.com/vickilingart/&quot;&gt;vicki ling&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;These days, there is a lot of discussion about what constitutes being an &quot;essential&quot; worker. (Generally, it&apos;s the most important and also the lowest paid jobs.) Along the way, there&apos;s been a lot of soul searching about what it means to be an inessential business, what processes are actually inessential, and what industries are not quite essential but &quot;important&quot; enough to be bailed out.&lt;/p&gt;
&lt;p&gt;The arts have to deal with being, well, inessential. But what does it actually mean to be inessential? Surely we can&apos;t mean that all art could actually be dispensed with without any consequences? Does that mean that live theatre should be low on the priority list for saving? Art&apos;s relationship to being essential to society, in some form, has a long history. It seems to be a human need to create beauty and meaning, to self-express, to wrestle with the thorny issues and politics of their time. But can we truly say that any singular work of art is essential? I&apos;m not sure that we can argue, ethically, that any single piece of art actually &quot;needs&quot; to exist; in a pithy manner, art is pointless---that is the point.&lt;/p&gt;
&lt;p&gt;However, we live in strange times---even prior to the devastating effects of COVID--19---and many people now can&apos;t resist inscribing a movie, play, or book as &quot;necessary&quot; or &quot;essential&quot;. Art is constantly evaluated for &lt;a href=&quot;https://www.nytimes.com/interactive/2018/10/03/magazine/morality-social-justice-art-entertainment.html&quot;&gt;its moral quality first&lt;/a&gt;, and aesthetic quality second. This is not necessarily a bad thing---&lt;a href=&quot;https://www.newyorker.com/culture/decade-in-review/the-twenty-seven-best-movies-of-the-decade&quot;&gt;the merging of activism and aesthetics&lt;/a&gt; in the creation of art can be powerful---but the constant urge for critics to deem a work of art &quot;necessary&quot; (or worse, a &quot;necessary masterpiece&quot;) can be limiting. In &lt;a href=&quot;https://www.nytimes.com/2018/05/08/magazine/what-do-we-mean-when-we-call-art-necessary.html&quot;&gt;a 2018 piece&lt;/a&gt; for the New York Times Magazine, Lauren Oyler explores the question of what we mean when we call a work of art &quot;necessary&quot;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There are many noncomprehensive adjectives we can apply to good art: moving, clever, joyous, sad, innovative, boring, political. But good art doesn’t have to be any of these things, necessarily; &lt;strong&gt;what we want out of it is possibility&lt;/strong&gt;. To call a work “necessary” keeps the audience from that possibility and saps the artist of autonomy as well. That it’s frequently bestowed on artists from marginalized backgrounds pressures these artists to make work that represents those backgrounds. Worse, it subtly frames their output as an inevitability, something that would have happened regardless of creative agency, and thus suggests that these artists are less in control of their decisions and skills than their unnecessary counterparts.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Art, in atomized form, is not necessary. Implying that it&apos;s our &lt;em&gt;duty&lt;/em&gt; to experience some piece of art is an idealized and misguided notion. And art, in economic terms, is not deemed essential either. So, what is art? Merely a frivolity or a luxury? That doesn&apos;t feel true, either. Instead, I like to think that art is an electric jolt to culture, allowing a society to buzz and feel alive. In one sense, that work is, of course, essential---opening us to the richness and multitudes of the human experience.&lt;/p&gt;
&lt;p&gt;But it&apos;s always worth considering deeply: what keeps us doing this? How can art coexist in a world with so much injustice? How can we read novels, go to the movies, or see an opera when there are people deeply suffering, every day, all around the world? What makes art &quot;necessary&quot;, what makes it &quot;essential&quot;? I&apos;m not sure there is a correct answer. But the tension that this consideration provides is, in some manner, necessary and essential for making good art in our times.&lt;/p&gt;
</content:encoded></item><item><title>How to Build the Future</title><link>https://guscuddy.com/writing/howtobuildthefuture/</link><guid isPermaLink="true">https://guscuddy.com/writing/howtobuildthefuture/</guid><description>A vision for a sustainable theatre.</description><pubDate>Tue, 21 Apr 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;
&lt;em&gt;The Alley Theatre in Houston Texas (&lt;a href=&quot;https://www.americantheatre.org/2020/03/31/no-show/&quot;&gt;via&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;There are several different scenarios for how this whole COVID-19 situation can play out, but two prominent ones come to mind.&lt;/p&gt;
&lt;p&gt;The first is that we slowly start to re-open things over the course of the year (with precautions like mandatory masks), don&apos;t experience a resurgence or spike, and things approach a &quot;new normal&quot; baseline by the end of the year. There will still probably be restrictions on crowd size in that scenario, but it might not be as bad as we think—it depends on how much testing we do, the amount of tracking we have, and the resulting amount of data that that give us. (There are still so many statistical unknowns.) The second situation is that we start to see a spike as rural and Southern states start to re-open, we can&apos;t get our act together with testing and tracking, and we clamp down on social distancing for the foreseeable future, until we have some sort of vaccine. The latter situation probably means that any sort of large crowd—of the kind that almost all theatre would fall into—would be a no-go until the vaccine is circulated, or until things seriously start to calm down.&lt;/p&gt;
&lt;p&gt;As we get more news every second, I go back and forth on whether it&apos;s likely that theatre will exist in some form by the end of the year (if the first scenario plays out). I think it&apos;s possible, in some partial form. But we need to prepare for the possibility that theatre as we know it will not exist until 2021 at the earliest. This isn&apos;t even to mention that many theaters are going to have to shut down because of the financial situation—already, &lt;a href=&quot;https://www.vulture.com/2020/04/ucb-theater-training-center-closes.html&quot;&gt;UCB has closed all its NYC locations&lt;/a&gt;. I expect there to be several more large theaters to close down as well.&lt;/p&gt;
&lt;p&gt;This time of forced pause is going to lead to a lot of introspection, both on a micro level (do I want to devote my time to a career this fragile?) and a macro level (how can we rethink everything in theatre?). &lt;a href=&quot;https://www.americantheatre.org/2020/03/31/no-show/&quot;&gt;Many Artistic Directors are already thinking this way&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Said Chay Yew [outgoing artistic director of Victory Gardens], “We’ve always complained about how the American theatre doesn’t work. &lt;strong&gt;I for one find the blank slate exciting&lt;/strong&gt;. We either repeat what we did before or we don’t. The structure will have to come down.&quot;&lt;/p&gt;
&lt;p&gt;Joe Haj [artistic director of the Guthrie] conceded that if the crisis “ends in six weeks, we may be much like we were before. But if not, or there’s another spike in the virus, &lt;strong&gt;we may need to rethink our model entirely&lt;/strong&gt;. There’s a huge role for leadership. We need to be able to dream ourselves forward.”&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It&apos;s really got me thinking: what would a truly sustainable, accessible, and scalable future look like for theatre?&lt;/p&gt;
&lt;p&gt;There&apos;s a lot to that question. It&apos;s what I&apos;ve probably thought the most about in the last year, and want to continue to develop thinking around as we move forward. What could we build? (&lt;a href=&quot;https://a16z.com/2020/04/18/its-time-to-build/&quot;&gt;This piece on building&lt;/a&gt; by Marc Andreessen was thrown around tech twitter a lot this week. Lots of issues with it but I agree with the sentiment.) Here&apos;s a quick, informal list of things to cover:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Digital Platform&lt;/strong&gt;: The last major movement in American theatre was in the 70s and 80s, with regional theaters and off-off Broadway, a distinctly pre-internet time. Theatre has seen little to no adaptation to modern technology, outside of some small developments. What a digital platform exactly looks like for theatre is the big question, but I would want it to be something that would allow for: easier ways to raise money for theatre, easier means to access space, easier means to access audiences, and cheaper and more accessible means for audiences to find and access theatre. (Great streaming theatre, like &lt;a href=&quot;http://ntlive.nationaltheatre.org.uk/&quot;&gt;NT Live&lt;/a&gt;, would be a start.)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Trans-media:&lt;/strong&gt; How can companies become trans-media storytelling companies? Can theatre companies create content across different forms, like audio, video, immersive live theatre, etc? Digital content is, by its nature, much cheaper and more accessible than theatre.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Money:&lt;/strong&gt; A double whammy: theatre doesn&apos;t pay its workers enough money (excepting Broadway), and it also is too expensive for audiences. This is an obvious—and huge—problem.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Environmental sustainability:&lt;/strong&gt; Theatre&apos;s ephemerality means it often can be pretty wasteful. For how progressive theatre often pretends to be, we haven&apos;t thought enough about how to not only lessen the environmental impact of theatre, but also to engage with that issue.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;How to be like music:&lt;/strong&gt; Streaming music didn&apos;t kill the music industry. Streaming music, though it has its fair share of problems, has not killed concert attendance. Live experiences are still craved above all else. Even watching Beyoncé&apos;s &lt;em&gt;Homecoming&lt;/em&gt; on Netflix makes you want to be there—it&apos;s one piece of a greater puzzle of the whole of music.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Marketing:&lt;/strong&gt; We need more creators like Jeremy O. Harris, &lt;a href=&quot;https://twitter.com/jeremyoharris/status/1209202352600862720&quot;&gt;who create their own marketing in their work&lt;/a&gt;. Theatre has traditionally done an awful job at this, and that&apos;s why its audience is increasingly old. How can the future of theatre be marketed completely differently?&lt;/p&gt;
</content:encoded></item><item><title>Theatre is a medium of metaphor, film is a medium of relation</title><link>https://guscuddy.com/writing/theatreandfilm/</link><guid isPermaLink="true">https://guscuddy.com/writing/theatreandfilm/</guid><description>Understanding and approaching the differences between theatre and film.</description><pubDate>Tue, 14 Apr 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Literalism is the great enemy of theatre. If I wanted to see something literal, I would go watch a period movie.&lt;/p&gt;
&lt;p&gt;Instead, theatre is an art form of metaphors. It is not merely a visual medium. If it were, you could just have a painter make a pretty stage picture. But that&apos;s not what we&apos;re going for. It&apos;s through metaphor that we, as audiences, fill in the gaps. It&apos;s through metaphor that we come to better understand ourselves, better exercise our empathy. The possibilities in theatre are limitless when it is treated in such a way. Suddenly, every aesthetic limitation it seems to have is seen in a new dimension.&lt;/p&gt;
&lt;p&gt;Likewise, there is film that reproduces the bland and theatrical (that is to say, naturalistic theatre)---merely aiming to be a photographic reproduction of a stage show---and then there is film that uses all the resources of cinema and cinematography---moving images, sound, editing---to actually &lt;em&gt;create&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;The power of film comes from the &lt;strong&gt;inter-relation&lt;/strong&gt; of its images and sounds as they are cut together; images coming into contact with other images are analogous to colors coming into contact with other colors when painting. The act of creation involves moving images and sounds---capturing people, not just characters---sliced together into something that is a personal manifestation of the filmmaker&apos;s unconscious.&lt;/p&gt;
&lt;p&gt;Which brings us to a shared similarity: both theatre and films---and all art that I know---are acts of &lt;em&gt;creation&lt;/em&gt;, driven from the unconscious.&lt;/p&gt;
&lt;p&gt;Merely reproducing something---whether that be theatre reproducing film (such as in a piece that doesn&apos;t understand what form it wants to be), or film photographically reproducing theatre (such as in a boring movie that just tries to film actors doing acting things)---is not art. Even attempts to naturalistically reproduce &quot;life&quot; are not necessarily art. Real art involves actual creation, creation that makes something that is &lt;em&gt;alive&lt;/em&gt;. (A sink/swim test for a piece of theatre is the simple question: does it feel alive?)&lt;/p&gt;
&lt;p&gt;There can be exceptions: sometimes the humbling, human attempt at representation can be artful. Still, I would argue that even these attempts---usually seen in grand paintings---are not aiming at exact photographic reproduction. They are aiming at a deeper &lt;em&gt;realism&lt;/em&gt;: to portray the world as it is, not how it looks.&lt;/p&gt;
&lt;p&gt;For example, when I look at &lt;a&gt;one of Rembrandt&apos;s late self portraits&lt;/a&gt; (this one at the age of 63, in the National Gallery in London) I see, on the one hand, an attempt to reproduce life:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;But on the other hand, Rembrandt&apos;s painting portrays the world &lt;em&gt;as it is&lt;/em&gt;, not necessarily how it looks. The facial detail is there---capturing his older, declining face---but the rest is loose, blurry, shadowy. What Rembrandt wanted us to see was the expression of this moment on his mind---drawing focus to his aging face, seen in the same way his younger self-portraits were.&lt;/p&gt;
</content:encoded></item><item><title>Bottom Up, Not Top Down</title><link>https://guscuddy.com/writing/bottomup/</link><guid isPermaLink="true">https://guscuddy.com/writing/bottomup/</guid><description>Stop trying to be productive. Meaningful things emerge organically.</description><pubDate>Tue, 07 Apr 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I&apos;m convinced that one of the main curses of my life is that I know more &lt;em&gt;about&lt;/em&gt; movies than I&apos;ve actually &lt;em&gt;seen&lt;/em&gt; movies.&lt;/p&gt;
&lt;p&gt;Over the course of the last ten years, I&apos;ve created countless syllabi, read endless articles, and curated what can only be described as a quantum amount of lists of lists on the history of film. I made a plan to watch the entire &lt;a href=&quot;http://www.theyshootpictures.com/&quot;&gt;They Shoot Pictures, Don&apos;t They?&lt;/a&gt; list (itself a curation of many lists) before I was 23; it didn&apos;t happen. I thought for sure I would have at least gotten through &lt;a href=&quot;https://www.afi.com/afis-100-years-100-movies-10th-anniversary-edition/&quot;&gt;the AFI list&lt;/a&gt; by now; nah. There are many filmmakers who have had a large influence on me when I&apos;ve only seen one or two of their movies; for some, I&apos;ve seen none. To be clear, I don&apos;t think this is inherently a bad thing. Learning to talk about experiences you&apos;ve never experienced is probably an essential part of the modern age; I think this is what Pierre Bayard is getting at in his book &lt;em&gt;&lt;a href=&quot;http://www.amazon.com/gp/product/1596915439/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=1596915439&amp;amp;linkCode=as2&amp;amp;tag=ribbonfarmcom-20&amp;amp;linkId=66Y2TBSHSYSHGHLE&quot;&gt;How to Talk About Books You Haven&apos;t Read&lt;/a&gt;&lt;/em&gt;. (But I&apos;m not actually sure---I&apos;ve never read it.)&lt;/p&gt;
&lt;p&gt;But now that we&apos;re effectively in Quarantine, Mari and I have started to watch movies. Sometimes two a day! This has been my dream for so long; finally, with unlimited free time, I can surf the niche waves of cinematic universes that I&apos;ve always thought more about than actually experienced.&lt;/p&gt;
&lt;p&gt;But there is a critical difference to this newfound luck: it emerged organically, bottom-up.&lt;/p&gt;
&lt;p&gt;I&apos;ve realized that every other previous effort I&apos;ve had to watch movies has been top-down: I&apos;ve tried to assemble massive spreadsheets of information, and then got frustrated with my brain when it was unable to muster up the motivation to even know where to start. But starting is the hardest thing, and the most important.&lt;/p&gt;
&lt;p&gt;I had it all backwards. The best way to start is bottom-up: doing what is interesting and in front of you, instead of trying to adhere to some grand pie-in-the-sky vision. For getting into a movie watching habit, it means actually just watching whatever you want to watch. We decided to watch Céline Sciamma&apos;s &lt;em&gt;Portrait of a Lady on Fire&lt;/em&gt;, a movie we&apos;ve both wanted to watch for a while. It&apos;s not on any of my canon lists (yet), but it was what was in front of us: a recent, acclaimed movie that has been recommended to me many times. (Keeping up with the cultural conversation is a perfectly bottom-up motivation that works.)&lt;/p&gt;
&lt;p&gt;Watching &lt;em&gt;Portrait&lt;/em&gt; led to a bottom-up rabbit hole. Since we liked the movie, we decided to watch the rest of Sciamma&apos;s work. This, then, connected with something we&apos;ve been trying to do: watch mostly movies directed by women. Eliza Hittman&apos;s new film &lt;em&gt;Never Rarely Sometimes Always&lt;/em&gt; was just released, and had a lot of buzz in the film world. It&apos;s $20 to rent which is a lot, so we watched her previous two movies on Hulu, &lt;em&gt;It Felt Like Love&lt;/em&gt; and &lt;em&gt;Beach Rats&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;All of a sudden, we&apos;ve watched a lot of movies! And it emerged organically.&lt;/p&gt;
&lt;p&gt;I think there&apos;s a reason this bottom-up approach works especially well today. In the Information Age, where we are constantly bombarded and overloaded with new info, it&apos;s more important than ever to be able to adapt and leverage information powerfully. Old, industrial-age manufacturing processes are centered around top-down, plan-based construction: you have a vision, and you work towards it by working backwards from the vision, step by step, till you know what to do.&lt;/p&gt;
&lt;p&gt;But in the digital age, this is far too slow. Information comes at us so fast, and things change so quickly, that trying to stubbornly stick to some long-term vision can lead to things going off the rails. We need to be quick on our feet, and the best way to do this is by starting from the bottom up. Starting from the bottom up means allowing yourself the freedom to tinker in the direction that&apos;s most interesting to you---and allowing that direction to change. It&apos;s OK to leave the end vision hazy because it&apos;s going to change a lot, and you&apos;re probably never going to get there---and if you do, it&apos;s not going to be exactly what we imagined.&lt;/p&gt;
&lt;p&gt;I&apos;ve been thinking about this more because this time of social distancing has been tough for people in so many ways. For those of us who are privileged to have a lot of free time right now, it can be easy to beat ourselves up for not optimizing every second of this time. We have been conditioned to treat time as money. Now that we have an abundance of it, it seems that we need to use it so wisely: be as productive as possible, invent calculus like Isaac Newton did during quarantine, or write &lt;em&gt;King Lear&lt;/em&gt; like Shakespeare did.&lt;/p&gt;
&lt;p&gt;We might even try to commandeer time itself by laying out a master plan, top-down, that we will commence on to complete our goals. (Goals that might not necessarily even be self-imposed, but that we&apos;ve inherited from society.) But I think it&apos;s important to resist those urges, and instead just do what&apos;s interesting to us, right now. Letting our interests and loves guide us, letting our next projects and goals emerge organically. Trying the other way around is like building a stack of LEGOs with one brick at the bottom and a hundred at the top: pretty, but it&apos;s all going to come toppling down with the slightest bump.&lt;/p&gt;
</content:encoded></item><item><title>Theatre in the age of COVID-19</title><link>https://guscuddy.com/writing/covid19/</link><guid isPermaLink="true">https://guscuddy.com/writing/covid19/</guid><description>Resources and thoughts on a fast-moving disaster.</description><pubDate>Tue, 17 Mar 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;strong&gt;These are extraordinary times. What follows is a list of resources for theatre-makers, &lt;a href=&quot;https://twitter.com/guscuddy/status/1239692936498925568?s=21&quot;&gt;re-posted from my Twitter&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;All theatre is closing down for the foreseeable future in New York and across the country. It&apos;s going to rock this industry to its core.&lt;/p&gt;
&lt;p&gt;&amp;lt;!--more--&amp;gt;&lt;/p&gt;
&lt;p&gt;First, a moment for all the shows that just opened, or were set to open, which had to unexpectedly and unceremoniously shut down their runs. For most of them, probably forever. It sucks.&lt;/p&gt;
&lt;p&gt;How are people going to get paid? How are theaters going to survive? How are we going to innovate? These are all pretty big burning questions right now. The truth is, nobody knows what&apos;s going to happen.&lt;/p&gt;
&lt;p&gt;We&apos;re in uncharted territory for this industry. We&apos;ve moved into a position where no one can predict the future with any degree of certainty, and so we&apos;ve even &lt;a href=&quot;https://www.ribbonfarm.com/2020/03/09/plot-economics/&quot;&gt;&quot;lost the narrative&quot;&lt;/a&gt;, resorting to just trying to take in as much raw data as possible.&lt;/p&gt;
&lt;p&gt;But many theaters around the country are finding ways to film and stream their shows, with wide shots and close ups, with special permission from Actor&apos;s Equity. Some are even collaborating with &lt;a href=&quot;https://www.broadwayhd.com/&quot;&gt;BroadwayHD&lt;/a&gt;. &lt;a href=&quot;https://secure.act-sf.org/overview/gloria-tonistone-streaming&quot;&gt;A.C.T.’s productions are already available to purchase&lt;/a&gt; and stream — and available for the price you want to pay.&lt;/p&gt;
&lt;p&gt;Perhaps this new form of digital accessibility can become more widespread in the future, rather than just an exception in a pandemic. But it does needs to be done right. Otherwise, people will just turn on Netflix or Disney+ instead.&lt;/p&gt;
&lt;p&gt;And who actually gets to watch these filmed shows? Just ticket buyers? What about other people who want to check it out? Filmed theatre isn&apos;t perfect—it almost always loses something in translation. But it&apos;s a start.&lt;/p&gt;
&lt;p&gt;&quot;Theatre doesn’t translate that well to film, but I think you can get a sense if something works well.&quot; - &lt;a href=&quot;https://www.americantheatre.org/2020/03/13/the-show-goes-online/&quot;&gt;director Rebecca Frecknall&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can watch Young Jean Lee&apos;s 2011 performance of her show WE&apos;RE GONNA DIE (which just was forced to close its new run at Second Stage) online for free&lt;/p&gt;
&lt;p&gt;&amp;lt;blockquote class=&quot;twitter-tweet&quot;&amp;gt;&amp;lt;p lang=&quot;en&quot; dir=&quot;ltr&quot;&amp;gt;WE&apos;RE GONNA DIE, directed by &amp;lt;a href=&quot;https://twitter.com/rajafeath3r?ref_src=twsrc%5Etfw&quot;&amp;gt;@rajafeath3r&amp;lt;/a&amp;gt; and performed by &amp;lt;a href=&quot;https://twitter.com/janellemcdrmth?ref_src=twsrc%5Etfw&quot;&amp;gt;@janellemcdrmth&amp;lt;/a&amp;gt;, closed early due to COVID with its last show tonight. But you can watch the low-fi version, performed by myself (as well as the version I did with David Byrne) on my website. &amp;lt;a href=&quot;https://t.co/rDTUp2RMtX&quot;&amp;gt;https://t.co/rDTUp2RMtX&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;— Young Jean Lee (@YoungJean_Lee) &amp;lt;a href=&quot;https://twitter.com/YoungJean_Lee/status/1238268661086867456?ref_src=twsrc%5Etfw&quot;&amp;gt;March 13, 2020&amp;lt;/a&amp;gt;&amp;lt;/blockquote&amp;gt; &amp;lt;script async src=&quot;https://platform.twitter.com/widgets.js&quot; charset=&quot;utf-8&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;You can also go to OntheBoards.TV and use the code ARTATHOME20 for free streaming thru the end of April. They have an excellent collection of experimental theatre, dance, music, and category-defying work.&apos; Recs here:&lt;/p&gt;
&lt;p&gt;&amp;lt;blockquote class=&quot;twitter-tweet&quot;&amp;gt;&amp;lt;p lang=&quot;en&quot; dir=&quot;ltr&quot;&amp;gt;Around 60 tip-top experimental performances (incl. Okwui Okpokwasili&apos;s Bronx Gothic, the Rude Mechs&apos; The Method Gun, and Young Jean Lee&apos;s The Shipment), all for free through April, all streaming on &amp;lt;a href=&quot;https://t.co/1seTBwTa20&quot;&amp;gt;https://t.co/1seTBwTa20&amp;lt;/a&amp;gt; !!!! See one each night, keep that show-going habit ALIVE&amp;lt;/p&amp;gt;— Helen Shaw (@Helen_E_Shaw) &amp;lt;a href=&quot;https://twitter.com/Helen_E_Shaw/status/1239237406467010561?ref_src=twsrc%5Etfw&quot;&amp;gt;March 15, 2020&amp;lt;/a&amp;gt;&amp;lt;/blockquote&amp;gt; &amp;lt;script async src=&quot;https://platform.twitter.com/widgets.js&quot; charset=&quot;utf-8&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;But perhaps the biggest question for theatre: will artists still get paid? For many New York theaters, the answer seems to be yes. For now.&lt;/p&gt;
&lt;p&gt;&amp;lt;blockquote class=&quot;twitter-tweet&quot;&amp;gt;&amp;lt;p lang=&quot;en&quot; dir=&quot;ltr&quot;&amp;gt;We’re so proud to be part of such a kick-ass community with companies like &amp;lt;a href=&quot;https://twitter.com/sohorep?ref_src=twsrc%5Etfw&quot;&amp;gt;@sohorep&amp;lt;/a&amp;gt; and &amp;lt;a href=&quot;https://twitter.com/NYTW79?ref_src=twsrc%5Etfw&quot;&amp;gt;@NYTW79&amp;lt;/a&amp;gt; who are also committed to paying folks during our closures! Let’s roll call the other orgs we should be lifting up right now and send so much social media love. It means a lot!&amp;lt;/p&amp;gt;— Ars Nova (@arsnova) &amp;lt;a href=&quot;https://twitter.com/arsnova/status/1238232430798143489?ref_src=twsrc%5Etfw&quot;&amp;gt;March 12, 2020&amp;lt;/a&amp;gt;&amp;lt;/blockquote&amp;gt; &amp;lt;script async src=&quot;https://platform.twitter.com/widgets.js&quot; charset=&quot;utf-8&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;But I&apos;m not sure how things will fare elsewhere in the country, and for smaller theaters. This is a difficult time for everyone involved. Everyone is losing work.&lt;/p&gt;
&lt;p&gt;If you can afford it, please don&apos;t ask for a refund if you bought a ticket and the show has been canceled. Many theaters NEED this money. And if you can, donate. “There is no ‘surplus’ in nonprofit.”&lt;/p&gt;
&lt;p&gt;We need to dig deep and find new ways to support artists and keep theaters alive. Insurance will only partially cover Broadway. Everyone else will have to be bailed out. Non-profit theaters don&apos;t have a lot of extra cash laying around, especially without spring galas.&lt;/p&gt;
&lt;p&gt;Small and mobile theaters that don&apos;t have full calendars of programming may be able to escape alive. But even then, they are going to need a boost. Government may help, and we need to urge them to do so. But it&apos;s probably more likely to come from corporate donors.&lt;/p&gt;
&lt;p&gt;One of the best resources I&apos;ve seen for theaters and artists is the page that ART/NY is compiling. They&apos;re doing a tremendous job. All we can do right now is to help each other.&lt;/p&gt;
&lt;p&gt;And La Mama has been sitting on CultureHub for a while now. It&apos;s a fantastic platform that aims to bridge art &amp;amp; technology. They are working with HowlRound to help stream select productions from the theatre community.&lt;/p&gt;
&lt;p&gt;There&apos;s also Theatre Without Theater, which popped up on Instagram and has already started to blow up. It&apos;s a nightly 7:30pm broadcast aiming to fill the void, by featuring performances, songs, &amp;amp; more from the theatre community. Highly recommended.&lt;/p&gt;
&lt;p&gt;The 24 Hour Play Festival is doing “Viral Monologues”, posting a new monologue on their Instagram every 15 minutes for 24 hours.&lt;/p&gt;
&lt;p&gt;I also wonder how we&apos;ll continue to have innovations with audio theatre. There&apos;s a lot of money in podcasts right now, and their value is only going to increase. No one has yet &quot;unlocked&quot; fiction/theatre podcasts. I&apos;d love to see a lot more experimentation in this space.&lt;/p&gt;
&lt;p&gt;Obviously, classes are also moving online. Playwright Jaclyn Backhaus is beta-testing teaching an online playwrigint class via Zoom—open to all. As is Young Jean Lee.&lt;/p&gt;
&lt;p&gt;This kind of innovation and new, networked thinking is going to be what&apos;s required for theatre to make it through this. We can&apos;t operate on the same old assumptions + old ways of doing things. It&apos;s a great time to re-think everything, especially around accessibility.&lt;/p&gt;
&lt;p&gt;It&apos;s imperative that the next time this happens we can be better prepared, with a social safety net that allows people to remain afloat. Till then, &lt;strong&gt;&lt;a href=&quot;https://covid19freelanceartistresource.wordpress.com/&quot;&gt;here&apos;s a great list of resources for freelancers&lt;/a&gt;&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;The bottom line: support your local theater, and others too if you can. This is going to require a collective effort to make it through this.&lt;/p&gt;
</content:encoded></item><item><title>How to tell the truth</title><link>https://guscuddy.com/writing/tellthetruth/</link><guid isPermaLink="true">https://guscuddy.com/writing/tellthetruth/</guid><description>Examining perception, illusion, and un-reality in the work of Lucas Hnath, Tina Satter, and the Safdie Brothers.</description><pubDate>Wed, 11 Mar 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Recently I caught Lucas Hnath&apos;s new work, &lt;em&gt;&lt;a href=&quot;https://www.vineyardtheatre.org/dana-h/&quot;&gt;Dana H&lt;/a&gt;&lt;/em&gt;, which I thought was one of the most stunning things I&apos;ve seen in a long time.&lt;/p&gt;
&lt;p&gt;As a piece of theatre, &lt;em&gt;Dana H&lt;/em&gt; is shocking and sort of unreal: Hnath has cut together real-life interviews (conducted by Steve Cosson of The Civilians) with his mother, retelling her harrowing story of being abducted by a member of the Aryan Brotherhood, into a 75-minute sort of &quot;narrative&quot;. This audio is then played for us while Deidre O&apos;Connell (pictured above) puts in a pair of headphones and lip-syncs the entire thing, beat for beat. That&apos;s pretty much the entire show. But its effect is devastating, a feeling not like anything I&apos;ve quite felt before in the theatre.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Dana H&lt;/em&gt; plays in interesting conversation with the Vineyard&apos;s first show of their season, &lt;em&gt;Is This a Room&lt;/em&gt;. That show was also a piece of excellent documentary theatre based on a transcript, an FBI interrogation with Reality Winner, which Tina Satter assembled into a weird, otherworldly piece of hyper-naturalistic theatre. The actors spoke the transcript word for word—every awkward pause and cough and hm and throat clearing, every weird background noise and seeming non sequitur. What both &lt;em&gt;Dana H&lt;/em&gt; and &lt;em&gt;Is This a Room&lt;/em&gt; accomplish is to subvert our expectation of theatre as a medium of illusion.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h5&gt;Is this a room?&lt;/h5&gt;
&lt;p&gt;When we go see a piece of theatre that is going to tell us a story, there is always a layer of disbelief and illusion—which is what makes theatre theatre. In great theatre the leap we have to make is very easy, but it&apos;s still there: sets aren&apos;t real, props are merely representations of things. We get swept up in the illusion of the whole thing. But in the case of Hnath and Satter&apos;s new work, they take you out of that safe space, and into another realm entirely.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Dana H&lt;/em&gt; subverts our expectations of what theatre should be so hard that it is tough to even define what exactly it is doing so incredibly well. But the play knocks against our very perception of how we perceive truth, facts, art and reality---how we pick up the pieces and assemble narratives. Performatively breaking the fourth wall is one thing, but hearing a real-life story—from its real-life source—is something else entirely. (In a way, Ma-Yi&apos;s &lt;em&gt;Suicide Forest&lt;/em&gt;, now returning for a run at ART/NY, shares a similar theme: its also about a real-life mother, and the playwright and her real mother perform in the show together.) It would be dark and harrowing—but formally simplistic—to just listen to an audio recording of Hnath&apos;s mother. But by putting an actor onstage and giving her the Herculean task to perform an entire monologue without speaking—for some, the major interpretative instrument that an actor has—we witness something else entirely: a true blending of art and reality that shakes us deeper than either could be just by themselves.&lt;/p&gt;
&lt;p&gt;This documentary aspect of art has become an increasingly popular trend that can be deeply mined. It makes sense: in an age where social media acts as a sort of performance and mini-art-sharing, blending the lines between performance and reality, it tracks that &quot;art&quot; and &quot;performance&quot; are bringing in more of reality. We can even see this with a recent movie like the Safdie Brothers&apos; &lt;em&gt;Uncut Gems&lt;/em&gt;, which remixes a real-life NBA game with a fictional story of a gambling jeweler, starring actors (Adam Sandler) and real people playing versions of themselves (Kevin Garnett). The effect with that movie, I found, was similarly dizzying. Somehow by inserting reality into a story it makes the stakes feel that much higher, and raises our anxiety levels through the roof. Movies are also a medium fundamentally based on illusion; by deconstructing and subverting that illusion in small or large ways, we can lose our footing beneath us.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h5&gt;KG&lt;/h5&gt;
&lt;p&gt;I&apos;m increasingly fascinated by how art and reality, lies and truth, perception and facts can all intertwine and intermingle. In a time of fake news, unreliable sources of truth, and issues of believing survivors, it seems like these kinds of work can hold a grip on us in a new, entirely unexpected way.&lt;/p&gt;
&lt;h3&gt;Vulnerability&lt;/h3&gt;
&lt;p&gt;Recently I&apos;ve been finally attempting to read Karl Ove Knausgaard&apos;s &lt;em&gt;My Struggle&lt;/em&gt; series, which is a massive six volume set that is basically one incredibly detailed, somewhat mundane, yet strikingly vulnerable (to the point of embarrassment) and addicting memoir. In the first volume, Knausgaard spends at least 60 pages recounting a single night of trying to get beer for a New Year&apos;s Eve party. It&apos;s exhaustingly thorough and detailed, flipping a microscope onto himself in a way that&apos;s somehow both cringe-inducing and fascinating.&lt;/p&gt;
&lt;p&gt;Knausgaard&apos;s books have become a literary sensation, especially in his native Norway. His success , I think, speaks to a broader trend of blurring the lines between reality and art. As I&apos;ve written about before, this is a time when we have art that is increasingly intermingling with reality and social media, to form some sort of weird triangle. Everything bleeds into another thing, and the three inform one another.&lt;/p&gt;
&lt;p&gt;“The duty of literature is to fight fiction. It&apos;s to find a way into the world as it is,&quot; &lt;a href=&quot;https://www.newyorker.com/culture/the-new-yorker-interview/karl-ove-knausgaard-the-duty-of-literature-is-to-fight-fiction&quot;&gt;Knausgaard says.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Presenting life-as-is in all its mundane but tremendous tragedy is not necessarily anything new. Chekhov was doing this at the turn of the 20th century. In the preface to his version of &lt;em&gt;Uncle Vanya&lt;/em&gt;, adapter/director Robert Icke quotes Chekhov (in what I believe is his own translation):&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Life must be exactly as it is, and people as they are. Not on stilts. Let everything on the stage be just as complicated – and at the same time just as simple – as it is in life. People eat their dinner, just eat their dinner, and all the while their happiness is being established – or their lives are being broken up.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Something about the magnifying glass of the stage, of art, can make the regular everydayness of life heartbreaking.&lt;/p&gt;
&lt;p&gt;But Chekhov was more subtle about how he revealed himself. Today, we can longer separate the art from the artist. It&apos;s telling that one of the most persistent recent tropes in theatre I&apos;ve seen is the playwright-as-character. We have to remind ourselves that the artist is often inseparable from what we&apos;re seeing before us.&lt;/p&gt;
&lt;p&gt;This merging of &quot;activism and aesthetics&quot; as Richard Brody put it in his &lt;a href=&quot;https://www.newyorker.com/culture/decade-in-review/the-twenty-seven-best-movies-of-the-decade&quot;&gt;decade in review&lt;/a&gt; piece, is about combining the personal and political and turning them into vulnerability. In a way, this is the culmination of part of the mission of Jean-Luc Godard and the filmmakers of the French New Wave, who saw films as being united with the lives of their creators, as well as the social and political climate at large.&lt;/p&gt;
&lt;p&gt;In an age of &lt;a href=&quot;/hyperlink&quot;&gt;hyperlink consciousness&lt;/a&gt; where our lives have become less and less private, the individual artist who finds new ways to explore being vulnerable will continue to be the most fascinating.&lt;/p&gt;
</content:encoded></item><item><title>The Hidden Conservatism in Minimalism</title><link>https://guscuddy.com/writing/conservatism-in-minimalism/</link><guid isPermaLink="true">https://guscuddy.com/writing/conservatism-in-minimalism/</guid><description>What exactly are we hiding?</description><pubDate>Tue, 25 Feb 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Philip Johnson was a Nazi, that much is clear.&lt;/p&gt;
&lt;p&gt;The man who built the iconic minimalist &quot;glass house&quot; and other twentieth century architectural achievements was also a fascist Nazi sympathizer for much of his life. But this fascism wasn&apos;t separated from his work. In many ways, it manifested itself in Johnson&apos;s strict designs. Kyle Chayka writes in &lt;em&gt;The Longing for Less&lt;/em&gt; about the glass house:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;His sympathy for fascism is apparent in the strictness of the architecture itself. It’s a house built for and by a single person, demonstrating a kind of megalomaniacal possessiveness. The architect has nothing at stake in making a visitor comfortable, only himself.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Twentieth century modernism emerged in the mid century after two devastating world wars. As Chayka puts it, modernism &quot;offered an antiseptic, ahistorical alternative to what came before it—a vision of a safer and cleaner world, with cosmopolitan equality for all who inhabited its architecture.&quot; The de-ornamentation of minimalism, in other words, was its own type of Puritanism. It enabled a type of &lt;a href=&quot;https://www.guscuddy.com/2020/03/20/Cultural-Nostalgia-is-Toxic/&quot;&gt;subtle nostalgia&lt;/a&gt; and regressive politics.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.guscuddy.com/2020/01/22/The-Pitfalls-and-Transcendences-of-Minimalism,-and-the-Potentials-of-Maximalism/&quot;&gt;By flattening things out&lt;/a&gt;, we may be able to achieve some sort of transcendence. But often we are merely hiding away from the immense complexity and &lt;a href=&quot;https://guscuddy.com/entanglement&quot;&gt;entanglements&lt;/a&gt; of the world.&lt;/p&gt;
&lt;p&gt;Recently, &lt;a href=&quot;https://guscuddy.substack.com/p/european-theatre-vs-american-theatre&quot;&gt;I grappled&lt;/a&gt; with some of the flattening that the important theatre director Ivo Van Hove does. The tides have turned against Van Hove a bit. What once went felt startlingly fresh---like a glass of cold water thrown against the face of American theatre---now feels a bit familiar and played out. At his best, Van Hove can offer spectacular and brutal visions of our inner psyches. But at his worst, Van Hove&apos;s largely apolitical work can feel removed and regressive, problematic in similar ways to Johnson&apos;s.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;As expected, the reviews for his new &lt;em&gt;West Side Story&lt;/em&gt; on Broadway are severely mixed---in the truest meaning of that word. &lt;a href=&quot;https://www.nytimes.com/2020/02/20/theater/west-side-story-review-sharks-vs-jets-vs-video.html&quot;&gt;Some&lt;/a&gt; &lt;a href=&quot;https://www.vulture.com/2020/02/theater-review-a-new-west-side-story-onscreen-all-the-way.html&quot;&gt;were&lt;/a&gt; &lt;a href=&quot;https://www.thedailybeast.com/ivo-van-hoves-west-side-story-broadway-revival-aims-to-shock-but-ends-up-lost-in-time&quot;&gt;harshly&lt;/a&gt;
critical, while &lt;a href=&quot;https://www.washingtonpost.com/entertainment/theater_dance/this-gutsy-new-west-side-story-is-unlike-any-youve-seen--and-its-exhilarating/2020/02/20/3f3533e6-5017-11ea-9b5c-eac5b16dafaa_story.html&quot;&gt;others&lt;/a&gt; &lt;a href=&quot;https://www.timeout.com/newyork/theater/west-side-story-broadway-review-revival-ivo-van-hove&quot;&gt;defended&lt;/a&gt; or &lt;a href=&quot;https://www.latimes.com/entertainment-arts/story/2020-02-20/ivo-van-hove-west-side-story-broadway-review&quot;&gt;lauded&lt;/a&gt; its perceived boldness.&lt;/p&gt;
&lt;p&gt;Alexandra Schwartz in &lt;em&gt;The New Yorker&lt;/em&gt; wrote &lt;a href=&quot;https://www.newyorker.com/magazine/2020/03/02/a-grim-take-on-west-side-story&quot;&gt;one of the most scathing critiques of the production&lt;/a&gt;, one that mirrors the problems of minimalism in art. She writes:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The production is an infuriating example of what happens when a powerful style calcifies into shtick—infuriating because so much that is exciting, even revelatory, here is crushed beneath the director’s insistence on a vision that feels narrow and doctrinaire. He wants to make us see an iconic work with new eyes, but all we can see is him.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Van Hove&apos;s minimalism, now pushed to the heights of commercial mainstream in theatre, has become conservative. It&apos;s not anything we haven&apos;t seen before, and it&apos;s not anything Van Hove hasn&apos;t done already. This &lt;em&gt;West Side Story&lt;/em&gt; has a shallow grasp of race in America, as well. &lt;a href=&quot;https://www.nytimes.com/2020/02/24/opinion/west-side-story-broadway.html&quot;&gt;In an op-Ed for the &lt;em&gt;New York Times&lt;/em&gt;&lt;/a&gt;, critic Carina del Valle Schorske writes about how this version doesn&apos;t do anything to unpack the show&apos;s deeply problematic representation of Puerto Ricans:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;This production also renders the Jets as a multiracial gang, concocting a fantasy world in which bigoted whites form an alliance with African-Americans against Puerto Rican migrants — a bid, in Ms. De Keersmaeker’s words, “for inclusion of the American population today.” But it’s unlikely black New Yorkers would seek (or find) security among white Americans rather than among their Caribbean, Middle Eastern and Central American neighbors. Mr. van Hove’s casting misrepresents the real solidarities that form at the margins of U.S. citizenship — and perhaps more dangerously, shifts our focus away from the enduring problem of white supremacist violence. “Inclusion” here is code for willful colorblindness.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is a type of something I call &quot;two-dimensional racism&quot;: when we treat diversity and inclusion as a quota to fill, as merely putting actors of color on stage without interrogating any deeper. It&apos;s not anything new---in fact, it&apos;s written into the very fabric of the show&apos;s existence. Said Sondheim before writing: &quot;I’ve never been that poor and I’ve never even met a Puerto Rican.”&lt;/p&gt;
&lt;p&gt;That the production is also intertwined in a gross story about one of its actors being a sexual harasser---and that Van Hove and producer Scott Rudin have defended him, despite protestors outside the theatre every night---only speaks further to the politics of this kind of production. One that has the veneer of being radical, that commercially wants to be apolitical, but that is in actuality regressive and conservative.&lt;/p&gt;
</content:encoded></item><item><title>The Durability and Continued Promise of the Immersive</title><link>https://guscuddy.com/writing/immersive/</link><guid isPermaLink="true">https://guscuddy.com/writing/immersive/</guid><description>Why we&apos;re all trying to escape into another world.</description><pubDate>Tue, 18 Feb 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I’ve noticed a trend recently.&lt;/p&gt;
&lt;p&gt;When Netflix or Disney+ play their logo animations, they end by zooming into the actual logo, as if we are falling into them, immersing ourselves in another world. Take a look:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h5&gt;Netflix and Disney+ present the aesthetics of immersion.&lt;/h5&gt;
&lt;p&gt;Before we can watch Netflix we must first disappear into a dream-wave of colors, entering into another universe. It&apos;s a universe where things aren’t quite so shitty, a universe in which we can curl up into, which can cradle us. It&apos;s also a universe that has algorithimically been determined to quench our thirst---well, almost. There&apos;s always the lingering promise of &lt;em&gt;more&lt;/em&gt;, of one more bingeable episode finally satisfying our lingering needs. It&apos;s something people have been desiring for a long, long time—to escape into another dimension—and has only been escalated by some of the despair of 2020 capitalism.&lt;/p&gt;
&lt;p&gt;Everything we consume on Netflix happens in this Netflix universe, all within that giant &quot;N&quot;. We can see this with the company&apos;s &lt;a href=&quot;https://thebaffler.com/latest/the-netflix-twitter-complex-atad&quot;&gt;endless social media accounts&lt;/a&gt; that act like real people—treating all their &quot;content&quot; as one universe. It&apos;s as much world-building and mythos-crafting as it is a corporate marketing strategy.&lt;/p&gt;
&lt;p&gt;Of course, universes are becoming more popular than ever, as evidenced by entities like the Marvel Cinematic Universe, Disney&apos;s huge original catalog, or &lt;em&gt;Game of Thrones&lt;/em&gt;. Marvel realized that instead of releasing a movie every year they could release multiple movies a year, creating a bottomless pit of content for fans to constantly immerse themselves in. In 2020, Mavel will also launch two live-action TV shows on Disney+ that are apart of its Cinematic Universe, continuing to build out its world and dominate the pop culture landscape.&lt;/p&gt;
&lt;p&gt;Disney realized that &lt;em&gt;Star Wars&lt;/em&gt; wasn&apos;t moving fast enough, either. Instead of releasing a movie every few years, they upped it to a movie every year. And once that didn&apos;t work, they pivoted to creating the buzzy &lt;em&gt;Mandalorian&lt;/em&gt;, which was the focal point of Disney+. Most &lt;em&gt;Star Wars&lt;/em&gt; fans just want the world to persist. Disney decided that, to succeed in entertainment capitalism, they had to create a never-ending well of content that would let fans constantly be talking about and &quot;living in&quot; their favorite alternate world.&lt;/p&gt;
&lt;h2&gt;The politics of escapism&lt;/h2&gt;
&lt;p&gt;But why do we want to escape into alternate worlds at all?&lt;/p&gt;
&lt;p&gt;It&apos;s been a fairly consistent through line in human history: we try to create worlds that are beyond our own. We construct religions, tell stories around camp fires, and make art that tries to transport us, whether implicitly or explicitly. The technological advancements offered in the 20th century, though, led to a type of immersion not seen before. Cameras allowed us to capture fictional stories that were vividly real, and movie theaters allowed the mass consumption of these immersive stories. The rise of television and better special effects led to humans falling into these other worlds on a consistent basis. But with the development of the internet, that connection and immersion became constant.&lt;/p&gt;
&lt;p&gt;With constant connection came the ability to easily dissociate from everyday life and get lost in online worlds. We could go down YouTube rabbit holes, watch Netflix, browse forums, get lost on Twitter or Reddit, or play online games with each other. But the rise in wanting to be immersed in other worlds is also clearly a reaction to something else: some of the general shittiness of being alive in the 21st century. Much of this shittiness, to be clear, has always been there, but has only become more pervasive and &quot;seen&quot; by the light speed connection that the internet provides with the rest of the world. Modern escapism, then, is political: it&apos;s an attempt to escape a world which seems to be constantly on the brink of collapse. The great hypocrisy is that much of this escapism is commodified and monetized by some of the companies contributing to many of the problems in the world.&lt;/p&gt;
&lt;hr /&gt;
&lt;h2&gt;Other Examples of Immersion&lt;/h2&gt;
&lt;h3&gt;Google Maps and Clunky Immersion&lt;/h3&gt;
&lt;p&gt;Here is the new Google Maps icon:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Here is the old one:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Google is a company who has always had pretty poor aesthetics. But I think it&apos;s interesting how they&apos;ve designed the new Google Maps icon, because it&apos;s so static and clunky. It doesn&apos;t have any sense of forward momentum or process, like the previous rendition. The previous one isn&apos;t the most pleasing---but at least it felt like you were going somewhere. Now it&apos;s just a pin---and pins aren&apos;t very immersive. As a result, I find myself slightly hesitating whenever I need to open up Maps now.&lt;/p&gt;
&lt;h3&gt;Museum Texting&lt;/h3&gt;
&lt;p&gt;Many museums now offer texting or app services that help you learn or engage more with the art. Despite at first feeling like a gimmick, I&apos;ve now realized that these are a type of immersion that a museum can offer. &quot;Connect with our team of art historians and educators in real time as you explore the Museum&quot;, says the Brooklyn Museum. What this offers is a way for museums to try to make museum-going into an immersive experience of engagement, one that puts &lt;em&gt;you&lt;/em&gt; in control.&lt;/p&gt;
&lt;h3&gt;Theatre is Immersive&lt;/h3&gt;
&lt;p&gt;Theatre, almost by definition, is immersive.&lt;/p&gt;
&lt;p&gt;The success of &lt;em&gt;Cursed Child&lt;/em&gt;, for instance, is no surprise. What fans of Harry Potter have always wanted is to &lt;em&gt;live&lt;/em&gt; in the stories, to go to Hogwarts and be immersed in its world. By offering a two-part, six-hour play that is complete with its own sense of magic, fans are able to live in this alternate world for a while. (It&apos;s why I expect there to be a &lt;em&gt;Harry Potter&lt;/em&gt; TV show some time soon---it seems like an extremely valuable piece of intellectual property that will be endlessly mined for profit.)&lt;/p&gt;
&lt;p&gt;In order to experience &lt;em&gt;Hamilton&lt;/em&gt;, the soundtrack wouldn&apos;t do. One had to be at the production, because theatre is immersive---it offers another world.&lt;/p&gt;
&lt;p&gt;Taken beyond that, we can look at the popularity of immersive theatre. &lt;em&gt;Sleep No More&lt;/em&gt;, which opened in New York in 2011, has remained surprisingly durable. Occupying the McKittrick Hotel, they still sell out nine performances a week, at ticket prices usually above $100. (And that&apos;s not to mention the bar and restaurant.) There is still something magical and exciting to the idea of putting on a mask and falling into another mysterious world for a night, not to mention profitable.&lt;/p&gt;
</content:encoded></item><item><title>The Changing Tides of American and European Theatre</title><link>https://guscuddy.com/writing/europeanvamerican/</link><guid isPermaLink="true">https://guscuddy.com/writing/europeanvamerican/</guid><description>Why American new plays are underrated, and New York&apos;s attitudes towards Ivo Van Hove have shifted.</description><pubDate>Tue, 11 Feb 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;h6&gt;A view from the bridge&lt;/h6&gt;
&lt;p&gt;A few years ago, Broadway was struck by Ivo Van Hove fever. Despite having directed productions at New York Theatre Workshop since the mid 90s, van Hove&apos;s production of &lt;em&gt;A View from the Bridge&lt;/em&gt; broke out when it hit Broadway in 2015, following a sucessful run on the West End. Critics, like the New York Times&apos; Ben Brantley who called it &quot;what Greek tragedy once felt like&quot;, gushed over it. Soon, the popularity of van Hove skyrocketed. There was &lt;a href=&quot;https://www.newyorker.com/magazine/2015/10/26/theatre-laid-bare&quot;&gt;a feature in The New Yorker&lt;/a&gt; on him that featured words like &quot;elemental&quot; and &quot;raw&quot;, and many articles praised his edgy, auteur vision. Soon after he was tasked by producer Scott Rudin to direct a version of &lt;em&gt;The Crucible&lt;/em&gt; on Broadway starring Saiorse Ronan (a product of the algorithmic-type producing Rudin does, which I call The Scott Rudin Problem). Van Hove won the Tony Award in 2016 for Best Director for &lt;em&gt;View&lt;/em&gt;, and his status as the Sexy Broadway Director Of The Moment was cemented, a quick rise to power for the Belgian-born, Amsterdam-based director. In 2018, van Hove&apos;s production of &lt;em&gt;Network&lt;/em&gt; with Bryan Cranston premiered on Broadway. And in 2020, Van Hove is one of the few directors a producer will let dismantle &lt;em&gt;West Side Story&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;A View from the Bridge&lt;/em&gt; offered something relatively accessible for Broadway audiences, allowing us to dip our toes in the avant-garde waters while remaining in grounded territory. The production was exhilirating: more Ancient Greek drama than naturalistic Arthur Miller, which felt exciting. Sure, &lt;a href=&quot;https://www.wsj.com/articles/a-view-from-the-bridge-review-troubled-waters-of-self-regard-1447378200&quot;&gt;there were dissenters&lt;/a&gt;—some with uncool complaints about the aesthetic changes to our expected version of an Arthur Miller play, and others with valid complaints about the flattening out of Italian-American culture. But for the most part, Ivo was embraced as a necessary breath of fresh air for the suffocating blandness of the American theatre landscape. For some us, Ivo&apos;s work (starting for me with 2014&apos;s brilliant &lt;em&gt;Scenes from a Marriage&lt;/em&gt; at NYTW) represented a paradigm shift in what theatre could be. Van Hove was an architect of energy in three-dimensional space. Working closely with his life partner and designer Jan Versweyveld to construct worlds of set, costume, light, video, and music (all his rehearsals start on day one with full tech), van Hove would create stunning visceral action and images that got at something essential. The ending of his &lt;em&gt;Angels in America&lt;/em&gt; was the Angel spinning and throwing Prior to the ground repeatedly; the metaphor of the trauma of AIDs being a body being thrown down over and over was a more powerful image for some than a literal stage representation could ever be—a window into a brutal inner world. (Though, to be clear, Kushner&apos;s original ending is not literal either!) Kushner approved. In Rebecca Mead&apos;s New Yorker profile on van Hove, she writes that &quot;Kushner says that one of van Hove’s gifts is to &apos;make the audience confront the failure to create completely convincing illusions—and the power of the theatre &lt;em&gt;is&lt;/em&gt; that failure to create convincing illusions.&apos;&quot;&lt;/p&gt;
&lt;p&gt;Theatre is a medium of metaphor, and literalism can be one of its great enemies. By allowing space for the invisible to emerge, theatre audience members can participate in the drama, letting their unconscious—and whatever that might bring—do part of the work. Peter Brook wrote about this in &lt;em&gt;The Empty Space&lt;/em&gt;; Van Hove&apos;s work is nothing truly new, but it did seem to unlock something in American culture. His work honored the event-ritual of theatre, but most importantly, unlike so much contemporary theatre, felt &lt;em&gt;alive&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;But it&apos;s 2020 now. Attitudes have shifted a bit on Ivo and the nature of European White Men directing Euro-chic theatre. And he&apos;s not quite the theatrical darling he once was—or at least, not in the same way. Personally, I have grappled with the problematic aspects of Ivo&apos;s work and attempted to reckon with them; I still enjoy him as a director, while also accepting the problems and complexities he poses. But things that I could naively brush off a few years ago land a bit harder now. For one, his upcoming &lt;em&gt;West Side Story&lt;/em&gt;, of course, &lt;a href=&quot;https://www.nytimes.com/2018/09/15/arts/dance/city-ballet-fires-two-male-dancers-accused-of-sharing-photos.html?searchResultPosition=16&quot;&gt;features a performer&lt;/a&gt; who was fired from the New York City Ballet for sexual misconduct (&lt;a href=&quot;https://www.nytimes.com/2019/05/19/arts/dance/amar-ramasar-new-york-city-ballet.html?searchResultPosition=4&quot;&gt;and then re-hired&lt;/a&gt;). And Van Hove&apos;s acting ensemble at his theatre, &lt;a href=&quot;https://ita.nl/en/ensemble/&quot;&gt;the International Theatre of Amsterdam&lt;/a&gt; (ITA), is pretty much entirely white, as far as I can tell. This is the same ensemble he has been working with for decades and, to be fair, they are one of the best in the world. (Hans Kesting for life!) But this lack of diversity can&apos;t really be ignored anymore. And the same is unfortunately true with their current directors. That means that his seminal &lt;em&gt;Angels in America&lt;/em&gt; production had white men playing Belize and the Angel, and &lt;a href=&quot;https://tga.nl/en/productions/othello&quot;&gt;his &lt;em&gt;Othello&lt;/em&gt;&lt;/a&gt; had a white actor playing Othello. It&apos;s easy for van Hove to take a position of not seeing race, but this doesn&apos;t really fly anymore. What this model of European theatre offers is a two-dimensionalization of culture and race that, in America today, feels regressive. European white men inflicting their whitewashed vision onto a text can&apos;t help but feel colonialist today.&lt;/p&gt;
&lt;p&gt;The tides are slightly turning against this kind of European theatre in America, though. Simon Stone&apos;s &lt;em&gt;Medea&lt;/em&gt;, which was a critical hit in Amsterdam (at ITA) and London, was met with lackluster reviews in New York at BAM. Stone was clearly influenced by the van Hove aesthetic (though he does work very differently), and what once felt fresh a mere few years ago now feels a bit stale and played out. Stone&apos;s &lt;em&gt;Yerma&lt;/em&gt; was so exhilirating in a madcap way—and featured such a great performance from Billie Piper—that we could ignore some of its implausibilities, and even gloss over the complexity of the cultural implications of adapting Lorca, or the thinness of the main character. (After all, it passed the biggest test of a revival: it actually did &lt;em&gt;revive&lt;/em&gt;, and felt alive.) But &lt;em&gt;Medea&lt;/em&gt; isn&apos;t quite there. As Helen Shaw points out in &lt;a href=&quot;https://www.vulture.com/2020/01/how-do-you-solve-a-problem-like-medea.html&quot;&gt;her review&lt;/a&gt;, the play just isn&apos;t as strong, and Rose Byrne just isn&apos;t as &quot;distractingly good&quot;. But more than that, Shaw (and she isn&apos;t alone) sees some hidden problematic misogyny in Stone&apos;s rewriting of tragic women gone mad.&lt;/p&gt;
&lt;p&gt;At the very least we have to acknowledge that maybe these productions are hiding or ignoring some complexities that they don&apos;t want to face, masked by minimalist designs. It&apos;s &lt;a href=&quot;/minimalism&quot;&gt;the same problem of minimalism I wrote about recently&lt;/a&gt;—there is something about the cleanness that can rub us the wrong way, now, knowing that there&apos;s way more complexity than meets the eye. In a funny way, European theatre—which is constantly hailed as being more &quot;progressive&quot;—is in a lot of ways behind new American playmaking. Sure, Berlin is doing weirder shit that is often more exciting, and certainly &lt;em&gt;way&lt;/em&gt; more accessible. (And I confess I don&apos;t know a ton about non-English language theatre.) But our recent crop of playwrights in America have not only been excellent, but often dive head-first into &lt;a href=&quot;https://guscuddy.com/entanglement&quot;&gt;the entanglement&lt;/a&gt; that some of these other productions ignore. (ITA, as a director&apos;s theatre, doesn&apos;t produce any new plays at all, only revivals.) In 2020, we want messiness and complexity, not flattened simplicity; I&apos;ll take the uncomforatibility in &lt;em&gt;Strange Loop&lt;/em&gt; or &lt;em&gt;Heroes of the Fourth Turning&lt;/em&gt; over the clean, aesthetic lines of &lt;em&gt;Medea&lt;/em&gt;. The mess of ideas, styles, and emotions is uniquely American; when we ignore them, we prioritize aesthetics over reality, the conscious over the unconscious.&lt;/p&gt;
&lt;p&gt;American directors are not immune, either. Sam Gold&apos;s &lt;em&gt;Glass Menagerie&lt;/em&gt; from a few years ago suffered from a contextlessness problem, for instance. And while Daniel Fish&apos;s recent hit Broadway &lt;em&gt;Oklahoma&lt;/em&gt; checked a lot of boxes for me in flipping the play&apos;s subtext on its head and diving into the entanglement, I don&apos;t know that it completely got there—&lt;a href=&quot;https://howlround.com/sympathy-incel&quot;&gt;its ending proved to be problematic&lt;/a&gt; and confusing for some. When can we have New York producers trust directors other than white men to be &quot;auteur&quot; directors? Hopefully soon; with &lt;em&gt;Parasite&lt;/em&gt;&apos;s recent Oscar win, theatre is lagging behind in this regard. It&apos;s not for lack of great talent—I can count so many—but only for fear of giving up the white patriarcal throne that theaters tend to only trust white male directors to mess with a text. For now, we&apos;ll have to rely on the stream of amazing playwrights in America to continue to create explosive work that, in maximally pursuing the complexity of being American, lifts itself above the pitfalls of aestheticized minimalist theatre.&lt;/p&gt;
</content:encoded></item><item><title>The Sound, the Silence, the Invisible</title><link>https://guscuddy.com/writing/soundsilenceinvisible/</link><guid isPermaLink="true">https://guscuddy.com/writing/soundsilenceinvisible/</guid><description>Life is terribly noisy. Can we do anything about it?</description><pubDate>Wed, 05 Feb 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Silence is becoming more and more scarce.&lt;/p&gt;
&lt;p&gt;Last year, noise complaints to 311 in New York City reached an all-time high. Helicopters, street noise, airplanes, music, and other 21st century ambiance combine with the increasing density of cities to create a perpetual noisiness to modern day urban life. That’s why everywhere you go in the city you see people with AirPods in, trying to block out the world with more noise. (Apple’s new AirPods Pro even have noise blocking technology in a tiny, wireless package; I’ll admit that I’m attracted to the idea.) These “wearables”, as Apple classifies them, are in essence an extension of the ear, in McLuhan terms. We are replacing the noise with our own self-chosen noise, like our algorithmically verified Discover Weekly, or Michael Barbaro’s lulling voice on &lt;em&gt;The Daily&lt;/em&gt;. If we took our earbuds out, we’d have to face the suffocating, unbearable loudness that drills into our minds, the hellish and terrifying fireball of noise that is the subway at Union Square. It can all feel a bit like we’re in &lt;em&gt;Uncut Gems&lt;/em&gt;-land, unable to quite grab a chance to breathe. This noise is hot, direct, in-our-face.&lt;/p&gt;
&lt;p&gt;Loud noises are not good for us. They spike stress hormones, which can lead to a host of health issues. And as cities become more dense, the noise will only get more deafening. (And will likely be worse in poorer communities and communities of color.) That’s why silence is now a luxury: only the affluent can afford space where they can be in peace. The other day I stumbled upon a new startup called “&lt;a href=&quot;https://getaway.house/&quot;&gt;getaway&lt;/a&gt;”. The premise? An easily rented cabin with amenities in nature to “unplug from the daily hustle”, complete with a phone lock box. At prices around $200/night, it’s like rich camping, and reminiscent of the original American escaper-from-society-kind-of, Thoreau. But despite the faux-austerity, the attraction is clear: get me into &lt;em&gt;silence&lt;/em&gt;, a “pure” state to re-connect.&lt;/p&gt;
&lt;p&gt;The heat of modern loudness must be countered with the coolness of nature, of simplicity, of boredom, of quiet. Of sitting and thinking. Sure, we have bandaid solutions, like meditation “apps” that use your phone to help you meditate. But these are a bit like dealing with the devil, a slippery slope of endlessly cycling Wellness Capitalism perpetuated by Instagram and its Explore page. We don’t need more information. What people are looking for is not another app, or podcast, or ebook. It’s something far deeper.&lt;/p&gt;
&lt;p&gt;One trait of a cool society is a capacity for nuance, which is something we, as a scaldingly hot society, do not have. But one of the best places to find nuance is in art. In John Cage’s famous &lt;em&gt;4’33&lt;/em&gt;, there is nothing but silence (actually rests) for the piece’s entirety. What Cage might be after is the sense of nuance that accompanies empty space, and the incredible involvement of the invisible. By reframing our perspective on music itself, we fill the invisible silence with emotion, thought, and reaction.&lt;/p&gt;
&lt;p&gt;In the comics, there is something called the “gutter”. It’s the space in between the panels. In that space, everything that makes comics work happens: our brains take two images, and link them together into a narrative.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h5&gt;Try to not tell a story from these two images, from Scott McCloud’s &lt;em&gt;Understanding Comics&lt;/em&gt;&lt;/h5&gt;
&lt;p&gt;The grammar of this invisible magic is called “closure”. Closure is what we do all the time, when we fill in the invisible. It makes us complicit in a piece of art: whether that’s as a reader in comics, as an audience member in the theatre, or as a listener to John Cage’s &lt;em&gt;4’33&lt;/em&gt;. In theatre, the invisible is many things: it’s the baggage we bring in as an audience, it’s the unspoken and repressed parts of life, it’s the spiritual, and it’s the actual act of theatre itself, which is a medium of metaphors defined by incomplete representations that require our brains to fill things in. The invisible is nuanced, and the invisible is often silent. But that doesn’t mean it isn’t heard; the best art leaves an impression on us in a deep way, such that we’re not even sure we can point to exactly how or why. That’s the invisible at work. The invisible, then, is an antidote to the noise of today.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&quot;Build your film on white, on silence and on stillness.&quot;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-Robert Bresson&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
</content:encoded></item><item><title>The Rise of the Influencer Individual in Theatre</title><link>https://guscuddy.com/writing/influencer/</link><guid isPermaLink="true">https://guscuddy.com/writing/influencer/</guid><description>The future of theatre rests in the individual.</description><pubDate>Tue, 28 Jan 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;The original Dutch production of Simon Stone&apos;s MEDEA. Photo by Sanne Peper.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Last night my partner and I saw Simon Stone&apos;s adaptation of &lt;em&gt;&lt;a href=&quot;https://www.bam.org/medea&quot;&gt;Medea&lt;/a&gt;&lt;/em&gt; at BAM. I originally saw Stone&apos;s production at &lt;a href=&quot;https://ita.nl/nl/&quot;&gt;International Theatre of Amsterdam&lt;/a&gt; (Ivo Van Hove&apos;s theater, then titled Toneelgroep), and it has since played across Europe, including a &lt;a href=&quot;https://www.theguardian.com/stage/2019/mar/07/medea-review-barbican-london-simon-stone&quot;&gt;recent successful stint &lt;/a&gt; at the Barbican in London. What struck me most about it is that, despite the excellent and popular Rose Byrne and Bobby Canavale playing the lead roles, the name we talked about most after was that of Stone&apos;s, its maestro. Did his adaptation work? Did its &lt;a href=&quot;/minimalism&quot;&gt;minimalist&lt;/a&gt;, white set adequately contain its energies, or did it veer too far into pretension?&lt;/p&gt;
&lt;p&gt;Stone is part of a recent class of &quot;auteur&quot; theatre directors, along with the likes of Ivo Van Hove, Sam Gold, Robert Icke, or Daniel Fish, to name several others that have recently been produced on Broadway. Stone, Ostermeier, and TK round out those recently produced Off-Broadway. Obviously, the first (unfortunate) thing that jumps out from that list is that they are all white men. Theatre has been disappointingly regressive with how it produces its non-male directors; rarely are they given the type of platform these men have received. But auteur directors are nothing truly new to modern theatre: ushered on largely by Peter Brook, there have been many in the last 60 years (though, it should be noted, not many before that.) Brook, Wilson, LeCompte, and &lt;a href=&quot;https://www.nytimes.com/1985/11/24/theater/auteur-directors-bring-new-life-to-theater.html&quot;&gt;others rounded out the 1980s&lt;/a&gt;. But what has differentiated the recent class is not only their commercial success, but also their prestige as the key influencers for the production.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The future of theatre, like film and television, rests on the rise of the influencer&lt;/strong&gt;. Film, of course, has its auteurs, both new and old, like Scorsese, Gerwig, the Safdie Brothers, Joon-Ho, Tarantino, Duvernay, Peele, Lee, Anderson, or Copolla. Some, like Fincher and Lynch, have moved into television, as well. And institutions like Netflix and HBO have dominated the marketplace of TV, while Disney has dominated content altogether. But in theatre, the rise has been more subtle. Auteur directors never quite broke through to “mainstream” until recently, and while playwrights have traditionally been the hierarchical trendsetters of theatre (think Tennessee Williams, Arthur Miller, or Beckett), this new class is not only terrifically diverse (in many ways), but there is a nascent leveling of the playing field between “downtown” and “uptown” work.&lt;/p&gt;
&lt;p&gt;This idea of the “influencer director” is also in concert with the recent rise of the “influencer playwright”. These individual forces have largely replaced the predominance of collectives and, at the same time, lessened the power of the medium-tier institution. In Helen Shaw’s &lt;a href=&quot;https://www.vulture.com/2019/12/the-2010s-in-theater-spidey-hamilton-gatz-and-much-more.html&quot;&gt;recent piece&lt;/a&gt; reviewing the decade, she notes the rise of the influencer playwright, writing that in the 2010s “one New York era faded (of experimental collectives) and another began (the Influencer Playwright)”.&lt;/p&gt;
&lt;p&gt;When we say influencer playwright, we’re talking about someone like Lin-Manuel Miranda, who turned &lt;em&gt;Hamilton&lt;/em&gt; into a national fever that consumed even the Obamas. We’re also talking about someone like Jeremy O. Harris, who turned the off-Broadway success of &lt;em&gt;Slave Play&lt;/em&gt; into a Broadway run, &lt;a href=&quot;https://www.nytimes.com/interactive/2019/05/20/t-magazine/rihanna-fenty-louis-vuitton.html&quot;&gt;working with Rihanna&lt;/a&gt; and becoming a fashion icon. Clubbed Thumb alum Heidi Schreck had &lt;em&gt;What the Constitution Means to Me&lt;/em&gt; have similar success at New York Theatre Workshop, then also went on to Broadway and is currently touring the country. Performer, playwright and artist Taylor Mac, a long-hailed staple of the downtown scene, made their debut on Broadway last year. Playwright Jordan E. Cooper, whose &lt;em&gt;Ain’t No Mo&lt;/em&gt; was one of the most exciting debuts of 2019, was one of the first (?) playwrights who &lt;a href=&quot;https://www.youtube.com/watch?v=37R1kwv1HWg&quot;&gt;appeared on The Breakfast Club&lt;/a&gt;. And Alexis Scheer’s &lt;em&gt;Our Dear Dead Drug Lord&lt;/em&gt; had a wildly extended run at the WP Theatre, and also broke the weekly and nightly gross records for the space.&lt;/p&gt;
&lt;p&gt;Theatre artists are influencers in the same way YouTubers or Instagram stars are: their name has become synonymous with their work. While many institutions still struggle under the weight of trying to reconcile theatre with the 21st century by insisting on the “importance of stories”, as Helen Shaw puts it, influencer playwrights and directors go on creating compelling work that people gather to see and buzz about. The unifying theme? Many of these artists create work that is uniquely theatrical, often creating situations that make audiences implicitly or explicitly involved, such as in &lt;em&gt;Fairview&lt;/em&gt; or &lt;em&gt;What to Send Up When it Goes Down&lt;/em&gt;; others focus on the arguments and dialogue at the core of another type of theatre, which in general appeals to an older audience.&lt;/p&gt;
&lt;p&gt;Theatre artists that create exciting work become “brands” in and of themselves, outside the institutions that produce them. The new Lin-Manuel, Jeremy O. Harris, Annie Baker, Jackie Sibbles Drury, Will Arbery, Lucas Hnath, or Aleshea Harris are all an event that is defined by its playwright. Just as with the new Ivo Van Hove, Simon Stone, or Tina Satter. Sometimes these artists have online brands, like with the über-influencers O. Harris or Miranda. But other times the internet is contributing to discourse and buzz, like with Fish’s &lt;em&gt;Oklahoma&lt;/em&gt; becoming known as “Sexy Oklahoma”, or with Arbery’s &lt;em&gt;Heroes&lt;/em&gt; inspiring many online think pieces.&lt;/p&gt;
&lt;p&gt;What does this mean for the future of theatre? It’s not yet clear. Institutions like The Public or the National Theater still prove to be extremely powerful, but even there there is a whiff of the slow dinosaur, of a bureaucracy that cannot move at the lightning speed of the internet. I expect these institutions can and will adapt, but this probably means the concentration of power among theatre institutions will lend itself to a powerful few, as with film and TV. The rise of the influencer playwright and director also bleeds into things like criticism. Critics like &lt;a href=&quot;https://twitter.com/josesolismayen?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor&quot;&gt;Jose Solis&lt;/a&gt; and &lt;a href=&quot;https://twitter.com/swholdren?lang=en&quot;&gt;Sara Holdren&lt;/a&gt; (who now works as a director) have defined themselves as unique presences amidst a sea of sameness.&lt;/p&gt;
&lt;p&gt;And implicit in all of this is the seeming disempowerment of the individual actor. Theatre, to be clear, is a collaborative form that is constructed by many people; while there may be one overarching “artist” for a production, everyone involved is an artist who brings their unique selves to the table. As an actor, I worry about an attitude of reverence to the playwright (or director). It creates a hierarchy where they shouldn’t necessarily be one. And, after all, the only thing that ultimately matters is the actor: they are the ones on stage, who we see, who are speaking the words. But the current state of theatre lacks many influencer actors, true old school stars. Most of the “stars” of theatre are now Hollywood actors. Still, I am optimistic about the rise of influencer playwrights and directors being ultimately a good thing for theatre: the more quality work, the better.&lt;/p&gt;
&lt;p&gt;In sports, one of the best analogies for theatre, player empowerment has been the story of the NBA in the past couple years. Movies like 2019’s &lt;em&gt;High Flying Bird&lt;/em&gt;, directed by Steven Soderbergh, dramatize this struggle by showing that, without its players (largely black athletes), the NBA and its owners are nothing. A similar movement is happening within theatre. Strong institutions still are an important force in theatre. But without their artists, they are nothing.&lt;/p&gt;
</content:encoded></item><item><title>The Cult of Minimalism</title><link>https://guscuddy.com/writing/minimalism/</link><guid isPermaLink="true">https://guscuddy.com/writing/minimalism/</guid><description>Minimalism as an artistic genre can lead to transcendence. But its rise as an aesthetic language is more troubling.</description><pubDate>Wed, 22 Jan 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;
&lt;em&gt;This could be anywhere in gentrified Brooklyn.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;In the late 2000s, I became obsessed with a blog called &lt;a href=&quot;https://zenhabits.net/&quot;&gt;Zen Habits&lt;/a&gt;. Written by Leo Babauta, &lt;em&gt;Habits&lt;/em&gt; was one of the OG self-help blogs, promoting minimalism as a way of life and a productivity hack. It taught seventh grade me to wake up early, try meditating, go on runs (that one didn&apos;t last long), set your &quot;MITs&quot;—or &quot;Most Important Tasks&quot;—for the day, and declutter as a means of happiness. It spawned a spin-off site focused on being a minimalist (pre-dating the cringe-inducing &lt;a href=&quot;https://www.theminimalists.com&quot;&gt;&lt;em&gt;Minimalists&lt;/em&gt;&lt;/a&gt;), and several books and courses. Zen Habits wasn’t alone: blogs on minimalism became an entire genre, and an important precursor to the Marie Kondo-ization of culture. Bolstered as a necessity by the 2008 recession, minimalism became commandeered as a rallying cry for hipsters, and an answer to the crass, maximalist consumerism of the 90s and early 2000s. It also became a marketing tactic and a style of reverse consumerism, often privileging (surprise) affluent white men who could &quot;adopt&quot; minimalism as an aesthetic, negating greed with faux-simplicity.&lt;/p&gt;
&lt;p&gt;The aesthetic of minimalism has been surprisingly sturdy. Although originating primarily as an avant-garde genre in American art in the 1960s, minimalism has found a new home not only with the rise of ZenHabits and similar blogs, but with the age of Instagram (which itself took over the visual mantle from the Tumblr and Pinterest days). In those years since Facebook bought it for one billion dollars in 2012, Instagram’s use has skyrocketed, and with that the aesthetics of cleanliness, simplicity, and minimalism. Generally this centers around “beautiful” people, clothing, places, and architecture. Clean lines, clean colors (like white), and a supposed removal of the “excess”. Many startups have capitalized on these aesthetics to formulate a brand, usually accompanied by the same sans-serif fonts spelling out bland slogans equating buying their product or service—which “simplifies” life in some way—with more purpose. But, as we know, startups do not really simplify; the illusion of making our lives simpler has been sold to us for as long as capitalism has been around, and is the propeller that keeps materialism running. Minimalism, thus, has become a brand: for individuals, for influencers, and for companies.&lt;/p&gt;
&lt;p&gt;What this amounts to is a suffocating &lt;em&gt;sameness&lt;/em&gt; in design. This is evidenced by elements of culture as innocuous as &lt;a href=&quot;https://twitter.com/internetkendra/status/1215126916249767936&quot;&gt;book covers&lt;/a&gt;, or in the trends of something like interior design—&lt;a href=&quot;https://www.theverge.com/2016/8/3/12325104/airbnb-aesthetic-global-minimalism-startup-gentrification&quot;&gt;what writer Kyle Chayka has deemed “airspace”&lt;/a&gt;—that is monopolizing cafes, AirBNBs, hotels, Brooklyn co-working spaces, and the like. It’s hard not to feel there is something political to these aesthetics. In a piece for &lt;em&gt;Current Affairs&lt;/em&gt;, Nathan J. Robinson deemed the minimalism design trend as “&lt;a href=&quot;https://www.currentaffairs.org/2019/02/death-to-minimalism&quot;&gt;the aesthetic language of gentrification&lt;/a&gt;”.&lt;/p&gt;
&lt;p&gt;But how did we get here? How did a style of art become a grossly capitalized aesthetic, fitting in with &lt;a href=&quot;https://guscuddy.substack.com/p/the-curtain-10819-?r=iq1l&amp;amp;utm_campaign=post&amp;amp;utm_medium=web&amp;amp;utm_source=copy&quot;&gt;the flattening whims of algorithms&lt;/a&gt;? Part of it can be attributed to the relentless drive towards optimization and profitability that technology and capitalism have wrought. This drive brings with it an oppressive noisiness, one that minimalism-as-a-cult promises to redeem (either through a podcast or ebook, or for the price of $10 a month). The heat of modernity leads to a &lt;a href=&quot;http://www.theguardian.com/lifeandstyle/2020/jan/03/empty-promises-marie-kondo-craze-for-minimalism&quot;&gt;&quot;longing for less&quot;&lt;/a&gt;, as Chakya calls it. An unquenchable thirst for a more simple world, or a &lt;a href=&quot;https://guscuddy.substack.com/p/the-curtain-31-nostalgia-is-toxic&quot;&gt;nostalgia&lt;/a&gt; for an authenticity that was never really there.&lt;/p&gt;
&lt;p&gt;But the world is not simple, and the aesthetics of minimalism do not truly reverberate as activism. Instagram-able minimalism is a privilege, and one that cannot be separated from the maximalist chaos of the world. If you want to just live with your MacBook, great, but that computer was made in sweat shops; your Whole Foods trip is powered by one of the most powerful monopolies in the history of capitalism; your Uber home allows you convenience at the cost of contributing to environmental pollution and unethical working conditions. It’s become almost impossible to minimize our contradictions. Any minimalism is entangled with a maximalist, immense web of disgusting and complex capitalist structures. That’s why Internet personalities like &lt;em&gt;&lt;a href=&quot;https://www.theminimalists.com&quot;&gt;The Minimalists&lt;/a&gt;&lt;/em&gt; have an air of moral righteousness that rings so false; despite the motivations for their desire to consume less being understandable, these affluent white men are able to be minimalist because of a system of immense economic inequality and violence.&lt;/p&gt;
&lt;p&gt;It&apos;s a shame, though, that minimalism has been co-opted by marketing. Because in art, at its core, the genre can lead to the occasional glimpse of the transcendent. There is a tradition (and cliché) of minimalism in theatre (&lt;a href=&quot;https://en.wikipedia.org/wiki/The_Empty_Space&quot;&gt;&quot;I can take any empty space and call it a bare stage&quot;&lt;/a&gt;), much of which has been beaten to death by European theatre. Sometimes this leads to sets so minimalist as to not even be there, in the case of Sam Gold&apos;s cold &lt;a href=&quot;https://www.nytimes.com/2017/03/09/theater/the-glass-menagerie-review.html&quot;&gt;&lt;em&gt;Glass Menagerie&lt;/em&gt;&lt;/a&gt;. And sometimes it leads to works of brilliant invention, like Tina Satters&apos; weird and scary &lt;em&gt;Is This a Room&lt;/em&gt;. The theatre, after all, has been thought of as a place where the invisible can be made visible. And the invisible, it must be said, is decidedly minimalist. Likewise, minimalism in fine arts, such as Agnes Martin, can be immensely overpowering. And minimalism in music need not be mere background music. Composers like Julius Eastman (&lt;a href=&quot;https://pitchfork.com/thepitch/what-slave-play-writer-jeremy-o-harris-is-listening-to-right-now/&quot;&gt;a favorite of Jeremy O. Harris&lt;/a&gt;), have created minimalist music that is politically and culturally charged.&lt;/p&gt;
&lt;p&gt;But some of the great works of pop culture in recent years have seen a fascinating melding of minimalist and maximalist energies. When I think back on theatre like &lt;em&gt;A Strange Loop&lt;/em&gt;, &lt;em&gt;Slave Play&lt;/em&gt;, &lt;em&gt;Oklahoma&lt;/em&gt;, &lt;em&gt;Fairview&lt;/em&gt;, &lt;em&gt;An Octoroon&lt;/em&gt;, or &lt;em&gt;Heroes of the Fourth Turning&lt;/em&gt;, I don&apos;t necessarily think of spare, minimalist artistic impulses. Instead, I think of creators that stuffed their work to the brim with compelling, exhilirating ideas; then, they let the strength of the invisible in theatre—the part the audience fills in—take care of the rest. In TV like &lt;em&gt;Watchmen&lt;/em&gt;, &lt;em&gt;Fleabag&lt;/em&gt;, or &lt;em&gt;Euphoria&lt;/em&gt;, maximalist ideas were stuffed into minimalist scaffolding: nine episodes and done for &lt;em&gt;Watchmen&lt;/em&gt;, two seasons of six episodes of thirty minutes for &lt;em&gt;Fleabag&lt;/em&gt;, and eight episodes for &lt;em&gt;Euphoria&lt;/em&gt;. And in the movie &lt;em&gt;Uncut Gems&lt;/em&gt;, maximalist filmmaking and energy exoploded a minimalist story spine. The point isn&apos;t necessarily to cut out everything, or even to cut out all that&apos;s &quot;inessential&quot;, or that&apos;s &quot;excess&quot;. Sometimes what seems like excess is actually what&apos;s in the shadows or what&apos;s lurking beneath. As Werner Herzog &lt;a href=&quot;https://www.gq.com/story/werner-herzog-profile-cave-of-forgotten-dreams&quot;&gt;said in an interview with GQ&lt;/a&gt;, &quot;We have to have our dark corners and the unexplained. We will become uninhabitable in a way an apartment will become uninhabitable if you illuminate every single dark corner and under the table and wherever—you cannot live in a house like this anymore.&quot; Shallow maximalism illuminates the whole apartment, but shallow minimalism shows just the table. The true invisible bridging between minimalism and maximalism happens when we allow the shadows to fall as they may.&lt;/p&gt;
&lt;p&gt;I’ve grown since the days of obsessing over minimalism blogs, but I still fall victim to its trappings. It’s hard not to in 2020. But what I want to be weary of is using minimalism as a means of ignoring the hard-cut realities of society, and confusing its seductive aesthetics with any sort of real-world change. The cult of minimalism is strong, and its effects are dulling; the world does not need to be seen in Helvetica, black and white, or neatly folded squares. One can live simply and minimally without fooling themselves of its supposed importance. And one can create art that celebrates the brilliance of Minimalism, while engaging maximally with what really matters. Anything less is, to put it simply, not enough.&lt;/p&gt;
</content:encoded></item><item><title>The Entanglement</title><link>https://guscuddy.com/writing/entanglement/</link><guid isPermaLink="true">https://guscuddy.com/writing/entanglement/</guid><description>In which I try to explore the ways in which we are entangled with history, legacies and traumas.</description><pubDate>Tue, 14 Jan 2020 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;We live in webs of entanglements. Amidst history, society and pop culture, these entanglements live with us, whether we notice them or not.&lt;/p&gt;
&lt;p&gt;Many entanglements are things we must constantly grapple with. As a nation, the United States is founded on life, liberty and the pursuit of happiness; it also has deeply rooted &lt;a href=&quot;https://www.theatlantic.com/magazine/archive/2019/04/adam-serwer-madison-grant-white-nationalism/583258/&quot;&gt;white supremacy&lt;/a&gt;, misogyny, and violence. At the movies—an art form founded by immigrants—one of the cornerstone, influential works is &lt;em&gt;Birth of a Nation&lt;/em&gt;: the story of heroizing the Ku Klux Klan. Today, a movie like &lt;em&gt;Black Panther&lt;/em&gt; can be an influential pro-black work, while also being an intellectual property originally created by &lt;a href=&quot;https://en.m.wikipedia.org/wiki/Black_Panther_(Marvel_Comics)&quot;&gt;two white men&lt;/a&gt; and owned by mega-corporation Disney. In music, the most influential American genres like Jazz and Hip Hop were created by African-Americans, and yet are &lt;a href=&quot;https://www.nytimes.com/interactive/2019/08/14/magazine/music-black-culture-appropriation.html&quot;&gt;constantly appropriated by white creators&lt;/a&gt;—and appear in the Billboard Charts as a result. And at the theatre, we have a renaissance of incredible, radical black playwrights, yet these works consistently are appearing in white institutions, and seen by mostly white audiences.&lt;/p&gt;
&lt;p&gt;In an interview in &lt;a href=&quot;https://brooklynrail.org/2019/06/theater/In-Dialogue-Inner-Life-Out-Loud-A-Strange-Loop&quot;&gt;Brooklyn Rail&lt;/a&gt; between playwrights Branden Jacobs-Jenkins and Michael R. Jackson, Jenkins touched on this last entanglement:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I don&apos;t think there&apos;s a lot of conversation among black artists about their entanglements with whiteness. And how their voices are almost fully enabled because of white institutions, white kind of like audiences, white patronage, white criticism, and there&apos;s like very little interest in untangling that, or talking about that entanglement. And I just wonder what that is.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;How do we live with these entanglements? Do we burn them down? Do we disentangle? Do we need to learn to live with them? Or can art put up a burning, fiery microscope to them?&lt;/p&gt;
&lt;p&gt;Many white America simply ignore them. In a recent study from Pew Research Center, 50% of white Americans said “there is too much attention paid to race and racial issues in our country these days”. Likewise, most white Americans believe that relations between whites and blacks are “somewhat good”, whereas 40% of blacks say the same thing.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;There have been numerous great plays by writers of color in recent years that have attacked this entanglement: Jackie Sibbles Drury&apos;s &lt;em&gt;Fairview&lt;/em&gt;, Aleshea Harris&apos; &lt;em&gt;Is God Is&lt;/em&gt;, Jordan E. Cooper&apos;s &lt;em&gt;Ain&apos;t No Mo&lt;/em&gt;, Jeremy O. Harris&apos; &lt;em&gt;Slave Play&lt;/em&gt;, and many more. Yet much of theatre from the director and production side have not caught up. Most theaters are vastly white, and this whiteness runs deep, often all the way to &lt;a href=&quot;http://twitter.com/josesolismayen/status/1186831453620973568&quot;&gt;box office practices&lt;/a&gt;. Then there is the constant entanglement of white directors directing works by playwrights of color. (Almost 90% of directors hired at the ten largest off-Broadway theaters between 2007 and 2017 were white.) The reverse—directors of color getting to direct white writers’ work—is largely not true, as Nicole Brewer &lt;a href=&quot;https://howlround.com/playwrights-color-white-directors-and-exposing-racist-policy&quot;&gt;showed in Howlround&lt;/a&gt;. When diagrammed, this ends up looking quite literally like an entanglement (but a lopsided one):&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In the case of &lt;em&gt;Slave Play&lt;/em&gt;, Harris is tussling dangerously with white supremacy and eroticism. As Dr. Avgi Saketopoulo (a queer pschyoanalyst focusing on trauma, gender and sexuality) &lt;a href=&quot;https://lareviewofbooks.org/article/consentsowhite-on-the-erotics-of-slave-play-in-slave-play/&quot;&gt;recently wrote in the LA Review of Books&lt;/a&gt;, &quot;In contrast to works of art that portray the history of chattel slavery in the past tense, &lt;em&gt;Slave Play&lt;/em&gt; puts its audience on a collision course with how this history pulses through us in the present.&quot; She goes on to write that &quot;&lt;em&gt;Slave Play&lt;/em&gt; hints at how, amid the trauma of having a body entangled with ghastly histories, projects of emancipation may take unexpected paths.&quot; Harris is exploring the entanglement of historical traumas and sexuality; while it has been divisive, it&apos;s also one of the only works on Broadway in recent years that has attacked the entanglement at all. In &lt;em&gt;The Root&lt;/em&gt;, Harris &lt;a href=&quot;https://www.theroot.com/it-should-cost-you-something-as-it-debuts-on-broadway-1837972463&quot;&gt;recounted what director Robert O&apos;Hara said&lt;/a&gt;: &quot;if you’re going to see a play called &lt;em&gt;Slave Play&lt;/em&gt;, it should cost you something, and the cost of that is the recognition of how we’re still entangled in that history.&quot;&lt;/p&gt;
&lt;p&gt;The entanglement is not easy to escape. It can be exorcised, but will never be fully disentangled, not at least in this generation. It&apos;s the entanglement of being American: of living on stolen, blood-soaked land; of living in a system that still privileges people by the color of their skin; of wrestling with our own personal and historical legacies and traumas. And it&apos;s the entanglement of art, creators, institutions, and power. In 2020, we have to hold it all in our heads. The first step to overcoming the entanglement, though, is to acknowledge that it is there in the first place.&lt;/p&gt;
</content:encoded></item><item><title>Inputs and Outputs</title><link>https://guscuddy.com/writing/inputoutput/</link><guid isPermaLink="true">https://guscuddy.com/writing/inputoutput/</guid><description>How creative output is tied directly to inputs</description><pubDate>Tue, 24 Dec 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;According to Lewis Hyde in &lt;em&gt;The Gift&lt;/em&gt; there are three steps in which the &quot;gift&quot; (as it relates to art) can occur and move through society. First, we have the initial gift: a work of art, an intuition, a dream, or a vision that in some way deeply affects our Self, inspiring us. Then, this Gift is transformed through the self by our own &quot;gifts&quot;, our talents, our labor. When we speak of someone being &quot;gifted&quot;, this is the process by which those gifts are used. Finally, there is the finished work: a new gift. The whole process can be boiled down to more reductive terms: &lt;em&gt;input&lt;/em&gt; leads to &lt;em&gt;transformation&lt;/em&gt; leads to &lt;em&gt;output&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I&apos;ve been thinking more and more, as this year draws to a close, about how our inputs inform our outputs. And how, more than ever, we need to ensure we have high-quality inputs. In this age of information overload, our input can affect everything from our health to our creativity to our inner peace.&lt;/p&gt;
&lt;p&gt;Information is like food. If you have too much low-quality, crappy food, you will get sick. It&apos;s a similar thing with information. We need to focus on having more nutrients and less junk. If you stumbled onto a buffet of food you wouldn&apos;t think of &quot;food overload&quot;. Instead, you would identify that some things would be bad for you, some things would be OK, and a few things would be great. With the endless buffet of the internet, it&apos;s important to pick and choose. (And of course, indulging in junk food once in a while is also a wonderful treat.)&lt;/p&gt;
&lt;p&gt;Most people have access to an incredible amount of information. But it can be difficult to sort through it all if you don&apos;t have strong filters. Strong filters---which never come through the algorithmic glaze of AI-curated playlists---enable &lt;em&gt;perspective&lt;/em&gt;, which is one of the most valuable resources in the internet age. The ability to step back amidst the mountain of inputs, and offer perspective on what actually &lt;em&gt;matters&lt;/em&gt;. This perspective is a type of output.&lt;/p&gt;
&lt;p&gt;It&apos;s essential to remember that creative output is tied to input. Sebastian Junger wrote that &quot;writer&apos;s block just means I don&apos;t have the ammo&quot;. Junot Diaz said to &quot;read more than you write, live more than you read.&quot; Whenever I&apos;m stuck, I look at my inputs: what am I consuming? Am I scrolling through Instagram and fiddling with web games all day? Or am I reading great writing, going to theatre and movies, walking through art museums, listening to inspiring music? There&apos;s a huge difference there.&lt;/p&gt;
&lt;p&gt;I loved what music and culture writer Ted Gioia said on &lt;a href=&quot;https://conversationswithtyler.com/episodes/ted-gioia/&quot;&gt;a recent podcast episode&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;If you don&apos;t have good input, you cannot maintain good output&lt;/strong&gt;. The problem is no one manages your input. The boss never cares about your input. The boss doesn&apos;t care about what books you read. Your boss doesn&apos;t ask you what newspapers you read. The boss doesn&apos;t ask you what movies you saw or what TV shows or what ideas you consumed.&lt;/p&gt;
&lt;p&gt;But I know for a fact, &lt;strong&gt;I could not do what I do if I was not zealous in managing high-quality inputs into my mind every day of my life&lt;/strong&gt;. That&apos;s why I spend maybe two hours a day writing. I&apos;m a writer. I spend two hours a day writing, but I spend three to four hours a day reading and two to three hours a day listening to music.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Which brings us back to the gift. In order for our own &quot;gifts&quot; (whether they be writing, acting, composing, performing) to be working, we need to be open and receptive to the possibility of new gifts to make an effect on us. And that means paying attention to what we pay attention to: ensuring we&apos;re exposing ourselves to new things, broadening horizons, consuming high-quality inputs. It&apos;s not always easy to do this---Spotify playlists, for instance, are a feedback trap, basing what to recommend you based on what you&apos;ve already listened to. In an endless echo chamber, how do you discover something truly new? By stepping outside the algorithmic trap, following intuitions, swapping recommendations, and seeking out new, exciting art and experiences.&lt;/p&gt;
&lt;p&gt;The richness of the full human and artistic spectrum is incredible. But in order to create new things we need to be in touch with serendipity, by exposing ourselves to high-quality inputs.&lt;/p&gt;
</content:encoded></item><item><title>In 2019, We Wore Masks To Hide Our Trauma</title><link>https://guscuddy.com/writing/masks/</link><guid isPermaLink="true">https://guscuddy.com/writing/masks/</guid><description>Examining pop culture’s trend of looking at the wounds underneath.</description><pubDate>Tue, 17 Dec 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In thinking about 2019, I keep thinking about the masks. The mask hides something. (&quot;People who wear masks are driven by trauma,&quot; Laurie Blake tells Angela on &lt;em&gt;Watchmen&lt;/em&gt;.) It morphs our identity into something else. In looking back at the pop culture in 2019, this was a year we obsessed over trauma and the masks---both literal and figurative---we wear to cover it up.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Watchmen&lt;/em&gt; is the most blatant example of this: a show that was concerned with investigating the mythos of the mask and the violent trauma of white supremacy. Perhaps the biggest strength of the show was how it enabled its black lead characters &quot;to mold history in ways their ancestors could not&quot;, &lt;a href=&quot;https://www.newyorker.com/culture/cultural-comment/the-great-achievement-of-watchmen-is-in-showing-how-black-americans-shape-history&quot;&gt;as Victor Luckerson wrote in The New Yorker recently&lt;/a&gt; (spoilers in that link!). It didn&apos;t just traffic in trauma for exploitation; it actively engaged and tussled with this trauma, attempting to make its own new, justice-seeking myths. In the end, while some masks were a necessity for its black heroes, the deep, generational trauma of racial injustice will not be healed with hiding, as Will Reeves tells his granddaughter in the show&apos;s finale: &quot;You can&apos;t heal under a mask. Wounds need air.&quot;&lt;/p&gt;
&lt;p&gt;But the exploration of masks and trauma didn&apos;t stop and start with &lt;em&gt;Watchmen&lt;/em&gt;. In Bong Joon-Ho&apos;s massive hit movie &lt;em&gt;Parasite&lt;/em&gt;, there is a different kind of mask. A mask that hides a deep and twisted political trauma, buried underneath itself. In Jordan Peele&apos;s &lt;em&gt;Us&lt;/em&gt; the mask is ourselves; similar to &lt;em&gt;Parasite&lt;/em&gt;, it buries something dark and sinister. In &lt;em&gt;Succession&lt;/em&gt; we saw &lt;a href=&quot;https://www.vox.com/culture/2019/9/24/20870750/succession-hbo-review-season-2-recap&quot;&gt;the hyper interrelation of wealth and trauma&lt;/a&gt;, and the many perverse masks used to cover it up, generation through generation. In &lt;em&gt;Russian Doll&lt;/em&gt;, Natasha Lyonne&apos;s character dies over and over as a type of mask, repressing her own deep, embedded trauma. In &lt;em&gt;Fleabag&lt;/em&gt;&apos;s second season, Fleabag grapples with the trauma of womanhood and grief, meeting a hot priest along the way who sees through her mask: her constant use of the fourth-wall as a means of fictionalizing and dissociating from her own reality.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;In the fantastic short documentary &lt;em&gt;Ghosts of Sugar Land&lt;/em&gt;, the interviewees wear cheap Party City masks to protect their identity as they talk about their childhood friend who was radicalized and joined ISIS; the masks are literal, hiding the trauma of being Muslim in America.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;And in Jeremy O. Harris&apos; &lt;em&gt;Slave Play&lt;/em&gt;, the legacy of traumas in America, especially as it relates to interracial relationships, are laid bare; the mask—which may be one of healing, or not—is sexual.&lt;/p&gt;
&lt;p&gt;Theatre has been an especially potent interrogator of trauma and the masks we wear. But it&apos;s also been a problematic one. &lt;a href=&quot;https://www.americantheatre.org/2019/07/24/black-queer-and-here/&quot;&gt;There is a legacy in theatre of white audiences paying to see stories about people of color suffering&lt;/a&gt;; in many theatre&apos;s season, the &quot;diversity&quot; play is one of violence. Asking actors—especially women of color—to embody this violence and suffering for a white institution has a nasty feeling to it when it is not handled with care and delicacy (and let&apos;s be real—it&apos;s usually not). In this case, the historically oppressed characters are defined by their trauma; they aren&apos;t allowed to escape its confines. But in the last year or so more incredible works by writers of color were finally being produced; often, these plays have grappled with trauma in anarchic ways, subverting white audience expectations and defining themselves on their own means. In works like Michael R. Jackson&apos;s &lt;em&gt;A Strange Loop&lt;/em&gt; the trauma of black queerness is explored, but not reduced to consumable terms for white audiences (I fully admit the show was not made for me); instead, it&apos;s a story largely about the main character facing his parents. &lt;a href=&quot;https://www.nytimes.com/2019/04/25/theater/african-american-playwrights.html&quot;&gt;As Wesley Morris wrote earlier this year&lt;/a&gt;, these plays are &quot;responding — with anger, social acuity and structural chaos — to psychic devastation and national trauma, making roommates of today’s dismay and 400 years of horrors&quot;.&lt;/p&gt;
&lt;p&gt;As a nation, we have immense collective traumas that have left unbearable traces. And as individuals, we all have trauma passed down to us or that we experienced ourselves. It can only be repressed for so long before it comes shooting up to the surface, whether that be through a scary memory triggered by a seeming danger, or a country electing a blatant white supremacist. So much of the art I experienced this year was concerned with wrestling with these traumas and the masks we use to hide them. Some were just pointing to these buried things to make sure we have our eyes open; others (often the best ones) were attempting to heal. As we move forward into 2020, I hope as a culture we can continue to normalize the interrogation of trauma, and the necessary healing that follows.&lt;/p&gt;
&lt;hr /&gt;
&lt;blockquote&gt;
&lt;p&gt;To be alive: not just the carcass&lt;/p&gt;
&lt;p&gt;But the spark.&lt;/p&gt;
&lt;p&gt;That&apos;s crudely put, but...&lt;/p&gt;
&lt;p&gt;If we&apos;re not supposed to dance,&lt;/p&gt;
&lt;p&gt;Why all this music?&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&quot;To Be Alive&quot; by Gregory Orr. &lt;em&gt;(Orr accidentally killed his younger brother in a hunting accident when he was 12.)&lt;/em&gt;&lt;/p&gt;
</content:encoded></item><item><title>Criticism and Making are not opposites. They’re the same thing.</title><link>https://guscuddy.com/writing/criticism2/</link><guid isPermaLink="true">https://guscuddy.com/writing/criticism2/</guid><description>The way we critique is the way we make.</description><pubDate>Tue, 10 Dec 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;
&lt;em&gt;Godard directing Breathless. (Source: Raymond Cauchetier)&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;There&apos;s a pervasive and incorrect mythos surrounding criticism and making that they are opposites.&lt;/p&gt;
&lt;p&gt;As the cliché goes, nothing is more feared by the artist than the deadly critic. We think of the two as enemies, as opposite sides of the spectrum: creativity is building things up, and criticism is tearing them down. This idea is pervasive and sometimes violent, &lt;a href=&quot;https://www.youtube.com/watch?v=4d5KovCbU8w&quot;&gt;like when Michael Keaton&apos;s character in &lt;/a&gt;&lt;em&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=4d5KovCbU8w&quot;&gt;Birdman &lt;/a&gt;&lt;/em&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=4d5KovCbU8w&quot;&gt;assaults a farfetched critic&lt;/a&gt; (a scene applauded by many). Memes like &quot;&lt;a href=&quot;https://knowyourmeme.com/memes/let-people-enjoy-things&quot;&gt;Let People Enjoy Things&lt;/a&gt;&quot; demonize critics as joy-killers. But criticism is not about nit-picking and tearing down. It&apos;s about thinking critically. Media consumers who meme away criticism are scared of disagreement, and are often repressing a criticism that they recognize but are defensive of. They also might not have realized that it&apos;s perfectly possible to enjoy something and be critical of it at the same time. As Sara Holdren wrote in &lt;a href=&quot;https://www.vulture.com/2018/12/i-make-plays-i-write-criticism-im-not-my-own-enemy.html&quot;&gt;her brilliant essay on being a critic and director&lt;/a&gt;, &quot;plays aren&apos;t frogs, and taking one apart won&apos;t kill it.&quot;&lt;/p&gt;
&lt;p&gt;Perhaps what scares people most about criticism is the articulation. It&apos;s incredibly difficult to articulate ourselves, and an inherently political act to do so. (As Anne Bogart says, &quot;one of the most radical things you can do in this culture of the inexact is to finish a sentence.&quot;) But articulation and thinking-things-through is an act of creativity and building, not of destruction. It requires immense energy, vulnerability, and thoughtfulness; the result, if it is good, is a new way of thinking---not just an offering of an opinion.&lt;/p&gt;
&lt;p&gt;Criticism and Making are often complementary processes, with the first leading to the second. Sometimes, as is the case with cultural critics like Wesley Morris, Jenna Wortham, or Hilton Als, criticism and making are one and the same. Many of the most iconic theatre directors throughout history (Peter Brook, Harold Clurman, Anne Bogart, to name a few) were also writers of theory on the craft---in effect, criticism. Criticism is a way to interrogate why something works or doesn&apos;t, allows us to wrestle with media and art and reconcile it (or not) with our own personal histories, ideologies, and tastes. This, in turn, makes us smarter creatives.&lt;/p&gt;
&lt;p&gt;The classic example of critics-turned-makers is the French New Wave filmmakers. Truffaut, Godard, and Rivette used criticism as their own film school, writing and debating for the magazine &lt;em&gt;Cahiers du cinéma&lt;/em&gt;, and using their hyper-intellectual and impassioned analysis to launch their own careers. (Truffaut dropped out of school at 14 in order to watch films; the three would spend all day long reading books and watching movies at their local cinema.) As Richard Brody writes in his book &lt;em&gt;Everything is Cinema&lt;/em&gt;:&lt;/p&gt;
&lt;p&gt;Their method—the one that Godard himself undertook, at age nineteen—was &lt;strong&gt;criticism&lt;/strong&gt;. It was a singular method, which served two purposes, revolutionary and didactic. &lt;strong&gt;Godard and his young film-lover friends were learning how to make films by watching films;&lt;/strong&gt; they were giving themselves a conservatory education at the Cinémathèque and the CCQL. &lt;strong&gt;By writing about the films they saw, they did two things: they elaborated and refined their ideas about the cinema, in anticipation of the day when they could make films; and they created for themselves a public identity that would get them the chance to make films&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Criticism can be a launching pad, a form that allows space to think clearly and decisively about art, politics, philosophy, the personal—and how it all interrelates—and which teaches one about the making of art, rather than the reversed and dated view of the critic as the teacher, the lecturer. It happened in the 50s and 60s in Paris, and it is doubly true in &lt;a href=&quot;https://guscuddy.substack.com/p/the-curtain-32-the-age-of-the-remix&quot;&gt;the age of the remix&lt;/a&gt;. &lt;a href=&quot;https://www.nytimes.com/2019/10/22/arts/television/andy-greenwald-the-watch-podcast-briarpatch.html&quot;&gt;Ex-Critics like Andy Greenwald are now making TV Shows&lt;/a&gt;; &lt;a href=&quot;https://cordjefferson.tumblr.com/work&quot;&gt;Cord Jefferson&lt;/a&gt; started as a journalist and cultural critic, and now writes for &lt;em&gt;Succession&lt;/em&gt;, &lt;em&gt;The Good Place&lt;/em&gt;, and &lt;em&gt;Watchmen&lt;/em&gt; (he co-wrote &quot;This Extraordinary Being&quot;, one of the most acclaimed episodes of the year); &lt;a href=&quot;https://twitter.com/ewdocjensen?lang=en&quot;&gt;Jeff Jensen&lt;/a&gt; was a TV critic (noted for his &lt;em&gt;Lost&lt;/em&gt; recaps) and now writes for &lt;em&gt;Watchmen&lt;/em&gt;; Ta-Nehisi Coates went from blogger to essayist to writing for the &lt;em&gt;Black Panther&lt;/em&gt; comic series and his first novel. The list goes on.&lt;/p&gt;
&lt;p&gt;If there&apos;s one thing that writing &lt;a href=&quot;https://guscuddy.substack.com/&quot;&gt;&lt;em&gt;The Curtain&lt;/em&gt;&lt;/a&gt; each week this year has taught me about the relationship between criticism and creativity, it&apos;s that it&apos;s all connected. I know writing and thinking critically about theatre, film, and other art has honed my taste and made me smarter about the make-up of things I like. As I work on other creative projects, I know that this refinement of my ideas carries over.&lt;/p&gt;
&lt;p&gt;&quot;Criticism&quot; isn&apos;t a dirty word to be afraid of anymore. Instead, it’s an essential mindset to embrace. It&apos;s become an indispensable part of navigating the crowded landscape of art and media, and become inseparable from the actual act of making. In 2019, we’re all critics.&lt;/p&gt;
</content:encoded></item><item><title>Cultural Nostalgia is Toxic</title><link>https://guscuddy.com/writing/nostalgia/</link><guid isPermaLink="true">https://guscuddy.com/writing/nostalgia/</guid><pubDate>Tue, 19 Nov 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It seems that our culture, in all different forms and paths, is obsessed with nostalgia.&lt;/p&gt;
&lt;p&gt;Hipsters seek out vintage clothing and vinyl records; Trump speaks not only of Making America Great Again but of the glory days of things like football; Quentin Tarantino made a movie that glorifies powerful (and abusive) mid-century white men in Hollywood; we constantly romanticize the aesthetics of earlier decades, each with a type of happiness: the 70s, 80s, 90s, and now, even the 00s; the just-launched Disney+ seems to have an entire vertical integration strategy of monopolizing nostalgia. It comes from all directions: the left, the right, from above, and from below.&lt;/p&gt;
&lt;p&gt;But cultural nostalgia, especially when it comes to art, is toxic. Romanticizing the past is a way of repeating the past---a past filled with racism, injustice, inequality, and genocide. When we allow nostalgia without any form of interrogation, we are dooming ourselves to a society and culture that repeats its same mistakes, over and over, in a cycle of mimetic violence.&lt;/p&gt;
&lt;p&gt;I see this type of nostalgia all the time when I go to the theatre. It is sometimes hard to spot, a sly devil that sneaks up unsuspected, but it haunts a lot of contemporary work. Huge hit plays like &lt;em&gt;The Lehman Trilogy&lt;/em&gt; offer a view of the past that implicitly &lt;a href=&quot;https://www.nybooks.com/daily/2019/06/11/the-lehman-trilogy-and-wall-streets-debt-to-slavery/&quot;&gt;nostalgizes the emancipatory myth of capitalism and ignores slavery&lt;/a&gt;; &lt;em&gt;Hamilton&lt;/em&gt;, for all its strengths, &lt;a href=&quot;https://www.currentaffairs.org/2016/07/you-should-be-terrified-that-people-who-like-hamilton-run-our-country&quot;&gt;does something relatively similar&lt;/a&gt;. These pieces (and they aren&apos;t alone) aren&apos;t explicitly nostalgic, but they both offer a reductive view of history and the fabled idea of American optimism as being something we can collectively unite over, as well as a disavowal of the icky parts of our past.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;This is how disavowal manages cognitive dissonance: it means conceding the existence of slavery, while refusing to believe that it has anything to do with the story you are telling&lt;/strong&gt;; it means willfully pushing slavery to the edges of your consciousness and being saved by the logic of exception
&lt;strong&gt;Such stories try to have it both ways: for their heroes to be representative Americans, while erasing the vicious ways in which they truly were representative&lt;/strong&gt;. The fact that everyone was doing it is not a defense, it merely measures the scale of the crime&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-&lt;a href=&quot;https://www.nybooks.com/daily/2019/06/11/the-lehman-trilogy-and-wall-streets-debt-to-slavery/&quot;&gt;‘The Lehman Trilogy’ and Wall Street’s Debt to Slavery by Sarah Churchwell&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;These works romanticize instead of interrogating, and in that way they offer bland, status-quo, neoliberal politics---and thus appeal to both rich conservatives and liberals (as did both &lt;em&gt;Lehman&lt;/em&gt; and &lt;em&gt;Hamilton&lt;/em&gt;).&lt;/p&gt;
&lt;p&gt;Meanwhile, this lack of interrogation is present in not just the content of new plays, but also in the aesthetics and presentation of old plays and stories. When you go to a revival of a classic in the US or Britain, you can generally expect to see textual fidelity, a reverence of the past, and a devotion to getting the period costumes and accents just right. In other words: a dead, museum theater piece. Little attention is paid to investigating how the story can be excavated and contextualized for the current time and place; it&apos;s as if directors forget that theatre is &lt;em&gt;always&lt;/em&gt; in the present tense---which is its great strength.&lt;/p&gt;
&lt;p&gt;https://twitter.com/MattAndersonNYT/status/1172416708901883904?ref_src=twsrc%5Etfw&lt;/p&gt;
&lt;p&gt;This lack of deeper thinking and introspection---the shallow presentation of classics &quot;as they were meant to be staged&quot;---is, likewise, political. As a form of complacent nostalgia, it&apos;s the same feeling responsible for Brexit, Trump, or &lt;a href=&quot;https://www.theguardian.com/stage/2017/apr/19/shakespeares-globe-board-did-not-respect-me-says-artistic-director-emma-rice&quot;&gt;the departure of Emma Rice from the Globe&lt;/a&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If you just let a play speak, it may not make a sound. If what you want is for the play to be heard, then you must conjure its sound from it.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-Peter Brook&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In a workshop I attended with director &lt;a href=&quot;https://roberticke.com/&quot;&gt;Robert Icke&lt;/a&gt;, channeling Peter Brook, Icke coined this idea of the &quot;spirit&quot; versus the &quot;letter&quot;. When making a revival, which are you being faithful to? Many reactionary thinkers believe that being faithful to the letter---as, say, with literally believing the bible---is the &quot;truer&quot; version, and that anything else is &quot;director&apos;s theatre&quot;. But theatre is not just about words, but about the energy in space that those words and actions enable. Often, if you were to recreate old plays to the letter, you would be vandalizing the spirit.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The pretence that there&apos;s a neutral version of a play, that you could do what Sophocles intended, is so obviously ridiculous. &lt;strong&gt;It&apos;s exactly the same impulse that has brought us to Brexit&lt;/strong&gt;. There&apos;s a poisonous nostalgia that says you&apos;re committing an act of vandalism if you don&apos;t do the Sophocles as Sophocles would have wanted it. To do that, I&apos;d have to do it in ancient Greek. &lt;strong&gt;You&apos;re not asking for the original, you&apos;re asking for a safe, culturally mandated version that has no deep relationship to the original, just to a performance tradition&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;- &lt;a href=&quot;http://www.theguardian.com/stage/2019/jun/24/oedipus-robert-icke-sophocles-edinburgh-festival-theatre-as-church&quot;&gt;Robert Icke&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I loved Robert O&apos;Hara&apos;s stunning production of &lt;em&gt;A Raisin in the Sun&lt;/em&gt; when I first saw it in Rochester in 2012 (it recently had another iteration at Williamstown), but it&apos;s not faithful to the letter. Instead, it hits on the spirit: it&apos;s intentionally provocative, which stuns us when we&apos;re expecting to see something we&apos;ve seen before.&lt;/p&gt;
&lt;p&gt;Of course, there is going too far on the spirit side of things, into the realm of Universalization. There&apos;s an argument to be made that white &quot;avant-garde&quot; directors have had a poor history of flattening out the richness of a play, especially when it comes to race and diversity. I don&apos;t want Ivo Van Hove to direct August Wilson because it&apos;s &quot;universal&quot;. This universalization is another type of politics that is a different form of disavowal: for instance, the terrible history of white writers in the 19th century suggesting that wage slavery was worse than chattel slavery, thus trying to rewrite bondage into a universal condition. White directors may label a play by a person of color as universal in the attempt to justify their insertion, which can lead to a host of microaggressions and bad politics.&lt;/p&gt;
&lt;p&gt;The solution, then, is not to universalize, but to always interrogate. In both theatre and movies, boring revivals, simple sequels, and nostalgia-filled reboots are not the answer. Instead, we must forge new paths forward, update old stories spiritually, and never turn away from the work of deep introspection, both personal and collective, about our own histories and traumas, and the ways in which we perpetuate political myths of subtle violence.&lt;/p&gt;
</content:encoded></item><item><title>The Age of the Remix</title><link>https://guscuddy.com/writing/remix/</link><guid isPermaLink="true">https://guscuddy.com/writing/remix/</guid><description>How to subvert nostalgia.</description><pubDate>Tue, 19 Nov 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;
&lt;em&gt;art by &lt;a href=&quot;https://www.behance.net/gallery/54061733/The-observatory?tracking_source=search-all%7Cremix&quot;&gt;Anxo Vizcaíno&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;We&apos;ve been watching the new HBO adaptation of &lt;em&gt;Watchmen&lt;/em&gt;, created by the fascinating Damon Lindelof, which re-centers Alan Moore and Dave Gibbon&apos;s comic around white supremacy in America (and specifically Tulsa, Oklahoma). It features &lt;a href=&quot;https://gen.medium.com/damon-lindelof-heard-some-hard-truths-in-the-watchmen-writer-s-room-24101b6c11b7&quot;&gt;a diverse writer&apos;s room&lt;/a&gt;, including playwright Branden Jacobs-Jenkins (&lt;em&gt;An Octoroon&lt;/em&gt;) as a Consulting Producer.&lt;/p&gt;
&lt;p&gt;Recently, I &lt;a href=&quot;https://www.guscuddy.com/nostalgia&quot;&gt;wrote about the pervasive, damaging nostalgia that is dominating so much cultural discourse&lt;/a&gt;. &lt;em&gt;Watchmen&lt;/em&gt; is the perfect example of a work of art that sticks a bomb into that nostalgia and blows it up. I really admire the audacity to take the most acclaimed comic of all time and to &quot;remix&quot; it (in Lindelof&apos;s words) into something new. Like &lt;a href=&quot;https://www.guscuddy.com/nostalgia&quot;&gt;I wrote about&lt;/a&gt;, it&apos;s capturing the &quot;spirit&quot; of the original, if not the &quot;letter&quot;, and in that process is wrestling with the problematic aspects of the comic, and subverting some of its more regressive tropes, all while retaining what made that comic revolutionary.&lt;/p&gt;
&lt;p&gt;What makes the show an even more successful remix is that it&apos;s not just solely messing with the original &lt;em&gt;Watchmen&lt;/em&gt; text, but also other texts: the musical &lt;em&gt;Oklahoma&lt;/em&gt; in its first episode, and the text of American history itself. (It is a show, after all, very specifically about Whiteness.)&lt;/p&gt;
&lt;p&gt;I&apos;ve been thinking a lot not just about the show but about the very idea of remixes as being an essential part of our culture today. They offer a subversion of Nostalgia, a chance to reuse the past for the present day. Remixes, sonically, are relatively modern---they originated in the late 60s in Jamaica. They reached new heights with the rise of the internet and services like Limewire or Bit Torrent. Today, the internet is essentially one big remix. (More on that later.)&lt;/p&gt;
&lt;p&gt;Meanwhile, beyond the musical meaning, the history of art is also the history of remixes: Shakespeare is the most famous remixer of all-time. Almost all his work is, in some way, a remix of myths and stories, the political and the personal. There really is nothing new under the sun, just new ways of seeing.&lt;/p&gt;
&lt;p&gt;Remixing can even be empowering, as is the case with Lil Nas X &quot;appropriating&quot; country music for &quot;Old Town Road&quot; and subsequently releasing a remix with Billy Ray Cyrus after being kicked off the Billboard Country chart. (The irony being that the history of the Billboard Top songs is generally the history of nonblack artists appropriating black music, an example of the negative side of remixing.) &lt;a href=&quot;https://www.nytimes.com/interactive/2019/08/14/magazine/music-black-culture-appropriation.html&quot;&gt;Writes Wesley Morris&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;A black kid hadn&apos;t really merged white music with black, he&apos;d just taken up &lt;strong&gt;the American birthright of cultural synthesis&lt;/strong&gt;. The mixing feels historical. Here, for instance, in the song&apos;s sample of a Nine Inch Nails track is a banjo, the musical spine of the minstrel era. Perhaps Lil Nas was too American. Other country artists of the genre seemed to sense this. White singers recorded pretty tributes in support, and one, Billy Ray Cyrus, performed his on a remix with Lil Nas X himself.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This form of cutting, synthesizing, adapting, and remixing is also the basis of the digital age. For instance, the internet is non-linear, fractal, and psychedelic. It&apos;s held together by the hyperlink, which is the most elemental idea the internet has. It also represents an entire shift of consciousness: the hyperlink has become the basis of how we receive information today, how we interact with it, and how we think about it. Everything is connected with another thing. We can follow rabbit holes, just as our brain does. In a way, we are synthesizing and &quot;remixing&quot; information that we consume and piece together, rather than just linearly reading a book or newspaper.&lt;/p&gt;
&lt;p&gt;The digital age also provides the practical tools for remixing content: editing movies, chopping up audio, and the ability to make things move slower, faster, backward, whatever. These tools are what enabled someone like early Kanye West to be a successful producer, based on his ability to re-contextualize old soul records. But almost anyone using social media remixes in some form (especially with more aggressively creation-focused media, like Instagram or Tik Tok), applying filters and edits and songs to original content, slapping in pictures, or passing along memes.&lt;/p&gt;
&lt;p&gt;But while remixing happens all the time online, it&apos;s also the basis of so much great art. Great art re-contextualizes its sources and inspirations, connects with contemporary politics and worldviews, and also represents a personal and authentic examination of its maker&apos;s life. With all those threads dangling together, it produces something &quot;new&quot;. (Only for it to be remixed again in the future.)&lt;/p&gt;
&lt;p&gt;We live in an age where we too, as human beings, have to hold many dangling threads together in our heads. The complete totality of existence that is being alive in 2019 is overwhelming: all the information being constantly plugged into our ears and eyes and brain, the knowledge we are constantly on the brink of self-annihilation and environmental ruin, the constant fight against injustice. But so too must great art hold everything in its head at once: its implicit and explicit sources and inspirations, its central myth, its political and personal context. And when a piece of art is able to hold all of that in its grasp, remixing its sources with that of the world, it also appears breathtakingly original.&lt;/p&gt;
</content:encoded></item><item><title>The Unprofitability is the Point</title><link>https://guscuddy.com/writing/unprofitability/</link><guid isPermaLink="true">https://guscuddy.com/writing/unprofitability/</guid><description>On unprofitable arts and profitable technology</description><pubDate>Tue, 05 Nov 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;In a &lt;a href=&quot;http://www.theguardian.com/stage/2019/oct/24/playwright-annie-baker-the-antipodes-national-theatre&quot;&gt;recent interview&lt;/a&gt; with The Guardian, playwright Annie Baker said something that stuck with me: &lt;em&gt;&quot;I like theatre because it&apos;s so unprofitable.&quot;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;In the past, this is something that has bothered me. Shouldn&apos;t theatre do a better job at selling itself? (It actually should---but that&apos;s for another essay.)&lt;/p&gt;
&lt;p&gt;Baker is embracing the unprofitability of theatre as something that makes it stand out in a capitalist culture that only values the bottom line, and something that makes it essential (though misunderstood). The truth is, there&apos;s not much place for art---especially of the analog variety---that is unprofitable. (That&apos;s partially why in the UK and Europe, the arts are subsidized.)&lt;/p&gt;
&lt;p&gt;But even if, as in some cases, the art &lt;em&gt;is&lt;/em&gt; profitable, this profitability is not the point of art. Instead, the unprofitability is the point.&lt;/p&gt;
&lt;p&gt;In Jenny Odell&apos;s new book &lt;em&gt;How to Do Nothing&lt;/em&gt;, she quotes surrealist painter Giorgio de Chirico:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;In the face of the increasingly materialist and pragmatic orientation of our age...it would not be eccentric in the future to contemplate a society in which those who live for the pleasures of the mind will no longer have the right to demand their place in the sun. The writer, the thinker, the dreamer, the poet, the metaphysician, the observer...he who tries to solve a riddle or to pass judgement will become an anachronistic figure, destined to disappear from the face of the earth like the ichthyosaur and the mammoth.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In other words, a future where anyone who dares to create something that is unprofitable is beaten down and ostracized by society. That future, more or less, is now---a world in which linear technological optimization, disruption, and profitability replace anything that is inefficient, analog, poetic, or unprofitable.&lt;/p&gt;
&lt;h4&gt;&lt;strong&gt;Manifest Destiny, Neoliberalism and Techno-Utopianism as Titans of Profitability&lt;/strong&gt;&lt;/h4&gt;
&lt;blockquote&gt;
&lt;p&gt;What the tastes of neoliberal techno manifest--destiny and the culture of Trump have in common is impatience with anything nuanced, poetic, or less-than-obvious. Such &quot;nothings&quot; cannot be tolerated because they cannot be used or appropriated, and provide no deliverables.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-Jenny Odell, How to Do Nothing&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;There is a pervasive myth in the culture of Silicon Valley that Technology is, by nature, Good. It standardizes, levels, and innovates, delivers exorbitant profits to its founders, and supplies new (shitty) jobs to the economy. As someone who considers himself an optimist when it comes to technology, this can be a tough pill to swallow: innovation---especially profit-driven innovation---is not necessarily positive.&lt;/p&gt;
&lt;p&gt;For instance, when Gutenberg invented the Printing Press, there was a revolution in the ways information was transferred. (This story is not so clean cut in actuality---&lt;a href=&quot;https://en.wikipedia.org/wiki/Movable_type&quot;&gt;there were several different iterations of printing before Gutenberg&lt;/a&gt;---but, like Steve Jobs, the entrepreneurial Gutenberg is the one we remember as iterating on and popularizing a technology.) This revolution enabled books to be reproduced ad infinitum and literacy to spread (gradually). But the paradigm shift of movable type---that is, the mass production of a repeatable commodity---is the basis of the assembly line and 20th Century industrialism: a set of practices that caused immense violence and injustice. We can&apos;t directly blame Gutenberg for Henry Ford, but we can ceaselessly question the idea that technological optimization is always the Good path forward.&lt;/p&gt;
&lt;p&gt;Meanwhile, enabling the spread of mass information comes with misinformation---a problem we are acutely familiar with now, as well. So while Gutenberg&apos;s revolution empowered many important voices, it also wrought fakes and frauds and racists and white supremacists. Just as with Facebook, the idea of the gatekeeper having been eliminated is not quite telling the full story. The gatekeepers merely shifted from monarchists and aristocracies to powerful individual white men like Zuckerberg or Gutenberg.&lt;/p&gt;
&lt;p&gt;When 21st Century startups were founded, important and immensely consequential decisions about free speech were made with a quick click of a mouse, under the dumb guise of optimism. After all, who wants to think that their platform of &quot;free speech&quot; will become a ground for radicalization and real-world terrorism?&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&quot;I remember thinking, People in government, on the Supreme Court, are way smarter than me,&quot; Huffman [founder of Reddit] said. &quot;So, if something&apos;s not illegal to say under U.S. law, why should I make it illegal to say on Reddit?&quot;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-&lt;a href=&quot;https://www.newyorker.com/magazine/2019/09/30/the-dark-side-of-techno-utopianism&quot;&gt;The Dark Side of Techno-Utopianism&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;These tech bros---now and throughout history---have the ingrained belief that there is an inevitable march forward of history, that Silicon Valley must change the world. It&apos;s the same idea as Manifest Destiny, of colonization: that this marching and (man-)spreading is not only justified but inevitable. That everything needs to be &quot;disrupted&quot; or appropriated. That stillness, maintenance, and quiet are weeds to be rooted out by algorithmic loudness.&lt;/p&gt;
&lt;h4&gt;&lt;strong&gt;Loud and Quiet, Profitability and Unprofitability, Markets and Gifts&lt;/strong&gt;&lt;/h4&gt;
&lt;p&gt;If you&apos;ve ever walked around New York City or taken the subway, it&apos;s impossible not to notice that it seems like almost everyone has AirPods or other headphones in their ears these days. As I write this from a cafe, everyone here has headphones in. And I&apos;m as guilty of this as anyone else: for the last year, I&apos;ve pretty consistently had to wear AirPods as I&apos;m commuting or walking around Manhattan, lest I feel naked and alone.&lt;/p&gt;
&lt;p&gt;It&apos;s as if everyday life has an unbearable loudness to it that we must all attempt to distract ourselves from by creating our own private space through our headphones. And this isn&apos;t necessarily literal loudness---though it certainly is in NYC---but a loudness of media and technology and distraction. So we pump podcasts and NPR and Spotify Discover Weekly into our ears, on top of the world&apos;s loudness.&lt;/p&gt;
&lt;p&gt;But all this noise is doing something to us. One argument is that audio is largely a high-resolution media---meaning it&apos;s in our face, giving us information---and that this is &lt;a href=&quot;https://alexdanco.com/2019/10/17/the-audio-revolution/&quot;&gt;affecting our brain circuitry&lt;/a&gt;. Our brains are getting more and more wired to expect to be saturated by information-dense, non-participatory noise, whether it&apos;s via podcasts, Youtube, talk radio, or just background music. Meanwhile, these changes have led to our society moving away from nuance and openness, instead electing a president who thrives off discriminatory, closed-minded and racist soundbites.&lt;/p&gt;
&lt;p&gt;Our urban ecosystem---stoked on by startups and a podcast boom---is so &lt;a href=&quot;https://leoncoe.substack.com/p/modern-cigarettes-loudness&quot;&gt;loud, pervasive and Hot&lt;/a&gt; that it mutes our senses from distinguishing the subtler, Cooler shades of nuance. There&apos;s no more room for quiet, no more room to think.&lt;/p&gt;
&lt;p&gt;Which gets us back to unprofitable art.&lt;/p&gt;
&lt;p&gt;Unprofitable art is, in capitalist terms, useless. But more than that, much of analog art requires some level of nuanced thinking, is &quot;Cool&quot; and participatory. We actually must engage with it, rather than it coming directly to our ears.&lt;/p&gt;
&lt;p&gt;It&apos;s no wonder, then, that this sort of art is unprofitable. Our culture is primed to rebel against slowing down in any way. But I also think, like Annie Baker, that this art is more important than ever, and in as much danger as ever. Great art is not defined by its profitability, the lure of capitalization, or the push and pull of markets. Instead, it is a gift.&lt;/p&gt;
&lt;p&gt;In Lewis Hyde&apos;s seminal book &lt;em&gt;The Gift&lt;/em&gt;, he lays out the idea of a gift economy:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;That art that matters to us---which moves the heart, or revives the soul, or delights the senses, or offers courage for living, however we choose to describe the experience---that work is received by us as a gift is received&lt;/strong&gt;. Even if we have paid a fee at the door of the museum or concert hall, when we are touched by a work of art something comes to us which has nothing to do with the price.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Great art that &quot;revives the soul&quot; is not found in the perpetual march of technology, or the Heat and loudness it brings. It&apos;s not maximally optimal, easily marketed, or simplistic. Instead, it&apos;s complex, nuanced, patient, Cool, and participatory. It&apos;s poetry, it&apos;s painting, it&apos;s theatre. It&apos;s weird and surprising. It comes from dreams and doing nothing. It&apos;s a gift. The unprofitability, not the profitability, is the point.&lt;/p&gt;
</content:encoded></item><item><title>What We Talk About When We Talk About the Unconscious</title><link>https://guscuddy.com/writing/unconscious/</link><guid isPermaLink="true">https://guscuddy.com/writing/unconscious/</guid><description>How to bridge the space between art and the unconscious.</description><pubDate>Tue, 29 Oct 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;
One of the main drivers of all great artists throughout history is not money, prestige, or helping people. Instead, it&apos;s to bridge the space between the conscious and &lt;a href=&quot;https://www.guscuddy.com/2019/06/25/art-and-unconscious/&quot;&gt;unconscious&lt;/a&gt; worlds. To get the voices out of your head. To achieve some sort of quiet.&lt;/p&gt;
&lt;p&gt;Art that comes from the unconscious also gets at a deeper mystery, for audiences. Mystery allows both our System 1 Brain---the quick thinking one---and System 2---the slower, effortful one---to operate in full. Sometimes it can seem a work isn&apos;t clear, when it&apos;s actually just &lt;a href=&quot;https://twitter.com/chris_shinn/status/1116482341105483778&quot;&gt;provoking disagreement from our own unconscious&lt;/a&gt; --- our deeper, slower brain that we haven&apos;t yet reconciled with.&lt;/p&gt;
&lt;p&gt;The deeper you go, the more you expose and reveal, the more you pull from the raw and embarrassing stuff deep inside: the more compelling and also mysterious the art. Art that burrows towards a deeper truth, that in its central conceit mirrors the mystery of life and consciousness itself --- that feeling of being anything at all, instead of nothing. This, as far as I know, is true in pretty much every form: visual art, music, movies, theatre, literature, etc.&lt;/p&gt;
&lt;p&gt;Shallow introspection leads to shallow art. Or, in the words of David Lynch: &quot;Little fish swim on the surface, but the big ones swim down below.&quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;h3&gt;What does it mean to create from the unconscious?&lt;/h3&gt;
&lt;p&gt;Life is not simple. It&apos;s filled with weird abstractions, ambiguity, complex patterns, and violence. For artists, the way through is to trust the unconscious, which is to say develop some sort of intuition.&lt;/p&gt;
&lt;p&gt;For instance, as an actor, any attempt at conscious planning of &quot;what&apos;s going to happen&quot; will result in deadly, stilted performance. It may be able to fool some people on the surface for a short while, but soon audiences will realize that the work isn&apos;t in touch with the deeper layers of the human experience. In other words, it was created from the conscious, not the unconscious.&lt;/p&gt;
&lt;p&gt;But what does it exactly mean to create from the unconscious?&lt;/p&gt;
&lt;p&gt;For one, listening. &lt;a href=&quot;https://www.indiewire.com/2018/05/screenwriting-advice-paul-thomas-anderson-greta-gerwig-1201962599/&quot;&gt;Says Greta Gerwig&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&quot;I spend a lot of time **listening **to what my characters are trying to tell me about who they are, and they&apos;re always telling you. It&apos;s the mysterious part of writing, where you have all this craft and you spend all this time making it as good as it can be, and then at the same time, &lt;strong&gt;your unconscious knows more than you do&lt;/strong&gt;, and you have to keep that channel open.&quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The strange thing about listening to the unconscious, of course, is that it doesn&apos;t really speak, because it is ancient. Instead, it &lt;a href=&quot;http://nautil.us/issue/47/consciousness/the-kekul-problem&quot;&gt;operates in images, metaphors, pictures, and dreams&lt;/a&gt;. The job of the artist is to translate those into work.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I always say, &apos;Write in a trance and act in a trance.&apos; You don&apos;t want to think consciously about what you&apos;re putting on the page.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-Mike Birbiglia&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr /&gt;
&lt;h3&gt;Unconscious in Theatre&lt;/h3&gt;
&lt;p&gt;In theatre, the tradition for space and design has been a neutral open platform, all the way back to the Elizabethan stage. (This is why it bothers me when people talk about empty spaces in theatre being some sign of pretentious modernity.)&lt;/p&gt;
&lt;p&gt;These neutral, open, almost &quot;incomplete&quot; designs, coupled with great writing, allow for our unconscious brains to fill things in for us. (See: &lt;a href=&quot;https://www.theguardian.com/stage/2019/oct/23/hildegard-bechtler-in-pictures&quot;&gt;the designs of Hildegard Bechtler&lt;/a&gt;.) They invite us in, rather than consciously telling us everything and shutting our unconscious out. It&apos;s just like with acting and all art, in that way: they can&apos;t be so literal and conscious-brained to stay on the surface. When theatre hits these marks---is truly vulnerable---it has a lightness and a feeling of being &quot;limitless&quot;, as playwright Jeremy O. Harris and director Danya Taymor put it in &lt;a href=&quot;https://player.fm/series/theatre-uncorked/episode-10-jeremy-oharris-and-danya-taymor&quot;&gt;a podcast for Vineyard Theatre&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It&apos;s an arena where the visible and invisible meet. Where we lay down the burden of consciousness for a bit, and see our own inner worlds laid bare.&lt;/p&gt;
</content:encoded></item><item><title>Ghost Stories</title><link>https://guscuddy.com/writing/2019-10-22-ghost-stories/</link><guid isPermaLink="true">https://guscuddy.com/writing/2019-10-22-ghost-stories/</guid><description>In an age where getting ghosted is a part of daily life and language, I am fascinated by how ghosts appear in different forms in our lives and in our art.</description><pubDate>Tue, 22 Oct 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;The history of theatre is littered with ghosts and spirits. From Hamlet to ghost lights to Ancient Greeks to contemporary plays, theatre has always explored the nature of here and there, life and death, reality and unreality. They are one of the most used and accessible tropes there is.&lt;/p&gt;
&lt;p&gt;But ghosts surround us all the time in life, too. We speak of &quot;getting ghosted&quot; when we don&apos;t get a response from someone, as if they have disappeared into thin air. When we re-visit our home town after being away for months, we are haunted by ghosts: stores and buildings that have closed for an uncertain amount of time; memories of that street in the night; old songs that used to play on the radio. (There&apos;s that scene towards the end of &lt;em&gt;Before Sunrise&lt;/em&gt;, when the streets and locations that seemed so magical in the night suddenly look so mundane in the morning light — those too have ghosts.)  Walking around New York City, you are surrounded by the ghost map of your experiences in the city, mingling with the ghosts of the city&apos;s history. It might seem that ghosts and nostalgia are the same, but I don&apos;t think they are: ghosts visit us, whereas nostalgia is a feeling, often  unhelpful, that we get and indulge.&lt;/p&gt;
&lt;p&gt;Of course, ghosts are also the most basic common unit of the fall classic: the scary movie.&lt;/p&gt;
&lt;p&gt;Scary movies and scary television have had quite the renaissance in the past few years, with more &quot;artistic&quot; and &quot;prestige&quot; efforts behind them, supported by the likes of Netflix, A24, or Jordan Peele. Movies like Get Out, It Follows, The Witch, It, Hereditary, Us, A Quiet Place, or the 2019 Bong Joon-ho international hit Parasite. TV shows like Stranger Things, Twin Peaks, The Walking Dead, Black Mirror, or American Horror Story traffic in scares in different degrees as well.&lt;/p&gt;
&lt;p&gt;The broad revelation for many of us was that ghosts and horror speak to our current climate perhaps more clearly than any other genre. In a world on the brink of collapse in many different forms, in a white supremacist country, stories that speak to both the obvious and repressed horrors of 21st century civilization feel, despite their fantastic or supernatural elements, like truth.&lt;/p&gt;
&lt;p&gt;But while ghosts have been around theatre forever in different forms, you&apos;re hard pressed to find truly scary theatre. Shakespeare&apos;s bloody works, like Macbeth or Titus Andronicus, are not really &quot;scary&quot; by today&apos;s standards, though certain productions can amp up the violence. The problem has a lot to do with scares being a micro form: the movie or TV director can control where we look. Theatre, however, cannot: the eye sees what it wants to see.&lt;/p&gt;
&lt;p&gt;Earlier this year, however, I saw what I thought was perhaps the most successful scary theatre piece I&apos;ve experienced (Lucas Hnath&apos;s The Thin Place at the Humana Festival, which starts soon at Playwrights Horizons). And since then, I&apos;ve experienced several pieces I would classify as horror theatre, ranging in form and success, but all speaking to something deep and true. It seems I was wrong: there is room for scary theatre, and it&apos;s often even scarier than movies.&lt;/p&gt;
&lt;p&gt;The Thin Place succeeded, for me, in part because of its consideration of theatre in three dimensional space. The fact that theatre exists in a room—and that there are many qualities to this room, as its lit by various lights—is such an obvious one that we sometimes forget that the most exciting theatre finds a way to sculpt energy in the space. Space is something that films cannot quite capture, in a visceral sense. Whereas at the movies we&apos;re seeing pictures laced together, in theatre we&apos;re not seeing pictures at all: we&apos;re seeing bodies and words and energy in space.&lt;/p&gt;
&lt;p&gt;Will Arbery&apos;s explosive and terrifying Heroes of the Fourth Turning also uses space and darkness, with a prologue that forces us to strain our eyes to see what&apos;s going on. Characters disappear into shadows, literally — it&apos;s not a trick of the camera — and we half expect a ghost to pop out. Instead, we&apos;re treated to sounds: the disturbing resonance of a real gunshot, and a horrifying screeching noise that a character says is from their generator.&lt;/p&gt;
&lt;p&gt;Arbery&apos;s work, though, is a different kind of scary: while it does use horror tropes, it&apos;s more of an intellectual horror piece, in the literal sense. As a group of conservatives gather in Wyoming, we see incredibly specific and fully drawn out characters spit out some of the most revolting right-wing ideas New York liberals can hear. The sensation I felt was an odd mix of fear, anger and sadness I&apos;ve never quite felt in a theatre before: like my blood was actually boiling. The scariest part, besides that these ideas are real and exist and people believe them, was how hyper-articulate and smart the characters are: they have such conviction that they are right, even as they argue and fret over the nuances and types of conservatism, quoting philosophers and literature, that you feel like your own ideas about the world are being assaulted. There&apos;s no liberal character there to save you from these ideas, and the conservative characters aren&apos;t cartoons. When they speak of the &quot;war&quot; that is coming, it&apos;s as eerie and frightening as anything I experienced in Bong Joon-ho&apos;s new movie Parasite. And there&apos;s something magnetic and unnerving about plays that exist in real-time, building tension as we don&apos;t know formally how they will unfold.&lt;/p&gt;
&lt;p&gt;Heroes has been a bit of a polarizing show: on the one hand, it has been embraced by conservatives and catholics who finally feel &quot;seen&quot;, and on the other hand it&apos;s been hailed by liberal critics as being a nightmarish horror play. Arbery is transposing his own catholic conservative upbringing to the stage in a work of incredible vulnerability — but it&apos;s been fascinating to see how different people interpret and experience the play in wildly different ways.&lt;/p&gt;
&lt;p&gt;In Alexis Scheer&apos;s new play &lt;em&gt;Our Dear Dead Drug Lord&lt;/em&gt;, ghosts and a seance are again on the table, like Hnath&apos;s &lt;em&gt;Thin Place&lt;/em&gt;. While I couldn&apos;t ultimately vibe with the production completely, it does offer a thrilling ghost trick in its final twenty minutes that was surprising and exhilarating. These sorts of tricks that break our expectations of what theatre is supposed to be are always the most exciting; they are what make theatre unique — if a production is innovative enough, anything can happen. And that uneasiness and uncertainty is scary.&lt;/p&gt;
</content:encoded></item><item><title>The State of the Audience</title><link>https://guscuddy.com/writing/audience/</link><guid isPermaLink="true">https://guscuddy.com/writing/audience/</guid><description>Reflecting on the current state of the theatre audience in 2019.</description><pubDate>Sat, 28 Sep 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Recently, some crazy things happened that shook theatre twitter to its core.&lt;/p&gt;
&lt;p&gt;As I understand it:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Rihanna (!) came to see the downtown hit &lt;em&gt;Slave Play&lt;/em&gt; on Broadway, in previews, but...&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;She was running late, so they held the show for her. After the show started...&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;She texted on her phone three times (!!)...&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To the playwright, Jeremy O. Harris (!!!), who was watching from the back. Who texted back (!!!!).&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;A debate arose online over whether or not Rihanna should be shamed for her phone use. (And a smaller debate over whether we should hold the curtain for a celebrity. &lt;a href=&quot;https://twitter.com/jeremyoharris/status/1173361628953399296?s=21&quot;&gt;But when Dionysus is coming&lt;/a&gt;...) Harris---who has defended phone use in the theatre before---took a stand once again:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/jeremyoharris/status/1173356007873032195&quot;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Can phones and theatre co-exist?&lt;/p&gt;
&lt;p&gt;To answer that, I think we need to examine what exactly the state of the audience is in the 21st century.&lt;/p&gt;
&lt;h4&gt;The Role of the Audience&lt;/h4&gt;
&lt;p&gt;It&apos;s difficult to overstate how connected we are to our phones. We touch them over 2,600 times a day, and for many of us they pretty much never leave our side. The reality is that we have a whole new generation of digital natives: young people who grew up with the internet and digital devices as central to how they interact with the world.&lt;/p&gt;
&lt;p&gt;The other reality, of course, is that the majority of American theatergoers are old and white. Many still have an old world mindset about the preciousness of theatre, insisting that it should feel &lt;a href=&quot;https://twitter.com/jeremyoharris/status/1173362472159535105?s=21&quot;&gt;less like a party and more like a funeral&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This alienates young audiences who don&apos;t know what the point of theatre is (why would you want to attend a funeral?), and is further exasperated by boring theatre that caters to old, rich, white New Yorkers (I&apos;m thinking of two NYC institutions in particular that shall not be named).&lt;/p&gt;
&lt;p&gt;But this is not entirely a new issue, of course. Brecht wrote about it all the way back in his 1926 essay &quot;Emphasis on Sport&quot;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&quot;&lt;strong&gt;The demoralization of our theatre audiences springs from the fact that neither theatre nor audience has any idea what is supposed to go on there&lt;/strong&gt;. When people in sporting establishments buy their tickets they know exactly what is going to take place; and that is exactly what does take place once they are in their seats.&quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;When people go to a sports game, they know exactly what to expect: amazing athletes performing at their best, hopefully a dramatic game. Along the way they can get out of their seat, use the bathroom, go buy food and drinks, use their phones, and generally be rowdy---all things that are extreme no-nos in theatre.&lt;/p&gt;
&lt;p&gt;Concerts are the same way. People know exactly what to expect: their favorite bands playing their favorite music. And if they&apos;re lucky, often a lot more than that (think Beyoncé&apos;s legendary Coachella performance, or Kanye&apos;s &lt;em&gt;Yeezus&lt;/em&gt; tour). Because let&apos;s be real: many concerts are way more exciting than most theatre. As Robert Icke &lt;a href=&quot;https://www.standard.co.uk/go/london/theatre/robert-icke-on-getting-hate-mail-why-mary-stuart-is-like-the-brexit-vote-and-ending-boredom-in-a3723841.html&quot;&gt;points out in an interview&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;My friends pay a fortune to see Stormzy or Beyoncé --- but you don&apos;t come back from seeing Beyoncé saying, &apos;I was kind of bored&apos;. She always delivers. Theatre loves to talk about its &apos;right to fail&apos; and I sometimes think that can be used as an excuse for lack of rigour.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Concert attendance is going up, despite streaming music.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;When young people go to theatre, they often have no idea what to expect. Are they going to be yelled at or shamed? Are they going to be lectured about the good old days? Or are they just going to be bored?&lt;/p&gt;
&lt;p&gt;How often can a young person of color go to the theatre, on average, and say that their experience has been reflected on stage? Can the stage reflect the audience, and the audience reflect the stage? Because right now, it&apos;s not the case.&lt;/p&gt;
&lt;h4&gt;The Unbearable Whiteness of the Audience&lt;/h4&gt;
&lt;p&gt;Playwright Aleshea Harris recently expressed something &lt;a href=&quot;https://www.stitcher.com/podcast/4th-street-bridge/hundred-to-one-with-christopher-rivas/e/59902010&quot;&gt;on a podcast&lt;/a&gt; that has stuck with me:&lt;/p&gt;
&lt;p&gt;&quot;I go to the theatre a lot and feel like I&apos;m ease dropping on a conversation that has nothing to do with me.&quot;&lt;/p&gt;
&lt;p&gt;To be non-white in many theatre audiences is to be---and feel---alone. (This, of course, was the genius of &lt;em&gt;Fairview&lt;/em&gt;.)&lt;/p&gt;
&lt;p&gt;The oppression of whiteness infects every area of theatre, at every level. It goes from the top---producers and executives---all the way down to the audience. It leads old white people to suspect young brown and black people in the audience for being troublemakers for using their phones, or laughing too loudly. (Even though when a phone goes off in the theatre, you can almost guarantee it&apos;s an old person&apos;s.)&lt;/p&gt;
&lt;p&gt;This is why it&apos;s so god damn exciting that Jeremy O. Harris has announced that &lt;em&gt;Slave Play&lt;/em&gt;, upon the challenge of musician Kelela (!), is doing &lt;a href=&quot;https://rpm-email-assets.s3.amazonaws.com/SP/SP_012_E_BLACK_OUT_EMAIL/SP_012_E_BLACK_OUT_EMAIL.html&quot;&gt;a performance dedicated to an all black audience&lt;/a&gt;. By inverting the balance, the gaze of the audience---and what the show amounts to---takes on a different, much deeper meaning:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/jeremyoharris/status/1173704383667810305&quot;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h4&gt;Theatre Etiquette&lt;/h4&gt;
&lt;p&gt;Jeremy O. Harris &lt;a href=&quot;https://twitter.com/am2dm/status/1173931791645908993&quot;&gt;appeared on Buzzfeed&apos;s AM2DM last year&lt;/a&gt;, explaining why he doesn&apos;t frown on digital natives checking their phones at the theater.&lt;/p&gt;
&lt;p&gt;His point: are we actually pushing away a whole new generation of young theatergoers because of stupid rules?&lt;/p&gt;
&lt;p&gt;When I see young people from public schools on a field trip attend the theatre for the first time, the first thing they are told repeatedly and strictly are the &lt;strong&gt;rules of theatre&lt;/strong&gt;: no phones, no talking, no loud noises, no getting up. Violate these and you are a bad audience member. We will kick you out. It&apos;s such a violent and oppressive introduction, that it&apos;s hard not to see why many young people don&apos;t go to theatre after that.&lt;/p&gt;
&lt;p&gt;But why such etiquette? After all, house lights are a relatively recent invention. And everyone knows that Elizabethan audiences were the most rowdy!&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/saybarra/status/1173564326243917824&quot;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;(To be fair, I actually disagree: I do think &lt;a href=&quot;https://www.whatsonstage.com/edinburgh-theatre/news/peter-brook-the-prisoner-international-festival_47341.html&quot;&gt;the largest barrier is price&lt;/a&gt;, but I also fully support the point Ybarra is making.)&lt;/p&gt;
&lt;p&gt;When I attended the opening of &lt;em&gt;Coriolanus&lt;/em&gt; at The Public&apos;s Shakespeare in the Park earlier this year, I was yelled at by an old white man at intermission to put my phone away. I asked why. He said because it was turning my brain into mush. Into mush!&lt;/p&gt;
&lt;p&gt;What are people so afraid of? Short attention spans? I don&apos;t buy it. Young people have so many options of entertainment, that a casual check of the phone doesn&apos;t necessarily mean they are disengaged. (And if it does, it&apos;s usually because the show is boring.)&lt;/p&gt;
&lt;p&gt;Are phones the biggest enemy of theatre? Nope. Boring, expensive, white theatre and the excessive etiquette that targets young people of color is way more of a threat to theatre&apos;s survival.&lt;/p&gt;
&lt;h4&gt;Envisioning a new era of theatre audiences&lt;/h4&gt;
&lt;blockquote&gt;
&lt;p&gt;It is always the popular theatre that saves the day. Through the ages it has taken many forms, and there is only one factor that they all have in common---a roughness.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-Peter Brook, The Empty Space&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Theatre is not supposed to be precious. It&apos;s supposed to be a little rough around the edges.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Slave Play&lt;/em&gt;---which is selling very well---feels important. It could, in its own way, redefine what popular theatre means. Popular theatre in New York usually means old and white and expensive---all attributes that &lt;em&gt;Slave Play&lt;/em&gt; actively is trying to subvert. It&apos;s the show that Rihanna is going to. It&apos;s the show that is diversifying Broadway audiences. And it&apos;s the show whose playwright is welcoming the roughness of young people using their phones during it.&lt;/p&gt;
&lt;p&gt;There are other examples of theaters trying to redefine popular theatre with contemporary roughness. &lt;a href=&quot;https://www.nytimes.com/2019/02/03/theater/yard-theater-london-now-festival.html&quot;&gt;The Yard in London&lt;/a&gt;, which is a cross between risky theatre and nightclub, is one:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The theater&apos;s hip, edgy work attracts an unusually young crowd: 70 percent of the audience is under the age of 35, according to Mr. Miller. And it is breaking down the boundaries between watching a play, hanging out with a beer and raving till 6 a.m. &quot;Audiences are cross-pollinating,&quot; Mr. Miller said. &quot;We&apos;re creating a new theater audience, who see that it can be as invigorating as dancing in a club.&quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&apos;m sure there are many other examples out there.&lt;/p&gt;
&lt;p&gt;In the end, I don&apos;t think theatre can afford to be so high-brow about how it brings in young audiences. The important thing is to get people into the room, engaging with theatre in a new way, whatever that means.&lt;/p&gt;
&lt;p&gt;Besides, no matter who is in the audience, the height of theatre remains the same: to build a bridge between the normal world of the audience and the drama on stage, between the conscious and unconscious, revealing an entire invisible world that we never knew existed, yet was right before us, the entire time. And then, in a moment, it disappears. You had to be there.&lt;/p&gt;
</content:encoded></item><item><title>The State of Criticism</title><link>https://guscuddy.com/writing/criticism/</link><guid isPermaLink="true">https://guscuddy.com/writing/criticism/</guid><description>Reflecting on the state of criticism in theatre and beyond in 2019.</description><pubDate>Sat, 28 Sep 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Recently, New York Magazine theatre critic Sara Holdren &lt;a href=&quot;https://twitter.com/swholdren/status/1173684319048613890&quot;&gt;announced&lt;/a&gt; she was stepping down from her position to pursue her main interest: directing theatre. In her short two year stint Holdren was a force, re-invigorating theatre criticism for many theatre artists in New York.&lt;/p&gt;
&lt;p&gt;While it&apos;s sad to see her go, she began to open the door for me to what truly great theatre criticism can be: not only putting work in its proper context, but making the reader a better, more rigorous artist.&lt;/p&gt;
&lt;p&gt;This is not something the New York Times theatre section does, despite being perhaps the most powerful force in theatre in New York City. That this dictatorial position is held by two aging white men with questionable taste is another matter.&lt;/p&gt;
&lt;p&gt;I&apos;d like to explore what the state of criticism is in theatre and art today, how it can be improved, and what the future might look like.&lt;/p&gt;
&lt;h2&gt;The Critic&apos;s Job&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;&quot;One of the most radical things you can do in this culture of the inexact is to finish a sentence.&quot;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-Anne Bogart, And Then, You Act&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Criticism is not just an opinion. (Though it is that, too.) Criticism is deep thinking about a particular piece of art, what its successes and shortcomings might be, and how the work might fit into a larger context.&lt;/p&gt;
&lt;p&gt;Good criticism is active, in the political sense. It doesn&apos;t just assert a positive or negative judgement, but considers it as connected to everything. In critic Richard Brody&apos;s book &lt;em&gt;Everything is Cinema&lt;/em&gt;, on the work of Jean-Luc Godard, he considers what it means to approach Godard&apos;s work:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If everything is cinema, then approaching Godard’s vast work in any meaningful way necessarily means being prepared to deal with everything: &lt;strong&gt;politics, art, philosophy, history, nature, beauty, lust, torment, money, love, and the random element&lt;/strong&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I believe that this approach is appropriate for almost all art. And while he writes this sentence as specific to Godard, Brody&apos;s reviews reflect that he uses &quot;everything is cinema&quot; as a lens for considering all film.&lt;/p&gt;
&lt;p&gt;In the 21st century, this goes beyond just cinema. Everything is theatre. Everything is art. The great cultural critic Wesley Morris considers this &lt;a href=&quot;https://slate.com/news-and-politics/2018/02/wesley-morris-on-the-nexus-of-entertainment-and-politics-twitter-and-three-billboards.html&quot;&gt;in an interview&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I feel like I’ve always approached criticism with a degree of morality, right? Like, not as a moralizer, but just as somebody who wants to make sure that the culture we’re getting is at least morally aware of how it’s functioning. My goal as a critic is... &lt;strong&gt;mostly to connect the work to what’s happening in the world&lt;/strong&gt;, and in making that connection, there’s a charge that happens. &lt;strong&gt;You can call whatever that charge is—connecting art and works of mass culture to social movements in politics and whatever is happening in various parts of the world and the country—a kind of activism&lt;/strong&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;With the internet enabling a sort of hyperlink consciousness that sees everything as being interconnected, one can start to see some of the implications of this. On the one hand, no piece of art exists in a vacuum, now more so than ever. And on the other, art and culture and media are becoming synonymous words to cover the vast spectrum of things that can be considered: theatre, movies, TV, music, literature, online content, essays, podcasts, and more. A 21st Century critic finds it more and more difficult to just &quot;stay in their lane&quot;.&lt;/p&gt;
&lt;p&gt;Cross-pollination is a good thing, especially for theatre. The more writers who don&apos;t work exclusively in theatre who then write about theatre, the better. Theatre—as cinema, as all art—can encompass everything.&lt;/p&gt;
&lt;p&gt;So when Wesley Morris—who started as a film critic—&lt;a href=&quot;https://www.nytimes.com/2019/04/25/theater/african-american-playwrights.html&quot;&gt;writes about theatre&lt;/a&gt;, it is unquestionably a good thing:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;But occasionally, a play ends and nobody really knows what to do, because it just took an audience to outer space, to the center of the earth, to this new electric zone that knows what’s wrong with this country and isn’t afraid to personify it, laugh at it, behold it. Even though the work may take place at hospitals or in the presence of a shrink, it doesn’t care about comfort. &lt;strong&gt;It’s haywire, rude, blunt, poetic, self-reflective, sexually unpredictable, emotionally catastrophic, exhaustively acted, intelligent, searching and unafraid.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In that sense, perhaps we should retire the somewhat loaded and old world word &quot;critic&quot;, and just call them &quot;writers&quot;. It&apos;s worth a consideration. (However, to avoid confusion, I will still refer to someone who thinks and writes about art critically as a &quot;critic&quot; for the remainder of the essay.)&lt;/p&gt;
&lt;h2&gt;Scarcity of Viewpoints and Atheist White Male Aesthetics&lt;/h2&gt;
&lt;p&gt;There simply aren&apos;t enough theatre critics.&lt;/p&gt;
&lt;p&gt;An extreme power law operates within theatre criticism, where 95% of the power comes from the New York Times, and especially its two lead writers, who are white men. Not only is this frightening for obvious reasons, but there&apos;s also just a startling lack of alternate viewpoints. And having one singular person of color as the tokenized critic representing all theatre made by people of color is not enough:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The thing that I want to see more of in general is more critics of color, more women, but also just more critics. People keep thinking: They hire one black critic who will finally have a black voice on the matters of black theater in America. I &lt;strong&gt;promise you, if you have seven black critics sit down to see Fairview, Sugar in Our Wounds, and Pass Over, they’re all going to say a different one was the best one&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-&lt;a href=&quot;https://www.whatshouldwedo.com/blog/jeremy-o-harris/&quot;&gt;Jeremy O. Harris&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Sites like &lt;a href=&quot;https://www.show-score.com&quot;&gt;Show-Score&lt;/a&gt; are helpful in some respect in democratizing theatre opinions, but I don&apos;t think it solves the problem of deeper, considered criticism.&lt;/p&gt;
&lt;p&gt;What made Sara Holdren such a potent critic was that she also is a true theatre director, having gotten her MFA from Yale in Directing. She is a powerful example for what the future of theatre criticism should look like: theatre artists choosing to write more about the form, furthering the discourse and displacing the power of the Ben Brantleys in this industry.&lt;/p&gt;
&lt;p&gt;Holdren explores this antiquated idea of criticism and making work as being at odds with each other in a &lt;a href=&quot;https://www.vulture.com/2018/12/i-make-plays-i-write-criticism-im-not-my-own-enemy.html&quot;&gt;brilliant piece in NY Mag&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The hawkish divide between theater making and theater writing is a relatively recent development, driven, I think, by two pretty simple factors: money and fear. &lt;strong&gt;Frankly, we need more theater practitioners writing about the form&lt;/strong&gt;. (Think about it: Virtually all book critics write books of their own.) But we still tend to separate the study of theater from its practice, and we still don’t take the latter entirely seriously: I can support myself writing about theater full-time, but I can’t support myself making theater full-time, and nor can the majority of the brilliant artists I know.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In a world where the internet has turned almost everyone into a content creator of some kind, we need to think of writing about the form of theatre as a byproduct of making theatre, encouraging a more symbiotic link between the two.&lt;/p&gt;
&lt;p&gt;The lack of critics should also not be conflated with the lack of diversity in critics, which is its own issue worth exploring.&lt;/p&gt;
&lt;p&gt;Theatre still vastly under-represents women and writers of color, &lt;a href=&quot;https://www.dramatistsguild.com/advocacy/the-count-2/&quot;&gt;as counted by The Dramatists Guild&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Worse: the works are often only critiqued by white people. But we need to consider not only the limitations of these viewpoints (and often also the bad writing), but also the paradigms under which people view and are &quot;judging&quot; the art. In &lt;a href=&quot;https://www.larktheatre.org/blog/problem-white-critics-critiquing-work-artists-color/&quot;&gt;a terrific essay by Donja R. Love&lt;/a&gt; considering this very issue, Toni Morrison is quoted:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;I don’t like to find my books condemned as bad or praised as good, when that condemnation or that praise is based on criteria from other paradigms. I would much prefer that they were dismissed on or embraced on the success of their accomplishment within the culture out of which I write.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Often these white critics are not only not practitioners of the form, but are a world apart from the culture and paradigms being explored. They don&apos;t make any effort to see their own shortcomings in that regard. Instead, they fall back on what &lt;a href=&quot;https://www.americantheatre.org/2018/09/27/high-tide-of-heartbreak/&quot;&gt;Quiara Alegría Hudes deems &quot;atheist white male aesthetics&quot;&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Conclusion: Envisioning a new future of criticism&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;If I had one wish for American theater, it would be that we wrench it from the suffocating maw of television, that we pursue both complex content and structures worthy of that content, that we dedicate ourselves — as makers, as watchers, as producers and artistic directors — not to the false courage of the issue play, but to &lt;strong&gt;the real courage of theater that defies formula, that provokes wonder, and that balances rigor with joy, joy with rigor, in its quest to reshape the spirit and electrify the heart&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;-Sara Holdren, &lt;a href=&quot;https://www.vulture.com/2018/11/theater-review-the-good-intentions-of-american-son.html&quot;&gt;&quot;Theater Review: The Good Intentions of American Son&quot;&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;&lt;a href=&quot;https://www.nytimes.com/2018/11/04/theater/american-son-review.html&quot;&gt;Bad theatre criticism&lt;/a&gt; only contributes to the slow death of an aging art form. It continues the dominance of the boring and shallow and dead New Play, rather than prodding the form forward into the deep and complex and new. By celebrating mediocrity and demonizing risk, bad criticism allows bad plays to take up space that could be occupied by more daring and form-expanding work. And by applauding &lt;a href=&quot;https://www.vulture.com/2019/03/review-roundup-the-b-side-gives-voice-to-forgotten-men.html&quot;&gt;uninspired &quot;issue plays&quot; &lt;/a&gt;that preach to the choir and allow gentle, homogenous patting-on-the-back from audience and producer alike—instead of calling institutions out on their bullshit—they contribute to the deadening racism that permeates our industry and nation.&lt;/p&gt;
&lt;p&gt;There are, however, efforts out there to remedy the lack of good theatre criticism. &lt;a href=&quot;https://www.kickstarter.com/projects/janejung/3views-on-theater&quot;&gt;3Views on Theater&lt;/a&gt; is a new project from The Lillys, a pretty A-list team of theatre artists. The site has yet to launch, so we&apos;ll see how much it can do, but it has promise.&lt;/p&gt;
&lt;p&gt;Critic Jose Solís has been fighting the grassroots fight to diversify criticism and audiences for some time now. He regularly &lt;a href=&quot;https://twitter.com/josesolismayen&quot;&gt;tweets out&lt;/a&gt; that he has an extra seat for a show he&apos;s seeing, and wants a POC to have it for free. Even more than that, he has recently started a &lt;a href=&quot;https://scenesincolor.com/about/&quot;&gt;new theatre website for critics of color&lt;/a&gt;. And his efforts have led to &lt;a href=&quot;https://twitter.com/josesolismayen/status/1155537805289897992&quot;&gt;doubling the amount of voting members of the Drama Desk&lt;/a&gt;. In a culture that still privileges white male voices as the most authoritative, these efforts do give hope:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/josesolismayen/status/1140038827744079872&quot;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Further Reading&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Sara Holdren vs the New York Times&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.vulture.com/2019/08/theater-review-shakespeare-in-the-parks-coriolanus.html&quot;&gt;Coriolanus&lt;/a&gt; (Holdren) vs &lt;a href=&quot;https://www.nytimes.com/2019/08/05/theater/coriolanus-shakespeare-park-review.html&quot;&gt;Coriolanus&lt;/a&gt; (Brantley)&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.vulture.com/2018/11/theater-review-the-good-intentions-of-american-son.html&quot;&gt;American Son&lt;/a&gt; (Holdren) vs &lt;a href=&quot;https://www.nytimes.com/2018/11/04/theater/american-son-review.html&quot;&gt;American Son&lt;/a&gt; (Green)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Other Great Sara Holdren Pieces&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.vulture.com&quot;&gt;Fairview&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.vulture.com/2018/10/theater-oklahoma-where-storm-clouds-loom-above-the-plain.html&quot;&gt;Oklahoma&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Great Criticism from Other Writers Outside of Theatre&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Richard Brody on &lt;a href=&quot;https://www.newyorker.com/culture/richard-brody/spike-lees-necessary-overwhelming-chi-raq&quot;&gt;Chi-Raq&lt;/a&gt; and &lt;a href=&quot;https://www.newyorker.com/culture/the-front-row/review-quentin-tarantinos-obscenely-regressive-vision-of-the-sixties-in-once-upon-a-time-in-hollywood&quot;&gt;Once Upon a Time...in Hollywood&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Wesley Morris on &lt;a href=&quot;https://www.nytimes.com/2018/01/18/movies/three-billboards-outside-ebbing-missouri.html&quot;&gt;Three Billboards&lt;/a&gt; and &lt;a href=&quot;https://www.nytimes.com/2018/12/07/arts/best-performances-2018.html&quot;&gt;the Best Performances of 2018&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;K. Austin Collins on &lt;a href=&quot;https://www.vanityfair.com/hollywood/2019/07/tarantino-once-upon-a-time-in-hollywood-revenge-fantasy-manson-family&quot;&gt;Once Upon a Time in Hollywood&lt;/a&gt; and &lt;a href=&quot;https://www.vanityfair.com/hollywood/2018/12/truth-about-green-book-viggo-mortensen-mahershala-ali&quot;&gt;Green Book&lt;/a&gt; (BONUS DEEP CUT: &lt;a href=&quot;https://letterboxd.com/gemko/film/chi-raq/&quot;&gt;Collins vs Mike D&apos;Angelo in the comments section of D&apos;Angelo&apos;s Letterboxd review of Chiraq&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Jenna Wortham on &lt;a href=&quot;https://www.nytimes.com/2019/08/29/movies/white-privilege-nightingale-midsommar.html&quot;&gt;White Filmmakers Addressing Whiteness Onscreen&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content:encoded></item><item><title>Art and the Unconscious</title><link>https://guscuddy.com/writing/2019-06-25-art-and-unconscious/</link><guid isPermaLink="true">https://guscuddy.com/writing/2019-06-25-art-and-unconscious/</guid><description>Rationality can only get you so far. You can&apos;t always take the logical position. Sometimes you have to lay down the burden of consciousness.</description><pubDate>Tue, 25 Jun 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;There are some things in this world that cannot be explained. Deep, dark mysterious things. Things that stem from some ancient unwaking origin, drifting in the netherworld between sleep and somewhere else. Things that exist in the far reaches of the unconscious.&lt;/p&gt;
&lt;p&gt;Our brains cannot quite understand these things. Consciousness is not enough. Instead, we repress our un-understandings and fears and traumas deep into the depths of our own &lt;a href=&quot;https://www.guscuddy.com/2018/11/07/dont-make-art-in-terms-of-risk.html&quot;&gt;unconscious&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Sometimes, we have to put down the burden of our consciousness. Rationality and logic can only get us so far. You can&apos;t always take the analytical position.&lt;/p&gt;
&lt;p&gt;This is why people turn toward things like religion and art.&lt;/p&gt;
&lt;p&gt;We experience art not to connect with the &lt;a href=&quot;https://www.guscuddy.com/2018/10/28/dont-be-literal.html&quot;&gt;literal-minded&lt;/a&gt;, rational side of ourselves, but to connect to something far deeper and more uncertain. &lt;a href=&quot;https://www.guscuddy.com/2019/05/07/qualities-of-great-theatre.html&quot;&gt;Great art&lt;/a&gt; must come from the &lt;a href=&quot;https://www.guscuddy.com/2018/11/07/dont-make-art-in-terms-of-risk.html&quot;&gt;unconscious&lt;/a&gt; so that we, as an &lt;a href=&quot;https://www.guscuddy.com/2018/11/11/the-audience-matters.html&quot;&gt;audience&lt;/a&gt;, can put down our fears and make the leap into that unknown.&lt;/p&gt;
&lt;p&gt;Otherwise, we’re left wondering: what’s the point? Where’s the deeper mystery at play here?&lt;/p&gt;
</content:encoded></item><item><title>Hyperlink Consciousness</title><link>https://guscuddy.com/writing/hyperlink/</link><guid isPermaLink="true">https://guscuddy.com/writing/hyperlink/</guid><pubDate>Tue, 14 May 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Mediums are the message. They contain within them a shift that forms a new consciousness.&lt;/p&gt;
&lt;p&gt;For instance, pre-language society was an aural, interwoven experience not dependent on the specialization of the eye. Then one night some thinker sat in a cave and thought the thought that some things can represent other things. From this imagery emerged. So too did language and the written word, which became an extension of this idea of representation. This shifted us from an aural people to a visual people.&lt;/p&gt;
&lt;p&gt;From the written word many things followed very quickly. Things like civilization.&lt;/p&gt;
&lt;p&gt;Much later, Gutenberg’s invention of the printing press and movable type would shift our consciousness once more, accelerating our shift to a visual society, and encouraging literacy. From movable type so too did nationalism (seeing the vernacular) and the industrial revolution (books as a repeatable commodity) evolve.&lt;/p&gt;
&lt;p&gt;The Telegraph began yet another shift, towards a new electronic age of increasing paradoxical connection. The communication technologies of the 20th century — TV and phones, in particular — expanded this closeness, while also distancing us physically. Marshall McLuhan predicted in the 1960s that we would turn into a technology-enabled global village, restoring our sensory balance by once again becoming all-inclusive.&lt;/p&gt;
&lt;p&gt;The Internet is this global village, which has once again become the medium that is the message that has shifted our consciousness. With the introduction of the hyperlink, we have a whole new way of thinking, a generation of internet natives growing up on the notion that consciousness, knowledge, &lt;em&gt;everything&lt;/em&gt; is a web of interconnected things, but not necessarily dependent on the physical world of things you can touch and move and smell. In a way, this recalls pre-language society, only in a different realm.&lt;/p&gt;
&lt;p&gt;I’ve been thinking a lot about this hyperlink consciousness, and what it means for the future of art. Maria Popova of &lt;a href=&quot;https://www.brainpickings.org/&quot;&gt;Brainpickings&lt;/a&gt; writes in a way that is everything at once, her blog connecting every thinker to another thinker, and her book &lt;em&gt;Figuring&lt;/em&gt; jumping from thinker to idea to everything to idea. It’s a style of writing informed by the Internet’s shift in thinking.&lt;/p&gt;
</content:encoded></item><item><title>The qualities of good theatre</title><link>https://guscuddy.com/writing/2019-05-07-qualities-of-great-theatre/</link><guid isPermaLink="true">https://guscuddy.com/writing/2019-05-07-qualities-of-great-theatre/</guid><pubDate>Tue, 07 May 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;These days, it seems like you often hear about theatre&apos;s inevitable demise at the hands of the internet, that it&apos;s merely a luxury.&lt;/p&gt;
&lt;p&gt;But I don&apos;t think my love of theatre has any element of nostalgia or clinging to a dying medium. I fully believe that theatre is one of the most important mediums even in 2019, and can continue to thrive.&lt;/p&gt;
&lt;p&gt;After all, theatre has been around forever. It&apos;s one of the purest and oldest forms of storytelling. It was dancing around campfires under the stars, it was the formation of Greek democracy, it was the choice of the most prolific writer of all-time in the English language.&lt;/p&gt;
&lt;p&gt;Things that have survived for this long usually have survived for a reason. They have something essential to them, are inextricably linked to our human condition.&lt;/p&gt;
&lt;p&gt;But I also understand why people distrust theatre: because most of it is bad. In this age, television and movies are, on average, probably better.&lt;/p&gt;
&lt;p&gt;So theatre must prove itself every night. It must offer something you can’t get anywhere else.&lt;/p&gt;
&lt;p&gt;Because at its best, great theatre offers an experience that is totally unique. It is exhilarating and brutal and breathtaking and magical and communal. It is where we go to experience our collective unconscious lived out, where we see the mythos of our inner worlds laid bare, where we experience catharsis.&lt;/p&gt;
&lt;p&gt;So what are the principles of great theatre? What follows is a list of ideas I&apos;ve developed over the years. It is not at all exhaustive, but it is a start.&lt;/p&gt;
&lt;h1&gt;Principles&lt;/h1&gt;
&lt;h2&gt;Great theatre makes you shake.&lt;/h2&gt;
&lt;p&gt;Pretty much all great theatre makes you shake in some way. It grabs you and moves you physically, whether that&apos;s in laughter or horror or grief or discomfort. It leaves you feeling different than before, even in some undefinable way.&lt;/p&gt;
&lt;h2&gt;Great theatre is not boring.&lt;/h2&gt;
&lt;p&gt;There’s no more room for boring theatre. For the price of the ticket to one show, you can have months and months worth of unlimited movies and TV shows, many of which are better than most theatre. The opportunity costs are just too high.&lt;/p&gt;
&lt;p&gt;So theatre needs to raise the bar by creating truly compelling live experiences. It needs to be wild and electric and alive and great, an experience that proves itself worthy of the investment in time and money. It needs to be more dangerous than anything you could get in your living room. And it can never, never be boring.&lt;/p&gt;
&lt;h2&gt;Great theatre is an event-ritual.&lt;/h2&gt;
&lt;p&gt;With the ubiquity of the internet, live experiences can differentiate themselves. Theatre is one such experience: immersive, lucid, and a jolt of light and energy.&lt;/p&gt;
&lt;p&gt;Great theatre can often confront us and make us uncomfortable. But the discomfort we experience when we go to the theatre is different than the discomfort we experience when going to the movies. There is something to it that cannot be explained, and it&apos;s to do with its event-ritual nature. Wesley Morris, a Pulitzer prize winning critic who writes primarily about film, has started &lt;a href=&quot;https://www.nytimes.com/2019/04/25/theater/african-american-playwrights.html&quot;&gt;recently writing about theatre&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;But occasionally, a play ends and nobody really knows what to do, because it just took an audience to outer space, to the center of the earth, to this new electric zone that knows what’s wrong with this country and isn’t afraid to personify it, laugh at it, behold it. Even though the work may take place at hospitals or in the presence of a shrink, it doesn’t care about comfort. It’s haywire, rude, blunt, poetic, self-reflective, sexually unpredictable, emotionally catastrophic, exhaustively acted, intelligent, searching and unafraid.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Because theatre exists in one place at one time, it acts as an old fashioned ritual, with real live people. Why do people go to Coachella, Bonnaroo, and Burning Man every year? Because they hunger after these singular experiences. Watching them on your computer is not the same, and almost everyone recognizes this. We are after something more. They are rituals in the way theatre is ritual, where we gather together as human beings in a collective experience. They make us feel alive and human. They have always been a part of us. And they will never be replaced.&lt;/p&gt;
&lt;h2&gt;Great theatre is always now.&lt;/h2&gt;
&lt;p&gt;Great theatre does not belong in a museum. It exists in the moment it is created and then disappears into the ether in those same moments, a special, singular creation between audience and performers. It is an experience you would not have at any other time, and not from any other art form. You have to be there. In this way, theatre is the great art form of now.&lt;/p&gt;
&lt;p&gt;The audience is always participating in the creation of theatre, because theatre only happens when the audience comes in. An audience, in the moment, fills in with their unconscious brains the metaphors the play is presenting. Which gets us to our next point.&lt;/p&gt;
&lt;h2&gt;Great theatre is metaphorical, not literal.&lt;/h2&gt;
&lt;p&gt;Literalism is the great enemy of theatre. If I wanted to see something literal, I would go watch a period movie.&lt;/p&gt;
&lt;p&gt;Instead, theatre is an art form of metaphors. It is not a visual medium. If it were, you could just have a painter make a pretty stage picture. But that&apos;s not what we&apos;re going for. It&apos;s through metaphor that we, as audiences, fill in the gaps. It&apos;s through metaphor that we come to better understand ourselves, better exercise our empathy.&lt;/p&gt;
&lt;p&gt;The possibilities in theatre are limitless when it is treated in such a way. Suddenly, every aesthetic limitation it seems to have is seen in a new dimension.&lt;/p&gt;
&lt;h2&gt;Great theatre considers three-dimensional space.&lt;/h2&gt;
&lt;p&gt;Great theatre considers every nook and cranny of the space, what the spatial relationships mean, how things move, and the visceral metaphors that can be explored through this unique trait of theatre versus two-dimensional narrative forms, like film and TV.&lt;/p&gt;
&lt;p&gt;Theatre, in a way, is the sculpting of energy in a space. As playwright Simon Stephens wrote: &quot;I like hearing my plays in a language I can’t understand because it reminds me that our work is not in writing ideas but orchestrating energy.&quot;&lt;/p&gt;
&lt;h2&gt;Great theatre has a reason for existing.&lt;/h2&gt;
&lt;p&gt;Why is this particular play being done right now? If a production doesn&apos;t have an answer to that question, it&apos;s dead on the spot.&lt;/p&gt;
&lt;p&gt;For revivals, what was the energy of the first production? How can that energy be adapted to the present? And who needs to perform and see this play now?&lt;/p&gt;
&lt;p&gt;Does this play mean something to the world we&apos;re living in? Are people in the audience seeing themselves on stage? Can we reflect relevant ideas to the world?&lt;/p&gt;
&lt;p&gt;A corollary: I believe great theatre exists for more of a reason than just politics. Theatre is inherently political, but if a play is made solely from politics, it’s often just boring. Worse, it preaches to the choir, instead of reaching a wider audience, like it could through a different medium.&lt;/p&gt;
&lt;h2&gt;Great theatre is uniquely suited to the form.&lt;/h2&gt;
&lt;p&gt;Why should people go to the theater at all anymore? With so many other means of narratives, what&apos;s so important about this story being a play?&lt;/p&gt;
&lt;p&gt;There are many new plays that simply don&apos;t answer this question. They seem to have been designed to be bad TV, instead. They take the hacky parts of television and combine them with the stage, which obviously leads to dreadful theatre. Many of these plays continually gets produced because many of these are &quot;Issue Plays&quot;, i.e. plays that try to tackle a hot-topic issue (like race) and thus get programmed by clueless old white men who want to feel woke. (They are usually written by white people who want to be writing for TV.)&lt;/p&gt;
&lt;p&gt;Theatre should not be something that it is not. If it tries to be television, it ends up being a pale imitation, existing in a netherworld of plays that aren&apos;t quite sure what they are. In the words of theatremaker and critic Sara Holdren, these shows &quot;neither take joy in the possibilities of their own form nor respect its demands.&quot;&lt;/p&gt;
&lt;h2&gt;Great theatre reaches for the transcendent.&lt;/h2&gt;
&lt;p&gt;In some way, all great theatre reaches for the transcendent, the invisible. It often does this through metaphor, and through being uniquely theatrical.&lt;/p&gt;
&lt;p&gt;We are looking for a bridge from the known to the unknown. From conscious to unconscious. From here to there. From sleeping to waking. Theatre can be this bridge. Through some miraculous means, it must reach beyond itself.&lt;/p&gt;
&lt;h2&gt;Great theatre is vulnerable and naked.&lt;/h2&gt;
&lt;p&gt;&quot;The closer we move towards the true nakedness of theatre, the closer we approach a stage that has a lightness and range far beyond film or television.&quot; - Peter Brook&lt;/p&gt;
&lt;p&gt;True vulnerability on stage is breathtaking and dangerous. Performing is a courageous act, because it involves risk.&lt;/p&gt;
&lt;p&gt;Raw life, in all its natural tragedy, is spellbinding on stage. Vulnerability, warts, intricate sadness, embarrassment. We are seeing actual, real-life human beings struggle, in all their bizarre complexity.&lt;/p&gt;
&lt;p&gt;Many productions set actors up to act with quotes around them, which causes a barrier to go up between us and them. They act “Anger”, “Sex” and “Power”, instead of Anger. Sex. Power. Great theatre takes off the mask. [^1]&lt;/p&gt;
&lt;h2&gt;Great theatre cares about the audience.&lt;/h2&gt;
&lt;p&gt;Theatre should be rigorous and smart and complex, but great theatre never loses sight of its audience. It should be completely unpretentious in its ability to be enjoyed, understood[^2], and grappled with.&lt;/p&gt;
&lt;p&gt;Would a young person who has never seen theatre enjoy this show?&lt;/p&gt;
&lt;h2&gt;Great theatre gives actors ownership.&lt;/h2&gt;
&lt;p&gt;As an actor, I am very skeptical when anyone uses the term &quot;directors&apos; theatre&quot; in a disparaging way. I tend to enjoy bold directorial visions.&lt;/p&gt;
&lt;p&gt;But, simply put: the most important thing in theatre is the actor. They are the art form itself.&lt;/p&gt;
&lt;p&gt;Everything else in theatre revolves around the actors, is serving the actors, so that they can have moments of pure existence on stage.&lt;/p&gt;
&lt;p&gt;Theatre is the only art form that appears and disappears in the moment. So the actors must own every second of it, because it is they who are doing the creating of it in the moment.&lt;/p&gt;
&lt;p&gt;When actors are given complete ownership, you get performances of raw intensity.&lt;/p&gt;
&lt;p&gt;There should be no writer -&amp;gt; director -&amp;gt; actor hierarchy.&lt;/p&gt;
&lt;p&gt;This isn&apos;t to say actors can direct themselves, or that divas are permitted—only that great theatre takes its actors seriously, puts them on equal footing with the writer and director, and allows them to fly.&lt;/p&gt;
&lt;h2&gt;Great theatre is original.&lt;/h2&gt;
&lt;p&gt;The most important thing to remember is that there are no rules, including these ones.&lt;/p&gt;
&lt;p&gt;Great theatre often creates its own genre. That&apos;s what &lt;a href=&quot;https://www.standard.co.uk/go/london/theatre/annie-baker-be-incredibly-vulnerable-but-not-necessarily-confessional-a3746516.html&quot;&gt;Annie Baker did&lt;/a&gt;: &quot;Be incredibly vulnerable, but not necessarily confessional. &lt;strong&gt;Invent your own genre.&lt;/strong&gt; Don&apos;t try to look smart.&quot;&lt;/p&gt;
&lt;p&gt;So much of theatre is passed-down-upon wisdom, much of which is bullshit. There is no correct way to stage &lt;em&gt;Hamlet&lt;/em&gt;. You don&apos;t have to open with dry ice and a goofy ghost.&lt;/p&gt;
&lt;p&gt;Great theatre is not easily summarized. A great, original show is more than just a byline. It is an experience that cannot quite be put into words, because it is something new entirely.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;[^1]: This isn&apos;t to discount Brecht. Some of my favorite productions are able to blend Brecht&apos;s intellectual distance with the raw nakedness of emotion in theatre.
[^2]: Understanding on a basic, intuitive level, at least. Audiences don&apos;t need to understand every little thing, in a literal sense.&lt;/p&gt;
</content:encoded></item><item><title>Live and crafted, recorded and raw</title><link>https://guscuddy.com/writing/2019-05-01-live-vs-recorded/</link><guid isPermaLink="true">https://guscuddy.com/writing/2019-05-01-live-vs-recorded/</guid><pubDate>Wed, 01 May 2019 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve been thinking about podcasts and theatre a lot, and how they interrelate. I have a theory about their paradoxical relationship.&lt;/p&gt;
&lt;p&gt;I started listening to podcasts in high school. Most of them weren’t very slick, just a couple people talking into microphones. The form has grown and evolved since then, with many successful shows having a slick finish. But it also strikes me that many of the most successful podcasts (like Joe Rogan or Marc Maron) are still just people having conversations into a microphone.&lt;/p&gt;
&lt;p&gt;And I think this notable, because it’s something podcasts are great for.&lt;/p&gt;
&lt;p&gt;Sure, I do like podcasts like Serial, or This American Life, or Reply All. Narrative podcasts with a bit more “oomph”. There will always be a place for them.&lt;/p&gt;
&lt;p&gt;But recently I was listening to Comedy Bang Bang, one of my original favorite podcasts. And I realized that what they do on that podcast — great comedic actors doing great character work, playing wildly on the imagination — only works because of the form. I like the TV show, but it is a qualitatively different type of experience. In a podcast, your brain fills in the rest. You imagine these ridiculous characters having these ridiculous conversations, and you go with it. On TV, a medium that can struggle with being too literal, you don’t get that. You don’t get that when you know it’s crafted and you can see everything.&lt;/p&gt;
&lt;p&gt;And via podcast, you feel a type of intimacy. The relationship is warm. I feel like I know all these people on CBB, despite not having seen any one of them live. But I know their comedy, and I know their laugh, and I laugh with them. When I listen, I feel like I’m having a secret conversation with them, even though I’m obviously not. (And I think this is different from the radio of old — podcasts &lt;a href=&quot;https://www.guscuddy.com/2018/11/01/intimacy-is-alluring.html&quot;&gt;feel more intimate&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;This is also why I don’t really like live episodes of podcasts. I don’t want to hear other people responding. I want to own this experience myself, I want to be the sole arbiter. So it can be frustrating, and somewhat dissociating, listening to a group of other people respond to what have, up to this point, jus been voices in your head.&lt;/p&gt;
&lt;p&gt;It also speaks to this idea of the “ritual economy”. CBB has put out at least one new episode every week for as long as I can remember. I know they are going to be there for me. I don’t listen to every episode. That’s not the point. The point is that I know it’s there, and I know I can trust them. That, coupled with podcasts’ intimacy, is very powerful.&lt;/p&gt;
&lt;p&gt;So recorded podcasts, I think, are best left raw. I don’t want to hear prepared comedy on a podcast. I want to hear something raw that is improvised, making it all the more wonderful to drop in on. Because, like most people, I listen to podcasts while doing other things, like commuting or doing laundry. So I actually don’t want to have the laboriousness of preparation weighing me down. I don’t want to feel like I need to listen to every word or I have missed something. (This is part of why audiobooks frustrate me.) Instead, I want the podcast to play fast and loose, allowing me to zone out for a minute and drop back in.&lt;/p&gt;
&lt;p&gt;On the other hand, the inverse is true with theatre.&lt;/p&gt;
&lt;p&gt;Theatre is live. It wants to &lt;em&gt;feel&lt;/em&gt; improvised, but it actually wants to &lt;em&gt;be&lt;/em&gt; totally &lt;em&gt;crafted&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;That is, theatre needs to impress me. My favorite theatre often starts with what seems like a raw, empty space, seeming to show that a production doesn’t have any tricks up its sleeves. But then it pulls out tricks anyway. For me, this is what THE THIN PLACE and HOW TO DEFEND YOURSELF did at Humana. As Simon Stone &lt;a href=&quot;https://www.surfacemag.com/articles/simon-stone-talks-yerma-set-design/&quot;&gt;puts it&lt;/a&gt;: “show the audience how impossible an idea is, then do it right in front of their eyes”. I want to be swept away and have a guttural, emotional experience. Theatre is its own, completely unique experience.&lt;/p&gt;
&lt;p&gt;So while theatre is live, it should be rigorously prepared. And while podcasts are recorded and prepared, they should feel live and raw. Recorded and raw, live and crafted. It’s an idea I’ve been thinking about.&lt;/p&gt;
&lt;p&gt;But this is why I believe podcasts and theatre are perfect corollaries. Together, they form a great barbell -- two extremes (quick and dirty digital podcasts on one side, slow and labor-intensive analog theatre) -- for a young theatre company.&lt;/p&gt;
</content:encoded></item><item><title>Two-dimensional racism</title><link>https://guscuddy.com/writing/2dracism/</link><guid isPermaLink="true">https://guscuddy.com/writing/2dracism/</guid><pubDate>Wed, 28 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;In theatre and film there is a common case of what I call &lt;em&gt;two-dimensional racism&lt;/em&gt;. This is the sort of optics-based casting that is simply meant to check off casting people of color like there&apos;s a quota to fill. There&apos;s no depth to this diversity --- it&apos;s purely two-dimensional.&lt;/p&gt;
&lt;p&gt;Of course, two-dimensional racism is often well-meaning. Old, white theatre-makers want to feel progressive, want to congratulate themselves for the great work they&apos;re doing by having a diverse show. And yet, the make-up of non-performers in the theater is generally a homogenous sea of white.&lt;/p&gt;
&lt;p&gt;The issue runs deeper than just optics, and deeper than just theatre and film. As &lt;a href=&quot;https://twitter.com/rembert/status/917475783622451200?lang=en&quot;&gt;Rembert Browne tweeted&lt;/a&gt; when ESPN fired Jemele Hill: &quot;espn wants black faces not black minds&quot;.&lt;/p&gt;
&lt;p&gt;The same is true for so many theaters. They want the feeling of diversity without doing any of the deeper work, without facing the systemic problems that run from the roots, not from the leaves. They look for brown and black faces to make themselves feel better, to present themselves as diverse---but not to rock the old and white boat too much, please. Fact is, that boat is still the dominant mode of thinking and perception for most theaters.&lt;/p&gt;
&lt;p&gt;Worse, two-dimensional racism is often mixed with lazy directing choices, as if having people of color in a show will solve its problems, absolve the play of any issues it might have, do all the heavy lifting for them. It&apos;s a signaling device that arguably does more harm than good when combined with a lack of rigor.&lt;/p&gt;
&lt;p&gt;Think things through. Make good choices that consider complexity and depth. White supremacy is not tackled by shallow, white thinking.&lt;/p&gt;
</content:encoded></item><item><title>Write and act in a trance</title><link>https://guscuddy.com/writing/2018-11-24-write-act-trance/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-24-write-act-trance/</guid><pubDate>Sat, 24 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This comes from &lt;a href=&quot;https://tim.blog/2016/07/27/mike-birbiglia/&quot;&gt;Mike Birbiglia&apos;s podcast episode on Tim Ferriss&apos; show&lt;/a&gt; a while back. I was reviewing some notes on that episode, to see how Birbiglia uses journaling.&lt;/p&gt;
&lt;p&gt;He drops a few goldmines on his creative process:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;My minimum is three hours; I’d stick myself in a coffee shop with no internet and no email, no anything. If it’s going well, I go up to five hours and if it’s not going well, I just end at three hours. I try to do 7 a.m. I try to write before my inhibitions take hold of me. Because I’m an actor, as well, &lt;strong&gt;I always say write in a trance and act in a trance. You don’t want to even think consciously about what you’re putting on the page&lt;/strong&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&apos;ve talked &lt;a href=&quot;/artrisk&quot;&gt;about creating from the unconscious&lt;/a&gt;, but Birbiglia expresses it really nicely here. Get yourself into a trance in the morning, and start putting things down. Before the demons of inhibition and rationality can get to you.&lt;/p&gt;
&lt;p&gt;Mamet (I know) writes about this in &lt;em&gt;Three Uses of a Knife&lt;/em&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Artists don’t wonder, “What is it good for?” They aren’t driven to “create art,” or to “help people,” or to “make money.” They are driven to lessen the burden of the unbearable disparity between their conscious and unconscious minds, and so to achieve peace.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This &quot;trance writing&quot; is what I do and recommend with &lt;a href=&quot;https://twitter.com/search?q=from%3Abriankoppelman%20morning%20pages&amp;amp;src=typd&quot;&gt;morning pages&lt;/a&gt;, which I learned from Brian Koppelman: each morning, wake up and write three long-hand pages, stream-of-consciousness style. Around the 1.5 page mark, you often hit a &quot;truth point&quot;, where you kind of run out of bullshit to write about and end up getting to some deeper parts of the subconscious.&lt;/p&gt;
&lt;p&gt;I like that he also mentions acting in a trance, though he doesn&apos;t expand on it in the interview. The idea is one I strive for in my acting: to not really think about it too much. Do the work, then let it move through you, bringing yourself and all your experience onto the stage as well. It can be quite an exhilarating trance, and you often know if you aren&apos;t in it (usually it&apos;s because the demons of rationality have come to your shoulder and let you know that you are on stage acting in front of people, and it is really a ridiculous thing to be doing).&lt;/p&gt;
&lt;p&gt;There&apos;s one more thing in the interview I really like a lot:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Don&apos;t waste your time on marketing, just try to get better. ... It&apos;s not about being good; it’s about being great. Because what I find, the older I get, is that a lot of people are good and a lot of people are smart, and a lot of people are clever. But not a lot of people give you their soul when they perform.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This is the same idea I discussed in &lt;a href=&quot;/gettinggood&quot;&gt;&quot;Getting good&quot;&lt;/a&gt;. Worry less about getting seen, focus on learning and doing and getting great at what you do. Acting and writing in a trance is a good start.&lt;/p&gt;
</content:encoded></item><item><title>The theatre-church fallacy</title><link>https://guscuddy.com/writing/2018-11-23-theatre-church-fallacy/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-23-theatre-church-fallacy/</guid><pubDate>Fri, 23 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I hear this analogy often used, that theatre is akin to church. A place where we go to experience collective catharsis. And it&apos;s the only place, besides church, where we go to do that. Which makes it vital. Or something along those lines.&lt;/p&gt;
&lt;p&gt;But I think there a couple problems with this comparison.&lt;/p&gt;
&lt;p&gt;The first problem is that it&apos;s a little too precious. I fear us romanticizing theatre too much, convincing ourselves of the mythical and poetic Goodness of the form, rather than just making good theatre. Equating a night at the theatre to a religious experience might make us feel good, but I&apos;m not sure it&apos;s very helpful if the theatre is still bad.&lt;/p&gt;
&lt;p&gt;But the bigger problem? Well, the comparison is actually a little &lt;em&gt;too&lt;/em&gt; accurate, and that&apos;s not a good thing. People forget that for many of us, church is really boring! Many people go out of a sense of obligation, not for the thing itself. They go to feel worthy, to say they have gone to church. And then, for the next hour or so, they are politely bored.&lt;/p&gt;
&lt;p&gt;This is the same idea with theatre: people go to feel &quot;worthy&quot; for having experienced &quot;culture&quot;. They go to theatre out of a sense of obligation, and they expect to be politely bored for two hours. This is &lt;em&gt;deadly&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;In both theatre and church, the highs can be ecstatic. There really &lt;em&gt;can&lt;/em&gt; be collective catharsis, in both cases. But more often than not, it&apos;s just not the case.&lt;/p&gt;
&lt;p&gt;The comparison is a little too easy. It lets us off the hook. Instead, we need to use more rigor for theatre, investigate it to its core. Yes, it is indeed a place of collective catharsis, a weird ancient ritual that we enact every night. Sure, yes. But the bigger problem? That ritual is often very fucking boring.&lt;/p&gt;
&lt;p&gt;The church-theatre analogy makes us feel all nice, as if we&apos;re performing something holy and sacrilege all at once. But it actually is dangerous, lest we become another fossilized ritual obligation.&lt;/p&gt;
</content:encoded></item><item><title>Content vs accessibility</title><link>https://guscuddy.com/writing/2018-11-18-content-vs-accessibility/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-18-content-vs-accessibility/</guid><pubDate>Sun, 18 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is another thing I wrote a while back. It has some good thoughts:&lt;/p&gt;
&lt;p&gt;Is the problem with theatre in its content, or its accessibility?&lt;/p&gt;
&lt;p&gt;These are two different things, and we confuse the two. Sometimes, I hear that theatre should be more like Netflix or HBO. While I actually agree with this, it is a sort of broad comparison. Because Netflix does two things, and they do them extremely well: provide great, captivating content, and make it easy to access.&lt;/p&gt;
&lt;p&gt;Theatre does both of these things not very well. They are two separate ideas and each needs to be worked on separately.&lt;/p&gt;
&lt;h2&gt;Content&lt;/h2&gt;
&lt;p&gt;The first is to create more captivating content for the stage. This is obviously a subjective thing, but there is a twofold problem I see here: plays not being uniquely theatrical, and plays having us turn off the critical brain.&lt;/p&gt;
&lt;p&gt;Two people talking is not uniquely theatrical. Maybe two amazing actors talking is, but by itself it&apos;s not. A play should be a play for a reason, and not a film or tv show .&lt;/p&gt;
&lt;p&gt;Theatre should be compelling from the get go. With Netflix, you can turn on a new series and get sucked in without knowing much. You don&apos;t need to turn off any part of your brain. The content is so good that you want to watch it, feel like it rips your guts out or makes you shake with laughter each time.&lt;/p&gt;
&lt;p&gt;With theatre, sometimes there&apos;s some work the audience has to do, to turn off a part of their brain that&apos;s like &quot;ok, this is a play, I need to lower my expectations a bit“. But this lets the audience off the hook. Anyone should be able to go to a production and be immediately engaged, not feel like there’s some mental hump they need to get over to be engaged.&lt;/p&gt;
&lt;h2&gt;Accessibility&lt;/h2&gt;
&lt;p&gt;A major problem in theatre of course is accessibility. Once you have a Netflix account (or your roommate’s password) all you need to do is click a show and start watching. With theatre, there&apos;s so many barriers. First is price. Then there&apos;s the actual act of the distance of going to the theatre. There&apos;s putting on clothes. There&apos;s reading about the play. There&apos;s trying to find a good play to see.&lt;/p&gt;
&lt;p&gt;The accessibility is low. The barrier of entry is far too high.&lt;/p&gt;
&lt;p&gt;This is a tougher problem to fix in some ways, I think, than the content problem. New York has certainly failed at this almost inconceivably. Broadway is ridiculously inaccessible, though there are some definite steps to make it better. Student rush ticket policies usually aren’t terrible, and apps like TodayTix are actually helpful in nabbing tickets. (But it’s still way too expensive.) What, exactly, are we paying for? When I can watch something on Netflix that is better written, more diverse, more exciting?&lt;/p&gt;
&lt;p&gt;The only conceivable way I can think of theatre not dying off (in a proverbial sense — there will always be an elite class who gets off on being politely bored) is for prices to lower, and accessibility to be greatly improved. That means more outreach, more workshops, more effective, exciting education programs, cheaper tickets, etc.&lt;/p&gt;
&lt;p&gt;I admit that’s a difficult and larger thing. For a theatre who is doing an amazing job at this, look at &lt;a href=&quot;https://almeida.co.uk/&quot;&gt;Almeida Theatre&lt;/a&gt;, who has an &quot;Almeida for Free” festival for under-25s to see their productions for free, and includes all sorts of incredible workshops. (It “sold out” pretty instantly, but that’s because of its unbelievable value. And this should be proof that this approach works.)&lt;/p&gt;
&lt;p&gt;Creating amazing content and improving accessibility should be the ultimate duty to all people that make theatre right now, if theatre wants to survive.&lt;/p&gt;
</content:encoded></item><item><title>Theatre and time</title><link>https://guscuddy.com/writing/2018-11-17-theatre-and-time/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-17-theatre-and-time/</guid><pubDate>Sat, 17 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Theatre is our most potent exploder of time, because it is the only art form (and I include dance, music performance—-any sort of performance on a stage) that includes a commitment of time from both audience and performer.&lt;/p&gt;
&lt;p&gt;We are witnessing time over the course of time. In all its ugliness and impotence. The contents of a play may jump around time, be non-linear or take course over the span of several years. But we sit for those 90 minutes, those two hours, and we watch. And we&apos;re watching time—real human beings move through time.&lt;/p&gt;
&lt;p&gt;Theatre is always now, and the best theatre takes full advantage of this. The best theatre excavates the space between then &lt;em&gt;and&lt;/em&gt; now—the tension at play between this present moment and the contents of the play, and all of us in the room together, an experience that will fade away shortly, into nothingness, like all time does. The best theatre juggles all that.&lt;/p&gt;
&lt;p&gt;The best theatre deals with time.&lt;/p&gt;
</content:encoded></item><item><title>Good theatre runs smooth</title><link>https://guscuddy.com/writing/smooththeatre/</link><guid isPermaLink="true">https://guscuddy.com/writing/smooththeatre/</guid><pubDate>Thu, 15 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I have this theory that you can pretty accurately judge if a play is going to be good from its first moments. The lights go down, maybe some music comes in, and that&apos;s the most exciting part: you have us. For a moment you think, &quot;this play might change my life&quot;: the excitement of the play starting, another world emerging. It&apos;s stuck with me since my childhood as my absolute favorite part of the theatre. Then the lights comes up, and you realize: &lt;em&gt;Oh. No. This is not going to change my life after all.&lt;/em&gt; I almost always feel let down.&lt;/p&gt;
&lt;p&gt;It takes a lot for a play to regain that magical feeling. It&apos;s rare that a production can lose me in its first moments, and end up being a great experience. (It does happen, though!)&lt;/p&gt;
&lt;p&gt;Now, some directors might devote too much time to getting that first moment right, and then let the rest of the play fall through the cracks. You don&apos;t want to have an explosive first moment and then let us down the rest of the time.&lt;/p&gt;
&lt;p&gt;Instead, you want to hook us, and have the whole thing run smooth.&lt;/p&gt;
&lt;p&gt;Daniel Kahneman introduces this idea of System 1 and System 2 thinking in his seminal book &lt;em&gt;Thinking, Fast and Slow&lt;/em&gt;. System 1 is our quick brain, the intuitive brain that can&apos;t help but fill things in. And it is essential to theatre. In theatre, we make gestures, use metaphors---we don&apos;t literally reconstruct. Our quick brain fills it in. System 2 is our slower brain, the deep thinking brain, involved in analysis, sure, but also doubt and uncertainty and reasoning.&lt;/p&gt;
&lt;p&gt;In those first moments of a play, you can&apos;t ask us to use System 2. You&apos;ve lost us already. The beginning should feel smooth, to ease us in. It should be a cascading series of System 1, intuitive brain activity. Think 3+2 equals...(five, your brain can&apos;t help fill it in), not 1617.3*313.86 equals...(uh, let me pull out my calculator, hold on -- carry the one...).&lt;/p&gt;
&lt;p&gt;Where System 2 does come in, I think, is as the play deepens, and excavates whatever question it is asking. Great drama often gives us paradoxes, two right answers, which System 1 is not equipped to answer. Instead, System 2 must engage to help us reason through the difficult questions the drama is asking of us.&lt;/p&gt;
&lt;p&gt;Aesthetically, however, I believe in smooth theatre. Not too smooth -- I don&apos;t want it spoon-fed to me, I don&apos;t need gross commercialism, I don&apos;t want to be condescended to, I&apos;m not looking to &quot;turn my brain off&quot;. But I do want to be excited and riveted, and I believe the best way to get there is through System 1. When I start to have to use System 2 to keep engaged in the beginning, it can quickly become Deadly Boring. It&apos;s a balancing act---you have to engage System 2 so that the play can deal with deep subject matter, but you need to use the drill of System 1 to drive to the heart of the matter. (And ideally, the heart of the matter offers us deep-seated questions and feelings that our Slow Brain will mull over for days.)&lt;/p&gt;
&lt;p&gt;I think System 1 applies to acting, too. Some actors put us at ease, in a good way. I can let my guard down a bit, because I just feel comfortable with them on stage, comfortable in their hands, ready to go with them wherever they are going to go. Other actors make me nervous. My theory is that they are having us engage System 2 to deal with their performance. Something is off, it doesn&apos;t feel right, and it makes me nervous. I can&apos;t completely fall into the world of the play, because my brain is just not completely going with the story.&lt;/p&gt;
&lt;p&gt;I&apos;m going to expand on this theory in future posts. But the basic idea is that, when theatre functions with an aesthetic that has System 1 in mind, it flies. We fill so much in. We don&apos;t need to see everything literally. Give me a minimal set with the right props, pieces and gestures to help me reach for transcendent ideas, and couple it with real, thrilling acting that I can trust enough to fall into. (An exciting play and clever staging doesn&apos;t hurt either.) That&apos;s when it all comes together.&lt;/p&gt;
</content:encoded></item><item><title>On textual fidelity</title><link>https://guscuddy.com/writing/2018-11-14-on-textual-fidelity/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-14-on-textual-fidelity/</guid><pubDate>Wed, 14 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;
&lt;em&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Peacham_drawing&quot;&gt;Peacham Drawing&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The original production of Ibsen&apos;s &lt;em&gt;A Doll House&lt;/em&gt; caused quite a controversy. People were shocked by its empowering ending. Near-riots ensued.&lt;/p&gt;
&lt;p&gt;But if you were, in 2018, to literally replicate this production (for argument&apos;s sake in NYC, but really anywhere), it would be a complete disaster.&lt;/p&gt;
&lt;p&gt;Many conservative thinkers think they are being more faithful to Ibsen by trying to be completely true to the literal letter of the play, including doing whatever it takes to get to &quot;how it was&quot; when it was it was first done. These productions involve period dress, stilted acting and accents, and a general feeling of Deadness. But while these productions might be staying true to the letter, they are completely vandalizing the spirit.&lt;/p&gt;
&lt;p&gt;The spirit of the original &lt;em&gt;Doll&apos;s House&lt;/em&gt; involved controversy and shock, a feeling of disquiet and uncertainty. (This is &lt;a href=&quot;https://www.nytimes.com/2004/11/11/theater/reviews/a-nora-who-goes-beyond-closing-her-prisons-door.html&quot;&gt;why Ostermeier ended his with a shotgun&lt;/a&gt;.) If you put up a production that bores us to tears, you simply don&apos;t understand the play.&lt;/p&gt;
&lt;p&gt;This, of course, isn&apos;t even to mention that every production of Ibsen we do in English is, in some way, an adaptation. It is shocking to me how much fidelity some theatre artists have to a stodgy translation of Ibsen or Chekhov from the early 20th century. These are the worst of the worst, academic translations that barely worked then but ring completely false to our ears now. We need to find what the original electricity was, and try to convert it for today. &lt;a href=&quot;http://www.open.ac.uk/arts/research/pvcrs/2015/icke&quot;&gt;Here&apos;s director Robert Icke direction his sensational production of Aeschylus&apos;s &lt;em&gt;Oresteia&lt;/em&gt;&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[This production] is faithful to the spirit rather than to the letter of the original thing. And the spirit is more important, because &lt;strong&gt;what we don’t have is a 458 BC audience; we have a now audience&lt;/strong&gt;, and my responsibility is to keep them captivated and interested. I keep giving this analogy to everyone of adaptation being like a plug adaptor. So you’re standing in a room and your hair’s wet, and you’re holding a hairdryer. You try and plug it in but it doesn’t work. You can try and hammer it in if you want but you’re still going to have wet hair. You’re confident that the thing you’re holding in your hand, the old thing you’re holding, can dry your hair, if only you can get the energy present in the room into the old thing. That’s what it’s like with an old play sometimes...If I can find a way of reworking the way it connects with the room so that it comes alive, suddenly it feels like it felt in 458 BC again, one hopes.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;In adaptations, we will never get it totally &quot;true&quot;. This is part of the beauty of theatre---it takes place now, in this place.&lt;/p&gt;
&lt;p&gt;Even Shakespeare realized this: just look at the famous &lt;a href=&quot;https://en.wikipedia.org/wiki/Peacham_drawing&quot;&gt;Peacham drawing&lt;/a&gt; of &lt;em&gt;Titus Andronicus&lt;/em&gt; -- Shakespeare realized that modern dress, and the &lt;em&gt;spirit&lt;/em&gt; of the thing, was more important than the literal &lt;em&gt;letter&lt;/em&gt; (i.e. literally setting it entirely in the Roman Empire).&lt;/p&gt;
</content:encoded></item><item><title>Theatre and scarcity</title><link>https://guscuddy.com/writing/2018-11-13-theatre-and-scarcity/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-13-theatre-and-scarcity/</guid><pubDate>Tue, 13 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;These are some thoughts on theatre and scarcity I wrote a while back. I&apos;m posting them again because I think they&apos;re interesting.&lt;/p&gt;
&lt;h3&gt;The micro: actors are not scarce&lt;/h3&gt;
&lt;p&gt;Here is a list of things that are scarce in theatre:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Good ideas.&lt;/li&gt;
&lt;li&gt;Visionary playwrights.&lt;/li&gt;
&lt;li&gt;Visionary directors.&lt;/li&gt;
&lt;li&gt;Visionary designers.&lt;/li&gt;
&lt;li&gt;Visionary marketers and theatrical innovators.&lt;/li&gt;
&lt;li&gt;Transcendent performers.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Here is a list of things that are &lt;em&gt;not&lt;/em&gt; scarce:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Actors&lt;/li&gt;
&lt;li&gt;Bad theatre&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So what does this mean, exactly?&lt;/p&gt;
&lt;p&gt;A few things:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;There are too many actors, and particularly too many merely okay actors.&lt;/li&gt;
&lt;li&gt;Theatre training needs to focus on making theatre, not just acting. One person may lean towards performing, but they should be encouraged to write and direct and design and &lt;em&gt;create&lt;/em&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The most important thing that is scarce is &lt;em&gt;good ideas&lt;/em&gt;.&lt;/strong&gt; Producing the same old shit in the same old way will get theatre nowhere. &lt;em&gt;Hamilton&lt;/em&gt; was a good idea. There are many young playwrights and directors with good ideas. We need more good ideas.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;The macro: productions are scarce&lt;/h3&gt;
&lt;p&gt;If we take one step back and look at the macro perspective of theatre, the thing that is scarce is the actual production. A production is &lt;em&gt;singular&lt;/em&gt;. A movie is plural. A movie is mass produced and can, theoretically, be seen at any given time an unlimited amount of times by an unlimited amount of people in an unlimited amount of places. Theatre exists in one place, at one time, and is seen by a limited number of people. &lt;em&gt;Hamilton&lt;/em&gt; exists only one at a time. If it’s 4pm on a Monday, &lt;em&gt;Hamilton&lt;/em&gt; is not happening. There is no way you can watch it. Theatre is not on demand.[^1]&lt;/p&gt;
&lt;p&gt;The same is true with &lt;em&gt;Harry Potter and the Cursed Child&lt;/em&gt;. I admire the incredible guts it takes to take the most popular franchise in modern Western cultural history and put its latest entry on the stage. How insane! Again, we are faced with theatre&apos;s blessing and curse: its inherent scarcity. The new Harry Potter exists in one place, at one time. That creates a sense of magic and wonder. But, as we have seen, it also creates sky-high ticket prices because of supply (one) and demand (infinite). Thus scarcity is a double-edged sword.&lt;/p&gt;
&lt;p&gt;But the incredible thing about &lt;em&gt;Hamilton&lt;/em&gt; that helped contribute to its success is it has a form of easily accessible digital media that &lt;em&gt;is&lt;/em&gt; plural. The soundtrack gives you a partial experience of the show. Is it as good as the live thing? No. But as far as soundtracks go, it is really, really good. In fact, it’s probably the most complete experience you can have from a musical soundtrack. You get the whole story (the action is mostly described by the words, different from almost every other musical that focuses on a sort of expressionism) and you get pretty much everything, except for the visuals. In &lt;em&gt;Hamilton&lt;/em&gt;, with a 2.5 hour soundtrack, this is a heck of a lot. So it is possible to listen to the soundtrack like one would listen to an Audiobook, almost, and get a full experience. It is different than the production. The production is scarce. But it is an experience. And this experience makes you want to actually go experience the &lt;em&gt;full&lt;/em&gt; experience.&lt;/p&gt;
&lt;p&gt;Case study #2: with the new &lt;em&gt;Harry Potter&lt;/em&gt;, we have the singular (the production) and the plural (the script). This is probably the most mass-produced, best-selling play ever, right? Again, you are getting a &lt;em&gt;portion&lt;/em&gt; of the full experience by reading the script. People that read the play expecting the full experience are sure to be disappointed, but what you get instead is a different sort of partial experience. (Marketing the play in book form as the 8th installment is a bit misleading. The 8th installment can only really be experienced by seeing the play on stage.) What if we were able to garner excitement about productions by having a mass-distributed, non-scarce form (capitalizing on digital media) like &lt;em&gt;Hamilton&lt;/em&gt; and &lt;em&gt;Harry Potter&lt;/em&gt; have?&lt;/p&gt;
&lt;p&gt;The future, and survival, of theatre rests on our capability to tackle, and leverage, its scarcity.&lt;/p&gt;
&lt;p&gt;[^1]: Taped/streamed shows are an interesting idea, but are beyond the scope of this post and will be touched on in a later post. For now, I will say that they are still just an approximation of the experience. Few would argue that theatre can only be experienced at its fullest in a live setting, for anything else defeats its very definition.&lt;/p&gt;
</content:encoded></item><item><title>Category of one</title><link>https://guscuddy.com/writing/2018-11-12-category-of-one/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-12-category-of-one/</guid><pubDate>Mon, 12 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;If you&apos;re interested in writing a screenplay, you may have come across the slew of books that attempt to teach you how. (Like &lt;em&gt;Save the Cat&lt;/em&gt; and its many hydra heads it spews out.) Most of these books propose a sort of formula that, actually, is ancient lore and embedded into our psyches, probably by some Jungian madness, don&apos;t you see. &lt;em&gt;Save the Cat&lt;/em&gt; even offers the Ten Movie Genres, that every screenplay must fit into. The formula and genre is followed by every great story, and every story ever can be mapped out with the formula.[^1]&lt;/p&gt;
&lt;p&gt;But the amount of truly great, memorable screenplays that have spawned out of reading these books is...how many? I&apos;m not sure that data is readily available, but I&apos;m willing to guess the number is relatively close to zero.&lt;/p&gt;
&lt;p&gt;Following a formula makes for bad art. And putting your story into a &quot;category&quot; or &quot;genre&quot; can be a very slippery slope towards Boredom.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.standard.co.uk/go/london/theatre/annie-baker-be-incredibly-vulnerable-but-not-necessarily-confessional-a3746516.html&quot;&gt;Annie Baker offers this advice&lt;/a&gt; for young writers:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Be incredibly vulnerable, but not necessarily confessional. &lt;strong&gt;Invent your own genre.&lt;/strong&gt; Don&apos;t try to look smart.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;The best screenplays, the best stories, the best art defies categorization. If it can be neatly summed up into a sentence, there&apos;s a good chance it&apos;s not that great. If it can be easily categorized, there&apos;s a good chance it&apos;s overflowing with clichés. The experiences of Annie Baker&apos;s plays cannot really be pinned down: they are their own thing, their own genre (each one!) that she invented. There are certainly influences and similarities to other writers (like Chekhov), but there is no tidy box that the plays can be put in. Each one is a Category of One.&lt;/p&gt;
&lt;p&gt;This is a classic &lt;a href=&quot;https://amzn.to/2JVvCDs&quot;&gt;&quot;Law of Marketing&quot;&lt;/a&gt;, but the truth is it applies across businesses and theater companies and art. How can you invent your own genre, your own category? Because that&apos;s where the good stuff lies.&lt;/p&gt;
&lt;p&gt;Don&apos;t follow a formula. Resist easy and lazy &quot;categories&quot;. Instead, make your own.&lt;/p&gt;
&lt;p&gt;[^1]: If it&apos;s not obvious, I&apos;m being sarcastic. It should be no surprise that those who can&apos;t write screenplays write books on how to write screenplays. To be fair, there is a massive market for this kind of thing. All you need is a pithy title (i.e. The Nutshell Technique) and a promise (i.e. this is the secret information 99% of writers don&apos;t know). But it&apos;s important to remember the advice of &lt;a href=&quot;https://sivers.org&quot;&gt;Derek Sivers&lt;/a&gt;, that “if information was the answer, then we’d all be billionaires with perfect abs,&quot; and that we should be suspicious of advice from people without &lt;a href=&quot;https://amzn.to/2B1vz6v&quot;&gt;skin in the game&lt;/a&gt;.&lt;/p&gt;
</content:encoded></item><item><title>The audience matters</title><link>https://guscuddy.com/writing/2018-11-11-the-audience-matters/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-11-the-audience-matters/</guid><pubDate>Sun, 11 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve noticed that there is a certain trend for some directors to &quot;not care&quot; about the audience. I understand where the impulse comes from, but I think this is a big mistake.&lt;/p&gt;
&lt;p&gt;For one, audiences are very smart.&lt;/p&gt;
&lt;p&gt;If an audience is bored during the show, it&apos;s probably not their fault. It&apos;s probably because the show is boring.&lt;/p&gt;
&lt;p&gt;Could you put this in front of 16-year-old you and have them be totally engaged and enjoy it? Or would they feel secretly repressed shame for not understanding what&apos;s going on, feeling it&apos;s their own fault?&lt;/p&gt;
&lt;p&gt;There is, of course, a balance to be struck. You don&apos;t want to condescend, or &quot;dumb down&quot;---but we also mustn&apos;t blatantly disregard what an audience would feel, how they won&apos;t be able to fully see or understand this part, or how this part will simply be a waste of their time.&lt;/p&gt;
&lt;p&gt;It&apos;s an exceptional thing that an audience is giving you: their attention, for 90 minutes or so. And yet how many productions abuse this privilege? We should make good use of their attention by actually making something they will enjoy, because the audience matters. A lot.&lt;/p&gt;
</content:encoded></item><item><title>Who says?</title><link>https://guscuddy.com/writing/2018-11-10-who-says/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-10-who-says/</guid><pubDate>Sat, 10 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;blockquote&gt;
&lt;p&gt;It is tradition, the accumulation of experience, the ashes of memory, that make the mind old. The mind that dies every day to the memories of yesterday, to all the joys and sorrows of the past---such a mind is fresh, innocent, it has no age; and without that innocence, whether you are ten or sixty, you will find God.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;-- &lt;a href=&quot;https://amzn.to/2DAAxcA&quot;&gt;Krishnamurti&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Krishnamurti is offering deep insight into how to live, but I think this applies to art, as well, and reaching towards transcendence.&lt;/p&gt;
&lt;p&gt;When staging classics (and also new plays), there&apos;s a tendency for directors to fall back on old ideas.&lt;/p&gt;
&lt;p&gt;Sometimes, we don&apos;t even realize we&apos;re falling into these ideas.&lt;/p&gt;
&lt;p&gt;For instance, why does every production of &lt;em&gt;Hamlet&lt;/em&gt; start with dry ice and a boring ghost? Why are Goneril and Regan usually dressed in leather and made into villains from the first scene? Why are you casting a white actor here, or a cis male actor? Why is this a staging that we&apos;ve seen a million times already? Why is this a naturalistic set?&lt;/p&gt;
&lt;p&gt;To make great theatre, we need to look at everything with fresh, innocent eyes. To wash away the &quot;ashes of memory&quot;.&lt;/p&gt;
&lt;p&gt;Who says it has to be done like that?&lt;/p&gt;
&lt;p&gt;Who says verse has to be spoken like you&apos;ve been taught in grad school, to make us really understand you &quot;get&quot; how verse works? Who says this needs to take place in a theatre? Who says they need to be pretty? Who says you can&apos;t just rewrite an old play to have it make sense to 2018 ears? Who says you can&apos;t re-arrange the music? Who says it needs to be done in period dress?&lt;/p&gt;
&lt;p&gt;Really, there are no rules. We don&apos;t need the same production one more time, just because one old white dude many years ago decided that&apos;s how it&apos;s supposed to go.&lt;/p&gt;
&lt;p&gt;You can see examples of &quot;who says&quot; in film and TV: David Lynch, for instance, does not give a single damn about what&apos;s &quot;trendy&quot; in prestige TV and movies -- he sees things with fresh eyes (to be fair, sometimes to the detriment of accessibility). Or in the third season of one of my favorite shows, &lt;em&gt;The Leftovers&lt;/em&gt;, they switch up the music that&apos;s played over the opening credits each week: who says a TV show&apos;s credits can&apos;t change up and be creative? (This is among many, many other &quot;who says&quot; moments in the show.)&lt;/p&gt;
&lt;p&gt;When we make theatre and other art we need to always question assumptions and easy, lazy choices, consistently asking ourselves: &lt;em&gt;who says?&lt;/em&gt; Blow off the doors to passed-down-upon-wisdom, enter into the unknown, and make something truly original.&lt;/p&gt;
</content:encoded></item><item><title>Live -&gt; read -&gt; write</title><link>https://guscuddy.com/writing/2018-11-09-live-read-write-sleep/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-09-live-read-write-sleep/</guid><pubDate>Fri, 09 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Some notes on the creative process:&lt;/p&gt;
&lt;p&gt;When Junot Diaz was asked for advice for aspiring writers (after giving a grumpy answer), &lt;a href=&quot;https://littlevillagemag.com/interview-pulitzer-prize-winning-author-junot-diaz-talks-immigration-civic-responsibility-ahead-of-visit/&quot;&gt;he responded&lt;/a&gt;: &quot;Read more than you write, live more than you read.&quot;&lt;/p&gt;
&lt;p&gt;I think this is really good advice for creating work, and a good reminder to get out and &lt;em&gt;live&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;(A great playwright I just worked with yesterday also had similar advice: don&apos;t go to undergrad for playwriting. Instead, go out and live and experience things and talk to people, real people.)&lt;/p&gt;
&lt;p&gt;Then, you should be &lt;em&gt;reading&lt;/em&gt;: reading even more than you write.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://www.interviewmagazine.com/culture/annie-baker&quot;&gt;Annie Baker echoes this advice&lt;/a&gt;, that the living -- in all its ups and downs, &lt;a href=&quot;/wasted&quot;&gt;wasted days&lt;/a&gt;, shittiness and realness -- is so good for your art:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;That’s something I tell my students: This period is so useful. Being sad and going out on terrible dates and having horrible breakups and then having a shitty job and then quitting the shitty job and then wondering if you shouldn’t have quit the shitty job and then getting a new shitty job that you get fired off of after six weeks, it’s all so good for your writing. I remember a few years ago was when I was just writing a play and not doing anything else in my life, and I wasn’t cheating on anything with playwriting, and suddenly I was like, “I don’t know if I can do this. I think maybe I have to be cheating on the thing I’m supposed to be doing with playwriting.”&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;She also is a writer who doesn&apos;t &lt;a href=&quot;/quantityvquality&quot;&gt;write every day&lt;/a&gt; -- instead, she reads and reads until she needs to write:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;The stage picture comes out of the books I was reading, and then leads to more books which leads to more books. I feel with writing, so much of the time, I don’t know how to tap in and be spontaneous and alive on a daily basis. So I don’t write every day. I’m just not disciplined, and I can’t be in the groove most of the time. I feel like I’m in the groove ten days a year or something. But with reading and research, I feel like I have this incredibly instinctive pleasure-driven process that ends up working out for me and inspiring me. It’s almost like a maze, like I know eventually I’ll hit the heart of my play if I read enough books.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;It also is similar to &lt;a href=&quot;http://www.latimes.com/entertainment/envelope/la-en-mn-paul-thomas-anderson-phantom-thread-oscars-20180220-htmlstory.html&quot;&gt;Paul Thomas Anderson&apos;s advice&lt;/a&gt;: &quot;When writing ain’t working, research. When research ain’t working, sleep.&quot;&lt;/p&gt;
&lt;p&gt;Remember, the best writing and art &lt;a href=&quot;/artrisk&quot;&gt;comes from the unconscious&lt;/a&gt; -- it&apos;s so important to have processes beyond just trying to force something that isn&apos;t happening.&lt;/p&gt;
&lt;p&gt;So you could sum it up like: live, read, sleep. Then write and repeat.&lt;/p&gt;
</content:encoded></item><item><title>Daylight</title><link>https://guscuddy.com/writing/2018-11-08-daylight/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-08-daylight/</guid><pubDate>Thu, 08 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;This is a very simple idea that I discovered courtesy of &lt;a href=&quot;https://austinkleon.com/2018/08/27/a-very-simple-rule/&quot;&gt;Austin Kleon&lt;/a&gt;. It&apos;s helpful if you struggle with trying to do too many things, or get overwhelmed by work, or get sad in the evenings.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Deal with problems in daylight.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;That&apos;s it. In general, after dinner, put the day away, and don&apos;t think about it too much. You did what you could. Let yourself relax, and go to sleep. Solve the problem in daylight, and with some fresh air. It&apos;s much better that way, and it makes you happier. (In my experience.)&lt;/p&gt;
&lt;p&gt;As an actor, sometimes you are performing in the evening. But I try to make this the last thing I do: entering into another world. Before that I&apos;ve put the day away, I&apos;ve done what I could, and then after the performance, you de-compress and go to bed.&lt;/p&gt;
&lt;p&gt;Daylight has a very special power. So does night time, but it&apos;s a different kind of power, and not one for solving problems and doing work. (But that&apos;s for another post.) So be sure to make use of daylight.&lt;/p&gt;
</content:encoded></item><item><title>Don&apos;t make art in terms of &apos;taking risks&apos;</title><link>https://guscuddy.com/writing/artrisk/</link><guid isPermaLink="true">https://guscuddy.com/writing/artrisk/</guid><pubDate>Wed, 07 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;blockquote&gt;
&lt;p&gt;&quot;You don’t come back from seeing Beyoncé saying, ‘I was kind of bored’. She always delivers. &lt;strong&gt;Theatre loves to talk about its ‘right to fail’ and I sometimes think that can be used as an excuse for lack of rigour&lt;/strong&gt;.”&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;lt;cite&amp;gt;-- &lt;a href=&quot;https://www.standard.co.uk/go/london/theatre/robert-icke-on-getting-hate-mail-why-mary-stuart-is-like-the-brexit-vote-and-ending-boredom-in-a3723841.html&quot;&gt;Robert Icke&lt;/a&gt;&amp;lt;/cite&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Many people fetishize risk. Take chances! Take big risks! We&apos;re addicted to theatre and art that feels &quot;risky&quot;.&lt;/p&gt;
&lt;p&gt;Artists should, of course, take risks. But risk for risk&apos;s sake -- or, risks that are not properly thought through -- makes for boring art.&lt;/p&gt;
&lt;p&gt;The best art, in all forms, take breathtaking risks. But to its creator, it is not a consciously derived risk. It is simply the way it had to be; it is personal expression, perhaps mixed with some bravado.&lt;/p&gt;
&lt;p&gt;Beyonce is a perfect example of this. Her Coachella concert, for instance, was a stunning live show that reached deep into the unconscious with incredible force and clarity. There were &quot;risks&quot;, but they were all completely bulletproof, completely thought through, completely &lt;em&gt;her&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;Great art does not simply &quot;take risks&quot; as if it&apos;s something you just decide to do to fulfill a quota. Instead, it makes bold choices with confidence and &lt;strong&gt;clarity&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Clarity doesn&apos;t mean that everything needs to be explained -- that would mean every David Lynch film would fall under the category of &quot;pointless risk&quot;. Instead, clarity can be equated with a certain sense of rigor and confidence.&lt;/p&gt;
&lt;p&gt;Lynch is just making art the only way he knows how, personal and weird and disturbing. He creates from the &lt;strong&gt;unconscious&lt;/strong&gt;. But he is actually creating with immense clarity from the unconscious -- his decisions are rigorous -- which is why his films are so effective.&lt;/p&gt;
&lt;p&gt;Thus, great art that &quot;takes risks&quot;, is actually &lt;em&gt;accessing the unconscious regularly, and with great clarity.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;We could even phrase it as a pithy formula, like: &lt;strong&gt;Great Art = Unconscious + Clarity&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;If I consciously decide &quot;I&apos;m going to make risky art&quot;, I will be working from the conscious, and it will be patchwork.&lt;/p&gt;
&lt;p&gt;The art you can make is the art only you can make. It&apos;s always you. &lt;strong&gt;Make bold art from the unconscious, and strive for clarity and rigor&lt;/strong&gt;. The rest is kind of BS.&lt;/p&gt;
</content:encoded></item><item><title>Ripples</title><link>https://guscuddy.com/writing/2018-11-06-ripples/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-06-ripples/</guid><pubDate>Tue, 06 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;blockquote&gt;
&lt;p&gt;Water is so much more fine and sensitive an element than earth. A single boatman passing up or down unavoidably shakes the whole of a wide river, and disturbs its every reflection.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;lt;cite&amp;gt;-- &lt;a href=&quot;https://amzn.to/2STiOS2&quot;&gt;Thoreau&apos;s Journals&lt;/a&gt;&amp;lt;/cite&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;When I vote, I think about ripples in the water.&lt;/p&gt;
&lt;p&gt;It&apos;s easy to think your vote doesn&apos;t matter. That I&apos;m already living in a Blue State, so I might as well not vote. Or that other people will vote instead.&lt;/p&gt;
&lt;p&gt;But every action you make---every thought you think---sends out ripples, like the boatman passing down the river.&lt;/p&gt;
&lt;p&gt;If you think your vote doesn&apos;t matter, that means other people also think their vote doesn&apos;t matter. If you show apathy, that means other people are showing apathy. It ripples out.&lt;/p&gt;
&lt;p&gt;And let me be clear: I&apos;m not being new-agey here. I actually believe this pretty firmly.&lt;/p&gt;
&lt;p&gt;What we do has consequences. What we think leads to what we do. It&apos;s important to take this seriously, because, as human beings on this planet called earth, we are all connected in a sort of unified tapestry. When we think hate, when we act on hate, we send out ripples. When we think and act on love and strength and committment, that ripples out too.&lt;/p&gt;
&lt;p&gt;And it happens in ways you could never even imagine.&lt;/p&gt;
&lt;p&gt;And of course, there&apos;s really no such thing as &lt;em&gt;not voting&lt;/em&gt;. As David Foster Wallace pointed out:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;In reality, there is no such thing as not voting: you either vote by voting, or you vote by staying home and tacitly doubling the value of some Diehard’s vote.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;lt;cite&amp;gt;--&lt;a href=&quot;https://www.rollingstone.com/politics/politics-features/david-foster-wallace-on-john-mccain-the-weasel-twelve-monkeys-and-the-shrub-194272/&quot;&gt;David Foster Wallace&lt;/a&gt;&amp;lt;/cite&amp;gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;By being apathetic and not voting you are not only causing negative ripples in &lt;a href=&quot;https://www.psychologytoday.com/us/blog/happiness-in-world/201102/the-rippling-effect&quot;&gt;your concentric circles of influence&lt;/a&gt;, but you are letting the bastards win.&lt;/p&gt;
&lt;p&gt;So, please. You should vote.&lt;/p&gt;
</content:encoded></item><item><title>Theatre should be theatre, not television</title><link>https://guscuddy.com/writing/2018-11-05-theatre-should-be-theatre-not-television/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-05-theatre-should-be-theatre-not-television/</guid><pubDate>Mon, 05 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;It&apos;s no secret that, for the most part, television is way, way better than theatre.&lt;/p&gt;
&lt;p&gt;The shows are more diverse, more exciting, more deep, and more accessible.&lt;/p&gt;
&lt;p&gt;And yet, a lot of people making theatre seem to have taken the exact wrong message from this.&lt;/p&gt;
&lt;p&gt;Instead of making theatre better -- playing to its unique strengths, &lt;a href=&quot;http://www.vulture.com/2018/10/theater-oklahoma-where-storm-clouds-loom-above-the-plain.html&quot;&gt;excavating old material&lt;/a&gt; or &lt;a href=&quot;http://www.vulture.com/2018/06/reviewing-fairview-a-play-that-almost-demands-that-i-dont.html&quot;&gt;daringly pushing the form forward&lt;/a&gt; -- these artists seem to have taken all the bad, hacky parts of television, and tried to incorporate them into theatre. Somehow, these plays are generally a poor imitation not of great television (HBO), but actually of bad television (Law and Order). This, of course, leads to dreadful theatre, but somehow continually gets produced -- probably because these tend to be the &quot;Issue Plays&quot;, i.e. plays that try to tackle a hot-topic issue (like race) and thus get programmed by clueless old white men who want to feel woke.&lt;/p&gt;
&lt;p&gt;This is a trend that will destroy theatre.&lt;/p&gt;
&lt;p&gt;Theatre is about drama. Theatre is about catharsis. Theatre is primal. It should not be something that it is not. If it tries to be television, it usually ends up being a watered-down version of something that wasn&apos;t very good to begin with, to which old white people in the audience say &quot;HM&quot; to very loudly, and then walk out patting themselves on the back for (supposedly) expanding their worldview.&lt;/p&gt;
&lt;p&gt;Television is very good at what it does. Often, it&apos;s writing and dramaturgy and structure bests most plays.&lt;/p&gt;
&lt;p&gt;And yet, theatre is still essential. But you have to do what&apos;s essential about it, not do everything it is not.&lt;/p&gt;
&lt;p&gt;Sara Holdren, our best new theatre critic, perfectly articulates this in &lt;a href=&quot;http://www.vulture.com/2018/11/theater-review-the-good-intentions-of-american-son.html&quot;&gt;her absolute evisceration&lt;/a&gt; of the new play &lt;em&gt;American Son&lt;/em&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There’s nothing remotely theatrical about this play, no reason for it to be a play at all — save that we retain a kind of anxious cultural cachet about drama. Putting something on stage seems to aggrandize it, make it more serious-minded and more luxurious, closer to opera than Netflix. But the truth is that contemporary plays like American Son are simply imitations of the shows on Netflix — or, in this case, NBC — and pale ones at that, because unlike our age’s spate of fascinating television, these plays want to be something they’re not. They neither take joy in the possibilities of their own form nor respect its demands...
An advocate for American Son might argue that it’s important to have this story out there, but the facts of this story are out there every single day, and they are neither remedied nor rendered more terrible than they already are by being run through the mill of a hacky play.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;She also quotes the late and great &lt;a href=&quot;https://en.wikipedia.org/wiki/Mar%C3%ADa_Irene_Forn%C3%A9s&quot;&gt;Maria Irene Fornes&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;You can’t do something relevant unless you do it from your heart. And audiences … would stop pretending they are doing something relevant by going to the theater … There would not be writers writing plays by formula. Nor would artistic directors choose plays by formula. Nor would audiences think that they know the ropes and look for signposts to help them pretend they understand something that is only a signpost. This pretending gives but a shallow satisfaction and ultimately creates a distaste for theater.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Fornes and Holdren are spot on. Make theatre from the heart, make it personal, make it exciting. Don&apos;t try to coldly Calculate Relevance, because the results will kill everything great about theatre.&lt;/p&gt;
</content:encoded></item><item><title>Saturdays</title><link>https://guscuddy.com/writing/2018-11-03-saturdays/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-03-saturdays/</guid><pubDate>Sat, 03 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Saturdays are for &lt;a href=&quot;/daydreaming&quot;&gt;dreaming&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I like to turn off the screens as much as possible. I turn my phone &lt;a href=&quot;https://www.nytimes.com/2018/01/12/technology/grayscale-phone.html&quot;&gt;on grayscale&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Then I do other stuff.&lt;/p&gt;
&lt;p&gt;Read books. Write in a journal. Go back to &lt;a href=&quot;https://austinkleon.com/2017/11/15/paper-is-a-wonderful-technology/&quot;&gt;the page&lt;/a&gt;. Draw. Create something.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://austinkleon.com/2017/02/16/get-out-now/&quot;&gt;Get outside&lt;/a&gt;. Breathe in fresh air. Take weird photos.&lt;/p&gt;
&lt;p&gt;Make up plans. Scribble them out. Take stock.&lt;/p&gt;
&lt;p&gt;Listen to some music. New music. Old music. Weird music.&lt;/p&gt;
&lt;p&gt;Think about all the good things in the world. And think about all the terrible ones, too.&lt;/p&gt;
&lt;p&gt;And the people and the birds and the trees and everything.&lt;/p&gt;
&lt;p&gt;....&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;..&lt;/p&gt;
&lt;p&gt;And then, after you&apos;ve taken some time away, re-enter the matrix. (And when you do, don&apos;t forget to &lt;a href=&quot;https://www.vote.org&quot;&gt;vote&lt;/a&gt;.)&lt;/p&gt;
</content:encoded></item><item><title>Procrastination</title><link>https://guscuddy.com/writing/2018-11-02-procrastination/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-02-procrastination/</guid><pubDate>Fri, 02 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Procrastination gets a bad rap.&lt;/p&gt;
&lt;p&gt;In an age of hyper-optimization and productivity apps and tweaks and hacks, we demonize procrastination. It&apos;s the devil! Rise and grind! Do do do! Procrastination, after all, has an inverse correlation with productivity, which is the golden ideal of capitalism.&lt;/p&gt;
&lt;p&gt;But I don&apos;t think procrastination is that bad. Paul Graham has written how there&apos;s &lt;a href=&quot;http://www.paulgraham.com/procrastination.html&quot;&gt;good and bad procrastination&lt;/a&gt; -- some of the world&apos;s great thinkers and inventors and artists are terrible procrastinators, who procrastinate on busy work to do important work:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;There are three variants of procrastination, depending on what you do instead of working on something: you could work on (a) nothing, (b) something less important, or (c) something more important. That last type, I&apos;d argue, is good procrastination.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;John Perry has written a famous essay, also, on what he calls &lt;a href=&quot;http://structuredprocrastination.com/&quot;&gt;structured procrastination&lt;/a&gt; -- a &quot;technique&quot; I use all the time.&lt;/p&gt;
&lt;p&gt;And Nassim Taleb, in typically bombastic style, has written how procrastination is a sort of natural BS detector:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Few understand that procrastination is our natural defense, letting things take care of themselves and exercise their antifragility; it results from some ecological or naturalistic wisdom, and is not always bad—at an existential level, it is my body rebelling against its entrapment. It is my soul fighting the Procrustean bed of modernity.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I largely agree with all these points, but I want to expand on them with my own thoughts of how I think about procrastination.&lt;/p&gt;
&lt;p&gt;See, I&apos;m a Grade-A procrastinator. I put things off all the time.&lt;/p&gt;
&lt;p&gt;And the way I see it, there are two reasons for procrastination:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Your natural instinct is telling you that this work is inessential and can be forgoed, or:&lt;/li&gt;
&lt;li&gt;Fear is manifesting itself as procrastination&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Now, obviously, there are things we can&apos;t procrastinate forever on. We have to do our taxes, pay the bills, and run errands eventually.&lt;/p&gt;
&lt;p&gt;But often there will be something I&apos;m putting off, and when I think about it, it&apos;s because it&apos;s really not that important. I try to trust my instincts and my BS detector.&lt;/p&gt;
&lt;p&gt;If you develop good habits, procrastination is actually useful. For instance, I might read a great book or watch an old movie instead of responding to a medium-priority email. Which is better? Hard to say, but it&apos;s not like I&apos;m wasting time by reading a book. (On the other hand, if you procrastinate by surfing Instagram or playing mindless video games, as I sometimes do, then you&apos;re not spending your time very well at all.)&lt;/p&gt;
&lt;p&gt;Indeed, masterpieces of art have come as the result of procrastination, as the result of simply fucking around while you&apos;re &quot;supposed&quot; to be doing something else.&lt;/p&gt;
&lt;p&gt;And it goes the other way: if you&apos;re writing or creating something and you&apos;re bored with it, what makes you think it&apos;s going to be different for people consuming it? Your procrastination is actually a really good sign that you probably need more excitement in your work.&lt;/p&gt;
&lt;p&gt;But you need to ask yourself: &lt;em&gt;Am I not doing this because I&apos;m afraid?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Because sometimes we will trick ourselves into not doing something, but really we&apos;re just afraid to do it. (I can usually feel it in my heart. Journaling helps with this.) And I would argue that that type of procrastination is something you really need to be on the lookout for -- it is corrosive, and defers dreams.&lt;/p&gt;
&lt;p&gt;But don&apos;t demonize or beat yourself up over procrastination, especially if is the good kind. Who knows what great things might come out of it.&lt;/p&gt;
</content:encoded></item><item><title>The allure of intimacy in theatre and podcasts</title><link>https://guscuddy.com/writing/2018-11-01-intimacy-is-alluring/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-11-01-intimacy-is-alluring/</guid><pubDate>Thu, 01 Nov 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;One of theatre&apos;s great traits is its intimacy. We&apos;re in a room with people - mostly strangers - sharing in an experience that will only be experienced in that room, in that moment. It can&apos;t be replicated by any other form, right?&lt;/p&gt;
&lt;p&gt;Sort of. But I actually think podcasts are the other form that has the most alluring intimacy, and a surprising crossover with theatre.&lt;/p&gt;
&lt;p&gt;Sure, podcasts are very trendy right now. Everyone has one.&lt;/p&gt;
&lt;p&gt;But many people think podcasts are old hat -- aren&apos;t they just internet radio? -- and in a way, yes, they are.&lt;/p&gt;
&lt;p&gt;But what makes podcasts different from the radio of old is that they are mostly listened to by individuals on earbuds, or alone in the safety of a car on your commute to work. It&apos;s different than gathering around a radio to listen to the 6pm evening news. You&apos;re choosing exactly who you want to listen to, and then they actually enter into your headspace -- the place where you go to be by yourself to sit and dream and think.&lt;/p&gt;
&lt;p&gt;So there is actually a startling intimacy to podcasts that shares something with theatre. And I think theatre needs to find more ways to plug into it. It seems to me it&apos;s the perfect digital form for an analog medium that desperately needs a way to spread itself digitally. &lt;a href=&quot;https://www.audible.com/ep/theater-emerging-playwrights&quot;&gt;Audible is already onto it&lt;/a&gt;. Gimlet&apos;s fiction podcasts are excellent, and other companies are producing quality work as well. But there&apos;s a world of opportunity out there for more innovation in the theatre/podcast crossover.&lt;/p&gt;
&lt;p&gt;Intimacy is alluring, it&apos;s sexy. It&apos;s what will keep calling us to theatre. And it&apos;s also, strangely, what podcasts have to offer.&lt;/p&gt;
</content:encoded></item><item><title>Theatre aphorisms, part one</title><link>https://guscuddy.com/writing/2018-10-31-theatre-aphorisms-one/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-10-31-theatre-aphorisms-one/</guid><pubDate>Wed, 31 Oct 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;This is a collection of aphorisms on making theatre. In the future, I will better organize them.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;The number one rule of theatre is do not be boring.&lt;/p&gt;
&lt;p&gt;Theatre is always of the now. That is: the setting can be 1507; the time is now.&lt;/p&gt;
&lt;p&gt;Verse is an underlying structure. But there are no rules… it&apos;s like your life playing out across the &apos;structure&apos; of time. (Icke)&lt;/p&gt;
&lt;p&gt;The nowness and analog-ness of theatre are its great advantages. This is why, if properly excavated, theatre will never go away.&lt;/p&gt;
&lt;p&gt;Museum theatre: period costumes, dead accents, a production we&apos;ve seen 1000x times. It belongs in an archival museum.&lt;/p&gt;
&lt;p&gt;Theatre funny: things that are funny only to old white men who chuckle loudly in the dark of the audience&lt;/p&gt;
&lt;p&gt;Theatre fun: when the people on stage are having “fun” but the audience is not in on it. This is excruciating to watch, and an increasingly trendy way to stage classics.&lt;/p&gt;
&lt;p&gt;The tension between being American and performing an English play, for example, is not to be ignored. Rather, it&apos;s the whole point: it&apos;s what makes it unique.&lt;/p&gt;
&lt;p&gt;&apos;If theatre were half as good as HBO, we&apos;d be hitting gold&apos; - Simon Stone&lt;/p&gt;
&lt;p&gt;We let theatre off the hook: most of it is phony melodrama with no real stakes or drama.&lt;/p&gt;
&lt;p&gt;Study cinema, great television, a Beyonce concert, an exciting sports game: notice how they are never boring, how they are tense and keep you hooked, sometimes for three hours. When was the last time that happened to you in theatre?&lt;/p&gt;
&lt;p&gt;&quot;Theatre-makers&quot; talk a lot about the right to fail, but it might just be an excuse for lack of rigorous thinking. (Icke)&lt;/p&gt;
&lt;p&gt;Theatre is the great medium of metaphor and symbol. People forget this, and make literal-minded work that should have been put on film.&lt;/p&gt;
&lt;p&gt;One great way to grasp a metaphor is through the visceral use of three dimensional space.&lt;/p&gt;
&lt;p&gt;If you&apos;re afraid that mic&apos;ing actors will ruin the authenticity of the form, it&apos;s almost certain you have bigger problems: you probably make boring theatre.&lt;/p&gt;
&lt;p&gt;A play should be an event.&lt;/p&gt;
&lt;p&gt;We both under and over estimate peoples attention spans these days. “Social media is killing our attention spans!” Maybe. Yet people line up to see a 6 hour &lt;em&gt;Harry Potter&lt;/em&gt; show, or a 6 hour &lt;em&gt;Angels in America&lt;/em&gt;, or the 3 hour &lt;em&gt;Hamilton&lt;/em&gt; or a 24 hour Taylor Mac show. Theatre, as an event (if it is earned), will hold people&apos;s attentions. Or, it should be able to - just as people binge whole seasons of Netflix shows in one night. But an 80 minute play, if it is Deadly Boring, can seem like forever...&lt;/p&gt;
&lt;p&gt;When the lights go down, you think: is this going to change my life? And then the lights come up and you realize, no, it&apos;s not. Those first moments are so important. Most theatre you can tell if it&apos;s going to be good or bad within the first 60 seconds.&lt;/p&gt;
&lt;p&gt;Great writing and directing, to not be boring, doesn’t have to be large and bombastic. All you need is raw life, in all its natural tragedy, revealed on stage. You need vulnerability, warts, intricate sadness, and embarrassment. When we see that — truly, not faked — it is breathtaking. We are seeing actual human beings struggle, in all their bizarre complexity.&lt;/p&gt;
&lt;p&gt;You, as a human being, are more complex than any character ever written. A character is lines on a page. A human being is a human being.&lt;/p&gt;
&lt;p&gt;The space between wildness and discretion, danger and safety is where clarity lies.&lt;/p&gt;
&lt;p&gt;Period Dress, most of the time, is merely a lack of imagination.&lt;/p&gt;
&lt;p&gt;Drama is essential; primal. It interrogates to the core better than anything else, when done right.&lt;/p&gt;
&lt;p&gt;Theatre is sculpting energy in a space.&lt;/p&gt;
&lt;p&gt;Cut to the bone: what&apos;s the essential question we&apos;re exploring here? How can we best excavate it? Truly thrilling productions start there.&lt;/p&gt;
&lt;p&gt;Acting should be a physical feat -- intense and often exhausting. This seems like it puts more work on the actor, but it doesn’t, because this style of acting is more fun, more addicting, more exciting and makes actor’s lives more meaningful. For examples of this, check Toneelgroep or Schaubühne or Rob Icke. The same actors work with the same directors, despite -- no, &lt;em&gt;because&lt;/em&gt; -- of the demands.&lt;/p&gt;
&lt;p&gt;Many actors act with quotes around them, which causes a barrier to go up between us and them. So instead of “Anger”, “Sex” and “Power”, try Anger. Sex. Power. Act it for real, not the idea. Take off the mask.&lt;/p&gt;
&lt;p&gt;Good drama is simple and primal and truthful. See: &lt;em&gt;Yerma&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt;But to be great art it must reach for the transcendent.&lt;/p&gt;
&lt;p&gt;A lot of truly great art offers a reflection of its own medium.&lt;/p&gt;
&lt;p&gt;A good test of great drama: it makes you shake.&lt;/p&gt;
&lt;p&gt;Theatre can be an empathy machine.&lt;/p&gt;
&lt;p&gt;The brutal truth: theatre does not do funny very well. If you want funny, turn on Netflix and watch a sitcom or stand-up. Seriously - they have mastered the form. Comedy is better suited to TV because comedy is a micro art form that relies on timing. The style of humor on &lt;em&gt;The Office&lt;/em&gt; signaled the generational shift. Theatre is much too broad for most comedies. (I can’t wait to be proven wrong on this, by the way.)&lt;/p&gt;
&lt;p&gt;If I wanted total 100% accuracy, I would go watch a movie. You’re missing the point.&lt;/p&gt;
&lt;p&gt;Theatre and church are pretty similar, actually. In both cases, people generally go to feel worthy of going, and politely bored. And in both cases, the best experiences are transporting and transcendent.&lt;/p&gt;
&lt;p&gt;Don’t use music as a lazy choice to set a mood.&lt;/p&gt;
&lt;p&gt;In general, don’t make lazy choices. This is hard, and means thinking through every decision, including the decisions you didn’t even know you made. (Why do Romeo and Juliet have to be male and female? Why do they have to be pretty? Why does this need to happen in a proscenium? I’m not saying there’s a correct answer to those, but we must question everything.)&lt;/p&gt;
&lt;p&gt;We use our unconscious brains to fill things in in theatre and create deeper meanings. That’s why taking literal things out is often way better than adding them in. There’s a reason why Ivo Van Hove and many great directors default to a clean aesthetic combined with raw, real emotion from actors.&lt;/p&gt;
&lt;p&gt;Theatre can be in two places and times at once. It can stage the invisible minutiae of memory. Find things that theatre does uniquely well.&lt;/p&gt;
</content:encoded></item><item><title>Getting good</title><link>https://guscuddy.com/writing/gettinggood/</link><guid isPermaLink="true">https://guscuddy.com/writing/gettinggood/</guid><pubDate>Tue, 30 Oct 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;
&lt;em&gt;&lt;a href=&quot;http://www.mairakalman.com/&quot;&gt;Maira Kalman&apos;s&lt;/a&gt; Grand Central, one of my favoirte paintings&lt;/em&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&quot;The formula for success: TALENT + ENERGY&quot;
---Derren Brown&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;As an actor or writer or director or artist, you really have two things you can focus on: your &lt;strong&gt;art&lt;/strong&gt; and your &lt;strong&gt;career&lt;/strong&gt;. Derren Brown writes that this is his formula for success: talent plus energy.&lt;/p&gt;
&lt;p&gt;Brown is being tongue-in-cheek about there being a &quot;formula&quot;, but what he means is that these are the two variables you can control --- success itself is not quite under your control. The only way to be happy is to focus on things under your control. (This is the basis of &lt;a href=&quot;https://dailystoic.com/what-is-stoicism-a-definition-3-stoic-exercises-to-get-you-started/&quot;&gt;Stoicism&lt;/a&gt; and his book &lt;a href=&quot;https://www.amazon.com/Happy-More-Less-Everything-Absolutely/dp/0593076192&quot;&gt;Happy&lt;/a&gt;.) Therefore, focus on developing your talent and energy (i.e. putting yourself out there), which may eventually lead to success.&lt;/p&gt;
&lt;p&gt;The secret that Brown does not touch on, however, is that most people focus on developing their career, and not their art.&lt;/p&gt;
&lt;p&gt;Don&apos;t be the director whose only goal is to finally get into the rehearsal room. Because when you hit your goal and it&apos;s day one, you&apos;ll realize you spent no time developing your talent and you&apos;re in over your head.&lt;/p&gt;
&lt;p&gt;Instead, &lt;strong&gt;our primary goal should be getting good&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://twitter.com/briankoppelman&quot;&gt;Brian Koppleman&lt;/a&gt;, the screenwriter and co-creator of &lt;em&gt;Billions&lt;/em&gt;, used to have a series called &lt;a href=&quot;https://screencraft.org/2018/03/28/101-six-second-screenwriting-lessons-from-brian-koppelman/&quot;&gt;&quot;Six Second Screenwriting Lessons&quot;&lt;/a&gt; where he would use Vine to give quick screenwriting tips. One of my favorites:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Say you have a day job and want to be a full-time artist and you have one hour a week to devote. Spend fifty minutes making art, ten marketing, zero complaining.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Marketing --- or developing your career/energy --- is certainly important. You should be networking, sending out emails, submitting to things, making friends and mentors, and doing all the things that will develop your career.&lt;/p&gt;
&lt;p&gt;But you can&apos;t spend all your time doing that. You shouldn&apos;t spend &lt;em&gt;most&lt;/em&gt; of your time doing that.&lt;/p&gt;
&lt;p&gt;Instead, we need to focus on getting good. Which means developing your art. Working on exciting creative projects. Reading and writing and going to art museums and taking in things and seeing theatre and watching old films and getting lost in discographies and taking long walks under the morning sun and evening stars. Performing and practicing and self-producing your own weird experiments. In the beginning, focusing on &lt;a href=&quot;/quantityvquality&quot;&gt;quantity, and letting the quality develop&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Because the truth is that most people focus on their career. They stop getting good when they leave college.&lt;/p&gt;
&lt;p&gt;And this means that not many people are actually good.&lt;/p&gt;
&lt;p&gt;So the secret is that, if you get really good, you will stand out. People will take notice. And this is the best form of marketing. (That old Steve Martin line has truth in it: &quot;Be so good they can&apos;t ignore you.&quot;)&lt;/p&gt;
&lt;p&gt;For example, there aren&apos;t many truly original theatre directors out there right now, especially in the United States. Many young directors focus on their career, and forget about their art. If you can become really, really good --- and network the appropriate amount --- the opportunities will come.&lt;/p&gt;
&lt;p&gt;At least, that&apos;s what I choose to believe. That&apos;s why I believe in focusing on getting good as the most important thing for being an artist.&lt;/p&gt;
</content:encoded></item><item><title>Asymmetric Risk and High Small Hoops in Theatre</title><link>https://guscuddy.com/writing/2018-10-29-asymmetric-risk-high-tight-holes/</link><guid isPermaLink="true">https://guscuddy.com/writing/2018-10-29-asymmetric-risk-high-tight-holes/</guid><pubDate>Mon, 29 Oct 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I listened to a great interview with &lt;a href=&quot;https://tim.blog/2018/10/18/nick-kokonas/&quot;&gt;Nick Kokonas on The Tim Ferriss show&lt;/a&gt; the other day. Nick is the co-founder of &lt;a href=&quot;https://alinearestaurant.com&quot;&gt;Alinea&lt;/a&gt;, one of the best restaurants in America.&lt;/p&gt;
&lt;p&gt;Nick is interesting because he is a businessman, a former trader, involved in a field that has a lot of artistry to it. (Alinea is known for its breathtaking restaurant experience.)&lt;/p&gt;
&lt;p&gt;Nick talks about two concepts that are really helpful to understand if you&apos;re interested in starting a theatre company (as I am).&lt;/p&gt;
&lt;p&gt;The first is this idea of &lt;strong&gt;Asymmetric Risk&lt;/strong&gt;. I first learned of asymmetric risk from the work of Nassim Taleb (who Nick talks about on the podcast). The idea is that we value things wrong all the time, because we don&apos;t think of the asymmetric payoffs. For example, we might invest in something that has a 99% chance of getting us $5, and a 1% chance of us losing $5000. If we look at it in really basic terms - the odds are so good! We should definitely invest, right?&lt;/p&gt;
&lt;p&gt;Well, no. And pretty much anyone can see why: the downside of losing is &lt;em&gt;far&lt;/em&gt; greater than the upside of winning. The risk is asymmetric.&lt;/p&gt;
&lt;p&gt;Asymmetric risk can go both ways. What you want to look for is opportunities that are the inverse: their downside is limited, but their upside is huge. These can also be referred to as &quot;Positive Black Swans&quot;, as Taleb shows in his book &lt;a href=&quot;https://www.amazon.com/Antifragile-Things-That-Disorder-Incerto/dp/0812979680&quot;&gt;Antifragile&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;
&lt;em&gt;From Taleb&apos;s Antifragile&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;In theatre, for example, if you can find a way to reliably produce shows that generally break even or even lose some money, but every once in a while you produce a &lt;em&gt;Hamilton&lt;/em&gt;, you have cracked the code. You are limiting your downside (you have to make sure you&apos;re not producing a show that has huge, unlimited downside - a chance to ruin you) and keeping the unlimited upside (it won&apos;t happen very often, but when it does, it more than pays off).&lt;/p&gt;
&lt;p&gt;Kokonas talks about this in terms of restaurants, with this stat that gets thrown around that &quot;on average, 95% of restaurants fail within the first year.&quot; Even beyond this data probably having no basis, averages are very misleading and dangerous, a type of two-dimensional thinking. What Kokonas saw was that, in essence, starting a restaurant was priced wrong: there was asymmetric risk. Sure, maybe 95% of restaurants fail, and they lose a little bit of money. But maybe the 5% that succeed do so very, very well and last a very long time.&lt;/p&gt;
&lt;p&gt;So this leads to Kokonas&apos; second idea (his own), of &lt;strong&gt;High Small Hoops&lt;/strong&gt;. The idea is that, if you are smart and a hard worker, you should be seeking the high small hoops, like starting a restaurant, starting a startup, or even making a theatre company. So 95% of restaurants fail. Great! That means there&apos;s much less competition if you can make it through the High Small Hoop. The challenge of hitting that hoop is the fun - it&apos;s the thing that you obsess over, that keeps you up at night (in a good way) and gets you up in the morning. If you really put all your effort into it and have a totally fresh idea, Kokonas argues, are the odds really 95% that you&apos;ll fail? Probably not.&lt;/p&gt;
&lt;p&gt;And besides, what&apos;s a year anyway? If you can find a way to mitigate your risk so that the downside is really not so bad, then you have a pretty appealing proposition on your hands.&lt;/p&gt;
&lt;p&gt;My theory is that the same is true for theatre. There is lots of Asymmetric Risk in theatre, and the High Small Hoops theory is very much present. Everyone and their mother tries starting a theatre company, and most fail. Most don&apos;t understand or even think about risk, and most just aren&apos;t very good. (The other important part is that Kokonas had met someone he believed was a world-class chef who nobody knew yet, and they wanted to re-think every part of the restaurant experience -- right down to why we even think candles are romantic. How many theatre companies have world-class talent and are trying to re-invent the theatrical experience? Not many.)&lt;/p&gt;
&lt;p&gt;It seems to me if you have talent, work hard, question everything that is &quot;standard&quot;, understand asymmetric risk, and aim for exciting High Small Hoops - that&apos;s a recipe for some modicum of success. More on this in the future.&lt;/p&gt;
</content:encoded></item><item><title>Quantity vs Quality</title><link>https://guscuddy.com/writing/quantityvquality/</link><guid isPermaLink="true">https://guscuddy.com/writing/quantityvquality/</guid><pubDate>Sat, 27 Oct 2018 00:00:00 GMT</pubDate><content:encoded>&lt;blockquote&gt;
&lt;p&gt;I will take care of the quantity. The Great Creator will take care of the quality.
--- The Artist&apos;s Way&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I&apos;m starting a daily blog. Meaning every day, I will post something.&lt;/p&gt;
&lt;p&gt;Blogs are becoming somewhat old-fashioned. They have been replaced by Instagram and Snapchat and Twitter.&lt;/p&gt;
&lt;p&gt;But blogs have a kind of old-school relaibility: they are simple and straightforward. I control every bit of it - I&apos;m not giving myself over to another platform. I&apos;m completely in control.&lt;/p&gt;
&lt;p&gt;My reasoning for starting a daily blog is spurred on by that quote I read from Julia Cameron&apos;s &lt;em&gt;The Artist&apos;s Way&lt;/em&gt;, which is a cheesy-sounding book that has many cheeseball moments to it, but that also has a lot of terrific wisdom. (In particular, &lt;a href=&quot;https://juliacameronlive.com/basic-tools/morning-pages/&quot;&gt;morning pages&lt;/a&gt; - a practice I do almost every morning.)&lt;/p&gt;
&lt;p&gt;I want to put more stuff out there. I realized I need to focus more on quantity, and trust that the quality will improve as I go. The only way to get better is by doing, tinkering, and iterating. Put stuff out there, then do it even better next time. So the only way to get better is really by starting now.&lt;/p&gt;
&lt;p&gt;That&apos;s why, for young artists, I think &lt;strong&gt;quantity may be more important than quality.&lt;/strong&gt; I know that&apos;s a bit of a controversial statement. But if all you&apos;re worried about is quality, than you may never produce anything ever. Of course, you try to do the best you can. But what&apos;s even more important is putting something out there, and then putting more stuff out there, and getting better each step along the way.&lt;/p&gt;
&lt;p&gt;That&apos;s my hope in starting this project. Most of what I write and post about will be related to theatre and art, and some occasional posts on life in general. I&apos;m pretty inspired by &lt;a href=&quot;https://austinkleon.com&quot;&gt;Austin Kleon&apos;s blog&lt;/a&gt;, so thanks to Austin. I also love reading &lt;a href=&quot;http://marginalrevolution.com&quot;&gt;Marginal Revolution&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Let&apos;s do this.&lt;/p&gt;
</content:encoded></item><item><title>23</title><link>https://guscuddy.com/writing/23/</link><guid isPermaLink="true">https://guscuddy.com/writing/23/</guid><pubDate>Mon, 15 Jan 2018 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;Today I turn 23. Here are 23 things I’ve learned, principles to live by.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;ALIGN YOURSELF WITH TRUTH.&lt;/strong&gt; It’s always the best course of action. Telling lies—to others, to yourself, to the world—adds up. You are always watching yourself, and when you can’t even trust yourself to tell the truth, your self-esteem starts to crumble. Simplify your life by just being truthful, in every way: in literal conversation, and in being truthful to yourself about what you want in life.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;TAKE CARE OF YOURSELF.&lt;/strong&gt; Treat your body well. When you are healthy, you feel better in just about every way. You are happier and kinder and you are more creative. It’s not vanity, it’s just living fully. Give your body:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Good food&lt;/li&gt;
&lt;li&gt;Good sleep&lt;/li&gt;
&lt;li&gt;Good exercise.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;SEEK OUT SILENCE.&lt;/strong&gt; Meditate, or have a practice that centers you in some way. Having that silence with myself is one of my favorite parts of the day, to just listen.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;DROP THE NARRATIVE.&lt;/strong&gt; We love to invent stories. We are story-forming creatures, and this is often a good thing for how we translate experiences into happiness. But we also tell ourselves narratives that are often limiting and unhelpful. Because something happened in our past, we tell ourselves that we can’t do this or that. We form a narrative where there is none; where there is just life, in all its weirdness and randomness. (Social media &lt;a href=&quot;/socialmediareplaceart&quot;&gt;doesn’t help&lt;/a&gt;.)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;BE PRESENT.&lt;/strong&gt; I know this sounds trite, but it’s astounding how much we aren’t in the present. And before you know it, your life has passed by. I still struggle with this: when you are listening just listen, when you are watching a movie just watch the movie. Just be here now. Life has more depth that way, more beauty, more richness.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;SEEK OUT HELP.&lt;/strong&gt; See a therapist. Talk to your friends. Talk to your parents. You don’t need to do this alone. On that note…&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;FRIENDS ARE THE MOST IMPORTANT THING IN LIFE.&lt;/strong&gt; I’m serious. Spend time with your friends. Actively make time for them. Having positive relationships is important for your health. Not only that, but if you’re in any sort of creative field the friends you make will often be the ones who give you a job, or who you work with, or who introduce you to someone else who can change your life. And beyond all that, having fun with friends is one of the most pure joys in life there is, so much so that I struggle to find anything more essential. Your relationships are the most important thing.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;HAVE A CLEAR SENSE OF INTEGRITY AND VALUES.&lt;/strong&gt; Having a clear sense of integrity and values is essential for making meaning in a chaotic world that is ripe with nihilism. When you don’t have values, you rationalize behavior that is destructive, to others and to yourself. It’s a bad place to be.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;YOUR EDUCATION NEVER ENDS.&lt;/strong&gt; It certainly doesn’t end with formal education. (I never finished.) Education is something you’re always doing. It’s some of the most important “work” you do on a daily basis. Always be learning, always be reading, always be curious. Take classes, travel, have weird experiences. Don’t let anyone tell you you need a certain formal degree. Keep on reading and learning always.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;&quot;HOW WE SPEND OUR DAYS IS, OF COURSE, HOW WE SPEND OUR LIVES.&quot; - ANNIE DILLARD.&lt;/strong&gt; I have had this quote taped next to my bedroom door for a long time. It sounds so obvious, but it is so true: how will you spend this day—this one, right now, today? Because the days add up to form your life. So design your perfect day. Then try to live it, as much as possible. Do your work. Take a nap. See friends. Play. Exercise. Read a book. Be creative. And on that note, when things seem overwhelming, when things seem scary and sad and like you’re never going to make it, just focus on today. Don’t worry about anything else—the past or future. What can I do today? How can I focus on just making today great? Or at least as good as I can make it? I ask myself that question a lot, if I’m feeling overwhelmed by anxiety over the future, guilt or depression over the past.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;YOU CAN DO WHATEVER YOU WANT.&lt;/strong&gt; Seriously, you can. There really aren’t any rules. You don’t need permission. This is life, not school. Use that freedom for good: write a play. Start a business. Go live in Spain.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;&lt;a href=&quot;/wasted&quot;&gt;ALL THOSE WASTED DAYS ADD UP TO SOMETHING.&lt;/a&gt;&lt;/strong&gt; From Cheryl Strayed’s &lt;em&gt;Tiny Beautiful Things&lt;/em&gt;: “When I was done writing [the book], I understood that things happened just as they were meant to. That I couldn’t have written my book before I did. I simply wasn’t capable of doing so, either as a writer or a person. To get to the point I had to get to to write my first book, I had to do everything I did in my twenties. I had to write a lot of sentences that never turned into anything and stories that never miraculously formed a novel. I had to read voraciously and compose exhaustive entries in my journals. I had to waste time and grieve my mother and come to terms with my childhood and have stupid and sweet and scandalous sexual relationships and grow up.” Your days add up to your life, but sometimes days we thought were ‘wasted’ compound in ways completely unexpected; that the debauchery with old friends and new friends might actually be part of the &lt;em&gt;point&lt;/em&gt;, that it makes you closer and also it makes you alive.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;HAPPINESS IS INTERNAL, NOT EXTERNAL.&lt;/strong&gt; And that means it’s achievable within you. Right now. It took a really long while for me to even remotely figure this out. I used to be sad a lot. My teachers called me Eeyore. I still can be a downer sometimes. But, as long as you have your basic needs taken care of (and of course this is not a given), you can love what you have, find peace within. Because constantly chasing for the next thing that will make you happy is an endless treadmill of hedonic adaptation. It leads nowhere.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;YOU ARE WORTHY OF LOVE.&lt;/strong&gt; And, moreso, you &lt;em&gt;are&lt;/em&gt; loved.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;STOP BEING SO FUCKING BUSY ALL THE TIME.&lt;/strong&gt; In Tim Kreider’s masterful essay “Lazy: A Manifesto” from &lt;em&gt;We Learn Nothing&lt;/em&gt;, he writes: “More and more people in this country no longer make or do anything tangible; if your job wasn’t performed by a cat or a boa constrictor or a worm in a Tyrolean hat in a Richard Scarry book I’m not convinced it’s necessary. I know we’re all very busy, but what, exactly, is getting done? Are all those people running late for meetings and yelling on their cell phone stopping the spread of malaria or developing feasible alternatives to fossil fuels or making anything beautiful?” It’s best to cultivate stillness, and a certain amount of laziness. Do the important things in life, the work you need to do and the work you love. But for many of us we fill our lives with emails and shit we feel is necessary but is merely a mirage; we spend our time with pointless tasks and todos when the real life was always outside, grabbing a drink with friends, lounging in Central Park on a sunny afternoon, playing hooky from all the ‘busy’ duties we were supposed to be doing and realizing that when we didn’t do them, the world did not end.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;FILL YOUR LIFE WITH MEANINGFUL WORK.&lt;/strong&gt; The flip side to not being busy is that work &lt;em&gt;does&lt;/em&gt; matter. Along with relationships, finding meaningful work is one of the most important ingredients to a happy life. It means putting yourself into something you love, whether that’s designing, engineering, performing, writing, volunteering, or whatever. It can really be anything. It means doing something that you think is meaningful and important, and being genuine in that. I try to fill my time with lots of “work”, but it’s all things I love to do and make me happy, even if I don’t get paid for it. (And when I do, we’re really cooking.) I treat a lot of things like “work”: I make time to read a lot, time to write, time to act, time to make things and produce. I love all of it: that’s the kind of meaningful work that is worth filling your life with, the kind of thing that makes life meaningful.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;PAIN IS A PART OF LIFE.&lt;/strong&gt; As much as we try to avoid it, we will suffer. This is the first thing the Buddha taught, and the dude was spot on. Instead of flinching away, I’ve found it’s best to embrace that it’s going to happen. We get upset about stupid things, feel heartbreak, fall in and out of love, get hurt by friends—and these are just some small, first world problems. But pain can make us stronger. We can grow through failure. When we open up to it, feel into it, and then reflect upon what happened: we can become just a bit better, a bit stronger, a bit wiser. But it’s a continual up-and-down process, of failing and rebounding, of getting hurt and bouncing back—the key is to make sure it’s trending upwards, from a macro perspective.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;KEEP AN OPEN MIND.&lt;/strong&gt; In the past I’ve been somewhat argumentative and closed-minded. I think I’m right and that’s that. I’m trying to become more open-minded, and radically so. So that even when I come in with an extreme bias, I try to listen. I try to keep an open mind in all ways: in life, in art, in thought systems, in politics. In that way, life is continually opening new doorways for me to explore. I don’t assume I know everything about anything. Because I pretty much never do.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;KNOW WHAT THE BEST DECISIONS ARE, THEN MAKE THEM.&lt;/strong&gt; This is from &lt;a href=&quot;https://www.principles.com/&quot;&gt;Ray Dalio&lt;/a&gt;, and this one I have taped to my wall. You have to, with the best of your abilities, determine what the best decisions are. And then—and this is by far the much more difficult part—you have to have the courage to make them. This is tricky, because I come from a generation that is obsessed with keeping our options open, of being radically indecisive, of letting things slide until the decision is irrelevant or made for you. Instead, MAKE MORE DECISIONS. And as you do, become better at making decisions. That gives you a better life, one that you have authorship over.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;OPTIMISM IS UNDERRATED.&lt;/strong&gt; I used to be pretty pessimistic and cynical. It’s easy to be. The world kind of seems like it might end soon, for starters. If not by nuclear war, then climate change seems a bit problematic, to say the least. And if that isn’t enough, everything we do seems to pretty much be completely insignificant on the cosmic side of things: we’re living our entire lives in the blink of an eye on a tiny ball of mud that is a speck of dust in the infinitely expanding universe. Even if humanity does survive the next 100 years, it’s almost certain we will eventually fade away. And even if that doesn’t happen, you will still die, and what you leave behind will fade away too. Nothing we do matters.&lt;/p&gt;
&lt;p&gt;So why be positive and resilient in the face of certain annihilation? Why not give in? Because &lt;em&gt;life is better when you have a deep-seated optimism.&lt;/em&gt; Not a surface-level, self-help, smiley version. But when you believe that we can work together as humans to make this world a slightly better place, just for the time being, and that you can make a difference: by being kind, by creating art or doing whatever it is you do. By rippling out, positively influencing the future of humanity.&lt;/p&gt;
&lt;p&gt;I also find it&apos;s helpful when I take a step back, go to the ontological, and realize what a remarkable thing it is to even exist at all, to be alive and be able to read this and to be able to think and be conscious. Existence is a mystery, there being something rather than nothing, and we won the lottery just to be born, let alone to be born with enough privilege to read this, let alone to be born during the most peaceful and prosperous time in the history of the human race. (Despite all the horrors that still exist, for so many people.) There’s too much to be grateful for for me to be negative.&lt;/p&gt;
&lt;p&gt;And as one final point: negativity does &lt;em&gt;nothing&lt;/em&gt;. It will make you angrier, it will make others around you angrier, and you will act not from a place of love. Even if the world is going to end, having this essential optimism is important for a productive worldview because it makes you be able to act at all. And being optimistic leads to being kind, and being kind leads to being happier. And if we’re going to die, we might as well spend this short life being as happy as we can be.&lt;/p&gt;
&lt;p&gt;I now try to carry optimism with me in most matters. I assume that my best growth is ahead of me and that the world will continue, that it can be redeemed. I do this because I have no other choice if I want to be able to be a productive, sane, and happy member of society. It’s not delusional—I strive to understand reality as-it-is, and I am still pessimistic about certain matters. But again, it’s a deeper thing: it’s &lt;em&gt;acting&lt;/em&gt; from a deeper place of optimism. Not necessarily “everything is going to be alright” but “everything is going to be, and that’s alright.&quot; I should write fortune cookies.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;TAKE RESPONSIBILITY.&lt;/strong&gt; This is another radical shift I made in the last year, and it must be carefully explained, but here it is: take responsibility for EVERYTHING in your life. Yes, everything. That doesn’t mean blame. It doesn’t mean beating yourself up for things you did, or things that happened to you. It just means owning your life, really taking complete authorship over it. When you do this, something strange happens, and that’s that things start to seem like they’re more in your control. By taking responsibility for things that weren’t even our fault, it means we don’t flinch away from reality. It means not blaming, but taking things in stride and saying, “OK, this happened, what can I do about it now.” Owning our actions and their consequences. Owning everything in our lives.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;TRUST YOURSELF.&lt;/strong&gt; By this I mean trust your intuition more. Trusting your gut is actually a biological thing; we’ve had millions of years of evolution to get here, and humans have long relied on trusting their guts. In this day and age it’s easy to second guess it, or defer to an opinion you read online. But when we really listen to ourselves, really get in touch with our intuition, we almost always make better decisions, and decisions we are more satisfied with. It’s something I’m still learning.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;WRITE.&lt;/strong&gt; Writing, along with reading and perhaps meditation, is one of the great meta-skills. That is, it’s useful no matter what you do, and its value is widely applicable and compounds. I have been a somewhat obsessive journaler in the past, and I think that this can sometimes lead to us telling ourselves a narrative that is false—this has happened to me—so I wouldn’t recommend becoming obsessive about it. But I journal almost every morning and/or night, just to get down all the crazy shit that bubbles up from the subconscious. I find that when I do, I am more centered, and I get more ideas. Both of those are big wins. But diaries are also, as Austin Kleon puts it, “&lt;a href=&quot;https://austinkleon.com/2017/11/29/evidence/&quot;&gt;evidence of our days&lt;/a&gt;”. And then, when you do it enough, it becomes something to look forward to. Writing becomes a way to think, a way to process, a way to articulate what has been brewing around in the back corners of your brain for too long. And then, when you&apos;re ready (or not), you might try sharing some of it.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Okay. That’s 23. I hope this list expands and refines over the years. I’ve been surrounded by the most remarkable people in my life, and I hope to continue to meet new people and have the opportunity to spread more love. I love you all, and I love life.&lt;/p&gt;
&lt;p&gt;If you have any comments or responses, feel free to shoot me an email: &lt;a href=&quot;mailto:gus.cuddy@gmail.com&quot;&gt;gus.cuddy@gmail.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
</content:encoded></item><item><title>Will social media replace art, part 2</title><link>https://guscuddy.com/writing/socialmediareplaceart2/</link><guid isPermaLink="true">https://guscuddy.com/writing/socialmediareplaceart2/</guid><pubDate>Wed, 27 Dec 2017 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;One of the most compelling arguments for the &lt;a href=&quot;http://guscuddy.com/socialmediareplaceart&quot;&gt;slow replacement of art with social media&lt;/a&gt; is that the trends of film and theatre have tended towards naturalism in the last 50 years, arcing closer and closer to getting to &lt;em&gt;be&lt;/em&gt; real life.&lt;/p&gt;
&lt;p&gt;With an Instagram or Snapchat story, you are capturing and consuming real life as &apos;art&apos;. Is this the peak of naturalism? Watching snippets of life is addicting and compelling, and social media makes these snippets bite-sized and consumable. Why watch a 2 hour play of people trying to act natural when we can consume the real thing in more palatable lengths?[^1]&lt;/p&gt;
&lt;p&gt;Maybe the job of theatre and movies, then, is to furiously stake its claim as being something &lt;em&gt;more&lt;/em&gt; than naturalism. To reach for greater heights, greater feats of human creativity and exploration.&lt;/p&gt;
&lt;p&gt;I&apos;m not sure, though.&lt;/p&gt;
&lt;p&gt;Hemingway wrote that &quot;all good books are alike in that they are truer than if they had really happened&quot; -- but I wonder if this will hold up when the truth of social media-cum-art and the Truth of Art are laid side by side.&lt;/p&gt;
&lt;p&gt;I want to believe art offers something more, and I think at its best it does. It offers a window to the unconscious, an examination of our collective psyches.&lt;/p&gt;
&lt;p&gt;But I also wonder if that&apos;s not what people truly want. I wonder if all we wanted to see was others&apos; real lives, glimpsed as they actually are, so that we can feel less crazy, less alone, and more secure in our essential humanity. And if, strangely, social media-as-art offers this better than art-as-reality ever could.[^2]&lt;/p&gt;
&lt;p&gt;[^1]: Look at the rise of vlogs as well, essentially turning your life into an art piece.
[^2]: This ignores the rather large issue of a single company owning all of our stories and profiting off of it -- that&apos;s for part 3, though.&lt;/p&gt;
</content:encoded></item><item><title>Will social media replace art?</title><link>https://guscuddy.com/writing/socialmediareplaceart/</link><guid isPermaLink="true">https://guscuddy.com/writing/socialmediareplaceart/</guid><pubDate>Mon, 25 Dec 2017 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;I&apos;ve been spending a lot of time on social media recently. (I&apos;m taking a break till the end of the year, but that&apos;s another story.) It&apos;s kind of new to me, but I really like posting to my Instagram story. There&apos;s something satisfying in always having a little ring around your picture that indicates you are &lt;em&gt;doing&lt;/em&gt; something.&lt;/p&gt;
&lt;p&gt;You are living your life and sharing it. Little funny things, or cool pictures, or selfies, or insights.&lt;/p&gt;
&lt;p&gt;But lately, I can&apos;t shake this quote from an interview that playwright &lt;a href=&quot;https://www.christophershinn.co&quot;&gt;Christopher Shinn&lt;/a&gt; &lt;a href=&quot;https://www.standard.co.uk/go/london/theatre/play-talk-christopher-shinn-on-why-collaboration-is-crucial-and-how-social-media-will-change-art-a3607931.html&quot;&gt;gave a few months ago&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Social media - the ability to create and publish &quot;art&quot; from one&apos;s life, and consume &quot;art&quot; from one&apos;s circle - is going to further evolve and eventually overtake art as it exists today. My advice to writers starting out is, write as a hobby and choose something else as a career.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;This seems cynical at first glance. But the more I interact with social media, the more I realize the truth in it.&lt;/p&gt;
&lt;p&gt;We are beginning to turn our lives into continual performance art pieces, and social media is the document. In a culture of &lt;a href=&quot;http://guscuddy.com/moon&quot;&gt;fingers pointing at the moon&lt;/a&gt;, the fingers are &lt;em&gt;becoming&lt;/em&gt; the moon.&lt;/p&gt;
&lt;p&gt;I don&apos;t have a good answer to this. I think it&apos;s plausible. I also think it means we need to make art -- especially of the analog variety -- with even greater clarity and intensity.&lt;/p&gt;
&lt;p&gt;But the domination of social media is becoming overwhelming. It presents interesting opportunities: I like Twitter, and I like Instagram, and I like Snapchat. But it&apos;s also concerning, because the co-opting of the word &quot;Stories&quot; by Instagram and Snapchat indicates a shift into &lt;em&gt;narrative&lt;/em&gt;. (Twitter&apos;s foray into narrative is through &quot;Moments&quot;.) Narrativizing our lives can be a productive and sometimes dangerous thing psychologically, and an interesting project artistically. But it begs the question: as Social Media stories become more dynamic, more inclusive, more creative -- will there be a place for traditional artistic experiences outside of nostalgia?&lt;/p&gt;
&lt;p&gt;It&apos;s worth chewing on, if only to clarify your own reason for choosing to make art.&lt;/p&gt;
</content:encoded></item><item><title>All those wasted days add up to something</title><link>https://guscuddy.com/writing/wasted/</link><guid isPermaLink="true">https://guscuddy.com/writing/wasted/</guid><pubDate>Thu, 21 Dec 2017 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;When we grow up, it seems like we have a lot of wasted days.&lt;/p&gt;
&lt;p&gt;We spiral around doing nothing. Walk down empty streets with our heads in the clouds. &lt;a href=&quot;http://guscuddy.com/daydreaming&quot;&gt;Daydream&lt;/a&gt;. Talk to our friends about life and stupid shit at 4 AM. Stay up all night for no reason. Make out drunkly with people we shouldn’t. Write stupid poetry, scribble weird doodles, make new friends and lose old ones. Sometimes we lay in bed and just listen to music, or cry, or watch an old movie.&lt;/p&gt;
&lt;p&gt;But there’s a secret to life and that secret is that, if you look for it, all these wasted days add up to something.&lt;/p&gt;
&lt;p&gt;It may not be much: it may just be some important aspect of your personality, or something that gives you perspective. But it can also be larger: the friend you made at 3am can change your life. The poetry becomes a foundation for your art. Conversations you had come back into your life in weird and unexpected and wonderful ways. The experiences you share with others make up the fabric of your existence, become the things that tie us together in intimate ways.&lt;/p&gt;
&lt;p&gt;Truth is, there is no “reason” for any of this. We’re alive for an incredibly brief period of time and we spend much of our early years just dicking around, and it’s easy to feel guilt over this dicking around.&lt;/p&gt;
&lt;p&gt;But you actually have to have faith. Faith that it’s going somewhere. That it all adds up to something. All the pointlessness, all the stupidity, all the wasted nights. They’re actually worth something. It’s a lesson I keep learning, that nights I thought were stupid and wasted come rippling back into my life in profound and positive ways. But you have to look for it.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
</content:encoded></item><item><title>On daydreaming</title><link>https://guscuddy.com/writing/daydreaming/</link><guid isPermaLink="true">https://guscuddy.com/writing/daydreaming/</guid><pubDate>Sat, 08 Jul 2017 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;&lt;em&gt;“Idle dreaming is often the essence of what we do.” - Thomas Pynchon&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Creating art means giving yourself time to dream.&lt;/p&gt;
&lt;p&gt;It means sometimes you have to doodle. Monsters and machines and shapes.&lt;/p&gt;
&lt;p&gt;Sometimes you have to sit and stare out the window and do nothing but watch the snow fall softly down.&lt;/p&gt;
&lt;p&gt;Sometimes you have to take a long walk in the middle of the night and look at the stars. Sometimes, strangely, this is the deep work of being creative.&lt;/p&gt;
&lt;p&gt;Sometimes you have to sip your coffee and do nothing but scratch some stupid poetry into your notebook. Sometimes you have to lazily flip through a children’s book.&lt;/p&gt;
&lt;p&gt;Sometimes you have to lay back and put on a record to which you know every word, wandering through aural dreamscapes.&lt;/p&gt;
&lt;p&gt;Sometimes you have to talk late with friends about nothing in particular, and about everything at once.&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;Don’t believe anyone who says daydreaming is for suckers. Sometimes, it’s the &lt;em&gt;only&lt;/em&gt; thing to do.&lt;/p&gt;
&lt;p&gt;It just requires two things: a sense of wonder, and patience that it all adds up to something or another.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
</content:encoded></item><item><title>The finger pointing at the moon</title><link>https://guscuddy.com/writing/moon/</link><guid isPermaLink="true">https://guscuddy.com/writing/moon/</guid><pubDate>Wed, 31 May 2017 00:00:00 GMT</pubDate><content:encoded>&lt;p&gt;We have a serious problem.&lt;/p&gt;
&lt;p&gt;In an age of memes, podcasts, and reddit, we have approached a new age of meta-ness. Everything is ironic, reflexive, or post-something.&lt;/p&gt;
&lt;p&gt;This, in itself, is not the problem. The problem is this: &lt;em&gt;the finger
pointing at the moon is not the moon.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;What does this mean? It means don’t confuse the people talking about the art for the actual artist.&lt;/p&gt;
&lt;p&gt;When it comes down to it, we need to go out and create the art. Do the work. Create the moon.&lt;/p&gt;
&lt;p&gt;Instead, we have a generation once-removed.&lt;/p&gt;
&lt;p&gt;We are obsessed with “life-hacking” everything: optimize your time. 10x
results by buying this software. Obsessed with the cult of productivity,
the cults of minimalism and organization.&lt;/p&gt;
&lt;p&gt;But it’s all just fingers pointing at fingers pointing at the moon.&lt;/p&gt;
&lt;p&gt;Get real, turn off the internet, and start working on the moon.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
</content:encoded></item></channel></rss>