
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/">
    <channel>
        <title><![CDATA[ The Cloudflare Blog ]]></title>
        <description><![CDATA[ Get the latest news on how products at Cloudflare are built, technologies used, and join the teams helping to build a better Internet. ]]></description>
        <link>https://blog.cloudflare.com</link>
        <atom:link href="https://blog.cloudflare.com/" rel="self" type="application/rss+xml"/>
        <language>en-us</language>
        <image>
            <url>https://blog.cloudflare.com/favicon.png</url>
            <title>The Cloudflare Blog</title>
            <link>https://blog.cloudflare.com</link>
        </image>
        <lastBuildDate>Thu, 09 Apr 2026 04:21:21 GMT</lastBuildDate>
        <item>
            <title><![CDATA[Payload on Workers: a full-fledged CMS, running entirely on Cloudflare’s stack]]></title>
            <link>https://blog.cloudflare.com/payload-cms-workers/</link>
            <pubDate>Tue, 30 Sep 2025 15:50:00 GMT</pubDate>
            <description><![CDATA[ We demonstrate how the open-source Payload CMS was ported to run entirely on Cloudflare's developer platform. ]]></description>
            <content:encoded><![CDATA[ <p>Tucked behind the administrator login screen of countless websites is one of the Internet’s unsung heroes: the Content Management System (CMS). This seemingly basic piece of software is used to draft and publish blog posts, organize media assets, manage user profiles, and perform countless other tasks across a dizzying array of use cases. One standout in this category is a vibrant open-source project called Payload, which has over 35,000 stars on <a href="https://github.com/payloadcms/payload"><u>GitHub</u></a> and has generated so much community excitement that it was recently <a href="https://www.figma.com/blog/payload-joins-figma/"><u>acquired</u></a> by Figma.</p><p>Today we’re excited to showcase <a href="https://github.com/payloadcms/payload/tree/main/templates/with-cloudflare-d1"><b><u>a new template</u></b></a> from the Payload team, which makes it possible to deploy a full-fledged CMS to Cloudflare’s platform in a single click: just click the <i>Deploy to Cloudflare</i> button to generate a fully-configured Payload instance, complete with bindings to Cloudflare D1 and R2. Below we’ll dig into the technical work that enables this, some of the opportunities it unlocks, and how we’re using Payload to help power <a href="https://cloudflare.tv/"><u>Cloudflare TV</u></a>. But first, a look at why hosting a CMS on Workers is such a game changer.</p><a href="https://deploy.workers.cloudflare.com/?url=https://github.com/payloadcms/payload/tree/main/templates/with-cloudflare-d1"><img src="https://deploy.workers.cloudflare.com/button" /></a>
          <figure>
          <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/57tUnVPCONmXQIShJaJH1V/c9a7974265d79f784be0d789f924bb94/image3.png" />
          </figure><p><sup><i>Behind the scenes: Cloudflare TV’s Payload instance</i></sup></p>
    <div>
      <h3>Serverless by design</h3>
      <a href="#serverless-by-design">
        
      </a>
    </div>
    <p>Most CMSs are designed to be hosted on a conventional server that runs 24/7. That means you need to provision hardware or virtual machines, install the CMS software and dependencies, manage ports and firewalls, and navigate ongoing maintenance and scaling hurdles.</p><p>This presents significant operational overhead, and can be costly if your server needs to handle high volumes (or spiky peaks) of traffic. What’s worse, you’re paying for that server whether you have any active users or not. One of the superpowers of Cloudflare Workers is that your application and data are accessible 24/7, without needing a server running all the time. When people use your application, it spins up at the closest Cloudflare server, ready to go. When your users are asleep, the Worker spins down, and you don’t pay for compute you aren’t using. </p><p>With Payload running on Workers, you get the best of conventional CMSs — fully configurable asset management, custom webhooks, a library of community plugins, version history — all in a serverless form factor. We’ve been piloting the Payload-on-Workers template with an instance of our 24/7 video platform Cloudflare TV, which we use as a test bed for new technologies. Migrating from a conventional CMS was painless, thanks to its support for common features like conditional logic and an extensive set of components for building out our admin dashboard. Our content library has over 2,000 episodes and 70,000 assets, and Payload’s <a href="https://payloadcms.com/docs/queries/overview"><u>filtering and search</u></a> features help us navigate them with ease.</p><div>
  
</div><p>It is worth reiterating just how many use cases CMSs can fulfill, from publishing to ecommerce to bespoke application dashboards whipped up by Claude Code or Codex. CMSs provide the sort of interface that less-technical users can pick up intuitively, and can be molded into whatever shape best fits the project. We’re excited to see what people get to building.</p>
    <div>
      <h3>OpenNext opens doors</h3>
      <a href="#opennext-opens-doors">
        
      </a>
    </div>
    <p>Payload first launched in 2022 as a Node/Express.js application and quickly began building steam. In 2024, it <a href="https://payloadcms.com/posts/blog/payload-30-the-first-cms-that-installs-directly-into-any-nextjs-app"><u>introduced</u></a> native support for the popular Next.js framework, which helped pave the way for today’s announcement: this year, Cloudflare became the best place to host your applications built on Next.js, with the GA <a href="https://blog.cloudflare.com/deploying-nextjs-apps-to-cloudflare-workers-with-the-opennext-adapter/"><u>release</u></a> of our OpenNext adapter.</p><p>Thanks to this adapter, porting Payload to OpenNext was relatively straightforward using the official OpenNext <a href="https://opennext.js.org/cloudflare/get-started#existing-nextjs-apps"><u>Get Started</u></a> guide. Because we wanted the application to run seamlessly on Workers, with all the benefits of <a href="https://developers.cloudflare.com/workers/runtime-apis/bindings/"><u>Workers Bindings</u></a>, we set out to ensure support for Cloudflare’s database and storage products.</p>
    <div>
      <h3>Database</h3>
      <a href="#database">
        
      </a>
    </div>
    <p>For our initial approach, we began by connecting Payload to an external Postgres database, using the official <code>@payloadcms/db-postgres </code>adapter. Thanks to Workers support for the <code>node-postgres</code> package, everything worked pretty much straight away. As connections <a href="https://opennext.js.org/cloudflare/troubleshooting#error-cannot-perform-io-on-behalf-of-a-different-request"><u>cannot be shared</u></a> across requests, we just had to disable connection pooling:</p>
            <pre><code>import { buildConfig } from 'payload'
import { postgresAdapter } from '@payloadcms/db-postgres'

export default buildConfig({
  …
  db: postgresAdapter({
    pool: {
      connectionString: process.env.DATABASE_URI,
      maxUses: 1,
    },
  }),
  …
});
</code></pre>
            <p>Of course, disabling connection pooling increases the overall latency, as each request needs to first establish a new connection with the database. To address this, we put <a href="https://developers.cloudflare.com/hyperdrive/"><u>Hyperdrive</u></a> in front of it, which not only maintains a pool of connections across the Cloudflare network, by setting up a tunnel to the database server, but also adds a query cache, significantly improving the performance.     </p>
            <pre><code>import { buildConfig } from 'payload'
import { postgresAdapter } from '@payloadcms/db-postgres'
import { getCloudflareContext } from '@opennextjs/cloudflare';

const cloudflare = await getCloudflareContext({ async: true });

export default buildConfig({
  …
  db: postgresAdapter({
    pool: {
      connectionString: cloudflare.env.HYPERDRIVE.connectionString,
      maxUses: 1,    
    },
  }),
  …
});
</code></pre>
            
    <div>
      <h3>Database with D1</h3>
      <a href="#database-with-d1">
        
      </a>
    </div>
    <p>With Postgres working, we next sought to add support for <a href="https://developers.cloudflare.com/d1/"><u>D1</u></a>, Cloudflare’s <a href="https://www.cloudflare.com/developer-platform/products/d1/">managed serverless database</a>, built on top of SQLite.</p><p>Payload doesn’t support D1 out of the box, but has support for SQLite via the <code>@payloadcms/db-sqlite</code> adapter, which uses <a href="https://orm.drizzle.team/"><u>Drizzle ORM</u></a> alongside libSQL. Thankfully, Drizzle also has support for D1, so we decided to build a custom adapter for D1, using the SQLite one as a base.</p><p>The main difference between D1 and libSQL is on the result object, so we built a small method to map the result from D1 into the format expected by libSQL:</p>
            <pre><code>export const execute: Execute&lt;any&gt; = function execute({ db, drizzle, raw, sql: statement }) {
  const executeFrom = (db ?? drizzle)!
  const mapToLibSql = (query: SQLiteRaw&lt;D1Result&lt;unknown&gt;&gt;) =&gt; {
    const execute = query.execute
    query.execute = async () =&gt; {
      const result: D1Result = await execute()
      const resultLibSQL: Omit&lt;ResultSet, 'toJSON'&gt; = {
        columns: undefined,
        columnTypes: undefined,
        lastInsertRowid: BigInt(result.meta.last_row_id),
        rows: result.results as any[],
        rowsAffected: result.meta.rows_written,
      }

      return Object.assign(result, resultLibSQL)
    }

    return query
  }

  if (raw) {
    const result = mapToLibSql(executeFrom.run(sql.raw(raw)))
    return result
  } else {
    const result = mapToLibSql(executeFrom.run(statement!))
    return result
  }
}</code></pre>
            <p>Other than that, it was just a matter of <a href="https://orm.drizzle.team/docs/connect-cloudflare-d1"><u>passing the D1 binding</u></a> directly into Drizzle’s constructor in order to get it working.</p><p>For applying database migrations during deployment, we used the newly released<a href="https://developers.cloudflare.com/changelog/2025-09-16-remote-bindings-ga/"> <u>remote bindings</u></a> feature of Wrangler to connect to the remote database, using the same binding. This way we didn’t need to configure any API tokens to be able to interact with the database.</p>
    <div>
      <h3>Media storage with R2</h3>
      <a href="#media-storage-with-r2">
        
      </a>
    </div>
    <p>Payload provides an official S3 storage adapter, via the <code>@payloadcms/storage-s3</code> package. R2 is S3-compatible, which means we could have used the official adapter, but similar to the database, we wanted to use the R2 binding instead of having to create API tokens.</p><p>Therefore, we decided to also build a custom storage adapter for R2. This one was pretty straightforward, as the binding already handles most of the work:</p>
            <pre><code>import type { Adapter } from '@payloadcms/plugin-cloud-storage/types'
import path from 'path'

const isMiniflare = process.env.NODE_ENV === 'development';

export const r2Storage: (bucket: R2Bucket) =&gt; Adapter = (bucket) =&gt; ({ prefix = '' }) =&gt; {
  const key = (filename: string) =&gt; path.posix.join(prefix, filename)
  return {
    name: 'r2',
    handleDelete: ({ filename }) =&gt; bucket.delete(key(filename)),
    handleUpload: async ({ file }) =&gt; {
      // Read more: https://github.com/cloudflare/workers-sdk/issues/6047#issuecomment-2691217843
      const buffer = isMiniflare ? new Blob([file.buffer]) : file.buffer
      await bucket.put(key(file.filename), buffer)
    },
    staticHandler: async (req, { params }) =&gt; {
      // Due to https://github.com/cloudflare/workers-sdk/issues/6047
      // We cannot send a Headers instance to Miniflare
      const obj = await bucket?.get(key(params.filename), { range: isMiniflare ? undefined : req.headers })
      if (obj?.body == undefined) return new Response(null, { status: 404 })

      const headers = new Headers()
      if (!isMiniflare) obj.writeHttpMetadata(headers)

      return obj.etag === (req.headers.get('etag') || req.headers.get('if-none-match'))
        ? new Response(null, { headers, status: 304 })
        : new Response(obj.body, { headers, status: 200 })
    },
  }
}</code></pre>
            
    <div>
      <h3>Deployment</h3>
      <a href="#deployment">
        
      </a>
    </div>
    <p>With the database and storage adapters in place, we were able to successfully launch an instance of Payload, running completely on Cloudflare’s Developer Platform.</p><p>The blank template consists of a simple database with just two tables, one for media and another for the users. In this template it’s possible to sign up, create new users and upload media files. Then, it’s quite easy to expand with additional collections, relationships and custom fields, by modifying Payload’s <a href="https://payloadcms.com/docs/configuration/collections"><u>configuration</u></a>.</p>
    <div>
      <h3>Performance optimization with Read Replicas</h3>
      <a href="#performance-optimization-with-read-replicas">
        
      </a>
    </div>
    <p>By default, D1 is placed in a single location, customizable via a location hint. As Payload is deployed as a Worker, requests may be coming from any part of the world and so latency will be all over the place when connecting to the database.</p><p>To solve this, we can make use of D1’s <a href="https://developers.cloudflare.com/d1/best-practices/read-replication/"><u>global read replication</u></a>, which deploys multiple read-only replicas across the globe. To select the correct replica and ensure sequential consistency, D1 uses sessions, with a bookmark that needs to be passed around.</p><p>Drizzle <a href="https://github.com/drizzle-team/drizzle-orm/issues/2226"><u>doesn’t support D1 sessions</u></a> yet, but we can still use the “first-primary” type of session, in which the first query will always hit the primary instance and subsequent queries may hit one of the replicas. Updating the adapter to use replicas is just a matter of updating the Drizzle initialization to pass the D1 session directly:</p>
            <pre><code>this.drizzle = drizzle(this.binding.withSession("first-primary"), 
{ logger, schema: this.schema });</code></pre>
            <p>After this simple change, we saw immediate latency improvements, with the P50 wall-time for requests from across the globe reduced by 60% when connecting to a database located in Eastern North America. Read replicas, as the name implies, only affect read-only queries, so any write operations will always be forwarded to the primary instance, but for our use case, reads are most of the traffic.</p><table><tr><td><p>
</p></td><td><p>No read replicas</p></td><td><p>Read replicas enabled</p></td><td><p>Improvement</p></td></tr><tr><td><p>P50</p></td><td><p>300ms</p></td><td><p>120ms</p></td><td><p>-60%</p></td></tr><tr><td><p>P90</p></td><td><p>480ms</p></td><td><p>250ms</p></td><td><p>-48%</p></td></tr><tr><td><p>P99</p></td><td><p>760ms</p></td><td><p>550ms</p></td><td><p>-28%</p></td></tr></table><p><sup><i>Wall time for requests to the Payload worker, each involving two database calls, as reported by Cloudflare Dash. Load was generated via 4 globally distributed uptime checks making a request every 60s to 4 distinct URLs.</i></sup></p><p>Because we’ll be relying on Payload for managing Cloudflare TV’s enormous content library, we’re well positioned to test it at scale, and will continue to submit PRs with optimizations and improvements as they arise.</p>
    <div>
      <h3>The right tool for the job</h3>
      <a href="#the-right-tool-for-the-job">
        
      </a>
    </div>
    <p>The potential use cases for CMSs are limitless, which is all the more reason it’s a good thing to have choices. We opted for Payload because of its extensive library of components, mature feature set, and large community — but it’s not the only Workers-compatible CMS in town.</p><p>Another exciting project is <a href="https://github.com/lane711/sonicjs"><u>SonicJs</u></a> (<a href="https://sonicjs.com/"><u>Docs</u></a>), which is built from the ground up on Workers, D1, and Astro, promising blazing speeds and a malleable foundation. SonicJs is working on a version that’s well suited for collaborating with agentic AI assistants like Claude and Codex, and we’re excited to see how that develops. For lightweight use cases, <a href="https://github.com/microfeed/microfeed"><u>microfeed</u></a> is a self-hosted CMS on Cloudflare designed for managing podcasts, blogs, photos, and more.</p><p>These are each headless CMSs, which means you choose the frontend for your application. Don’t miss our <a href="https://blog.cloudflare.com/cloudflare-astro-tanstack/"><u>recent announcement</u></a> around sponsoring the powerful frameworks Astro and Tanstack, and find our complete guides to using these frameworks and others, including React + Vite, in the <a href="https://developers.cloudflare.com/workers/framework-guides/web-apps/"><u>Workers Docs</u></a>.</p><p>To get started using Payload right now, click the <i>Deploy to Cloudflare</i> button below, which will generate a fully functional Payload instance, including a D1 database and R2 bucket automatically bound to your worker. Find the README and more details in Payload’s <a href="https://github.com/payloadcms/payload/tree/main/templates/with-cloudflare-d1"><u>template repository</u></a>.</p><a href="https://deploy.workers.cloudflare.com/?url=https://github.com/payloadcms/payload/tree/main/templates/with-cloudflare-d1"><img src="https://deploy.workers.cloudflare.com/button" /></a><p></p> ]]></content:encoded>
            <category><![CDATA[Cloudflare Workers]]></category>
            <guid isPermaLink="false">62xdKsx6pg0o41UABVudTx</guid>
            <dc:creator>Jason Kincaid</dc:creator>
            <dc:creator>Ricardo Tavares</dc:creator>
        </item>
        <item>
            <title><![CDATA[Announcing Cloudflare TV as a Service]]></title>
            <link>https://blog.cloudflare.com/cloudflare-tv-as-a-service/</link>
            <pubDate>Thu, 30 Sep 2021 12:59:20 GMT</pubDate>
            <description><![CDATA[ Today we’re excited to announce that we're making the technology we used to build Cloudflare TV available to any other business that wants to run their own 24x7 streaming network. ]]></description>
            <content:encoded><![CDATA[ <p></p><p>In June 2020, <a href="https://cloudflare.tv">Cloudflare TV</a> made its debut: a 24/7 streaming video channel, focused on topics related to building a better Internet (and the people working toward that goal). Today, over 1,000 live shows later, we’re excited to announce that we're making the technology we used to build Cloudflare TV available to any other business that wants to run their own 24x7 streaming network. But, before we get to that, it’s worth reflecting on what it's been like for us to run one ourselves.</p><p>Let’s take it from the top.</p><p>Cloudflare TV began as an experiment in every way you could think of, one we hoped would help capture the serendipity of in-person events in a world where those were few and far between. It didn’t take long before we realized we had something special on our hands. Not only was the Cloudflare team thriving on-screen, showcasing an amazing array of talent and expertise — they were having a great time doing it. Cloudflare TV became a virtual watercooler, spiked with the adrenaline rush of live TV.</p><p>One of the amazing things about Cloudflare TV has been the breadth of content it’s inspired. Since launching, CFTV has hosted <a href="/cloudflare-tv-live-1-000-times-and-counting/">over 1,000 live sessions</a>, featuring everything from marquee customer events with VIP speakers to game shows and DJ sets. Cloudflare’s <a href="https://cloudflare.tv/pride-month">employee resource groups</a> have hosted hundreds of sessions speaking to their unique experiences, sharing a wealth of advice with the next generation of technology leaders. All told, we’ve welcomed over 650 Cloudflare employees and interns — and over 500 external guests, including the likes of Intel CEO <a href="https://cloudflare.tv/event/6wsMzavKTgHgnD8ZYuUHoz">Pat Gelsinger</a>, Gradient Ventures board partner <a href="https://cloudflare.tv/event/2i55cjkjlDW3a9q5zxMixC">Bonita Stewart</a>, Broadcom CTO <a href="https://cloudflare.tv/event/2KZQE2SFHIp8PtPiHK84kt">Andy Nallappan</a>, and Zendesk SVP <a href="https://cloudflare.tv/event/4oauqmkzcquTPKsvrqXHbO">Christina Liu</a>.</p><div></div>
<p>Tune In, Geek Out: A CFTV Montage</p><p>This is <i>Cloudflare</i> TV, so of course we put an emphasis on technical content for viewers of all stripes. When we announce a new product or protocol on the Cloudflare Blog, we often host live sessions on CFTV the same day, featuring the engineers who wrote the code that just shipped. Every week, we broadcast episodes on cryptography, on learning how to code, and on the hardware that powers Cloudflare’s network in over 250 cities around the world.</p><p>Whether you’re new to Cloudflare TV or a longtime viewer, we encourage you to pay a visit to the just-launched <a href="https://cloudflare.tv/discover">Discover page</a>, where you’ll find many of our most-loved shows on demand, ranging from <a href="https://cloudflare.tv/shows/latest-from-product-and-engineering"><i>Latest from Product and Engineering</i></a>, to perennial favorite <a href="https://cloudflare.tv/shows/silicon-valley-squares"><i>Silicon Valley Squares</i></a><i>,</i> to <a href="https://cloudflare.com/yeswecan"><i>Yes We Can</i></a>, featuring women leaders from across the tech industry. You can also browse upcoming Live segments and easily add them to your calendar.</p><p>One of the most promising indicators that we’re on the right track has been the feedback we’ve gotten, not just from viewers — but from companies eager to know which platform we were using to power CFTV. To date we haven’t had much to offer them other than our sincere thanks, but as of today we’re able to share something much more exciting.</p><p>But first: a look behind the scenes.</p>
    <div>
      <h3>The Production Stack</h3>
      <a href="#the-production-stack">
        
      </a>
    </div>
    <p>We didn’t initially set out to build Cloudflare TV <a href="/building-cloudflare-tv-from-scratch/">from scratch</a>. But as we explored our available options, we quickly realized that few solutions were designed for 24/7 linear streaming, and fewer still were optimized to be managed by a globally-distributed team. Thankfully, at Cloudflare, we like to build.</p><p>Our engineers worked at a blazing pace to build our own homegrown system, tapping open-source projects where we could, and inventing the things that didn’t yet exist. Among the starring components:</p><ul><li><p><b><b><b>Brave (BBC)</b></b></b> — Brave is an open-source project named for a highly descriptive acronym: Basic Real-Time Audio Video Editor. It serves as the Cloudflare TV switchboard, allowing us to jump from live content to commercial to a pre-recorded session and back automatically, based on our broadcast schedule. The only issue with Brave is that, as the BBC put it: it’s a prototype. One that hasn’t been updated since 2018...</p></li></ul>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3xrVmIisXJhZEBML1GrqX/1f5bc98e7291e922edd204425060315e/image7.jpg" />
            
            </figure><p>The CFTV Switchboard (Now streaming: Latest from Product &amp; Engineering)</p><ul><li><p><b><b><b>Zoom</b></b></b> — When we first designed Cloudflare TV, there was one directive that stood above the others: it had to be easy. If presenters had to deal with installing a browser plugin or unfamiliar app, we knew we’d lose many of them — especially external guests. Zoom emerged as the clear answer, and thanks to its RTMP broadcast feature, it’s worked seamlessly to facilitate live content on Cloudflare TV. In most cases, participating in a CFTV session is as simple as joining a Zoom meeting.</p></li><li><p><b>Cloudflare Workers —</b> Put simply, Cloudflare TV wouldn’t exist were it not for Cloudflare Workers. Workers is the glue that brings together each of the disparate components of the platform — handling authentication, application logic, securely relaying data from our backend to our frontend, and sprinkling SEO optimizations across the site. It’s the first tool we reach for, and often the only one we need.</p></li><li><p><b><b><b>Cloudflare Stream</b></b></b> — With over 1,000 episodes in our content library, we have a lot of assets to manage. Thankfully Stream makes it easy: episodes are uploaded and automatically transcoded to the appropriate bitrate, and we use Stream embeds to power <a href="https://www.cloudflare.com/developer-platform/solutions/video-on-demand/">Video on Demand</a> across the entire platform. We also use the Stream API to deliver recordings to our backend switchboard so that they can be seamlessly rebroadcast alongside our Live sessions.</p></li><li><p><b><b><b>Cloudflare for Teams</b></b></b> — Cloudflare TV is obviously public-facing, but there are an array of dashboards and admin interfaces that are only accessible to select members of the Cloudflare team. Thankfully the Cloudflare for Teams suite, including Cloudflare Access, makes it easy for us to set up custom rulesets that keep everything secure, without any cumbersome VPNs or authentication hurdles.</p></li></ul>
    <div>
      <h3>We Get By With a Little Help from Our Engs</h3>
      <a href="#we-get-by-with-a-little-help-from-our-engs">
        
      </a>
    </div>
    <p>We knew from the beginning that it wasn’t enough for Cloudflare TV to be easy for presenters — we needed to be able to run it with a relatively small team, working remotely, most of whom were juggling other responsibilities.</p><p>A special shoutout goes to the members of Cloudflare's office and executive admin teams, whose roles were dramatically impacted by the pandemic. Each of them has stepped up and taken on the mantle of Cloudflare TV Producer, providing technical support, calming nerves, and facilitating each one of our live sessions. We couldn’t do it without them, nor would we want to.</p><p>Even so, running a TV station is a lot of work, and we had little choice but to make the platform as efficient as possible — automating away our pain points, and developing intuitive admin tools to empower our team. Here are some of the key contributors to the system’s efficiency:</p><p><b>The Auto-Switcher</b> — CFTV’s <a href="https://cloudflare.tv/schedule">schedule</a> features hundreds of sessions every week, including weekends, which would be prohibitive if any manual switching were involved. Thankfully the system operates essentially on auto-pilot. This is no simple playlist: every minute, a program running on Cloudflare Workers syncs with the CFTV backend to queue up recordings and inputs for upcoming sessions, deleting those belonging to sessions that have already aired. If we take a week off over the holidays, Cloudflare TV will keep on humming.</p><p><b>The Auto-Scheduler</b> — Scheduling CFTV content by hand (well over 250 segments per week) quickly went from a meaningful exercise to a perverse task. By week two we knew we had to figure something else out. And so the auto-scheduler was born, allowing us to select an arbitrary window of time and populate it with recordings from our content library, filling in any time slots between live segments.</p><p>Segments can be dragged, dropped, added, and removed in a couple of clicks; one person can schedule the entire week in less than an hour. The auto-scheduler intelligently rotates through each episode in the catalog to ensure they all get airtime — and we see plenty of opportunities for it to get smarter.</p><div></div>
<p></p><p><b>The Broadcasting Center</b> — The lifeblood of Cloudflare TV is our live segments, so we naturally spend a lot of time trying to improve the experience for presenters. The Broadcasting Center is their home base: a page that loads automatically for each session’s host, providing them a countdown timer and other essentials. And because viewer engagement is a crucial part of what makes live programming special, it features a section for viewer questions — including a call-in feature, which records and automatically transcribes questions phoned in by viewers.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3uYrsWMHAERw2quMPttAlw/3bb4507aeb98b5403e7d5f3aaf9cf883/image6.jpeg.jpeg" />
            
            </figure><p>Broadcasting Center — Presenter View</p><p>Meanwhile, our CFTV Producers use an administrative view of the same tool, where they check to make sure the stream is coming through clearly before each session begins. A set of admin controls allow them to troubleshoot if needed, and they can moderate viewer questions as well.</p><p>For both producers and presenters, the Broadcasting Center provides a single control plane to manage a live session. This ease-of-use goes a long way toward keeping the system running smoothly with a lean team.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3Po6I9rH2PBEfDitiykMox/191f866c4dc99d66ad947baf702386ad/image8.jpg" />
            
            </figure><p>Broadcasting Center — Admin View</p>
    <div>
      <h3>There’s a sequel? There’s a sequel.</h3>
      <a href="#theres-a-sequel-theres-a-sequel">
        
      </a>
    </div>
    <p>One reason we’ve invested in Cloudflare TV is that it serves as fantastic platform for dogfooding — not only are we leveraging a broad array of Cloudflare’s media products, but our 24/7 linear content makes us a particularly demanding customer, with no appetite for arbitrary constraints like time limits or maintenance downtime.</p><p>With that in mind, we’re excited to integrate many of the new technologies Cloudflare is introducing this week, which will combine to power an overhauled version of the CFTV platform that we’re calling Cloudflare TV 2.0. Namely:</p><ul><li><p><b>Real Time Communications Platform</b> — Today, Cloudflare announced its new <a href="/announcing-our-real-time-communications-platform/">Real Time Communications Platform</a>, powered by WebRTC. In the near future, Cloudflare TV will leverage this platform to handle many of our live sessions. CFTV will continue to support Zoom, OBS, and any other application capable of outputting a RTMP stream, because convenience is one of the essential pillars in helping our presenters engage with the platform. But we see opportunities to push our creativity to new heights with custom, programmatically-controlled media streams — powered by Cloudflare’s Real-Time Communications Platform.</p></li><li><p><b><b><b>Stream Live</b></b></b> — CFTV’s backend server currently handles video encoding for our live broadcast, generating a stream that is relayed to a video.js embed. Replacing this setup with <a href="/stream-live/">Stream Live</a> will yield several key benefits: first, we will offload video encoding to Cloudflare’s global network, resulting in improved speed, reliability, and redundancy. It also means we’ll be able to generate multiple renditions of the broadcast at different bitrates, allowing us to offer streams that are optimized for mobile devices with limited bandwidth, and to dynamically switch between bitrates as a user’s network conditions change.</p></li><li><p><b><b><b>Stream Connect</b></b></b> — Today, the only way to watch Cloudflare TV is from the platform’s homepage — but there’s no reason we can’t syndicate it to other popular video platforms like YouTube. <a href="/restream-with-stream-connect/">Stream Connect</a> will become the primary endpoint for our backend mixer, and will in turn generate multiple copies of that stream, outputting to YouTube, the main broadcast, and any number of additional platforms.</p></li></ul><p>We’re also actively working on a fresh implementation of our switchboard — one that is designed to be more reliable, scalable, and customizable. This switchboard will power the core of Cloudflare TV 2.0.</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6qCuMhUVKUy5TQPhwCsiI2/c62a8faaa22c0f071c5c365de20a8a57/image3-35.png" />
            
            </figure>
    <div>
      <h3>It’s not TV. It’s Cloudflare TV.</h3>
      <a href="#its-not-tv-its-cloudflare-tv">
        
      </a>
    </div>
    <p>Cloudflare TV 2.0 will represent a major step forward for the platform, one that leverages over a year of insights as we rearchitect the system from its core to take full advantage of the Cloudflare network. And we’re doing it with you in mind: the same technology will be used to power Cloudflare TV as a Service.</p><p>Most products at Cloudflare are designed to scale from individuals up to the largest businesses. This is not one of those. Running a 24x7 streaming network takes a lot of time and effort. While we've made it easier than ever before, this is a product really designed for businesses that are willing to make a commitment similar to what we have at Cloudflare. But, if you are, we're here to tell you that running a streaming service is incredibly rewarding, and we want to enable more companies to do it.</p><p>Interested? <a href="https://docs.google.com/forms/d/e/1FAIpQLSeHdpXZ6SXS4GZDZXIwcc9z06Cj79MDSIt-V7TPe7iNtWelTw/viewform?usp=sf_link">Fill out this form</a> and, if it looks like you'd be a good fit, we'll reach out and work with you to help build your own streaming service.</p><p>In the meantime, don’t miss out on <a href="/stream-live/">Stream Live</a> and the new <a href="/announcing-our-real-time-communications-platform/">Real Time Communications Platform</a>. There’s no reason you can’t start building today.</p> ]]></content:encoded>
            <category><![CDATA[Birthday Week]]></category>
            <category><![CDATA[Cloudflare TV]]></category>
            <category><![CDATA[Cloudflare Stream]]></category>
            <category><![CDATA[Product News]]></category>
            <guid isPermaLink="false">5m8C2LKA1pXOclJPLZqR3m</guid>
            <dc:creator>Fallon Blossom</dc:creator>
            <dc:creator>Jason Kincaid</dc:creator>
        </item>
        <item>
            <title><![CDATA[Cloudflare TV: Doing it Live, 1,000 Times and Counting]]></title>
            <link>https://blog.cloudflare.com/cloudflare-tv-live-1-000-times-and-counting/</link>
            <pubDate>Fri, 18 Jun 2021 13:00:03 GMT</pubDate>
            <description><![CDATA[ Since launching in June 2020, Cloudflare TV has featured over 1,000 original live episodes covering an incredible array of topics and we're just getting started. ]]></description>
            <content:encoded><![CDATA[ <p></p><p>Last week, <a href="https://cloudflare.tv">Cloudflare TV</a> celebrated its <a href="https://www.cloudflare.com/cftv-anniversary/">first anniversary</a> the only way it knows how: with a broadcast brimming with live programming spanning everything from the keynotes of <a href="https://www.cloudflare.com/cloudflare-connect-2021/">Cloudflare Connect</a>, to a day-long virtual career fair, to our flagship game show <a href="https://cloudflare.tv/event/XKFAmOaBrEqN07wI9KIHQ"><i>Silicon Valley Squares</i></a>.</p><p>When our co-founder and CEO Matthew Prince <a href="/ladies-and-gentlemen-cloudflare-tv/">introduced</a> Cloudflare TV to the world last year, he described it as a platform for experimentation. By empowering Cloudflare employees to try whatever they could think up on air — bound only by restraints of common sense — we hoped to unlock aspects of our team’s talent and creativity that otherwise might go untapped in the midst of the pandemic.</p><p>The results, as they say, have been extraordinary.</p><p>Since launching in June 2020, Cloudflare TV has featured over 1,000 original live episodes covering an incredible array of topics: technical deep dives and tutorials like <a href="https://cloudflare.tv/event/4SQYlTtwzpqX4J30hVCtTo"><i>Hardware at Cloudflare</i></a>, <a href="https://cloudflare.tv/event/77wdTNEZXiO8Rs8AknhIWd"><i>Leveling up Web Performance with HTTP/3</i></a><i>,</i> and <a href="https://cloudflare.tv/event/2xoOOWiOEj4N5Dd6eOe8JK"><i>Hacker Time</i></a>. Security expertise from <a href="https://cloudflare.tv/event/7bFr8djLr9kMk9RBJE5deB">top CISOs</a> and <a href="https://cloudflare.tv/event/86QKIW0WSoxgAOQqUJqIA">compliance experts</a>. In-depth <a href="https://cloudflare.tv/event/1MccrltT6uA7XUatZWTVOe">policy discussions</a>. And of course, updates on Cloudflare’s products with weekly episodes of <a href="https://cloudflare.tv/event/hfLKpZdm9PeKjyyluIHxA"><i>Latest from Product and Engineering</i></a>, <a href="https://cloudflare.tv/event/16sW1ra1pcIppomIO6c5lp"><i>Estas Semanas en Cloudflare en Español</i></a>, and launch-day introductions to <a href="https://cloudflare.tv/event/6YbaRgdo5WP2jH51SIh5b5">Magic WAN</a>, <a href="https://cloudflare.tv/event/6YbaRgdo5WP2jH51SIh5b5">Magic Firewall</a>, <a href="https://cloudflare.tv/event/16n3Ew39PBWyd0AZ2siNfO">Cloudflare Pages,</a> and <a href="https://cloudflare.tv/event/16n3Ew39PBWyd0AZ2siNfO">Stream Connect</a>.</p><p>We’ve seen a wealth of content that can only be described as inspirational — like <a href="https://cloudflare.tv/event/6DBGqgfZYFwRITV1qb526i"><i>Vets at Cloudflare</i></a> exploring the journeys of military veterans, <a href="https://cloudflare.tv/event/6oUgjEKSoNpHtDs0TIb5AF"><i>This is What a Technologist Looks Like</i></a> showcasing diversity across the industry, and <a href="https://www.cloudflare.com/yeswecan/"><i>Yes We Can</i></a>, Cloudflare co-founder, President &amp; COO Michelle Zatlyn’s series debunking the myth that there are no women in tech. <a href="https://cloudflare.tv/event/1lb5Cvoh0ZsVMOKVuex2fV"><i>Founder Focus</i></a> has shared the stories of dozens of entrepreneurs, <a href="https://cloudflare.tv/event/44m6zr96md8tX7mFNZrcld"><i>Between Two Clouds</i></a> delves into the world of customer support, and series like <a href="https://cloudflare.tv/event/5rp0YRFkoybx2Wl2LV59UZ"><i>Home Office TV</i></a> and <a href="https://cloudflare.tv/event/2kUQtmoWrUIwmew5PKHtLx"><i>Cooking With Cloudflare</i></a> have given an inside look at the personalities (and recipes) that make the Cloudflare community so unique.</p><p>All told, Cloudflare TV has featured well over one thousand presenters and their illustrious guests. We’ve been fortunate to welcome the likes of <a href="https://cloudflare.tv/event/4NCduV3ORYeA5iQ1bzNgdJ">Eric Yuan</a>, founder and CEO of Zoom; <a href="https://cloudflare.tv/event/7osRua4c5Dktg8URD38nBI">Cindy Cohn</a>, Executive Director of the Electronic Frontier Foundation; <a href="https://cloudflare.tv/event/H7W7FUNpvaIRZrQBxxp10">John Collison</a>, co-founder and President of Stripe; and <a href="https://cloudflare.tv/event/7jPvGyk89E8xYaqzPP17VL">Jackie Smalls</a>, Chief Programs Officer at Code.org, to name a few.</p><p>We’ve also seen amazing contributions from Cloudflare’s Employee Resource Groups — including <a href="https://cloudflare.tv/event/3oq0Aad2MaptJbFRZ9ECxv">Latinflare</a> celebrating Cinco De Mayo, Womenflare celebrating <a href="https://www.cloudflare.com/womens-empowerment/">Women’s Empowerment Month</a>, Asianflare and Desiflare celebrating <a href="https://www.cloudflare.com/apac-heritage-month/">APAC Heritage Month</a>, Afroflare celebrating <a href="https://cloudflare.tv/event/1jNx1my3HA6G7qziNbpArn">Black History Month</a> (<a href="https://cloudflare.tv/event/4ZdpOEzsEWFxxwKt0rAO9M">UK</a> &amp; <a href="https://cloudflare.tv/event/3skfTwbNV6XichvF1rSHh0">US</a>), <a href="https://cloudflare.tv/event/5X9uywaVERlPc7yGivizIa">Mindflare</a> (supporting mental health awareness), Cloudflare’s sustainability group, <a href="https://cloudflare.tv/event/5ZiyapEBH6xaPiA6kc2Y1d">Greencloud</a>, and Proudflare, Cloudflare’s LGBTQIA+ group, which is <a href="https://cloudflare.tv/event/3mBTOdnKbbdpOFmoeyJLWi">celebrating Pride</a> all month long.</p><p>The feedback from fans has been extraordinary. We regularly receive messages from viewers telling us how much they were inspired by a recent guest, or sharing that they leave Cloudflare TV “playing in the background all day.” You can tell they care, because they also let us know that they don’t appreciate when the commercials are louder than the program itself (we’re working on that!)</p><p>Perhaps the most meaningful impact of Cloudflare TV has been the way it’s connected the Cloudflare team. Cloudflare is growing quickly, and many team members have never set foot in a Cloudflare office. For anyone who is new to the company, Cloudflare TV has served as a way to get to know their colleagues, and vice versa. Job candidates use it to learn about the teams they aspire to work on. And we all get an excuse to talk to folks beyond the borders of our usual Zoom calls. It is, in a sense, the ultimate virtual water cooler — and the water is spiked with the adrenaline rush of live TV. It’s a potent mix that often leads to declarations of, “that was fun!”</p><p>It sure is.</p>
    <div>
      <h3>Lights, Camera, Gallery View, Action</h3>
      <a href="#lights-camera-gallery-view-action">
        
      </a>
    </div>
    <p>Supporting such a broad array of on-air talent is no small feat, and we have an amazing production team that helps ensure every session goes smoothly (give or take). Many of our Cloudflare TV Producers have roles at Cloudflare that were radically impacted by the pandemic, including our office management and executive admin teams. Few of them had prior TV experience. But that hasn’t kept them from becoming absolutely indispensable.</p><p>Before each and every live session — all 1,000+ of them — Cloudflare TV’s producers join our hosts to make sure they have everything they need. They provide crucial technical support, soothe pre-show jitters, and deal with the myriad tiny (and not-so-tiny) emergencies that make live TV so exciting. They are television producers in every sense of the word, and they have helped make this newfangled platform a very human experience, at a time when such things matter.</p><p>Also, our engineers are pretty great too. Speaking of which...</p>
    <div>
      <h3>Next Season on Cloudflare TV...</h3>
      <a href="#next-season-on-cloudflare-tv">
        
      </a>
    </div>
    <p>Cloudflare TV began as an experiment, and that label still applies. We’re finding creative ways to navigate our own pain points, dogfooding Cloudflare’s newest technologies, and generally trying to take advantage of the fact that this is not well-charted territory. We’ll soon share more technical details on how we run a TV station 24/7, and some of the tools we’re building along the way. Here's an <a href="/building-cloudflare-tv-from-scratch/">appetizer</a>.</p><p>Our product roadmap includes many of the things you’d expect, like an easier way to find your favorite episodes, and to hear about upcoming new ones. The rainbow bars adorning this blog post will make fewer cameos on the broadcast itself. And just like any good experiment: there will be surprises.</p><p>So tune in, geek out — and don’t touch that dial.</p> ]]></content:encoded>
            <category><![CDATA[Cloudflare TV]]></category>
            <category><![CDATA[Cloudflare Stream]]></category>
            <category><![CDATA[Life at Cloudflare]]></category>
            <guid isPermaLink="false">2cKcdr8xg4OeV8H0bKGs5b</guid>
            <dc:creator>Fallon Blossom</dc:creator>
            <dc:creator>Jason Kincaid</dc:creator>
        </item>
        <item>
            <title><![CDATA[Untangling Compliance: Working Toward a Global Framework]]></title>
            <link>https://blog.cloudflare.com/untangling-compliance-working-toward-a-global-framework/</link>
            <pubDate>Mon, 11 Jan 2021 12:00:00 GMT</pubDate>
            <description><![CDATA[ As part of Cloudflare’s recent Privacy Week we hosted a series of fireside chats on security, privacy, and compliance. Many of these conversations touched on the intricate legal debate being held in Europe around data sovereignty. Here are some of the highlights. ]]></description>
            <content:encoded><![CDATA[ <p>As part of Cloudflare’s recent <a href="https://www.cloudflare.com/privacyweek/">Privacy Week</a> we hosted a series of fireside chats on security, privacy, and compliance. Many of these conversations touched on the intricate legal debate being held in Europe around data sovereignty. Here are some of the highlights.</p><p>To learn more about the solutions Cloudflare launched to help businesses navigate their compliance needs — including the new <a href="/introducing-the-cloudflare-data-localization-suite/">data localization suite</a> — see our recent blog post <a href="/privacy-and-compliance-reading-list/">here</a>.</p><p><b>Prof. Dr. Wilfried Bernhardt</b><b>Honorary professor -- University of Leipzig,</b><b>Attorney, CEO Bernhardt IT Management Consulting GmbH</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/71pPhFtbY8m6KYF6Jh9vwZ/5da258f7d088ce32c67fff30cc32a2d0/image4.jpg" />
            
            </figure><p>We have to agree to go down a common road, a common path. And this common path can really only consist of saying: let's sit down together again. I'm talking about the European Commission and, above all, the new administration in the United States. We are all waiting for them expectantly.</p><p>And then we look at what our common fundamental values are and see if we don’t simply come together better than we have in the past. After all, our fundamental values are the same: human rights, democracy, the rule of law. You have to concede that there are some differences in understanding when it comes to interpreting what privacy means — well, in the US freedom of expression is sometimes considered more important than privacy. In Europe, it's perhaps the other way around.</p><p>But if we look at it without ideological blinders, we can certainly come together. After all, when it comes to fighting terrorism and crime, it is common insights that play an important role. So it would be a great pity if we didn't come together. But it is not permissible that, for example, American authorities simply say: we will allow ourselves access to European data of European Union citizens, we don't have to ask anyone, and we don't grant legal protection either. To be honest, that's not how it works.</p><p><a href="https://cloudflare.tv/event/6oL1PfNrXvctKLAo7TJyKt">Watch the full interview</a></p><p><b>Iverna McGowan</b><b>Director of the Europe Office, Center for Democracy &amp; Technology (CDT)</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/1mH7mztWGuNBB8JqaSAY3O/b634734b8ae4f8ff876a06f5180346c1/image2-1.jpg" />
            
            </figure><p>My hope would be that we have a more global approach to international privacy standards. And I think for 2021 in Europe, it will be all about the Digital Services Act. And of course on the individual users’ rights as well, on free expression.</p><p>I think that human rights advocates will all have a lot of work to do to make sure that we guard our own rights to express ourselves online, but also protect people from harassment and hate. Getting that balance right in law and practice, I think, is going to be really important to maintain the Internet as a free and open space where we can organize and fight to protect human rights and democracy.</p><p>We at the Center for Democracy &amp; Technology are strong advocates and practitioners of multistakeholder approaches. So these kinds of dialogues between the private sector and civil society to get into the details of, what are the technical solutions, what does that mean in different places? I think that's going to be really important to get some of these policy challenges right.</p><p><a href="https://cloudflare.tv/event/3oq7qAidXRaODz7w2x2Y5b">Watch the full interview</a></p><p><b>Marshall Erwin</b><b>Chief Security Officer, Mozilla Corporation</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/Tw17UN0lHlYOKyCo6DgyB/0196624e291e8419539af4773a3de7fc/image3.jpg" />
            
            </figure><p>In the US we see a lack of a strong privacy regime, which is a problem — but also you don't really see mandatory data retention and you don't really see mandatory blocking in the US. Parts of Europe do have various sort of retention regimes or mandatory blocking regimes, or at least there is a desire within the policy space within Europe, to consider especially the DNS as a tool to facilitate content blocking.</p><p>Now, we think that's a very bad idea for a number of reasons, partly because it's bad on principle. It will result in risk to free expression. And also because it's not a very effective way to address a lot of these serious content problems that bubble up today. And that's the argument that I tend to make. We are actively thinking about the right set of solutions for malicious content on the Web. But blocking at this level, the stack through the DNS system — it's a bad idea. It's not going to work, and it will have serious free expression challenges.</p><p><a href="https://cloudflare.tv/event/4iRxJ7Q2p00dSFpQrujJYm">Watch the full interview</a></p><p><b>Dr. Katrin Suder</b><b>Chairperson of the Advisory Council on Digitalization for the German Federal Government, Member of Cloudflare's Board of Directors</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5HweFdNNq2H4zWLjRpp2SC/fbbb82e71180b8d6f9e87b398a2ae7c5/image5-1.jpg" />
            
            </figure><p>I think a lot of realism has come in, realism about what is actually feasible and what is possible, and at the same time the recognition that we don’t want to lose the innovation that American companies in particular are bringing.</p><p>How will this continue? Of course, that’s always difficult to predict in a process like this. I think what is actually needed, and we have talked about this in various forums, is first of all a clean assessment process for the current situation. Where do we actually stand with sovereignty? We have to be honest about this. So, where are we actually dependent and how can we deal with this dependency?</p><p>Because there are dependencies where you can perhaps say, yes, so be it, maybe it's not so bad. And then there are perhaps dependencies that are very critical. That's where you have to invest, but not to replicate, rather to push the next generation, so to speak. And I think this process should be driven by the European Commission.</p><p><a href="https://cloudflare.tv/event/6W4h3hJ9UKJvlXwDBuNj01">Watch the full interview</a></p><p><b>Thomas Boué</b><b>Director General, Policy -- EMEA, BSA | The Software Alliance</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/1YO8AYKapFjWku9ol07b49/b442d21d99808d818b415cef26d285ff/image1.jpg" />
            
            </figure><p>One of the things that we spend time thinking about — and it's going to be a long-term project, because it will not happen overnight — but it's about: how can like-minded democracies find a way to create a standard? What will be the standard for acceptable government access to data and national security practices? What would be the ways that they would conduct these investigations? What would be the safeguards that exist? What would be the means of redress or of challenging those?</p><p>These are the things that need to happen between countries that are like-minded, that value privacy, but that also value the security of their citizens. And how can it go forward by creating this standard that would then bring a lot more clarity, a lot more certainty and a lot more appeased views in this entire debate. And that is the thing that we think is essential. We know that work is being done on this in certain fora — such as the OECD — and we very much encourage countries to think about this more, and to find a way forward.</p><p><a href="https://cloudflare.tv/event/38DXBl3Ze6iN7dScS8v7RY">Watch the full interview</a></p><p><i>Quotes have been lightly edited for clarity and length, and translated as necessary.</i></p> ]]></content:encoded>
            <category><![CDATA[Cloudflare TV]]></category>
            <category><![CDATA[Privacy Week]]></category>
            <guid isPermaLink="false">3aNAt6GD6tlRuetWd3sjVj</guid>
            <dc:creator>Jason Kincaid</dc:creator>
        </item>
        <item>
            <title><![CDATA[Tech Leaders on the Future of Remote Work]]></title>
            <link>https://blog.cloudflare.com/tech-leaders-on-the-future-of-remote-work/</link>
            <pubDate>Wed, 11 Nov 2020 13:17:44 GMT</pubDate>
            <description><![CDATA[ Dozens of top leaders and thinkers from the tech industry and beyond recently joined us for a series of fireside chats commemorating Cloudflare’s 10th birthday. Here are some of the highlights. ]]></description>
            <content:encoded><![CDATA[ <p><i>Dozens of top leaders and thinkers from the tech industry and beyond recently joined us for a series of fireside chats commemorating Cloudflare’s 10th birthday. Over the course of</i> <a href="/birthday-week-on-cloudflare-tv-announcing-24-hours-of-live-discussions-on-the-future-of-the-internet/"><i>24 hours of conversation</i></a><i>, many of these leaders touched on how the workplace has evolved during the pandemic, and how these changes will endure into the future.</i></p><p><i>Here are some of the highlights.</i></p>
    <div>
      <h3>On the competition for talent</h3>
      <a href="#on-the-competition-for-talent">
        
      </a>
    </div>
    <p><b>Stewart Butterfield</b><b>Co-founder and CEO, Slack</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/65xC66pxlcjhA5cFfKb7Gl/9991fad687c2133de7bf11f3935f1f33/image4-1.jpg" />
            
            </figure><p>The thing that I think people don't appreciate or realize is that this is not a choice that companies are really going to make on an individual basis. I've heard a lot of leaders say, “we're going back to the office after the summer.”</p><p>If we say we require you to be in the office five days a week and, you know, Twitter doesn't, Salesforce doesn't — and those offers are about equal — they'll take those ones. I think we would also lose existing employees if they didn't believe that they had the flexibility. Once you do that, it affects the market for talent. If half of the companies support distributed work or flexible hours and flexible time in the office, you can compensate for that, but I think you’ve got to pay a lot more or something like that because that optionality is valuable to people.</p><p><a href="https://cloudflare.tv/event/1OrmRJTiMJYYcCV2F2VMHo"><i>Watch the full interview</i></a></p>
    <div>
      <h3>On the harnessing the benefits of remote work</h3>
      <a href="#on-the-harnessing-the-benefits-of-remote-work">
        
      </a>
    </div>
    <p><b>Hayden Brown</b><b>President and CEO, Upwork</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/57foEJ4GAAtG3fDx27ve4x/00d0ea72110a4c385d07dbbd91fccf9f/image1-2.jpg" />
            
            </figure><p>I think a lot of these things are here to stay. What's fleeting is this idea that we have our children home from school and we don't have a social system around child care and things like that, because that's not sustainable.</p><p>What's here to stay are really companies finding, and workers finding, a new balance. It's not about, “let's all lock ourselves in our homes forever.” This is about being very intentional. How can we be intentional to really recognize the benefits that a distributed, more work from home-oriented culture and set of practices can give workers and businesses?</p><p>Those benefits include some very powerful tools towards addressing some of the diversity challenges that all of our companies face, because it suddenly opens up pools of talent that we can tap into, outside of the places where we've traditionally hired, and we can tap into those people — and they're not second class citizens, because they're not the only ones working remotely while everyone else is back at the office.</p><p><a href="https://cloudflare.tv/event/3pVHlBdCJKXakeTRP8xrtC"><i>Watch the full interview</i></a></p>
    <div>
      <h3>On capturing the serendipity of in-person meetings</h3>
      <a href="#on-capturing-the-serendipity-of-in-person-meetings">
        
      </a>
    </div>
    <p><b>Brett Hautop</b><b>VP of Global Design + Build at LinkedIn</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/7vESmRz0tIYAT8tUr8wvx5/1596a4d5fcd260564072db3c849693da/image3.jpg" />
            
            </figure><p>That might be the single hardest thing to figure out. Because the big decision that's made right after the meeting, after you heard everything but you wanted to say it to one person and not everybody else. Or the thing that happens serendipitously on the way into a meeting, just because you're talking about your weekends and then you remember something — that is really unfair to the people who are on the team (working remotely).</p><p>And unless you go back to technology like the telepresence person driving around, or each of us having our own drone in the office that follows people around serving as my ability to see — these creepy things — it's really hard to recreate. So it's about changing a cultural norm and getting people to be more thoughtful about how to include people who aren't there, to go out of their way to include them. And that's something that could take years for us to teach ourselves.</p><p><a href="https://cloudflare.tv/event/WqMwzyTzcPX5Xzzn0ZvN3"><i>Watch the full interview</i></a></p>
    <div>
      <h3>On securing a hybrid work environment</h3>
      <a href="#on-securing-a-hybrid-work-environment">
        
      </a>
    </div>
    <p><b>Chris Young</b><b>Former CEO, McAfee</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/267CpcTMHonG0plcnitJLy/d274f319b70a7ea3e24485314e0a662e/image2.jpg" />
            
            </figure><p>We saw a huge rise in phishing attacks that were directly correlated to the move to work from home. Cyber attackers understand that all of a sudden you've got probably millions of workers across different organizations that are not supervised in the same way — new systems, new protocols for how they work. And they preyed upon that very quickly… there's a whole litany of attacks that have been levied against the work from home model.</p><p>It's prudent to make sure that if you're going to have people working from home, that you take some steps to protect the home networking infrastructure because we could find ourselves in a situation where, if we don't pay attention to that over the long run, you start to see an uptick of attackers going after the home networking infrastructure. We always know the attackers will find the path of least resistance. It's like water on a roof: it will find the hole and go right there.</p><p>And I think it means a few things for us in a cybersecurity landscape. I think it's going to continue to shift and put a premium on the identity based architecture. The zero trust model authentication is going to be key. It's really the combination of: can I trust the user and can I trust the device in order to make a decision of do I trust this session? Do I trust this transaction?</p><p><a href="https://cloudflare.tv/event/6d2q2LvmfZ4Uvh7KwyzrZe"><i>Watch the full interview</i></a></p>
    <div>
      <h3>On the opportunity for digital transformation</h3>
      <a href="#on-the-opportunity-for-digital-transformation">
        
      </a>
    </div>
    <p><b>Bret Taylor</b><b>President and Chief Operating Officer at Salesforce</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2iBRalS4NxvSlaC2McsOgI/10d91c1d520315107a7e7f7326c14734/image5.jpg" />
            
            </figure><p>I hear across every industry that people aren't going to come back to the office full time. Maybe they'll come in a couple days a week. But that means our offices are probably going to be a little bit more for on-sites than they are for desks. And I think about: how does that change the shape of our employee engagement? And more importantly, how does it change the shape of our business models?</p><p>I think that the companies who were treating their digital initiatives as something sort of on the side are probably suffering right now. And there's an urgency around these shifts now that is more powerful than ever before.</p><p>I think a lot of these trends will remain. And that’s where the opportunity is for great companies, whether it's technology companies or other companies, who will lean into these changes and transform themselves. I think the ones that do will benefit from it. And I think there's going to be a lot of business model disruption and technology disruption coming out of this.</p><p><a href="https://cloudflare.tv/event/G5aKHYe3z03OysMNyevul"><i>Watch the full interview</i></a></p><p><i>*Quotes have been lightly edited for clarity and length.</i></p><p>Want to watch more interviews and catch up on all of the announcements from Cloudflare during Birthday Week? Visit <a href="https://www.cloudflare.com/birthdayweek/">Cloudflare Birthday Week 2020</a></p> ]]></content:encoded>
            <category><![CDATA[Birthday Week]]></category>
            <category><![CDATA[Cloudflare TV]]></category>
            <guid isPermaLink="false">4rAsBYZXF2nJzgBO8j8dSB</guid>
            <dc:creator>Jason Kincaid</dc:creator>
        </item>
        <item>
            <title><![CDATA[Looking Ahead: Five Opportunities on The Horizon According to Tech Leaders]]></title>
            <link>https://blog.cloudflare.com/looking-ahead-five-opportunities-on-the-horizon-according-to-tech-leaders/</link>
            <pubDate>Tue, 03 Nov 2020 10:26:43 GMT</pubDate>
            <description><![CDATA[ Dozens of top leaders and thinkers from the tech industry and beyond recently joined us for a series of fireside chats commemorating Cloudflare’s 10th birthday. Here are some of the highlights. ]]></description>
            <content:encoded><![CDATA[ <p><i>Dozens of top leaders and thinkers from the tech industry and beyond recently joined us for a series of fireside chats commemorating Cloudflare’s 10th birthday. Over the course of </i><a href="/birthday-week-on-cloudflare-tv-announcing-24-hours-of-live-discussions-on-the-future-of-the-internet/"><i>24 hours of conversation</i></a><i>, these leaders shared their thoughts on everything from entrepreneurship to mental health — and how the Internet will continue to play a vital role.</i></p><p><i>Here are some of the highlights.</i></p>
    <div>
      <h3>On the global opportunity for entrepreneurs</h3>
      <a href="#on-the-global-opportunity-for-entrepreneurs">
        
      </a>
    </div>
    <p><b>Anu Hariharan</b><b>Partner, Y Combinator’s Continuity Fund</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/1STw6aXpTsdOvsP3FFlO4n/3ca4d9c62940818dbf5b0f25ca4c5899/image3.png" />
            
            </figure><p>Fast forwarding ten years from now, I think entrepreneurship is global, and you're already seeing signs of that. 27% of YC startups are headquartered outside the US. And I'm willing to bet that in a decade, at least 50% of YC startups will be headquartered outside the US. And so I think the sheer nature of the Internet democratizing information, more companies being global, like Facebook, Google, Uber — talent is everywhere. I think you will see multi-billion dollar companies coming out of other regions.</p><p>People have this perception that everything is a zero sum game, or that we are already at peak Internet penetration. Absolutely not. The global market cap is ~$85 trillion. Less than 10% is e-commerce. Internet enabled businesses is $8 trillion. So even if you play this out for another twenty years, Internet enabled businesses should be at least $66 trillion. So we have a lot more to go. And I think the zero sum game that investors tend to think of, what we've gotten wrong is — most of these Internet enabled businesses are expanding TAM.</p><p><a href="https://cloudflare.tv/event/70D7ascnvyxM10mdudCfll"><i>Watch the full interview</i></a></p>
    <div>
      <h3>On democratizing and normalizing mental health</h3>
      <a href="#on-democratizing-and-normalizing-mental-health">
        
      </a>
    </div>
    <p><b>Karan Singh</b><b>Co-founder and COO of Ginger</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/8cFxqFrGZypgRFSphRQ3G/f42ddaa190dc5a07fbd6ebf6c05c0c04/image2.png" />
            
            </figure><p>Our vision is a world where mental health is never an obstacle, and that's a never-ending vision. I don't think that will be done in 10 years, but I am hopeful that in 10 years or even well before that, this whole new virtual-first sort of care paradigm can really start to take shape, where you start digitally and then progress to an in-person should you need it.</p><p>And for some people who are more acute, or in specific situations, they absolutely do need to see an in-person provider. But for many people, starting virtual — virtual being the default — feels like a more democratic and equitable experience in the world.</p><p><a href="https://cloudflare.tv/event/6YAUtzP0PJJIUBAm0qN0jA"><i>Watch the full interview</i></a></p>
    <div>
      <h3>On leveling the playing field</h3>
      <a href="#on-leveling-the-playing-field">
        
      </a>
    </div>
    <p><b>Jennifer Hyman,</b><b>CEO and co-founder of Rent the Runway</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3Mm0nyttC9Lu2MzfkMDaOk/b8d05a1518d63fe8e3faf5438ce98a68/image4.png" />
            
            </figure><p>Where I'm optimistic is that I think that in a life post-vaccine, when kids are back in school, when things are a little bit more normal, businesses are no longer going to require their employees to come to work five days a week in the same way and in the same structure that existed in the past. We realize that because of technology, we can work more flexibly, we can work more virtually.</p><p>And I think that that is going to have unlocks for everyone, don't get me wrong, but it'll have huge unlocks for women who are often the ones making the sacrifice to spend more time with the kids, be at home, do all of the house-related leadership, so I think that this will be a great equalizer in many ways.</p><p><a href="https://cloudflare.tv/event/2fIouaxHW4lZ89sE3h6PLF"><i>Watch the full interview</i></a></p>
    <div>
      <h3>On expecting the unexpected</h3>
      <a href="#on-expecting-the-unexpected">
        
      </a>
    </div>
    <p><b>Eric Schmidt</b><b>Former CEO &amp; Executive Chairman, Google</b><b>Co-Founder, Schmidt Futures</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/1Ydw3e0cc4Af3VPvXfoo27/25d0b3845f22f178b6a7aff7b5d195df/image1.jpg" />
            
            </figure><p>It seems to me that the gains in machine learning and the investment that everyone, including Cloudflare, Google, et cetera, is putting in it — are going to yield a whole new set of applications.</p><p>We should expect more of the unexpected because of the level of investment. And so the people who sit there and say, oh, you know, it's Apple and Google and Amazon and Microsoft and so forth, and it's all done. They're missing the narrative. The narrative is that there's a new platform emerging which the big guys and the new guys, the new little guys are going to compete over. And that competition will generally be incredibly helpful. It will produce very significant large companies as they figure out a way to monetize. But more importantly, it'll have an impact on society, both in terms of entertainment, as we saw with TikTok and its predecessors, but also in terms of information and productivity.</p><p><a href="https://cloudflare.tv/event/24ukONvh5qEV02UrSaANHg"><i>Watch the full interview</i></a></p>
    <div>
      <h3>On the future of video conferencing</h3>
      <a href="#on-the-future-of-video-conferencing">
        
      </a>
    </div>
    <p><b>Eric Yuan</b><b>Founder and CEO of Zoom</b></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3ZEkp1eI2HJYhoIrrmQpzZ/1fdcc750c1a48030c74312b60ab03acf/image5.png" />
            
            </figure><p>For now, if we all work from home, from a productivity perspective there's no productive loss. However, social interaction is a problem. Mental health is another problem. The reason why, no matter how good we think it is now — it cannot deliver a better experience than a face-to-face meeting.</p><p>If I didn’t see you for a while, and I wanted to give you a big hug — you cannot feel my intimacy over Zoom, right? And if you are getting a cup of coffee, I can not enjoy the smell, not like when you and I are in a Starbucks.</p><p>I think that technology-wise, in the future with those cutting edge technologies, we should believe that videoconferencing like Zoom can deliver a better experience than a face-to-face meeting. I shake hands with you remotely, you can feel my hand-shaking. And even if you speak a different language, with AI, with real-time language translation — I think those technologies can truly help make sure that online communication is better than face to face meeting. In the next 10 or 15 years, I think we will get there with some technology.</p><p><a href="https://cloudflare.tv/event/1X1beCKdopiVKzGA8MBlno"><i>Watch the full interview</i></a></p><p><i>Quotes have been lightly edited for clarity and length.</i></p> ]]></content:encoded>
            <category><![CDATA[Cloudflare TV]]></category>
            <category><![CDATA[Birthday Week]]></category>
            <guid isPermaLink="false">3mcnmFC2qYtqc34sKVzieo</guid>
            <dc:creator>Jason Kincaid</dc:creator>
        </item>
        <item>
            <title><![CDATA[Birthday Week on Cloudflare TV: 24 Hours of Live Discussions on the Future of the Internet]]></title>
            <link>https://blog.cloudflare.com/birthday-week-on-cloudflare-tv-announcing-24-hours-of-live-discussions-on-the-future-of-the-internet/</link>
            <pubDate>Mon, 28 Sep 2020 17:01:37 GMT</pubDate>
            <description><![CDATA[ This week marks Cloudflare’s 10th birthday, and we’re excited to continue our annual tradition of launching an array of products designed to help give back to the Internet. (Check back here each morning for the latest!) ]]></description>
            <content:encoded><![CDATA[ <p>This week marks Cloudflare’s <a href="/a-letter-from-cloudflares-founders-2020/">10th birthday</a>, and we’re excited to continue our annual tradition of launching an array of products designed to help give back to the Internet. (Check back here each morning for the latest!)</p><p>We also see this milestone as an opportunity to reflect on where the Internet was ten years ago, and where it might be headed over the next decade. So we reached out to some of the people we respect most to see if they’d be interested in joining us for a series of Fireside Chats on Cloudflare TV.</p><p>We’ve been blown away by the response, and are thrilled to announce our lineup of speakers, featuring many of the most celebrated names in tech and beyond. Among the highlights: Apple co-founder <a href="https://cloudflare.tv/event/4Zvur2v6gLs8lg4Zzs7iX7">Steve Wozniak</a>, Zoom CEO <a href="https://cloudflare.tv/event/4NCduV3ORYeA5iQ1bzNgdJ">Eric Yuan</a>, OpenTable CEO Debby Soo, Stripe co-founder and President <a href="https://cloudflare.tv/event/H7W7FUNpvaIRZrQBxxp10">John Collison</a>, Former CEO &amp; Executive Chairman of Google and Co-Founder of Schmidt Futures <a href="https://cloudflare.tv/event/5zPLKlMitL4NPf1XnjLGkh">Eric Schmidt</a>, former McAfee CEO <a href="https://cloudflare.tv/event/6d2q2LvmfZ4Uvh7KwyzrZe">Chris Young</a>, former Seal Team 6 Commander <a href="https://cloudflare.tv/event/1NtL24HeRmRXKdAD7tdtYX">Dave Cooper</a>, Project Include CEO <a href="https://cloudflare.tv/event/4GgxNK2WEOrzaClHNd7LAK">Ellen Pao</a>, and so many more. All told, we have over 24 hours of live discussions scheduled throughout the week.</p><p>To tune in, just head to <a href="https://cloudflare.tv">Cloudflare TV</a> (no registration required). You can view the details for each session by clicking the links below, where you’ll find handy <i>Watch Now</i> buttons to make sure you don’t miss anything. We’ll also be rebroadcasting these talks throughout the week, so they’ll be easily accessible in different timezones.</p><p>A tremendous thank you to everyone on this list for helping us celebrate Cloudflare’s 10th annual Birthday Week!</p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2sjuQeUPtLR0zQJou7qHNl/b1d1e83f4b4ebdbf993e33fdbe2acbde/image_birthday-week-lp_speaker_jay-adelson.jpg" />
            
            </figure>
    <div>
      <h3><b>Jay Adelson</b></h3>
      <a href="#jay-adelson">
        
      </a>
    </div>
    <p><i>Founder of Equinix and Chairman &amp; Co-Founder of Scorbit</i>Aired live on Thursday, October 1, 10:00 AM (PDT) // <a href="https://cloudflare.tv/event/4bL0o9TiIUbVxllej538Xp"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/7nohpc6xVMQpzY7YOQzraS/693a747405ba29429674c9daa8e3544b/image_birthday-week-lp_speaker_shellye-archambeau.jpg" />
            
            </figure>
    <div>
      <h3><b>Shellye Archambeau</b></h3>
      <a href="#shellye-archambeau">
        
      </a>
    </div>
    <p><i>Fortune 500 Board Member and Author &amp; Former CEO of MetricStream</i>Aired live on Thursday, October 1, 6:30 PM (PDT) // <a href="https://cloudflare.tv/event/3XtjsmSpndD7Mv2stXAFzt"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/16STFin21CsDPJF1AR3TgZ/4bd6526092756f66b16e770705ead57c/image_birthday-week-lp_speaker_abhinav-asthana.jpg" />
            
            </figure>
    <div>
      <h3><b>Abhinav Asthana</b></h3>
      <a href="#abhinav-asthana">
        
      </a>
    </div>
    <p><i>Founder &amp; CEO of Postman</i>Aired live on Wednesday, September 30, 3:30 PM (PDT) // <a href="https://cloudflare.tv/event/1uSFpUOmSu4dD6YECk9hQX"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3ocPCehD7gc9plP8GmQxsV/a1c11ee5d36b8d99e850da3350902145/image_birthday-week-lp_speaker_azeem-azhar.jpg" />
            
            </figure>
    <div>
      <h3><b>Azeem Azhar</b></h3>
      <a href="#azeem-azhar">
        
      </a>
    </div>
    <p><i>Founder of Exponential View</i>Aired live on Friday, October 2, 9:00 AM (PDT) // <a href="https://cloudflare.tv/event/1H3AupI4p3qNCOnGyQHTov"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3BAR9PixRdx9DkVNadLHTX/26aae2b76d4159a5ba1b850695700413/image_birthday-week-lp_speaker_john-battelle.jpg" />
            
            </figure>
    <div>
      <h3><b>John Battelle</b></h3>
      <a href="#john-battelle">
        
      </a>
    </div>
    <p><i>Co-Founder &amp; CEO of Recount Media</i>Aired live on Wednesday, September 30, 8:30 AM (PDT) // <a href="https://cloudflare.tv/event/26OwzPkDT29tkaPjjzRliU"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/509AK0yiErxK4nljMZbE8c/7e735f2fd09eea2cf04c37dd5839a66b/christian-beedgen.jpg" />
            
            </figure>
    <div>
      <h3><b>Christian Beedgen</b></h3>
      <a href="#christian-beedgen">
        
      </a>
    </div>
    <p><i>CTO &amp; Co-Founder of SumoLogic</i>Aired live on Thursday, October 1, 7:00 AM (PDT) // <a href="https://cloudflare.tv/event/7nT06O1Cr2G78Q6HbqBhfU"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6yBQTmK4S0SXWoZAbvwtez/273d8784aba13e7d0b2016928a50f070/image-4.png" />
            
            </figure>
    <div>
      <h3><b>Gleb Budman</b></h3>
      <a href="#gleb-budman">
        
      </a>
    </div>
    <p><i>CEO &amp; Co-Founder of Backblaze</i>Aired live on Wednesday, September 30, 2:00 PM (PDT) // <a href="https://cloudflare.tv/event/5rg9TdKP5YByJATiJ76xjh"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/1r1WMA0T257VnhEJFVfnMg/38e46836099e93c8ff8856e680ee9b02/hadenbrown.png" />
            
            </figure>
    <div>
      <h3><b>Hayden Brown</b></h3>
      <a href="#hayden-brown">
        
      </a>
    </div>
    <p><i>CEO of Upwork</i>Aired live on Wednesday, September 30, 5:00pm (PDT) // <a href="https://cloudflare.tv/event/3pVHlBdCJKXakeTRP8xrtC"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/1jKj9G94zz6wyZ4Kx72ANy/00feaaf8422ec7a63979830c38a83e92/image-5.png" />
            
            </figure>
    <div>
      <h3><b>Stewart Butterfield</b></h3>
      <a href="#stewart-butterfield">
        
      </a>
    </div>
    <p><i>CEO of Slack</i>Aired live on Thursday, October 1, 8:30 AM (PDT) // <a href="https://cloudflare.tv/event/1OrmRJTiMJYYcCV2F2VMHo"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/PNGlE4HY1edFWuy2EYJVM/e150481404e0c3d6734964e4d58ec6d5/image-6.png" />
            
            </figure>
    <div>
      <h3><b>John P. Carlin</b></h3>
      <a href="#john-p-carlin">
        
      </a>
    </div>
    <p><i>Former Assistant Attorney General for the US Department of Justice’s National Security Division and current Chair of Morrison &amp; Foerster’s Global Risk + Crisis Management practice</i>Aired live on Tuesday, September 29, 12:00 PM (PDT) // <a href="https://cloudflare.tv/event/2vPM9Dr9CaQkup8rv3eRXz"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6HUHcM4hWt2dNQI5ydNCd6/24d6257adc7b420c1a06ff38879d7b2d/image-7.png" />
            
            </figure>
    <div>
      <h3><b>John Collison</b></h3>
      <a href="#john-collison">
        
      </a>
    </div>
    <p><i>Co-Founder &amp; President of Stripe</i>Aired live on Friday, October 2, 3:00 PM (PDT) // <a href="https://cloudflare.tv/event/H7W7FUNpvaIRZrQBxxp10"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2NZBCwpEZYj4GsSj3ySBqP/67594c42ad1532bbfa45a53877adcc37/image-8.png" />
            
            </figure>
    <div>
      <h3></h3>
      <a href="#">
        
      </a>
    </div>
    <p><b>Dave Cooper</b></p><p><i>Former Seal Team 6 Commander</i>Aired live on Tuesday, September 29, 10:30 AM (PDT) // <a href="https://cloudflare.tv/event/1NtL24HeRmRXKdAD7tdtYX"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/47EBT9uZ739pgLP6HAHnQg/32d9218a15ed97bfcb11945890cc8ed1/image-9.png" />
            
            </figure>
    <div>
      <h3><b>Scott Galloway</b></h3>
      <a href="#scott-galloway">
        
      </a>
    </div>
    <p><i>Founder &amp; Chair of L2</i>Aired live on Wednesday September 30th, 12PM (PDT) // <a href="https://cloudflare.tv/event/7zILg48BCwcZRGzY2Vwaai"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3CJodOamWMs9Wn0XRhEBGV/d2861c06ebf8382f3315233d8dab186f/image-10.png" />
            
            </figure>
    <div>
      <h3><b>Kara Goldin</b></h3>
      <a href="#kara-goldin">
        
      </a>
    </div>
    <p><i>Founder &amp; CEO of Hint Inc.</i>Aired live on Thursday, October 1, 12:30 PM (PDT) // <a href="https://cloudflare.tv/event/5ZF20mtVF1vV33fETemqUm"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5wnTSoELcZmcC9hUfHDlB9/745e5902b50624641c63656b917d00ab/david-gosset.png" />
            
            </figure>
    <div>
      <h3><b>David Gosset</b></h3>
      <a href="#david-gosset">
        
      </a>
    </div>
    <p><i>Founder of Europe China Forum</i>Aired live on Monday September 28th, 5:00PM (PDT) // <a href="https://cloudflare.tv/event/3npd5JOxNcousc590ACmXd"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/22Ez2SfkqYBsEVfqdyU1WH/404b8d27c49e53b0cad86992fdfe6a12/image-11.png" />
            
            </figure>
    <div>
      <h3><b>Jon Green</b></h3>
      <a href="#jon-green">
        
      </a>
    </div>
    <p><i>VP and Chief Technologist for Security at Aruba, a Hewlett Packard Enterprise company</i>Aired live on Wednesday, September 30th, 9:00AM (PDT) // <a href="https://cloudflare.tv/event/6uJ35gGq8xrakixaIM8dYe"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5ESYJ7La69kRXsJG51SLaW/a77262305189b1d40efecc3c36c0e54f/image-12.png" />
            
            </figure>
    <div>
      <h3><b>Arvind Gupta</b></h3>
      <a href="#arvind-gupta">
        
      </a>
    </div>
    <p><i>Former CEO of MyGov, Govt. of India and current Head &amp; Co-Founder of Digital India Foundation</i>Aired live on Monday, September 28, 8:00 PM (PDT) // <a href="https://cloudflare.tv/event/1KcXyj1DMn8SapCoMmnrwD"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/68lV4tgfUiEhFn6y33rrjR/8b948e71745409be9a1c4d09d68f5f56/image-13.png" />
            
            </figure>
    <div>
      <h3><b>Anu Hariharan</b></h3>
      <a href="#anu-hariharan">
        
      </a>
    </div>
    <p><i>Partner at Y Combinator</i>Aired live on Monday, September 28, 1:00 PM (PDT) // <a href="https://cloudflare.tv/event/70D7ascnvyxM10mdudCfll"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6azgGKvvyZ4YwAXEvoreqU/3ec8c94cd47fb4873321d8123b6ebbe8/image-14.png" />
            
            </figure>
    <div>
      <h3><b>Brett Hautop</b></h3>
      <a href="#brett-hautop">
        
      </a>
    </div>
    <p><i>VP of Global Design + Build at LinkedIn</i>Aired live on Friday, October 2, 11:00 AM (PDT) // <a href="https://cloudflare.tv/event/WqMwzyTzcPX5Xzzn0ZvN3"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6JEfm8ETys6KJr1idpmBDD/5f6045f693ce8b71a6e62310abb58d53/hersman-headshot.jpg" />
            
            </figure>
    <div>
      <h3><b>Erik Hersman</b></h3>
      <a href="#erik-hersman">
        
      </a>
    </div>
    <p><i>CEO of BRCK</i>Aired live on Friday, October 2, 4:30am (PDT) // <a href="https://cloudflare.tv/event/2Zm5Uxe9q17xnywn2fnnIR"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6yoyIGTcskS8liPYBw9Y2w/b5e87032ba6cdb97e40e988b6676841b/image-16.png" />
            
            </figure>
    <div>
      <h3><b>Jennifer Hyman</b></h3>
      <a href="#jennifer-hyman">
        
      </a>
    </div>
    <p><i>CEO &amp; Co-Founder of Rent the Runway</i>Aired live on Wednesday, September 30, 1:00 PM (PDT) // <a href="https://cloudflare.tv/event/2fIouaxHW4lZ89sE3h6PLF"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2bPT4i56qySt84qKBREwWu/ecdecd5bbef1b29a9bfa2b0dc2f0623b/paul-judge.jpg" />
            
            </figure>
    <div>
      <h3><b>Paul Judge</b></h3>
      <a href="#paul-judge">
        
      </a>
    </div>
    <p><i>Co-Founder &amp; Partner of TechSquare Labs and Co-Founder &amp; Executive Chairman of Pindrop</i>Aired live on Wednesday, September 30, 8:00 AM (PDT) // <a href="https://cloudflare.tv/event/2YVLjgoCuzC8qy3uk8LCCw"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2V0KiLFgszXjyf23mz0gEz/f130931b667dcc8adeea0a55cd50b65b/david-kaye.jpg" />
            
            </figure>
    <div>
      <h3><b>David Kaye</b></h3>
      <a href="#david-kaye">
        
      </a>
    </div>
    <p><i>Former UN Special Rapporteur</i>Aired live on Thursday, October 1,  8:00 AM (PDT) // <a href="https://cloudflare.tv/event/6T70eBJ7Zee3Q5TLVWKQQk"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/7tipGQSMdAOJq7L6NnaUyY/96865b1d3cc75971bfb7f01836d4210e/image-18.png" />
            
            </figure>
    <div>
      <h3><b>Pam Kostka</b></h3>
      <a href="#pam-kostka">
        
      </a>
    </div>
    <p><i>CEO of All Raise</i>Aired live on Thursday, October 1, 1:30 PM (PDT) // <a href="https://cloudflare.tv/event/wXl2Paf6lUNFVkcz3uO8w"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5dxzluAGNq3OHCczFxYKpM/464687a39c2effa2ae715df32f2653db/image-19.png" />
            
            </figure>
    <div>
      <h3><b>Raffi Krikorian</b></h3>
      <a href="#raffi-krikorian">
        
      </a>
    </div>
    <p><i>Managing Director at Emerson Collective and former Engineering Executive at Twitter &amp; Uber</i>Aired live on Friday, October 2, 1:30 PM (PDT) // <a href="https://cloudflare.tv/event/5ZVEVtZlvAlQi4O2iJwsUb"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3QhgLpJ50UBXxWTDDXtM65/0f83fecd7f67b9e99a7cce2367f3b7c8/image-20.png" />
            
            </figure>
    <div>
      <h3><b>Albert Lee</b></h3>
      <a href="#albert-lee">
        
      </a>
    </div>
    <p><i>Co-Founder of MyFitnessPal</i>Aired live on Monday, September 28, 12:00 PM (PDT) // <a href="https://cloudflare.tv/event/xQ2wyun9rreTdUfRV49Ci"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5xDhuWLSw0pkHdgSk3Vx0w/1a6bda80f133d1944478ce980c508fb7/image-21.png" />
            
            </figure>
    <div>
      <h3><b>Aaron Levie</b></h3>
      <a href="#aaron-levie">
        
      </a>
    </div>
    <p><i>CEO &amp; Co-Founder of Box</i>Aired live on Thursday, October 1, 4:30 PM (PDT) // <a href="https://cloudflare.tv/event/ZeAVLNxMKHIr8WdoWdVC4"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/3chds7INxXinlAEK4HGhE1/e96874bf1aa4ec818a49af7802008e5a/alex-m-1.jpg" />
            
            </figure>
    <div>
      <h3><b>Alexander Macgillivray</b></h3>
      <a href="#alexander-macgillivray">
        
      </a>
    </div>
    <p><i>Co-Founder &amp; GC of Alloy and former Deputy CTO of US Government</i>Aired live on Thursday, October 1, 11:30 AM (PDT) // <a href="https://cloudflare.tv/event/6vVavLCt3evjYwe9QApiBH"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/19hDHGeJ4jXtwx89qWskxI/a788052d1148fd8af6d9c76ca67d8c95/image-22.png" />
            
            </figure>
    <div>
      <h3><b>Ellen Pao</b></h3>
      <a href="#ellen-pao">
        
      </a>
    </div>
    <p><i>Former CEO of Reddit and current CEO of Project Include</i>Aired live on Tuesday, September 29, 2:00 PM (PDT) // <i>Coming soon</i></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5yPDPPTJ3BSievU3PPGYc2/a6d86e2b57ab76ca0753167f4662c077/image-23.png" />
            
            </figure>
    <div>
      <h3><b>Keith Rabois</b></h3>
      <a href="#keith-rabois">
        
      </a>
    </div>
    <p><i>General Partner at Founders Fund and former COO of Square</i>Aired live on Wednesday, September 30, 3:00 PM (PDT) // <a href="https://cloudflare.tv/event/3QxvJQ3xUHSo2WLUHEMta8"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/26fTYmUSOGvMuw0kj9aTmQ/fca5017a46fc78ef506e151aff63bc96/image-24.png" />
            
            </figure>
    <div>
      <h3><b>Eric Schmidt</b></h3>
      <a href="#eric-schmidt">
        
      </a>
    </div>
    <p><i>Former CEO of Google and current Technical Advisor at Alphabet, Inc.</i>Aired live on Monday, September 28, 12:30 PM (PDT) // <a href="https://cloudflare.tv/event/5zPLKlMitL4NPf1XnjLGkh"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/4p9TK6AqXWUGNkbeeUxjmL/8ab2e5eae75a8f06ad2cbebcf2a503bb/image-25.png" />
            
            </figure>
    <div>
      <h3><b>Pradeep Sindhu</b></h3>
      <a href="#pradeep-sindhu">
        
      </a>
    </div>
    <p>Founder &amp; Chief Scientist at Juniper Networks, and Founder &amp; CEO at FungibleAired live on Wednesday, September 30, 11:30 AM (PDT) // <a href="https://cloudflare.tv/event/3ve70zK8JI0kUGh7luOsV"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/78u1cI9mIOjU8gIjF2kVVD/84f4ef6bcfe0c2fa5a80626af6daa9ec/image-26.png" />
            
            </figure>
    <div>
      <h3><b>Karan Singh</b></h3>
      <a href="#karan-singh">
        
      </a>
    </div>
    <p><i>Co-Founder &amp; Chief Operating Officer of Ginger</i>Aired live on Monday, September 28, 3:00 PM (PDT) // <a href="https://cloudflare.tv/event/6YAUtzP0PJJIUBAm0qN0jA"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2CF8j561e4EJ0y0Umb0qVl/b6a8d92f0149639956cfc25592071d0b/image-27.png" />
            
            </figure>
    <div>
      <h3><b>Debby Soo</b></h3>
      <a href="#debby-soo">
        
      </a>
    </div>
    <p><i>CEO of OpenTable and former Chief Commercial Officer of KAYAK</i>Aired live on Wednesday September 30, 12:30 PT (PDT) // <a href="https://cloudflare.tv/event/681NJwXKwQ16y3f4s8ip5v"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5Gf62BbfgyNjj4oRfozgSk/a5e0c5a57379b725bf74f62cd1c25da6/image-28.png" />
            
            </figure>
    <div>
      <h3><b>Dan Springer</b></h3>
      <a href="#dan-springer">
        
      </a>
    </div>
    <p><i>CEO of DocuSign</i>Aired live on Thursday, October 1, 1:00 PM (PDT) // <a href="https://cloudflare.tv/event/4UMScXMjgWdItH3bQgspwT"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5wLYD0C8S27fC08VpyVNo4/b8016fb7d62a89b5d6473163c795ed18/image-37.png" />
            
            </figure>
    <div>
      <h3><b>Bonita Stewart</b></h3>
      <a href="#bonita-stewart">
        
      </a>
    </div>
    <p><i>Vice President, Global Partnerships &amp; Americas Partnerships Solutions at Google</i>Aired live on Friday, October 2, 2:00 PM (PDT) // <a href="https://cloudflare.tv/event/2i55cjkjlDW3a9q5zxMixC"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2wwdgQ98Pre44CZqmA5HkK/9d04dc6a601ef4b9cc0af618de0d437f/Hemant-Taneja.png" />
            
            </figure>
    <div>
      <h3><b>Hemant Taneja</b></h3>
      <a href="#hemant-taneja">
        
      </a>
    </div>
    <p><i>Managing Director at General Catalyst</i>Aired live on Friday, October 2nd, 4:00PM (PDT) <b>// </b><a href="https://cloudflare.tv/event/38qTnHtyHGQPJSz3oHl6cp"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/4KPegwvBKS1706MUQrA3s1/3b4225e0ab9f415f45664f196e1616a1/image-29.png" />
            
            </figure>
    <div>
      <h3><b>Bret Taylor</b></h3>
      <a href="#bret-taylor">
        
      </a>
    </div>
    <p><i>President &amp; Chief Operating Officer of Salesforce</i>Aired live on Friday, October 2, 12:00 PM (PDT) // <a href="https://cloudflare.tv/event/G5aKHYe3z03OysMNyevul"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/32caXuXkPqEesjWM2kCrNU/91482b9ed16886785d63e9437b751b21/image-30.png" />
            
            </figure>
    <div>
      <h3><b>Robert Thomson</b></h3>
      <a href="#robert-thomson">
        
      </a>
    </div>
    <p><i>Chief Executive at News Corp and former Editor-in-Chief at The Wall Street Journal &amp; Dow Jones</i>Aired live on Thursday, October 1, 12:00 PM (PDT) // <a href="https://cloudflare.tv/event/7yk9qRrqvTq53SBNq2X4FX"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/4ASeCbfJZEedYrJH1sBzms/4303f3730be314954c880829d2f40bd0/image-31.png" />
            
            </figure>
    <div>
      <h3><b>Robin Thurston</b></h3>
      <a href="#robin-thurston">
        
      </a>
    </div>
    <p><i>Founder &amp; CEO of Pocket Outdoor Media and former EVP, Chief Digital Officer of Under Armour</i>Aired live on Monday, September 28, 12:00 PM (PDT) //<a href="https://cloudflare.tv/event/xQ2wyun9rreTdUfRV49Ci"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/2hBrktSczk98wNlHc3tzW3/4e2678b69cc98c7bbe5294849688feec/selina-tobaccowala.jpg" />
            
            </figure>
    <div>
      <h3><b>Selina Tobaccowala</b></h3>
      <a href="#selina-tobaccowala">
        
      </a>
    </div>
    <p><i>Chief Digital Officer at Openfit, Co-Founder of Gixo, and former President &amp; CTO of SurveyMonkey</i>Aired live on Thursday, October 1, 9:00 AM (PDT) // <a href="https://cloudflare.tv/event/4x8tWNkjLQgp8hhahSxe8y"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/P828e7mbWHDgi14BujX1i/d2630d934a405026ca681a6bcf764757/ben-wizner.jpg" />
            
            </figure>
    <div>
      <h3><b>Ben Wizner</b></h3>
      <a href="#ben-wizner">
        
      </a>
    </div>
    <p><i>Director of ACLU's Speech, Privacy, &amp; Technology Project</i>Aired live on Thursday, October 1, 10:30 AM (PDT) // <a href="https://cloudflare.tv/event/iu711PGz15du5u1UWOwyf"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/4u5gLhO8LwqljQDsK7dYXp/56ec6fc0ee26828e6dcb67cb86bb7a73/image-32.png" />
            
            </figure>
    <div>
      <h3><b>Michael Wolf</b></h3>
      <a href="#michael-wolf">
        
      </a>
    </div>
    <p><i>Founder &amp; CEO of Activate and former President and Chief Operating Officer of MTV Networks</i>Aired live on Tuesday, September 29, 3:30 PM (PDT) // <a href="https://cloudflare.tv/event/78ECcw8EztjeCKUQdbGTmF"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/8mFdIrQraMCUgxSUsQmBY/5be696f226c29508bb83a3b143a822fb/josh-wolfe-headshot.jpg" />
            
            </figure>
    <div>
      <h3><b>Josh Wolfe</b></h3>
      <a href="#josh-wolfe">
        
      </a>
    </div>
    <p><i>Co-Founder and Managing Partner of Lux Capital</i>Aired live on Friday, October 2, 1:00PM (PDT) // <a href="https://cloudflare.tv/event/29HtslFDsSxv75VkLAhCVU"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/5fc5Cvodw5FKPMAYQ5zvM1/ae87d545852111f382ed8ce841e7a932/image-33.png" />
            
            </figure>
    <div>
      <h3><b>Steve Wozniak</b></h3>
      <a href="#steve-wozniak">
        
      </a>
    </div>
    <p><i>Co-Founder of Apple, Inc.</i>Aired live on Wednesday, September 30, 10:00 AM (PDT) // <a href="https://cloudflare.tv/event/4Zvur2v6gLs8lg4Zzs7iX7"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/6EZYzdMHFORUGhyzKUnefZ/daca29fd1156faeff132415064131787/image-34.png" />
            
            </figure>
    <div>
      <h3><b>Chris Young</b></h3>
      <a href="#chris-young">
        
      </a>
    </div>
    <p><i>Former CEO of McAfee</i>Aired live on Thursday, October 1, 11:00 AM (PDT) // <a href="https://cloudflare.tv/event/6d2q2LvmfZ4Uvh7KwyzrZe"><b>Watch Now</b></a></p>
            <figure>
            
            <img src="https://cf-assets.www.cloudflare.com/zkvhlag99gkb/1nR5FQejVxlhM3SPIKFIsy/1a6bb050d5ce6370b210aad1ebad9c36/image-35.png" />
            
            </figure>
    <div>
      <h3><b>Eric Yuan</b></h3>
      <a href="#eric-yuan">
        
      </a>
    </div>
    <p><i>Founder &amp; Chief Executive Officer of Zoom</i>Aired live on Monday, September 28, 3:30 PM (PDT) // <a href="https://cloudflare.tv/event/4NCduV3ORYeA5iQ1bzNgdJ"><b>Watch Now</b></a></p> ]]></content:encoded>
            <category><![CDATA[Birthday Week]]></category>
            <category><![CDATA[Cloudflare TV]]></category>
            <guid isPermaLink="false">1PRFpW5Iqsy9UdBwsE8RYe</guid>
            <dc:creator>Jason Kincaid</dc:creator>
        </item>
    </channel>
</rss>