<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>The Interledger Community 🌱: Power Plays Podcast</title>
    <description>The latest articles on The Interledger Community 🌱 by Power Plays Podcast (@powerplayspodcast).</description>
    <link>https://community.interledger.org/powerplayspodcast</link>
    <image>
      <url>https://community.interledger.org/images/pWsx9AIuGnNw04AKlu5JS3bRgQlkuRIQP7o_t-_tI4I/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL29yZ2Fu/aXphdGlvbi9wcm9m/aWxlX2ltYWdlLzg4/LzY3NjRjOGViLThk/YjEtNDE5MC05NmFi/LTc5MzEyYjE3YjU0/YS5wbmc</url>
      <title>The Interledger Community 🌱: Power Plays Podcast</title>
      <link>https://community.interledger.org/powerplayspodcast</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://community.interledger.org/feed/powerplayspodcast"/>
    <language>en</language>
    <item>
      <title>Tutorial: How to Web Monetize a Webflow Website</title>
      <dc:creator>Power Plays Podcast</dc:creator>
      <pubDate>Mon, 12 Jul 2021 20:19:22 +0000</pubDate>
      <link>https://community.interledger.org/powerplayspodcast/tutorial-how-to-web-monetize-a-webflow-website-35bn</link>
      <guid>https://community.interledger.org/powerplayspodcast/tutorial-how-to-web-monetize-a-webflow-website-35bn</guid>
      <description>&lt;p&gt;Webflow is a drag-and-drop tool that allows creators to create beautiful, responsive websites without writing a single line of code. Its interface resembles Adobe Photoshop and it writes clean, semantic code that is compatible across all browsers and devices. But Webflow does not natively support the proposed web monetization standard. &lt;/p&gt;

&lt;p&gt;In this tutorial I will show you how I have been able to web monetize my website in Webflow.&lt;/p&gt;

&lt;p&gt;First, open your Webflow project and then go to &lt;strong&gt;Project Settings&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Go to &lt;strong&gt;Custom Code&lt;/strong&gt;. Under &lt;strong&gt;Head Code&lt;/strong&gt;, paste the following code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;meta name="monetization" content="PAYMENT POINTER"&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Where PAYMENT POINTER is your payment pointer.&lt;/p&gt;

&lt;p&gt;Press &lt;strong&gt;Save Changes&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This will allow you to receive micropayments whenever a user with the Coil browser plug-in installed visits your website. &lt;/p&gt;

&lt;p&gt;Now that our website is monetized, we will hide content so that it is only visible to Coil members.&lt;/p&gt;

&lt;p&gt;In order to do this, go to the &lt;strong&gt;Designer View&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Click &lt;strong&gt;Pages&lt;/strong&gt; and select the page that you want to have content hidden on. Go to &lt;strong&gt;Page Settings&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Go to &lt;strong&gt;Custom Code&lt;/strong&gt;. Under &lt;strong&gt;Head Code&lt;/strong&gt;, paste the following code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;style&amp;gt;
   .hidden {
     display: none;
   }
&amp;lt;/style&amp;gt;

&amp;lt;script&amp;gt;
   if (document.monetization) {
     document.monetization.addEventListener('monetizationstart', () =&amp;gt; {
       document.getElementById('exclusive').classList.remove('hidden')
     })
   }
&amp;lt;/script&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now, find a part of your page where you’d like the content to only be visible to Coil members and go to the Settings tab for that element.&lt;/p&gt;

&lt;p&gt;For example, if you have text, click the text and go to Text Settings.&lt;/p&gt;

&lt;p&gt;Under &lt;strong&gt;Style&lt;/strong&gt;, go to &lt;strong&gt;Selector&lt;/strong&gt; and type the word “hidden”. This will create a new style called hidden - you do not need to adjust it any further.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://community.interledger.org/images/m-IwEKgR30Y2zHm6n4_4KSaPROtWfhrkK_vW9Pps8VY/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL2gyZHZqcjh6/MjJ1bDhpNWIyOTU3/LnBuZw" class="article-body-image-wrapper"&gt;&lt;img src="https://community.interledger.org/images/m-IwEKgR30Y2zHm6n4_4KSaPROtWfhrkK_vW9Pps8VY/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL2gyZHZqcjh6/MjJ1bDhpNWIyOTU3/LnBuZw" alt="Webflow Configuration" width="680" height="510"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Go to &lt;strong&gt;Element Settings&lt;/strong&gt;. Under &lt;strong&gt;Block Settings&lt;/strong&gt;, the ID field is blank. Type the word “exclusive” into this field and choose the Tag “div”.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://community.interledger.org/images/smLxmt5hKP4bIpo4tuFTwCRFV37BJKJo6lDgZq-vQBs/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzLzVpbXd5OXhz/bWh2amE0MW1vcXZr/LnBuZw" class="article-body-image-wrapper"&gt;&lt;img src="https://community.interledger.org/images/smLxmt5hKP4bIpo4tuFTwCRFV37BJKJo6lDgZq-vQBs/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzLzVpbXd5OXhz/bWh2amE0MW1vcXZr/LnBuZw" alt="Webflow Configuration" width="500" height="496"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That’s it! This element is now hidden and will only be visible to paying subscribers.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Note that this only hides content on the client side. A user could pretend to be web monetized by using the developer console in their browser. But, I like to think that most people are honest and wouldn’t resort to doing this.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>tutorial</category>
    </item>
    <item>
      <title>POWER PLAYS Podcast — Grant Report #2</title>
      <dc:creator>Power Plays Podcast</dc:creator>
      <pubDate>Mon, 12 Jul 2021 17:20:43 +0000</pubDate>
      <link>https://community.interledger.org/powerplayspodcast/power-plays-podcast-grant-report-2-cgj</link>
      <guid>https://community.interledger.org/powerplayspodcast/power-plays-podcast-grant-report-2-cgj</guid>
      <description>&lt;p&gt;Hello friends,&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Update
&lt;/h2&gt;

&lt;p&gt;Since our &lt;a href="https://community.webmonetization.org/powerplayspodcast/power-plays-podcast-grant-report-1-f11"&gt;interim report&lt;/a&gt;, we’ve continued to work on producing the POWER PLAYS podcast and the good news is, we’ve &lt;em&gt;finally&lt;/em&gt; launched our second season! All eight episodes can now be streamed over &lt;a href="https://cinnamon.video/PowerPlaysXYZ"&gt;Cinnamon&lt;/a&gt;, and transcripts are available exclusively to Coil subscribers through our website. You can &lt;a href="https://www.powerplays.xyz/coil"&gt;find all our web monetized content here&lt;/a&gt;. &lt;/p&gt;

&lt;p&gt;&lt;em&gt;(This particular page is not behind a paywall, so non-Coil subscribers can navigate to it and see what content is available, but if you click on any of the episode titles, access is restricted to those with Coil memberships.)&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;A few episode highlights include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Grammy-nominee &lt;a href="https://www.powerplays.xyz/coil/s2-e6"&gt;Kokayi Issa&lt;/a&gt; speaking about how Black creators can benefit from web monetization&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.powerplays.xyz/coil/s2-e3"&gt;Nathan Schneider&lt;/a&gt; proposing that we combine the rich heritage of cooperatives with the promise of 21st-century technologies in order to create a new kind of online economy, one free from the economics of monopoly, exploitation, and surveillance&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.powerplays.xyz/coil/s2-e5"&gt;Lior Zalmanson&lt;/a&gt; sharing brand-new research into how small creators have monetized their work and looking particularly at which strategies most entice content consumers to pay for the content they view&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.powerplays.xyz/coil/s2-e2"&gt;Richard Whitt&lt;/a&gt;, who until 2018 was one of Google’s most senior attorneys, on rethinking ad tech and how we can create a future where the Artificial Intelligence lurking behind our various digital interfaces doesn’t harm us&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.powerplays.xyz/coil/s2-e8"&gt;Amber Case&lt;/a&gt;, a futurist, on what she predicts the Internet of 2031 will look like, and why Interledger, Unlock, and the InterPlanetary File System protocols excite her so much.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We were initially supposed to have these episodes ready by April, but we weren’t able to meet that deadline unfortunately. We are very grateful to Grant for the Web for being so understanding and flexible and granting us an extension.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Achievements
&lt;/h2&gt;

&lt;p&gt;Our primary objective was to produce eight audio episodes about the web monetization ecosystem and its technology. &lt;em&gt;This has now been accomplished.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We said that one episode would be released each week, over eight weeks, free of charge on all major podcast listening platforms, but that users who didn’t want to wait would be able to 'buy' immediate access to all eight episodes on the podcast's website using web monetization technology. &lt;em&gt;We are pleased to say that this is now possible - users with a Coil subscription who head to our website are able to listen to episodes, and read transcripts of these conversations, up to eight weeks earlier than everyone else.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We set ourselves the ambitious goal of having at least 5% of our listeners head to the podcast website to 'buy' immediate access to all of the episodes, thereby trying out web monetization technology. &lt;em&gt;This hasn’t yet happened, but our episode catalogue has only been online for the past three days. In total, over the grant period we raised €86, or about $102, through web monetization technology, which was less than we budgeted for (we hoped to raise $220) but nonetheless has proven to us the utility of Interledger and shown that it really can be a revenue stream. As awareness of the technology grows, we are hopeful that we will convert more listeners into Coil subscribers, and thereby grow our revenue achieved through web monetization technology.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;We also created a legal entity in Delaware to be a home for the podcast, now and into the future, following advice from our counsel.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Activities
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Podcast&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Our primary activity was producing our podcast episodes, which included scheduling interviews with guests, doing prep to inform the conversations, briefing guests and editing conversations, and then distributing these episodes through various listening platforms and on Cinnamon. All episodes were then transcribed for accessibility purposes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Website Upgrade&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We upgraded our website to include our new brand assets (such as our new podcast cover), to include popup windows that raise awareness of Coil, and to include a special portal that is entirely web-monetized and hides transcripts and episode audio files behind a paywall for a period of exclusivity. Our website runs on Webflow, which unfortunately is not friendly for web monetized creatives, so we intend to publish a blog post on this forum later this week which will be a tutorial into how to web monetize a Webflow website. &lt;/p&gt;

&lt;h2&gt;
  
  
  Communications and Marketing
&lt;/h2&gt;

&lt;p&gt;We have primarily been raising awareness of the new season of POWER PLAYS through low-cost, high-reach advertisements that have run in various email newsletters. &lt;/p&gt;

&lt;p&gt;All of these advertisements ran on or after July 6, when we published our first new podcast episode. We have more newsletter advertisements scheduled to run in different newsletters once a week for the next seven weeks as we find that one $25-50 ad can attract 150 to 200 new listeners, and these are listeners whose backgrounds match the audience we are trying to attract.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://community.interledger.org/images/iKWfbJktHqBcQuUoRTQO5FO7rkxIg4TpRRY1KZVI1IM/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL29zbGRyNjJ3/cjNiYTcwZmNoemNu/LnBuZw" class="article-body-image-wrapper"&gt;&lt;img src="https://community.interledger.org/images/iKWfbJktHqBcQuUoRTQO5FO7rkxIg4TpRRY1KZVI1IM/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL29zbGRyNjJ3/cjNiYTcwZmNoemNu/LnBuZw" alt="July 6, 2021 Newsletter Ad Promoting POWER PLAYS" width="880" height="732"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We do have a small presence on social media, but to say it is not a significant source of listeners for us would be an understatement. Our conversion rate of social media posts to listeners is next to zero. &lt;/p&gt;

&lt;p&gt;However, we do ask our interview guests to share a link to their interview on their social media profiles, and in some cases this can generate 5,000 to 10,000 downloads of that particular episode. For example, when we interviewed Mance Harmon in season one of POWER PLAYS, we received 10,000 downloads in a day after his company, Hedera Hashgraph, shared a link on social media.&lt;/p&gt;

&lt;p&gt;We intend to ask our guests this season to share links, too, but we will do this once the exclusivity period for an episode ends and it is now freely accessible via Spotify or Apple Podcasts. This may seem counterintuitive given our podcast series is intended to promote web monetization technology, but we are seeking to raise awareness of Interledger during our audio conversations, and then encouraging people to try out Coil to hear the next episode of our podcast earlier. This is our experiment, and it might not be the right one, but we think removing the friction in order to learn about what web monetization technology is, is really important before we can realistically expect a passive listener to try the tech out.&lt;/p&gt;

&lt;h2&gt;
  
  
  What’s Next?
&lt;/h2&gt;

&lt;p&gt;POWER PLAYS isn’t over. We will develop a third season later this year, and we intend to keep it web monetized just like this season was, with exclusive early-access to content for Coil subscribers. &lt;/p&gt;

&lt;p&gt;We will also publish a couple of ‘bonus interviews’ with Grant for the Web grantees on our Cinnamon channel over the coming weeks. We interviewed some other creators for this season, but ultimately the conversations didn’t feel right to publish to our current audience which largely consists of policymakers and investors. We’ll instead repackage these interviews, cap them at about 10 minutes, and upload them to Cinnamon to see if they resonate with the audience there. Cinnamon seems to have a more creative audience, so it’s very possible that’s the best place for those particular conversations.&lt;/p&gt;

&lt;h2&gt;
  
  
  Community Support
&lt;/h2&gt;

&lt;p&gt;Please consider listening to our podcasts or reading the transcripts, and sharing links to the episodes with your friends or professional network. &lt;/p&gt;

&lt;p&gt;We’d also appreciate a review in the Apple Podcast player, if you have it, as Apple’s algorithm has really grown our audience and every five-star review we receive seems to translate into a few more listeners. &lt;/p&gt;

&lt;p&gt;More than anything, you can help us out by helping us grow our reach so that more people can learn about the Interledger protocol and the proposed web monetization standard.&lt;/p&gt;

&lt;h2&gt;
  
  
  Relevant Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://www.powerplays.xyz/"&gt;POWER PLAYS Podcast Homepage&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cinnamon.video/PowerPlaysXYZ"&gt;POWER PLAYS Podcast Cinnamon Channel&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://podcasts.apple.com/us/podcast/power-plays/id1521285039"&gt;POWER PLAYS Podcast on Apple Podcasts&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://open.spotify.com/show/2wnwefldHYZHoXKQdck8Gm"&gt;POWER PLAYS Podcast on Spotify&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>grantreports</category>
      <category>podcasting</category>
    </item>
    <item>
      <title>POWER PLAYS Podcast — Grant Report #1</title>
      <dc:creator>Power Plays Podcast</dc:creator>
      <pubDate>Fri, 30 Apr 2021 14:19:21 +0000</pubDate>
      <link>https://community.interledger.org/powerplayspodcast/power-plays-podcast-grant-report-1-f11</link>
      <guid>https://community.interledger.org/powerplayspodcast/power-plays-podcast-grant-report-1-f11</guid>
      <description>&lt;p&gt;POWER PLAYS is a podcast that charts how important decisions about the Internet’s infrastructure and institutions have been made. In season one, the podcast spoke with Internet pioneers like &lt;a href="https://www.powerplays.xyz/podcast/s1-e1"&gt;Erika Mann&lt;/a&gt;, &lt;a href="https://www.powerplays.xyz/podcast/s1-e2"&gt;Stephanie Perrin&lt;/a&gt;, and &lt;a href="https://www.powerplays.xyz/podcast/s1-e6"&gt;Sarah Deutsch&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;With the support of Grant for the Web, POWER PLAYS has been developing a second season that imagines a future era where the web is monetized in different ways.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Update
&lt;/h2&gt;

&lt;p&gt;Over the past few months, we have conducted structured conversations with various subject matter experts exploring the web monetization ecosystem, most recently angel investor and philanthropist Esther Dyson and economist Richard Hill. We are continuing with these interviews over the next week and are almost ready to put a wrap on recording.&lt;/p&gt;

&lt;p&gt;We’ve thought a lot more strategically about how to produce POWER PLAYS, planning out episodes, identifying growth goals, and exploring new growth and distribution mechanisms to expand our core audience. Among other new ideas, we connected with Danny Holman from Cinnamon and launched a &lt;a href="https://cinnamon.video/PowerPlaysXYZ"&gt;new distribution channel&lt;/a&gt; for the ‘outtakes’ of our podcast.&lt;/p&gt;

&lt;p&gt;We also participated in On Deck’s eight-week podcasting fellowship, from February to April, which allowed us to cross-promote our existing episodes with podcasters with larger followings to raise awareness that we exist, to take part in storytelling masterclasses where we refined our editing skills, and to collaborate with influencers and others to build our brand.&lt;/p&gt;

&lt;p&gt;On May 26, 2021 we will publish every episode of season two of POWER PLAYS on Cinnamon and on our website for Coil subscribers to exclusively binge listen to. One week later, we will begin distributing these episodes one week at a time through podcasting apps like Apple Podcasts and Spotify to POWER PLAYS’ existing audience and other non-Coil subscribers to consume and to become acquainted with web monetization technologies.&lt;/p&gt;

&lt;h2&gt;
  
  
  Progress on objectives
&lt;/h2&gt;

&lt;p&gt;We have made progress on our core deliverable of producing professionally-produced podcast episodes. The eight episodes will be between 40 and 60 minutes once edited. We have also been expanding our audience and now have approximately 3,000 downloads per episode. The goal is to expand this number significantly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key activities
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://community.interledger.org/images/Ywz3JyaiHq8Z48fN35rCq6egkPZ9rawUXBlC11OmQsU/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL3MyeG54dHho/ZHIxZ2dzOTd4YXJp/LnBuZw" class="article-body-image-wrapper"&gt;&lt;img src="https://community.interledger.org/images/Ywz3JyaiHq8Z48fN35rCq6egkPZ9rawUXBlC11OmQsU/w:880/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkuaW50ZXJs/ZWRnZXIub3JnL3Jl/bW90ZWltYWdlcy91/cGxvYWRzL2FydGlj/bGVzL3MyeG54dHho/ZHIxZ2dzOTd4YXJp/LnBuZw" alt="New Cover for Podcast" width="880" height="462"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Aside from the basics of producing new content (which is by far the most time consuming component of this project), we commissioned new cover art for season two of POWER PLAYS, designed by the Argentine artist Nahuel Bardi. We are in the progress of redesigning our website to match this new branding. We thought it was important to adopt a new cover for season two of POWER PLAYS because  it’s what every listener sees on their mobile device and our previous cover didn’t communicate ‘web monetization’ at all. In the new cover, it is more metaphorical about the future of the Internet but includes a coin motif to make a clear reference to the season two theme.&lt;/p&gt;

&lt;h2&gt;
  
  
  Communications and marketing
&lt;/h2&gt;

&lt;p&gt;We will primarily begin marketing season two of POWER PLAYS on the day it is available on Cinnamon and to Coil subscribers. However, one week ahead of this, we will distribute a two-minute trailer to existing subscribers across monetized and unmonetized channels in order to raise awareness of the existence of the launch of the new season.&lt;/p&gt;

&lt;p&gt;We have also connected with product managers at Apple to formally request that POWER PLAYS be listed as ‘podcast of the day’ in the U.S. Apple Podcasts app on the day that episode one of season two is distributed on the platform. At this time, we are pencilled in for June 2, 2021, but this could change and the exact scheduling is outside our control.&lt;/p&gt;

&lt;p&gt;We have purchased an advertisement in Netflix writer Sonia Weiser’s industry newsletter - which reaches over 6,000 journalists a week from top-tier publications across the U.S. and Europe - to promote the podcast on July 6, 2021. Unfortunately, no earlier slots were available, but the intention here is to source new listeners and raise awareness of the web monetization ecosystem and not to generate press. (As of February 2021, this newsletter has an average open rate of 45.9% and average ad click rate of 18.3%. It only has one ad per newsletter, right at the very top of the email.)&lt;/p&gt;

&lt;h2&gt;
  
  
  What’s next?
&lt;/h2&gt;

&lt;p&gt;There is still a lot of work to be done on this project -- podcast episodes need to be edited, some interviews still need to be conducted, and we need to make contact with podcast industry blogs to try to generate some more buzz for the season launch. But while we are a little behind schedule, we’re on track for a successful season two launch.&lt;/p&gt;

&lt;h2&gt;
  
  
  What community support would benefit your project?
&lt;/h2&gt;

&lt;p&gt;I’m looking for a few more guests to interview. In particular, I’d like to speak with an economist who can speak about Interledger specifically, rather than more generally about the economics of the Internet. I’m also looking to speak with someone using Coil in a really quirky way -- there’s a lot of room for interpretation there, but basically not just blogging. Using Coil like no one else is.&lt;/p&gt;

&lt;p&gt;And while there’s almost a wrap on season two of POWER PLAYS, there’s no harm in interviewing more people for season three! If you - or someone you know - would make a great interview subject, please consider completing this &lt;a href="https://airtable.com/shrIcuDu0fI1T4KZP"&gt;super short form&lt;/a&gt; to add your/their details to our bank of potential guests. Thank you!&lt;/p&gt;

&lt;p&gt;Finally, if you could leave POWER PLAYS a five star review on your favorite podcasting app, that would help us immensely in growing our audience. Those algorithms and recommendation engines really respond well to positive reviews! (You can &lt;a href="https://podcasts.apple.com/us/podcast/power-plays/id1521285039"&gt;find us here on Apple Podcasts&lt;/a&gt;.)&lt;/p&gt;

&lt;h2&gt;
  
  
  Additional comments
&lt;/h2&gt;

&lt;p&gt;Thanks for supporting POWER PLAYS.&lt;/p&gt;

</description>
      <category>grantreports</category>
    </item>
  </channel>
</rss>
