<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>Nick Sweeney</title>
	<link>https://nick-sweeney.com</link>
	<description>Nick Sweeney</description>
	<pubDate>Sun, 22 Mar 2026 22:36:39 +0000</pubDate>
	<generator>https://nick-sweeney.com</generator>
	<language>en</language>
	
		
	<item>
		<title>Homepage</title>
				
		<link>https://nick-sweeney.com/Homepage</link>

		<pubDate>Thu, 02 Mar 2023 17:33:46 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/Homepage</guid>

		<description>
(function() {

  /* ---- VIMEO STAFF PICK BADGE ---- */
  var staffPickBadge = "https://freight.cargo.site/t/original/i/85467576c713b97c655b9f8d9068b9d6c4c0e63f64c1aa371d54aea230b6bcc1/Vimeo-Staff-Pick-Badge.png";


  /* ---- LOGO MAP ----
     Maps each project's page slug to an array of logo objects.
     Heights scaled ~135% for visibility.

     Special: Netflix uses 'noFilter: true' to keep its red color.
     All other logos get CSS filter brightness(0) invert(1) for white.
  */
  var logoMap = {
    'Noah-Kahan-Out-of-Body': [
      {
        /* SXSW 2026 24 Beats Per Second Audience Award Winner laurel.
           Upload the transparent PNG to Cargo media library,
           then paste the freight.cargo.site URL below. */
        type: 'sxsw-laurel',
        src: 'https://freight.cargo.site/t/original/i/137570867c4ed6c587e902940e4b7fe83c3f668aee291a2c4a8f33cee2001fee/24-Beats-Per-Second-Audience-Award-Winner_White.png',
        alt: 'SXSW 2026 Winner',
        height: 50
      },
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/0/08/Netflix_2015_logo.svg',
        alt: 'Netflix',
        height: 20,
        noFilter: true
      }
    ],
    'SANTA-CAMP': [
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/b/b3/HBO_Max_%282025%29.svg',
        alt: 'HBO Max',
        height: 33
      }
    ],
    'AKA-JANE-ROE': [
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/3/33/FX_Networks_logo.svg',
        alt: 'FX',
        height: 30
      },
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/0/03/Hulu_logo_%282014%29.svg',
        alt: 'Hulu',
        height: 20
      }
    ],
    'My-Transgender-Summer-Camp': [
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/9/9a/Channel_4_2022.svg',
        alt: 'Channel 4',
        height: 33
      },
      {
        type: 'text',
        text: 'TLC',
        alt: 'TLC'
      }
    ],
    'The-Sex-Robots-are-Coming': [
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/9/9a/Channel_4_2022.svg',
        alt: 'Channel 4',
        height: 33
      }
    ],
    'My-Transgender-Kid': [
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/9/9a/Channel_4_2022.svg',
        alt: 'Channel 4',
        height: 33
      }
    ],
    'Secrets-of-the-Living-Dolls': [
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/9/9a/Channel_4_2022.svg',
        alt: 'Channel 4',
        height: 33
      }
    ],
    'I-Hate-Perfume': [
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/e/ee/W_magazine_logo.svg',
        alt: 'W Magazine',
        height: 30
      },
      {
        type: 'vimeo-staff-pick',
        src: staffPickBadge,
        alt: 'Vimeo Staff Pick',
        height: 40,
        noFilter: true
      }
    ],
    'Girls-to-Men': [
      {
        src: 'https://upload.wikimedia.org/wikipedia/commons/9/9a/Channel_4_2022.svg',
        alt: 'Channel 4',
        height: 33
      }
    ]
  };


  function createOverlays() {
    var thumbnails = document.querySelectorAll('.thumbnail');

    thumbnails.forEach(function(thumb) {
      // Skip if already processed
      if (thumb.querySelector('.ns-vignette')) return;

      var thumbImage = thumb.querySelector('.thumb_image');
      if (!thumbImage) return;

      // Ensure positioning context
      thumbImage.style.position = 'relative';

      // 1. Add the dual-corner vignette to EVERY thumbnail
      var vignette = document.createElement('div');
      vignette.className = 'ns-vignette';
      thumbImage.appendChild(vignette);

      // 2. Add logos only to mapped projects
      var link = thumb.querySelector('a.image-link');
      if (!link) return;

      var href = link.getAttribute('href');
      if (!href &#124;&#124; !logoMap[href]) return;

      var logos = logoMap[href];

      // Create the logo overlay container
      var overlay = document.createElement('div');
      overlay.className = 'ns-logo-overlay';

      logos.forEach(function(logo) {
        if (logo.type === 'text') {
          // Text-based logo (for TLC etc)
          var span = document.createElement('span');
          span.className = 'ns-text-logo';
          span.textContent = logo.text;
          span.setAttribute('aria-label', logo.alt);
          overlay.appendChild(span);

        } else if (logo.type === 'sxsw-laurel') {
          // SXSW laurel: transparent PNG, screen blend for extra safety
          var img = document.createElement('img');
          img.className = 'ns-logo-img ns-sxsw';
          img.src = logo.src;
          img.alt = logo.alt;
          img.style.height = (logo.height &#124;&#124; 50) + 'px';
          img.loading = 'lazy';
          overlay.appendChild(img);

        } else if (logo.type === 'vimeo-staff-pick') {
          // Round Vimeo Staff Pick badge
          var img = document.createElement('img');
          img.className = logo.noFilter ? 'ns-logo-img ns-badge-round ns-no-filter' : 'ns-logo-img ns-badge-round';
          img.src = logo.src;
          img.alt = logo.alt;
          img.style.height = (logo.height &#124;&#124; 40) + 'px';
          img.style.width = (logo.height &#124;&#124; 40) + 'px';
          img.loading = 'lazy';
          overlay.appendChild(img);

        } else {
          // Image-based logo
          var img = document.createElement('img');
          img.className = 'ns-logo-img';
          // Netflix keeps its red color â skip the white filter
          if (logo.noFilter) {
            img.className = 'ns-logo-img ns-no-filter';
          }
          img.src = logo.src;
          img.alt = logo.alt;
          img.style.height = (logo.height &#124;&#124; 30) + 'px';
          img.loading = 'lazy';
          overlay.appendChild(img);
        }
      });

      thumbImage.appendChild(overlay);
    });
  }


  // Poll until thumbnails are rendered by Cargo, then apply overlays
  function waitForThumbnails() {
    var thumbs = document.querySelectorAll('.thumbnail .thumb_image');
    if (thumbs.length &#62; 0) {
      createOverlays();
    } else {
      setTimeout(waitForThumbnails, 200);
    }
  }

  // Also watch for DOM changes (Cargo dynamic loading)
  var observer = new MutationObserver(function() {
    var unprocessed = document.querySelectorAll('.thumbnail .thumb_image:not(:has(.ns-vignette))');
    if (unprocessed.length &#62; 0) createOverlays();
  });

  if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', function() {
      waitForThumbnails();
      observer.observe(document.body, {childList: true, subtree: true});
    });
  } else {
    waitForThumbnails();
    observer.observe(document.body, {childList: true, subtree: true});
  }

  // Also re-run if Cargo loads content dynamically (PJAX/history navigation)
  window.addEventListener('popstate', function() {
    setTimeout(createOverlays, 500);
  });


  /* ----- HOVER GIF OVERLAYS ----- */
  var gifMap = {
    '30634980': 'https://freight.cargo.site/t/original/i/46fa71bfa201fad1b3310a21ccaac12826279537e2b89bb71702af74e01c9e16/tome_hover.gif',
    '30634982': 'https://freight.cargo.site/t/original/i/78905439618f13f54c30549174a6035599cb19a62f74308ad5529b5622969aa8/i_hate_perfume_hover.gif',
    '30634983': 'https://freight.cargo.site/t/original/i/e5267f39f29c24e0bc537e654111e45fde66e707fe8e097c99252c3abd7dd974/my_trans_kid_hover.gif',
    '30634979': 'https://freight.cargo.site/t/original/i/681cc538aefec091cf89c7fc0137df4ddb2f20179d7a9b2e4cf1e5278d4a5539/girls_to_men_hover.gif',
    '30634977': 'https://freight.cargo.site/t/original/i/84e3afeff9f4dc57d566b578098a6a26533137e079e2132a02695386465d1076/my_trans_summer_camp_hover.gif',
    '30634976': 'https://freight.cargo.site/w/450/q/94/i/ffbe275ecca5e4658b580254f3166d37ca6b285adca03e6972bf1b6578472c24/AKA-JANE-ROE-2020_2.gif',
    '30634978': 'https://freight.cargo.site/t/original/i/fd1618c4fe8e6aebfc9b3f96055a5eb380721c0733d691dabaa6834a2fdb88e5/the_sex_robots_are_coming-Original_2.gif',
    '30634981': 'https://freight.cargo.site/t/original/i/e902f94dffa74be1e4a57058c4e83660156131017917182199ea09fe821ef886/t-1.gif',
    '30634974': 'https://freight.cargo.site/w/420/q/94/i/45b6b32f797292b5a966d423659f08fecdea4ea9beb666cbbfc48a0129824234/SANTA-CAMP-FINAL-VIEWING-LINK_1.gif'
  };

  /* Inject hover CSS inline to avoid caching issues */
  var hoverStyle = document.createElement('style');
  hoverStyle.id = 'ns-hover-css';
  hoverStyle.textContent = '.ns-gif-overlay { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity 0.3s ease; z-index:2; pointer-events:none; } .thumb_image:hover .ns-gif-overlay { opacity:1; } .thumbnail:has(.ns-gif-overlay) .thumb_image:hover img:first-child { transform:scale(1) !important; }';
  if (!document.getElementById('ns-hover-css')) document.head.appendChild(hoverStyle);

  function injectHoverGifs() {
    Object.keys(gifMap).forEach(function(id) {
      var thumb = document.querySelector('.thumbnail[data-id="' + id + '"] .thumb_image');
      if (thumb &#38;&#38; !thumb.querySelector('.ns-gif-overlay')) {
        var img = document.createElement('img');
        img.className = 'ns-gif-overlay';
        img.src = gifMap[id];
        img.loading = 'lazy';
        thumb.style.position = 'relative';
        thumb.style.overflow = 'hidden';
        thumb.appendChild(img);
      }
    });
  }

  // Inject hover GIFs after overlays are created
  setTimeout(injectHoverGifs, 600);
  window.addEventListener('popstate', function() {
    setTimeout(injectHoverGifs, 600);
  });



  

})();
</description>
		
	</item>
		
		
	<item>
		<title>Noah Kahan: Out of Body</title>
				
		<link>https://nick-sweeney.com/Noah-Kahan-Out-of-Body</link>

		<pubDate>Sun, 22 Mar 2026 22:36:39 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/Noah-Kahan-Out-of-Body</guid>

		<description>


	Noah Kahan: Out of Body, finds Kahan at a crossroads in the wake of the breakout success of Stick Season. After a whirlwind year of sold-out tours and unprecedented acclaim, he returns to his Vermont roots and family. Buoyed by his uncanny wit, he searches for a sense of home and creative inspiration as he confronts the deeply personal struggles that have left him out of sync with himself.
	WINNER, SXSW 2026 Audience Award

"Remarkably revealing" - Rolling Stone"Funny, engaging, and thoughtful" - Decider


	


"Incredibly poignant... the rare musician doc that isn't a tool for self-aggrandizement" - Billboard
"Beautiful and revealing" - Variety



&#60;img width="1186" height="1868" width_o="1186" height_o="1868" data-src="https://freight.cargo.site/t/original/i/1aa082b980ff31deffc08bdea6b70df00f1381e0ee253a44305cbca5277ff162/Screenshot-2026-03-28-at-7.44.38PM.png" data-mid="246601822" border="0"  src="https://freight.cargo.site/w/1000/i/1aa082b980ff31deffc08bdea6b70df00f1381e0ee253a44305cbca5277ff162/Screenshot-2026-03-28-at-7.44.38PM.png" /&#62;
&#60;img width="1334" height="1904" width_o="1334" height_o="1904" data-src="https://freight.cargo.site/t/original/i/92b3b40154e0be455081b15220d355d592a85a2e15458e51bccc5c11a957f994/Screenshot-2026-03-17-at-4.04.54PM.png" data-mid="246600888" border="0"  src="https://freight.cargo.site/w/1000/i/92b3b40154e0be455081b15220d355d592a85a2e15458e51bccc5c11a957f994/Screenshot-2026-03-17-at-4.04.54PM.png" /&#62;
&#60;img width="1200" height="1500" width_o="1200" height_o="1500" data-src="https://freight.cargo.site/t/original/i/82c69bdb3df05a4a659b6d258d559b788abd962c4c540d6df2fb4396cf8be431/AAAAQWHbJMTeDMxxd02Uv6sIt8ZjkG3JFxLvc-6XKmhBDGAnio1GiG7XI7_lnifkZcrzWnCCIPwvy3P9vWwR_FotohrNfrYHAVzbg8bQ5nNpHP7aBlKZoSmSE8p7Fe0_NlGapGs_AGPAhNnyNRonPhmUgWy9.jpg" data-mid="246348753" border="0"  src="https://freight.cargo.site/w/1000/i/82c69bdb3df05a4a659b6d258d559b788abd962c4c540d6df2fb4396cf8be431/AAAAQWHbJMTeDMxxd02Uv6sIt8ZjkG3JFxLvc-6XKmhBDGAnio1GiG7XI7_lnifkZcrzWnCCIPwvy3P9vWwR_FotohrNfrYHAVzbg8bQ5nNpHP7aBlKZoSmSE8p7Fe0_NlGapGs_AGPAhNnyNRonPhmUgWy9.jpg" /&#62;
&#60;img width="1260" height="1534" width_o="1260" height_o="1534" data-src="https://freight.cargo.site/t/original/i/b117dee4fe3ea42794ede1fb65537615fb8a0497c271803f08fe21c3563baf5d/new-yorker-tweet-embed.png" data-mid="248143484" border="0"  src="https://freight.cargo.site/w/1000/i/b117dee4fe3ea42794ede1fb65537615fb8a0497c271803f08fe21c3563baf5d/new-yorker-tweet-embed.png" /&#62;
&#60;img width="4394" height="2460" width_o="4394" height_o="2460" data-src="https://freight.cargo.site/t/original/i/0bcb5bb40635ed9097c19d62a7275e58cc683aa9d4aa02b1b61d242a0f10ef63/Screenshot-2026-05-11-at-1.05.45PM.png" data-mid="248148969" border="0"  src="https://freight.cargo.site/w/1000/i/0bcb5bb40635ed9097c19d62a7275e58cc683aa9d4aa02b1b61d242a0f10ef63/Screenshot-2026-05-11-at-1.05.45PM.png" /&#62;
&#60;img width="1566" height="1094" width_o="1566" height_o="1094" data-src="https://freight.cargo.site/t/original/i/24173d2b24d605d453fb8c9954140c5f8b3eb51131111227ee8f6730baa0cb8e/Screenshot-2026-03-28-at-7.45.09PM.png" data-mid="246601821" border="0"  src="https://freight.cargo.site/w/1000/i/24173d2b24d605d453fb8c9954140c5f8b3eb51131111227ee8f6730baa0cb8e/Screenshot-2026-03-28-at-7.45.09PM.png" /&#62;
&#60;img width="1200" height="1140" width_o="1200" height_o="1140" data-src="https://freight.cargo.site/t/original/i/94d12593c80281a3a7ce9d35b2c7a5311fea99e1a8ae2081d87e254457285414/collider.png" data-mid="246652579" border="0"  src="https://freight.cargo.site/w/1000/i/94d12593c80281a3a7ce9d35b2c7a5311fea99e1a8ae2081d87e254457285414/collider.png" /&#62;
&#60;img width="3840" height="2160" width_o="3840" height_o="2160" data-src="https://freight.cargo.site/t/original/i/1417006372ad1ef29d47883b6951101651a9617f1e416a19632dc38ef2546c0b/Noah_Kahan__Out_of_Body_n_00_08_40_07.jpg" data-mid="248146681" border="0"  src="https://freight.cargo.site/w/1000/i/1417006372ad1ef29d47883b6951101651a9617f1e416a19632dc38ef2546c0b/Noah_Kahan__Out_of_Body_n_00_08_40_07.jpg" /&#62;
&#60;img width="3840" height="2160" width_o="3840" height_o="2160" data-src="https://freight.cargo.site/t/original/i/020cce740e056e99661636e944b3f966c7d7179baaf3c732672d2c608cc89b09/Noah_Kahan__Out_of_Body_n_00_11_46_20.jpg" data-mid="246727115" border="0"  src="https://freight.cargo.site/w/1000/i/020cce740e056e99661636e944b3f966c7d7179baaf3c732672d2c608cc89b09/Noah_Kahan__Out_of_Body_n_00_11_46_20.jpg" /&#62;
&#60;img width="1526" height="2336" width_o="1526" height_o="2336" data-src="https://freight.cargo.site/t/original/i/c48fe61db63ff7a399f9a3bddb9e28ab19aed70f43d1758471c12607e9fa000f/Screenshot-2026-03-28-at-7.45.40PM.png" data-mid="246601823" border="0"  src="https://freight.cargo.site/w/1000/i/c48fe61db63ff7a399f9a3bddb9e28ab19aed70f43d1758471c12607e9fa000f/Screenshot-2026-03-28-at-7.45.40PM.png" /&#62;
&#60;img width="3840" height="2160" width_o="3840" height_o="2160" data-src="https://freight.cargo.site/t/original/i/4de4a8ddb0238fd14a3222b4b51b932dd11ae41bda2812d94f390a796855d4db/Noah_Kahan__Out_of_Body_n_01_07_24_19.jpg" data-mid="246727117" border="0"  src="https://freight.cargo.site/w/1000/i/4de4a8ddb0238fd14a3222b4b51b932dd11ae41bda2812d94f390a796855d4db/Noah_Kahan__Out_of_Body_n_01_07_24_19.jpg" /&#62;
&#60;img width="1158" height="1774" width_o="1158" height_o="1774" data-src="https://freight.cargo.site/t/original/i/5fdcee1f4855a1b98fd2c2df39992149e87ef87bcc78649abfce3cab67214798/Screenshot-2026-03-28-at-3.41.35PM.png" data-mid="246599376" border="0"  src="https://freight.cargo.site/w/1000/i/5fdcee1f4855a1b98fd2c2df39992149e87ef87bcc78649abfce3cab67214798/Screenshot-2026-03-28-at-3.41.35PM.png" /&#62;
&#60;img width="1322" height="1590" width_o="1322" height_o="1590" data-src="https://freight.cargo.site/t/original/i/d68cc517bb7b6b10250c6d0eec25b3c50301c7c270ee9e780dd00ea826b9a57d/Screenshot-2026-03-17-at-4.03.53PM.png" data-mid="246600889" border="0"  src="https://freight.cargo.site/w/1000/i/d68cc517bb7b6b10250c6d0eec25b3c50301c7c270ee9e780dd00ea826b9a57d/Screenshot-2026-03-17-at-4.03.53PM.png" /&#62;
&#60;img width="3840" height="2160" width_o="3840" height_o="2160" data-src="https://freight.cargo.site/t/original/i/dc2f16f1072bc1130883c75c82c07dc70ca7c5008a618e7191e69d367ccd113b/02_NK_Alt_Image_01.jpg" data-mid="246727116" border="0"  src="https://freight.cargo.site/w/1000/i/dc2f16f1072bc1130883c75c82c07dc70ca7c5008a618e7191e69d367ccd113b/02_NK_Alt_Image_01.jpg" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>SANTA CAMP</title>
				
		<link>https://nick-sweeney.com/SANTA-CAMP</link>

		<pubDate>Thu, 02 Mar 2023 17:33:50 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/SANTA-CAMP</guid>

		<description>

Watch on Youtube.



	Each summer in the woodlands of New Hampshire, aspiring Kris Kringles convene at Santa Camp. When three “nontraditional” recruits join the ranks of their fellow Clauses, they begin an uphill battle in the struggle for acceptance. After camp, our newly minted Santas return home with hopes of changing their own communities’ relationship with Santa Claus.­ – Brandon Harrison
	"A must-see" - Daily Beast
“This is not the documentary you think it is.” - Vanity Fair"Emotionally complicated yet heartwarming" - Salon
"Tear-jerking and thought-provoking" - The Independent"May just make your heart burst wide open." - TV Guide"All the hallmarks of a Christmas classic" - Screenrant



	Credits:
Director and Producer: Nick SweeneyProducer: Stacey ReissCo-Producer: Korina Palomino
Executive Producers for HBO Max: Jennifer O’Connell, Lizzie Fox
Senior Producer for HBO Max: Casey Meurer

Editor: Lise LavalléeCinematographer: Noah CollierComposer: Oliver Chang
Production Companies: Monomania, in association with Stacey Reiss Productions
Full credits on IMDB.
Press Enquiries: Angela CharRepresentation: Amanda Lebow at CAA


	Press and Reviews:

The Washington PostCNN 1CNN 2Daily BeastSalonUSA Today 1USA Today 2ABC NewsPeople MagazineRolling StoneVarietyThe IndependentThe GuardianVanity FairLA TimesABC News Live


&#60;img width="2847" height="4860" width_o="2847" height_o="4860" data-src="https://freight.cargo.site/t/original/i/af39636aa773790c4b2de0030abc09784c4fa81a69163090341ac25b222ad15e/USA-TODAY.jpg" data-mid="170474619" border="0"  src="https://freight.cargo.site/w/1000/i/af39636aa773790c4b2de0030abc09784c4fa81a69163090341ac25b222ad15e/USA-TODAY.jpg" /&#62;
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/bcc319821e6d5136272a687885bebb52ce43b12579b96c6a10cc64bfde562eb4/1712475_MO-OM_Santa-Camp_KA_4x5_IG-copy-1-dragged.jpg" data-mid="170319866" border="0"  src="https://freight.cargo.site/w/1000/i/bcc319821e6d5136272a687885bebb52ce43b12579b96c6a10cc64bfde562eb4/1712475_MO-OM_Santa-Camp_KA_4x5_IG-copy-1-dragged.jpg" /&#62;
&#60;img width="420" height="280" width_o="420" height_o="280" data-src="https://freight.cargo.site/t/original/i/45b6b32f797292b5a966d423659f08fecdea4ea9beb666cbbfc48a0129824234/SANTA-CAMP-FINAL-VIEWING-LINK_1.gif" data-mid="171824327" border="0"  src="https://freight.cargo.site/w/420/i/45b6b32f797292b5a966d423659f08fecdea4ea9beb666cbbfc48a0129824234/SANTA-CAMP-FINAL-VIEWING-LINK_1.gif" /&#62;

&#60;img width="1584" height="1206" width_o="1584" height_o="1206" data-src="https://freight.cargo.site/t/original/i/a7a5a32baddda704a4e47f57852cc6ef21dc35a6ed9356ea16fcc123f5cc3c85/Screenshot-2023-03-04-at-6.17.00-PM.png" data-mid="170544402" border="0"  src="https://freight.cargo.site/w/1000/i/a7a5a32baddda704a4e47f57852cc6ef21dc35a6ed9356ea16fcc123f5cc3c85/Screenshot-2023-03-04-at-6.17.00-PM.png" /&#62;
&#60;img width="1868" height="1684" width_o="1868" height_o="1684" data-src="https://freight.cargo.site/t/original/i/47a3f29da201da85e2901bf945a4b9ee01632149bf2cd3a52a96e47f3038ac12/Screenshot-2023-03-04-at-6.18.23-PM.png" data-mid="170544367" border="0"  src="https://freight.cargo.site/w/1000/i/47a3f29da201da85e2901bf945a4b9ee01632149bf2cd3a52a96e47f3038ac12/Screenshot-2023-03-04-at-6.18.23-PM.png" /&#62;
&#60;img width="2856" height="1592" width_o="2856" height_o="1592" data-src="https://freight.cargo.site/t/original/i/3b87cd55a576251e5c425f6bff5dd1c5cf5903e86505babaebce9d08684c418b/Screenshot-2023-03-03-at-6.22.30-PM.png" data-mid="170475242" border="0"  src="https://freight.cargo.site/w/1000/i/3b87cd55a576251e5c425f6bff5dd1c5cf5903e86505babaebce9d08684c418b/Screenshot-2023-03-03-at-6.22.30-PM.png" /&#62;
&#60;img width="2516" height="1712" width_o="2516" height_o="1712" data-src="https://freight.cargo.site/t/original/i/adbfc68c335455ac7caf6c9253798df823af8722bb7c32e68e56bbabea1a3ed4/Screen-Shot-2022-11-17-at-3.19.13-PM.png" data-mid="170470662" border="0"  src="https://freight.cargo.site/w/1000/i/adbfc68c335455ac7caf6c9253798df823af8722bb7c32e68e56bbabea1a3ed4/Screen-Shot-2022-11-17-at-3.19.13-PM.png" /&#62;
&#60;img width="500" height="281" width_o="500" height_o="281" data-src="https://freight.cargo.site/t/original/i/66565a6a95a687f00eef1361bb85e8a1c9acb01b7baf0e45af33ab43730a12c7/01_scamp.gif" data-mid="171681807" border="0"  src="https://freight.cargo.site/w/500/i/66565a6a95a687f00eef1361bb85e8a1c9acb01b7baf0e45af33ab43730a12c7/01_scamp.gif" /&#62;
&#60;img width="4557" height="2564" width_o="4557" height_o="2564" data-src="https://freight.cargo.site/t/original/i/56c1768813a7b3c7398e946510b3f090d1f550498acfca41b731b347c7d79dc4/SC_082821_JT_1141-LANDSCAPE-v4.jpg" data-mid="170353436" border="0"  src="https://freight.cargo.site/w/1000/i/56c1768813a7b3c7398e946510b3f090d1f550498acfca41b731b347c7d79dc4/SC_082821_JT_1141-LANDSCAPE-v4.jpg" /&#62;
&#60;img width="2608" height="1442" width_o="2608" height_o="1442" data-src="https://freight.cargo.site/t/original/i/c7021509a7866e6d07633853148f73f6ac4b0f3b359bc93ea0540397443b7134/Screenshot-2023-03-04-at-6.20.43-PM.png" data-mid="170544174" border="0"  src="https://freight.cargo.site/w/1000/i/c7021509a7866e6d07633853148f73f6ac4b0f3b359bc93ea0540397443b7134/Screenshot-2023-03-04-at-6.20.43-PM.png" /&#62;
&#60;img width="1208" height="1226" width_o="1208" height_o="1226" data-src="https://freight.cargo.site/t/original/i/17adaaa36498dcc6569beaa66f79d77d2f47130c975300355ef8716b7552d307/Screenshot-2023-03-14-at-7.27.20-PM.png" data-mid="171679817" border="0"  src="https://freight.cargo.site/w/1000/i/17adaaa36498dcc6569beaa66f79d77d2f47130c975300355ef8716b7552d307/Screenshot-2023-03-14-at-7.27.20-PM.png" /&#62;
&#60;img width="1311" height="1163" width_o="1311" height_o="1163" data-src="https://freight.cargo.site/t/original/i/c6e7efcbe0904bf15632df0962bccaeb7a57e8bdb05cb3cca6dfd17f8f115b6f/Screen-Shot-2022-12-20-at-2.50.07-PM.png" data-mid="170470730" border="0"  src="https://freight.cargo.site/w/1000/i/c6e7efcbe0904bf15632df0962bccaeb7a57e8bdb05cb3cca6dfd17f8f115b6f/Screen-Shot-2022-12-20-at-2.50.07-PM.png" /&#62;
&#60;img width="2464" height="2378" width_o="2464" height_o="2378" data-src="https://freight.cargo.site/t/original/i/57769bad8757b18058794ff923c80efa5a8f5f6c51d6ef19b44d5c8b3ae6f8bb/Screenshot-2023-03-14-at-7.14.43-PM.png" data-mid="171678991" border="0"  src="https://freight.cargo.site/w/1000/i/57769bad8757b18058794ff923c80efa5a8f5f6c51d6ef19b44d5c8b3ae6f8bb/Screenshot-2023-03-14-at-7.14.43-PM.png" /&#62;
&#60;img width="1154" height="1428" width_o="1154" height_o="1428" data-src="https://freight.cargo.site/t/original/i/e70062145207a489a089c717818028b0fe2fde0c9c580b7745b68636159dac67/Screenshot-2023-03-04-at-6.31.32-PM.png" data-mid="170545018" border="0"  src="https://freight.cargo.site/w/1000/i/e70062145207a489a089c717818028b0fe2fde0c9c580b7745b68636159dac67/Screenshot-2023-03-04-at-6.31.32-PM.png" /&#62;
&#60;img width="2028" height="2122" width_o="2028" height_o="2122" data-src="https://freight.cargo.site/t/original/i/4bc0e7cfcd08cbcafd85436727650284acceae4adcb205b259a7989665297281/Screenshot-2023-03-14-at-7.15.03-PM.png" data-mid="171678989" border="0"  src="https://freight.cargo.site/w/1000/i/4bc0e7cfcd08cbcafd85436727650284acceae4adcb205b259a7989665297281/Screenshot-2023-03-14-at-7.15.03-PM.png" /&#62;
&#60;img width="1996" height="2088" width_o="1996" height_o="2088" data-src="https://freight.cargo.site/t/original/i/80ec30458981c8649f60ce3638e4d32fbcf5881ad62e5fb54543c982e1cd46fd/Screenshot-2023-03-14-at-7.15.19-PM.png" data-mid="171679237" border="0"  src="https://freight.cargo.site/w/1000/i/80ec30458981c8649f60ce3638e4d32fbcf5881ad62e5fb54543c982e1cd46fd/Screenshot-2023-03-14-at-7.15.19-PM.png" /&#62;
&#60;img width="500" height="281" width_o="500" height_o="281" data-src="https://freight.cargo.site/t/original/i/9c5beac7575d807c62230fa6f4ffb5633a7d87828a20921decaec326b1ba7a06/SANTA-CAMP-FINAL-VIEWING-LINK.gif" data-mid="171824317" border="0"  src="https://freight.cargo.site/w/500/i/9c5beac7575d807c62230fa6f4ffb5633a7d87828a20921decaec326b1ba7a06/SANTA-CAMP-FINAL-VIEWING-LINK.gif" /&#62;
&#60;img width="3808" height="2110" width_o="3808" height_o="2110" data-src="https://freight.cargo.site/t/original/i/eb0168cddbfc320b4ef1859dd59099bcc877f8bb5caf7d81934b683d63e5dcae/Screenshot-2023-03-14-at-7.29.40-PM.png" data-mid="171679934" border="0"  src="https://freight.cargo.site/w/1000/i/eb0168cddbfc320b4ef1859dd59099bcc877f8bb5caf7d81934b683d63e5dcae/Screenshot-2023-03-14-at-7.29.40-PM.png" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>AKA JANE ROE </title>
				
		<link>https://nick-sweeney.com/AKA-JANE-ROE</link>

		<pubDate>Thu, 02 Mar 2023 17:33:51 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/AKA-JANE-ROE</guid>

		<description>

Watch on Youtube.


	Behind the Supreme Court’s most polarizing decision is a woman as controversial as her case. In what would be the final year of her life, Norma McCorvey (a.k.a. Jane Roe) reveals the unvarnished truth behind her journey from pro-choice to pro-life and beyond – in what she calls her “deathbed confession.”
	
Director &#38;amp; Producer: Nick SweeneyProducers: Kerstin Emhoff and Chiemi Karasawa. With Ventureland and Vice Studios in association w/ Isotope Films and Final Cut.
Watch now on Fx, Hulu, Apple TV, Sling, Youtube TV.


	Press and Interviews:

The New York Times 1
The New York Times 2
The Washington Post 1
The Washington Post 2
Daily Beast 1
Daily Beast 2
Los Angeles Times
SalonAll Things Considered, NPR
All of It, WNYCThe Guardian
VarietyNBCGood Morning America


	

ABC News
GQ
Deadline
The New RepublicThe EconomistNew York MagazineDeadline
Elle
Vogue
Collider
Realscreen
Roger Ebert
SlashfilmCNN
The Hollywood Reporter


&#60;img width="1089" height="1613" width_o="1089" height_o="1613" data-src="https://freight.cargo.site/t/original/i/c1737561fe91b43998d34111012517c715f0fa33e369372137df8d7e1d3d0203/AKA-Jane-Roe-keyart.jpg" data-mid="170319870" border="0"  src="https://freight.cargo.site/w/1000/i/c1737561fe91b43998d34111012517c715f0fa33e369372137df8d7e1d3d0203/AKA-Jane-Roe-keyart.jpg" /&#62;
&#60;img width="1180" height="1044" width_o="1180" height_o="1044" data-src="https://freight.cargo.site/t/original/i/e990aee61c00ba22eaf389296dbe0ba9f09e08ca0294ee6640da523db20ff004/Screenshot-2023-03-04-at-6.54.49-PM.png" data-mid="170546273" border="0"  src="https://freight.cargo.site/w/1000/i/e990aee61c00ba22eaf389296dbe0ba9f09e08ca0294ee6640da523db20ff004/Screenshot-2023-03-04-at-6.54.49-PM.png" /&#62;
&#60;img width="1408" height="1628" width_o="1408" height_o="1628" data-src="https://freight.cargo.site/t/original/i/57bca58cc48aad5d8d246dd085466da4dddbab1a3c94578f1fc912712f4e5455/Screenshot-2023-03-04-at-7.04.23-PM.png" data-mid="170546636" border="0"  src="https://freight.cargo.site/w/1000/i/57bca58cc48aad5d8d246dd085466da4dddbab1a3c94578f1fc912712f4e5455/Screenshot-2023-03-04-at-7.04.23-PM.png" /&#62;
&#60;img width="320" height="180" width_o="320" height_o="180" data-src="https://freight.cargo.site/t/original/i/27fc397252cfce98359e4b98953d4701ec9d811fa3077875bd589a7087e85bf3/TEASER_24b.gif" data-mid="170754976" border="0"  src="https://freight.cargo.site/w/320/i/27fc397252cfce98359e4b98953d4701ec9d811fa3077875bd589a7087e85bf3/TEASER_24b.gif" /&#62;
&#60;img width="450" height="300" width_o="450" height_o="300" data-src="https://freight.cargo.site/t/original/i/16fbe4b5c8e32fe148c94ef3aae18be759157faf5e8b0c2616bd9bfde8d2b3b0/AKA-JANE-ROE-2020_1.gif" data-mid="171823777" border="0"  src="https://freight.cargo.site/w/450/i/16fbe4b5c8e32fe148c94ef3aae18be759157faf5e8b0c2616bd9bfde8d2b3b0/AKA-JANE-ROE-2020_1.gif" /&#62;
&#60;img width="550" height="290" width_o="550" height_o="290" data-src="https://freight.cargo.site/t/original/i/96a81822dd9776832b8cc2c2ff85b09e72ed23669c93a6000ffb66f412e891a4/AKA-JANE-ROE-2020.gif" data-mid="171823056" border="0"  src="https://freight.cargo.site/w/550/i/96a81822dd9776832b8cc2c2ff85b09e72ed23669c93a6000ffb66f412e891a4/AKA-JANE-ROE-2020.gif" /&#62;
&#60;img width="1438" height="1016" width_o="1438" height_o="1016" data-src="https://freight.cargo.site/t/original/i/9da4b78c963c4ffe92a2dfdf3825b4d1d30ac1ce638269c0d65004e9ecde86d4/Screenshot-2023-03-04-at-6.39.16-PM.png" data-mid="170545555" border="0"  src="https://freight.cargo.site/w/1000/i/9da4b78c963c4ffe92a2dfdf3825b4d1d30ac1ce638269c0d65004e9ecde86d4/Screenshot-2023-03-04-at-6.39.16-PM.png" /&#62;
&#60;img width="1100" height="619" width_o="1100" height_o="619" data-src="https://freight.cargo.site/t/original/i/c2fed1ddce9a8b5cce0366a6c70be982fe9be74b9dcebd1161d91377f92326ee/200519142342-aka-jane-roe-documentary-super-tease.jpg" data-mid="170319873" border="0"  src="https://freight.cargo.site/w/1000/i/c2fed1ddce9a8b5cce0366a6c70be982fe9be74b9dcebd1161d91377f92326ee/200519142342-aka-jane-roe-documentary-super-tease.jpg" /&#62;
&#60;img width="858" height="1654" width_o="858" height_o="1654" data-src="https://freight.cargo.site/t/original/i/42c82236d089202a4ebe4a4c0216ec8fdd1f73372ad17a5e29e9304e3df2453f/Screenshot-2023-03-04-at-6.49.48-PM.png" data-mid="170545922" border="0"  src="https://freight.cargo.site/w/858/i/42c82236d089202a4ebe4a4c0216ec8fdd1f73372ad17a5e29e9304e3df2453f/Screenshot-2023-03-04-at-6.49.48-PM.png" /&#62;
&#60;img width="2010" height="1124" width_o="2010" height_o="1124" data-src="https://freight.cargo.site/t/original/i/80a974d84f705dbb82dd1c7a166e5f91ea989dcb795217b387d097223d665329/Screenshot-2023-03-04-at-6.53.16-PM.png" data-mid="170545923" border="0"  src="https://freight.cargo.site/w/1000/i/80a974d84f705dbb82dd1c7a166e5f91ea989dcb795217b387d097223d665329/Screenshot-2023-03-04-at-6.53.16-PM.png" /&#62;
&#60;img width="1944" height="1434" width_o="1944" height_o="1434" data-src="https://freight.cargo.site/t/original/i/8f0a61b9a50e5b8552c2802b7e69e4d06a81f1d56e6414eee99cebad49b2ed2d/Screenshot-2023-03-04-at-6.39.49-PM.png" data-mid="170545557" border="0"  src="https://freight.cargo.site/w/1000/i/8f0a61b9a50e5b8552c2802b7e69e4d06a81f1d56e6414eee99cebad49b2ed2d/Screenshot-2023-03-04-at-6.39.49-PM.png" /&#62;
&#60;img width="1090" height="540" width_o="1090" height_o="540" data-src="https://freight.cargo.site/t/original/i/e266dc74a3e292d9d861da2dbf1d0f0767a7c95378e0ac495c40a73aeec66304/Screenshot-2023-03-14-at-7.21.02-PM.png" data-mid="171679479" border="0"  src="https://freight.cargo.site/w/1000/i/e266dc74a3e292d9d861da2dbf1d0f0767a7c95378e0ac495c40a73aeec66304/Screenshot-2023-03-14-at-7.21.02-PM.png" /&#62;
&#60;img width="1448" height="912" width_o="1448" height_o="912" data-src="https://freight.cargo.site/t/original/i/469ce319c602ce5da374c55cb5dcefd8a7a64ebb064e63e31c798958f81eddbf/Screenshot-2023-03-04-at-7.10.08-PM.png" data-mid="170546776" border="0"  src="https://freight.cargo.site/w/1000/i/469ce319c602ce5da374c55cb5dcefd8a7a64ebb064e63e31c798958f81eddbf/Screenshot-2023-03-04-at-7.10.08-PM.png" /&#62;

&#60;img width="450" height="300" width_o="450" height_o="300" data-src="https://freight.cargo.site/t/original/i/ffbe275ecca5e4658b580254f3166d37ca6b285adca03e6972bf1b6578472c24/AKA-JANE-ROE-2020_2.gif" data-mid="171823725" border="0"  src="https://freight.cargo.site/w/450/i/ffbe275ecca5e4658b580254f3166d37ca6b285adca03e6972bf1b6578472c24/AKA-JANE-ROE-2020_2.gif" /&#62;

&#60;img width="1666" height="1358" width_o="1666" height_o="1358" data-src="https://freight.cargo.site/t/original/i/73af630460d3131772ae4150054b70b13c3c208173a28b7d79e2946b66480f68/Screenshot-2023-03-04-at-6.40.08-PM.png" data-mid="170545558" border="0"  src="https://freight.cargo.site/w/1000/i/73af630460d3131772ae4150054b70b13c3c208173a28b7d79e2946b66480f68/Screenshot-2023-03-04-at-6.40.08-PM.png" /&#62;
&#60;img width="1198" height="564" width_o="1198" height_o="564" data-src="https://freight.cargo.site/t/original/i/d8763828fef3f107778053cd3e41566c9cd0ad26125d50e5e3c121830c096257/Screenshot-2023-03-04-at-7.11.56-PM.png" data-mid="170546866" border="0"  src="https://freight.cargo.site/w/1000/i/d8763828fef3f107778053cd3e41566c9cd0ad26125d50e5e3c121830c096257/Screenshot-2023-03-04-at-7.11.56-PM.png" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>The Sex Robots are Coming</title>
				
		<link>https://nick-sweeney.com/The-Sex-Robots-are-Coming</link>

		<pubDate>Thu, 02 Mar 2023 17:33:52 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/The-Sex-Robots-are-Coming</guid>

		<description>


Watch on Youtube.
Role: Director/Producer
Executive Producer: Tom Barry
Editor: Alex HayProduction Company: RawCommissioner: Channel 4


	Guardian: Best TV Pick: "fascinating"
Telegraph: **** "intriguing"
The Independent:“Thought provoking”
The Times: Critics Pick
Spectator: "eye popping"

The Sun: "fascinating"

Esquire:  "heralds the start of The End"

&#60;img width="400" height="225" width_o="400" height_o="225" data-src="https://freight.cargo.site/t/original/i/fd1618c4fe8e6aebfc9b3f96055a5eb380721c0733d691dabaa6834a2fdb88e5/the_sex_robots_are_coming-Original_2.gif" data-mid="171826026" border="0"  src="https://freight.cargo.site/w/400/i/fd1618c4fe8e6aebfc9b3f96055a5eb380721c0733d691dabaa6834a2fdb88e5/the_sex_robots_are_coming-Original_2.gif" /&#62;
&#60;img width="1902" height="1731" width_o="1902" height_o="1731" data-src="https://freight.cargo.site/t/original/i/b5f3a72794e162dc51edb4ab1a0487370d2d681438eb1b6e1e5e42ff595e0925/Screenshot-2023-03-06-at-11.36.23-AM.png" data-mid="170715364" border="0"  src="https://freight.cargo.site/w/1000/i/b5f3a72794e162dc51edb4ab1a0487370d2d681438eb1b6e1e5e42ff595e0925/Screenshot-2023-03-06-at-11.36.23-AM.png" /&#62;
&#60;img width="1204" height="1238" width_o="1204" height_o="1238" data-src="https://freight.cargo.site/t/original/i/710b1745f06762f26a4c467fc0622455df435ab9a0910813f7bba7a1a104fda4/Screenshot-2023-03-06-at-12.10.35-PM.png" data-mid="170718155" border="0"  src="https://freight.cargo.site/w/1000/i/710b1745f06762f26a4c467fc0622455df435ab9a0910813f7bba7a1a104fda4/Screenshot-2023-03-06-at-12.10.35-PM.png" /&#62;
&#60;img width="1168" height="1904" width_o="1168" height_o="1904" data-src="https://freight.cargo.site/t/original/i/36e5e3222ac16b3ea2ed53c5e530eba3e328c0e793ac35d75798bbc8cd59c881/Screenshot-2023-03-06-at-11.44.34-AM.png" data-mid="170715467" border="0"  src="https://freight.cargo.site/w/1000/i/36e5e3222ac16b3ea2ed53c5e530eba3e328c0e793ac35d75798bbc8cd59c881/Screenshot-2023-03-06-at-11.44.34-AM.png" /&#62;
&#60;img width="320" height="180" width_o="320" height_o="180" data-src="https://freight.cargo.site/t/original/i/5279ed3e0ebe93d97cdd0c170dc7e0a23380505fda0c023a5f03f70a3c4acaeb/sexbots-small-1.gif" data-mid="170755074" border="0"  src="https://freight.cargo.site/w/320/i/5279ed3e0ebe93d97cdd0c170dc7e0a23380505fda0c023a5f03f70a3c4acaeb/sexbots-small-1.gif" /&#62;
&#60;img width="2266" height="1872" width_o="2266" height_o="1872" data-src="https://freight.cargo.site/t/original/i/864809ff221d1ad9dd91d262ab82f8149a1dce60b87838ba26bb9221e0f85927/Screenshot-2023-03-06-at-11.36.08-AM.png" data-mid="170715330" border="0"  src="https://freight.cargo.site/w/1000/i/864809ff221d1ad9dd91d262ab82f8149a1dce60b87838ba26bb9221e0f85927/Screenshot-2023-03-06-at-11.36.08-AM.png" /&#62;
&#60;img width="1600" height="1550" width_o="1600" height_o="1550" data-src="https://freight.cargo.site/t/original/i/5e2a53f60af67af5fb62eb966dde40c79e9f9a28f53d8ab71ead873807de2977/Screenshot-2023-03-06-at-11.41.22-AM.png" data-mid="170715239" border="0"  src="https://freight.cargo.site/w/1000/i/5e2a53f60af67af5fb62eb966dde40c79e9f9a28f53d8ab71ead873807de2977/Screenshot-2023-03-06-at-11.41.22-AM.png" /&#62;
&#60;img width="1328" height="1422" width_o="1328" height_o="1422" data-src="https://freight.cargo.site/t/original/i/441cefec79bbf90b92cdb7d3b71bd5e59f0e7ccf4d61a6fadf9b39b398c2600f/Screenshot-2023-03-06-at-11.43.49-AM.png" data-mid="170715428" border="0"  src="https://freight.cargo.site/w/1000/i/441cefec79bbf90b92cdb7d3b71bd5e59f0e7ccf4d61a6fadf9b39b398c2600f/Screenshot-2023-03-06-at-11.43.49-AM.png" /&#62;
&#60;img width="1914" height="2088" width_o="1914" height_o="2088" data-src="https://freight.cargo.site/t/original/i/c7ab34e68272a44d91f0a7639e12a96c3b82701cc84a18331697f3ce7ca95f7b/Screenshot-2023-03-06-at-11.48.50-AM.png" data-mid="170715850" border="0"  src="https://freight.cargo.site/w/1000/i/c7ab34e68272a44d91f0a7639e12a96c3b82701cc84a18331697f3ce7ca95f7b/Screenshot-2023-03-06-at-11.48.50-AM.png" /&#62;
&#60;img width="400" height="225" width_o="400" height_o="225" data-src="https://freight.cargo.site/t/original/i/be4773b7d7ee31e18c4647e2820185d94061114f22dcfdebc25b55339ba6a780/the_sex_robots_are_coming-Original.gif" data-mid="171825691" border="0"  src="https://freight.cargo.site/w/400/i/be4773b7d7ee31e18c4647e2820185d94061114f22dcfdebc25b55339ba6a780/the_sex_robots_are_coming-Original.gif" /&#62;

</description>
		
	</item>
		
		
	<item>
		<title>My Transgender Summer Camp</title>
				
		<link>https://nick-sweeney.com/My-Transgender-Summer-Camp</link>

		<pubDate>Thu, 02 Mar 2023 17:33:51 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/My-Transgender-Summer-Camp</guid>

		<description>



	 Series Producer/Director for Channel 4 observational documentary on transgender kids in the UK, for broadcast in October 2015. Part of the Born in the Wrong Body season. 

My Transgender Summer Camp features exclusive access to a controversial American camp for transgender adolescents and their parents. As well as summer fun, they must face huge dilemmas including whether or not to start taking hormones to stop the onset of male puberty. 
Photo: Lindsay Morris / Youareyou Project


For distribution enquiries.

	Press:


"Groundbreaking" - Good Morning Britain
"Fascinating and hugely important" - Dazed&#38;amp;Confused
Guardian Best TV Pick
"Incredibly honest" - Radio Times
"Amazing and brilliant" - The Guardian
“Complex and emotional - The Times
“You’ll be inspired” - The Sun
“Revealing and moving” - Daily Telegraph
“Powerful” - The Mirror
“Hard-hitting and candid” - The Telegraph




&#60;img width="1127" height="919" width_o="1127" height_o="919" data-src="https://freight.cargo.site/t/original/i/3401cec09199d72c3f59713383668a00f55c1114643c954b11acffb254577d7c/Screen-Shot-2016-06-01-at-2.21.40-PM.png" data-mid="170720938" border="0"  src="https://freight.cargo.site/w/1000/i/3401cec09199d72c3f59713383668a00f55c1114643c954b11acffb254577d7c/Screen-Shot-2016-06-01-at-2.21.40-PM.png" /&#62;
&#60;img width="400" height="225" width_o="400" height_o="225" data-src="https://freight.cargo.site/t/original/i/4ef42363e5dcdafe020747b55e06501b453d0e56f7fdc321617b500588cfe28a/my_transgender_summer_camp-Original.gif" data-mid="171825345" border="0"  src="https://freight.cargo.site/w/400/i/4ef42363e5dcdafe020747b55e06501b453d0e56f7fdc321617b500588cfe28a/my_transgender_summer_camp-Original.gif" /&#62;
&#60;img width="3000" height="2000" width_o="3000" height_o="2000" data-src="https://freight.cargo.site/t/original/i/98a93f57f0e2b9c2db18513b9b661aa9d13458b7fd7ca92ddbbd4f1b84f11c1e/Transgender-Kids-Camp-74---Photo-Credit---Lindsay-Morris--INSTITUTE.jpg" data-mid="170720339" border="0"  src="https://freight.cargo.site/w/1000/i/98a93f57f0e2b9c2db18513b9b661aa9d13458b7fd7ca92ddbbd4f1b84f11c1e/Transgender-Kids-Camp-74---Photo-Credit---Lindsay-Morris--INSTITUTE.jpg" /&#62;
&#60;img width="1598" height="2398" width_o="1598" height_o="2398" data-src="https://freight.cargo.site/t/original/i/073a6d8b938103be503c454a07d7db791ce0033b0e3440063cf5268b16f6e266/Screenshot-2023-03-06-at-11.21.13-AM.png" data-mid="170712347" border="0"  src="https://freight.cargo.site/w/1000/i/073a6d8b938103be503c454a07d7db791ce0033b0e3440063cf5268b16f6e266/Screenshot-2023-03-06-at-11.21.13-AM.png" /&#62;
&#60;img width="320" height="180" width_o="320" height_o="180" data-src="https://freight.cargo.site/t/original/i/3a0e2afe7c64ec698119849f1eb352b1b59a5421f5defeb2feb6b7cba1171f77/mytranssummercamp.gif" data-mid="170755247" border="0"  src="https://freight.cargo.site/w/320/i/3a0e2afe7c64ec698119849f1eb352b1b59a5421f5defeb2feb6b7cba1171f77/mytranssummercamp.gif" /&#62;
&#60;img width="1940" height="2032" width_o="1940" height_o="2032" data-src="https://freight.cargo.site/t/original/i/9ae05d9ed13f2f04a062c86f467bf4f03b428da8bb84ff0baaa9a6c17a4808a4/Screenshot-2023-03-06-at-11.23.26-AM.png" data-mid="170712835" border="0"  src="https://freight.cargo.site/w/1000/i/9ae05d9ed13f2f04a062c86f467bf4f03b428da8bb84ff0baaa9a6c17a4808a4/Screenshot-2023-03-06-at-11.23.26-AM.png" /&#62;
&#60;img width="1436" height="2146" width_o="1436" height_o="2146" data-src="https://freight.cargo.site/t/original/i/d343da0f50f7be8524c7a424b010588bb1292f38dd656036448e90cd340c0501/Screenshot-2023-03-06-at-12.27.32-PM.png" data-mid="170719604" border="0"  src="https://freight.cargo.site/w/1000/i/d343da0f50f7be8524c7a424b010588bb1292f38dd656036448e90cd340c0501/Screenshot-2023-03-06-at-12.27.32-PM.png" /&#62;
&#60;img width="3000" height="2000" width_o="3000" height_o="2000" data-src="https://freight.cargo.site/t/original/i/5da7bef34fe2fb87cdf6356e5ecf6dd57f4322ae875cc2ec3b0e472f631194bb/Transgender-Kids-Camp-6084---Photo-Credit---Lindsay-Morris--INSTITUTE.jpg" data-mid="170319874" border="0"  src="https://freight.cargo.site/w/1000/i/5da7bef34fe2fb87cdf6356e5ecf6dd57f4322ae875cc2ec3b0e472f631194bb/Transgender-Kids-Camp-6084---Photo-Credit---Lindsay-Morris--INSTITUTE.jpg" /&#62;
&#60;img width="3000" height="2000" width_o="3000" height_o="2000" data-src="https://freight.cargo.site/t/original/i/65984c932cb594925a60cbe38ebda4264037a7cd132ab7b31280c8a010ab94e8/Transgender-Kids-Camp-24---Photo-Credit---Lindsay-Morris--INSTITUTE.jpg" data-mid="170721087" border="0"  src="https://freight.cargo.site/w/1000/i/65984c932cb594925a60cbe38ebda4264037a7cd132ab7b31280c8a010ab94e8/Transgender-Kids-Camp-24---Photo-Credit---Lindsay-Morris--INSTITUTE.jpg" /&#62;
&#60;img width="400" height="225" width_o="400" height_o="225" data-src="https://freight.cargo.site/t/original/i/3b488624639f0317c495f854d70b40674d6717e1079494124303c0947f3b7357/my_transgender_summer_camp-Original_1.gif" data-mid="171825539" border="0"  src="https://freight.cargo.site/w/400/i/3b488624639f0317c495f854d70b40674d6717e1079494124303c0947f3b7357/my_transgender_summer_camp-Original_1.gif" /&#62;

</description>
		
	</item>
		
		
	<item>
		<title>Rolf Harris: Primetime Predator</title>
				
		<link>https://nick-sweeney.com/Rolf-Harris-Primetime-Predator</link>

		<pubDate>Thu, 02 Mar 2023 17:34:06 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/Rolf-Harris-Primetime-Predator</guid>

		<description>A national treasure. A shocking trial. Rolf Harris: Primetime Predator exposes for the first time how celebrity, nostalgia and unchecked power shielded decades of abuse.For ABC Australia and Amazon Prime
Director: Nick SweeneyProducers: Karina Holden and John Smithson
Production Companies: Northern Pictures and Arrow Media
&#60;img width="1034" height="956" width_o="1034" height_o="956" data-src="https://freight.cargo.site/t/original/i/02b248014749267fd0a43d673163994fbfe03471d27694506c26f5fabf892ad3/iview.png" data-mid="249602116" border="0"  src="https://freight.cargo.site/w/1000/i/02b248014749267fd0a43d673163994fbfe03471d27694506c26f5fabf892ad3/iview.png" /&#62;&#60;img width="1326" height="2200" width_o="1326" height_o="2200" data-src="https://freight.cargo.site/t/original/i/4dbfae04894e9a58a79d3b6e26155b436ee272a0632077d17404f58bd9d81029/Screenshot-2026-06-10-at-11.04.36AM-2.png" data-mid="249337450" border="0"  src="https://freight.cargo.site/w/1000/i/4dbfae04894e9a58a79d3b6e26155b436ee272a0632077d17404f58bd9d81029/Screenshot-2026-06-10-at-11.04.36AM-2.png" /&#62;&#60;img width="540" height="304" width_o="540" height_o="304" data-src="https://freight.cargo.site/t/original/i/58c2abd69c9846c519690a7e784d69b7f206435fa290ae278b114a6cafaef510/rolf-clean-1-copy.gif" data-mid="249337393" border="0"  src="https://freight.cargo.site/w/540/i/58c2abd69c9846c519690a7e784d69b7f206435fa290ae278b114a6cafaef510/rolf-clean-1-copy.gif" /&#62;&#60;img src="https://freight.cargo.site/w/800/q/94/i/17d129cde8ccd3ffc3bc07c82a4331c4c077d8083905756cdce25fcdf8e5b01c/Screenshot-2026-05-26-at-6.52.26PM.png" style="width:100%;"&#62;&#60;img width="1328" height="1738" width_o="1328" height_o="1738" data-src="https://freight.cargo.site/t/original/i/2ea6ea5355691cd398cda2325e83de1f3694413aa128ba7200636d10dc614cc6/Screenshot-2026-06-10-at-11.05.07AM-2.png" data-mid="249337451" border="0"  src="https://freight.cargo.site/w/1000/i/2ea6ea5355691cd398cda2325e83de1f3694413aa128ba7200636d10dc614cc6/Screenshot-2026-06-10-at-11.05.07AM-2.png" /&#62;&#60;img src="https://freight.cargo.site/w/800/q/94/i/65fadf0fe7e2c407efcf66530021f8f368c60933dd9bc02cc321a3189241837f/Screenshot-2026-05-26-at-6.52.18PM.png" style="width:100%;"&#62;&#60;img width="540" height="304" width_o="540" height_o="304" data-src="https://freight.cargo.site/t/original/i/e0be637cf00495f453bbcfd2486de751d9dc9deb629f7b47c9d921a916c1859d/rolf-clean-2.gif" data-mid="249337392" border="0"  src="https://freight.cargo.site/w/540/i/e0be637cf00495f453bbcfd2486de751d9dc9deb629f7b47c9d921a916c1859d/rolf-clean-2.gif" /&#62;




&#60;img width="1330" height="1498" width_o="1330" height_o="1498" data-src="https://freight.cargo.site/t/original/i/72a18e92000da13f4ed06b1f457b43d27924fc08a9b97297b5d685af957647c9/Screenshot-2026-06-10-at-11.04.56AM-2.png" data-mid="249337448" border="0"  src="https://freight.cargo.site/w/1000/i/72a18e92000da13f4ed06b1f457b43d27924fc08a9b97297b5d685af957647c9/Screenshot-2026-06-10-at-11.04.56AM-2.png" /&#62;&#60;img width="540" height="304" width_o="540" height_o="304" data-src="https://freight.cargo.site/t/original/i/080eeabf115c95ba911dddf1e36380f47acd2af5c8698396919ce77853cdace3/rolf-clean-4.gif" data-mid="249337390" border="0"  src="https://freight.cargo.site/w/540/i/080eeabf115c95ba911dddf1e36380f47acd2af5c8698396919ce77853cdace3/rolf-clean-4.gif" /&#62;&#60;img width="958" height="2120" width_o="958" height_o="2120" data-src="https://freight.cargo.site/t/original/i/ae9e6e5f94629e96cb3383f692e12e8062bda1e0fde51a3f19af77a4b7c6ff94/Screenshot-2026-06-18-at-11.31.44AM.png" data-mid="249602124" border="0"  src="https://freight.cargo.site/w/958/i/ae9e6e5f94629e96cb3383f692e12e8062bda1e0fde51a3f19af77a4b7c6ff94/Screenshot-2026-06-18-at-11.31.44AM.png" /&#62;&#60;img width="540" height="304" width_o="540" height_o="304" data-src="https://freight.cargo.site/t/original/i/68f84546d0bec8810213bf2a4c00e00de7f9ee894a3f84cefde7bcc77716482d/rolf-clean-5.gif" data-mid="249337389" border="0"  src="https://freight.cargo.site/w/540/i/68f84546d0bec8810213bf2a4c00e00de7f9ee894a3f84cefde7bcc77716482d/rolf-clean-5.gif" /&#62;&#60;img width="1504" height="1170" width_o="1504" height_o="1170" data-src="https://freight.cargo.site/t/original/i/e151a3d408b5563853c6f1c471774d0e5d5a9aede5cb2627860c4cbc60d43a9d/Screenshot-2026-06-11-at-11.16.40AM.png" data-mid="249375657" border="0"  src="https://freight.cargo.site/w/1000/i/e151a3d408b5563853c6f1c471774d0e5d5a9aede5cb2627860c4cbc60d43a9d/Screenshot-2026-06-11-at-11.16.40AM.png" /&#62;&#60;img src="https://freight.cargo.site/w/800/q/94/i/e455cf380558fb40645ce16906ace9ad7e2c38f68c62b1c0019d67d1981f4ac7/Screenshot-2026-05-28-at-10.38.50AM.png" style="width:100%;"&#62;&#60;img width="540" height="304" width_o="540" height_o="304" data-src="https://freight.cargo.site/t/original/i/eb7981ddb6e056b01fabd676a1a0b5fd31e8572ece7f5ed4f854a72d91136dae/rolf-clean-3.gif" data-mid="249337391" border="0"  src="https://freight.cargo.site/w/540/i/eb7981ddb6e056b01fabd676a1a0b5fd31e8572ece7f5ed4f854a72d91136dae/rolf-clean-3.gif" /&#62;&#60;img width="1334" height="2190" width_o="1334" height_o="2190" data-src="https://freight.cargo.site/t/original/i/6e151c2f42e7e6494be6a881d49ba02380e0a1c3d0a5574a464c867945d682bb/Screenshot-2026-06-10-at-11.04.43AM-2.png" data-mid="249337449" border="0"  src="https://freight.cargo.site/w/1000/i/6e151c2f42e7e6494be6a881d49ba02380e0a1c3d0a5574a464c867945d682bb/Screenshot-2026-06-10-at-11.04.43AM-2.png" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>My Transgender Kid</title>
				
		<link>https://nick-sweeney.com/My-Transgender-Kid</link>

		<pubDate>Thu, 02 Mar 2023 17:33:54 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/My-Transgender-Kid</guid>

		<description>


	

Series Producer/Director for Channel 4 observational documentary on transgender kids in the UK, for broadcast in October 2015. Part of the Born in the Wrong Body season. 
My Transgender Kid follows two ordinary British families as they attempt to navigate the extraordinary challenges of having a 7 year old child who was born the wrong gender. The parents are faced with decisions few others could comprehend, from whether to use “he” or “she” pronouns to whether to let their kids go to school with their new identity, and risk bullying and judgment. 
Photo (c) Chris Bull, 2015
	
Series Producer/Director: Nick SweeneyEpisode Directed &#38;amp; Produced by Emma Young

“Sensitively handled and heartbreaking" - The Independent 
"Incredible” - Radio Times 
 “Groundbreaking" - Good Morning Britain
"Will move you to tears” - Cosmopolitan 
“Fascinating” - Attitude 
“Excellent” - Daily Telegraph
“Full of smiles and laughter” - Daily Express
"I love it so much."  - Gawker
Daily Mail Critic’s ChoiceTop Twitter trend, featured on: Buzzfeed, Daily Mail, Huffington Post, Radio Times, Cosmopolitan, The Independent, Good Morning Britain.





&#60;img width="2214" height="1766" width_o="2214" height_o="1766" data-src="https://freight.cargo.site/t/original/i/61699677b1394d2abd574e56f501b9797ef0d4b9a48dec709d8563470fed6d7a/Screenshot-2023-03-06-at-11.06.41-AM.png" data-mid="170711687" border="0"  src="https://freight.cargo.site/w/1000/i/61699677b1394d2abd574e56f501b9797ef0d4b9a48dec709d8563470fed6d7a/Screenshot-2023-03-06-at-11.06.41-AM.png" /&#62;
&#60;img width="600" height="610" width_o="600" height_o="610" data-src="https://freight.cargo.site/t/original/i/dccc2279c0412c09d17a45007a0481e21953f470b9e0a9bb00ddfdc2a0552d3b/Screen-Shot-2015-10-06-at-6.16.43-pm.png" data-mid="170718653" border="0"  src="https://freight.cargo.site/w/600/i/dccc2279c0412c09d17a45007a0481e21953f470b9e0a9bb00ddfdc2a0552d3b/Screen-Shot-2015-10-06-at-6.16.43-pm.png" /&#62;
&#60;img width="760" height="787" width_o="760" height_o="787" data-src="https://freight.cargo.site/t/original/i/0ad0c07c547da74db21d27a21f0d0b421c3772f24e4d2b6e38ebac9ed7346f2b/Screen-Shot-2015-10-06-at-3.32.11-pm.png" data-mid="170718455" border="0"  src="https://freight.cargo.site/w/760/i/0ad0c07c547da74db21d27a21f0d0b421c3772f24e4d2b6e38ebac9ed7346f2b/Screen-Shot-2015-10-06-at-3.32.11-pm.png" /&#62;
&#60;img width="320" height="180" width_o="320" height_o="180" data-src="https://freight.cargo.site/t/original/i/71e4a0260638385658dc5b15ff0a7d30c1f688ff886df4164e8be4cff7974a2b/my-trans-kid.gif" data-mid="170757816" border="0"  src="https://freight.cargo.site/w/320/i/71e4a0260638385658dc5b15ff0a7d30c1f688ff886df4164e8be4cff7974a2b/my-trans-kid.gif" /&#62;
&#60;img width="1350" height="2414" width_o="1350" height_o="2414" data-src="https://freight.cargo.site/t/original/i/5e42461f512eaa43aaf8f9063288a61109cee4bdbd0f659484b30ec1e777263a/Screenshot-2023-03-06-at-11.25.49-AM.png" data-mid="170713515" border="0"  src="https://freight.cargo.site/w/1000/i/5e42461f512eaa43aaf8f9063288a61109cee4bdbd0f659484b30ec1e777263a/Screenshot-2023-03-06-at-11.25.49-AM.png" /&#62;
&#60;img width="2168" height="2088" width_o="2168" height_o="2088" data-src="https://freight.cargo.site/t/original/i/9c35f3dac08c79c103217729816203ca5ecef1d5bc44a788ea7c84e53f5bae54/Screenshot-2023-03-06-at-11.09.17-AM.png" data-mid="170711265" border="0"  src="https://freight.cargo.site/w/1000/i/9c35f3dac08c79c103217729816203ca5ecef1d5bc44a788ea7c84e53f5bae54/Screenshot-2023-03-06-at-11.09.17-AM.png" /&#62;
&#60;img width="1288" height="868" width_o="1288" height_o="868" data-src="https://freight.cargo.site/t/original/i/4cee17dc55c9fe546b7a2c6ae04dc911e4a5298222ef7c0a2bd133832ea899d7/Screen-Shot-2015-10-08-at-2.48.41-pm.png" data-mid="170718715" border="0"  src="https://freight.cargo.site/w/1000/i/4cee17dc55c9fe546b7a2c6ae04dc911e4a5298222ef7c0a2bd133832ea899d7/Screen-Shot-2015-10-08-at-2.48.41-pm.png" /&#62;
&#60;img width="2508" height="2094" width_o="2508" height_o="2094" data-src="https://freight.cargo.site/t/original/i/f763c2035f8c439e99495dfb60d597a8943f473323b03679c7d0d1a4c9ba6b1e/Screenshot-2023-03-06-at-11.09.01-AM.png" data-mid="170711462" border="0"  src="https://freight.cargo.site/w/1000/i/f763c2035f8c439e99495dfb60d597a8943f473323b03679c7d0d1a4c9ba6b1e/Screenshot-2023-03-06-at-11.09.01-AM.png" /&#62;
&#60;img width="1404" height="2378" width_o="1404" height_o="2378" data-src="https://freight.cargo.site/t/original/i/ee63f38e67d7aff2369f8d0c51e54f895f83c391ab8d4be5c7db897e91aa0ce7/Screenshot-2023-03-06-at-11.16.32-AM.png" data-mid="170711916" border="0"  src="https://freight.cargo.site/w/1000/i/ee63f38e67d7aff2369f8d0c51e54f895f83c391ab8d4be5c7db897e91aa0ce7/Screenshot-2023-03-06-at-11.16.32-AM.png" /&#62;
&#60;img width="320" height="180" width_o="320" height_o="180" data-src="https://freight.cargo.site/t/original/i/3857d58b4d5130f78fdfcc62bd830ef470f287f7c2b73d31b051f5f4de9a3e84/mytranskid2.gif" data-mid="170757894" border="0"  src="https://freight.cargo.site/w/320/i/3857d58b4d5130f78fdfcc62bd830ef470f287f7c2b73d31b051f5f4de9a3e84/mytranskid2.gif" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>Secrets of the Living Dolls </title>
				
		<link>https://nick-sweeney.com/Secrets-of-the-Living-Dolls</link>

		<pubDate>Thu, 02 Mar 2023 17:33:53 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/Secrets-of-the-Living-Dolls</guid>

		<description>



	Role: Director &#38;amp; Co-Executive Producer
Also known as, "Men in Rubber Masks" (ABC), this one hour documentary is a window into the previously hidden world of "female masking", from a small family-run business in the American Bible belt struggling to meet demand for their realistic products, to the ordinary men venturing out as “dolls” for the first time ever. 
The programme was watched by 3.7 million viewers on the UK's Channel 4, became a top Twitter trend with 50k Tweets.

	Press and Reviews:
"Fascinating...feel-good television” – Buzzfeed
"Eye-opening" - The Sun
"Extraordinary" - ABC Radio National
“Amazing” – Gawker
“An incredible insight into a unique community” – Upworthy
"Utterly compelling" - The Sydney Morning Herald






&#60;img width="300" height="169" width_o="300" height_o="169" data-src="https://freight.cargo.site/t/original/i/6495f33455cc49e227dc3a96bc5b6f69617f9be4147eb2c3c397e413c61c76b8/Doll.gif" data-mid="170751444" border="0"  src="https://freight.cargo.site/w/300/i/6495f33455cc49e227dc3a96bc5b6f69617f9be4147eb2c3c397e413c61c76b8/Doll.gif" /&#62;
&#60;img width="1074" height="757" width_o="1074" height_o="757" data-src="https://freight.cargo.site/t/original/i/6722a7048f7227086c6ef47294456dd9c3c8df2aab0df5a8dfafdf8b6c1eb7f0/Screen-Shot-2015-01-05-at-10.49.12-am.png" data-mid="170751072" border="0"  src="https://freight.cargo.site/w/1000/i/6722a7048f7227086c6ef47294456dd9c3c8df2aab0df5a8dfafdf8b6c1eb7f0/Screen-Shot-2015-01-05-at-10.49.12-am.png" /&#62;
&#60;img width="500" height="281" width_o="500" height_o="281" data-src="https://freight.cargo.site/t/original/i/d756639da714876de380f9e9d5fee1c2380498741e88743dce99ac0869df3e17/anna-2.gif" data-mid="170751029" border="0"  src="https://freight.cargo.site/w/500/i/d756639da714876de380f9e9d5fee1c2380498741e88743dce99ac0869df3e17/anna-2.gif" /&#62;
&#60;img width="598" height="576" width_o="598" height_o="576" data-src="https://freight.cargo.site/t/original/i/6f49e6120620c77d6b2d8c6ae60df65c81643c5613831e25b1fe2f43ccc6dda1/Screen-Shot-2014-10-24-at-10.26.37-pm.png" data-mid="170751070" border="0"  src="https://freight.cargo.site/w/598/i/6f49e6120620c77d6b2d8c6ae60df65c81643c5613831e25b1fe2f43ccc6dda1/Screen-Shot-2014-10-24-at-10.26.37-pm.png" /&#62;
&#60;img width="2022" height="2406" width_o="2022" height_o="2406" data-src="https://freight.cargo.site/t/original/i/5b46982af7ca6a48b205127d17d1c64f8b9cf8db3d7aa9841f1c86d34ee8c7cb/Screenshot-2023-03-06-at-4.24.18-PM.png" data-mid="170751182" border="0"  src="https://freight.cargo.site/w/1000/i/5b46982af7ca6a48b205127d17d1c64f8b9cf8db3d7aa9841f1c86d34ee8c7cb/Screenshot-2023-03-06-at-4.24.18-PM.png" /&#62;
&#60;img width="2276" height="1504" width_o="2276" height_o="1504" data-src="https://freight.cargo.site/t/original/i/4e86915725cd062d1636fcf394e52d19e44642538409432fc56d9a0bb08fd2e4/Screen-Shot-2014-01-07-at-4.00.39-PM.png" data-mid="170751083" border="0"  src="https://freight.cargo.site/w/1000/i/4e86915725cd062d1636fcf394e52d19e44642538409432fc56d9a0bb08fd2e4/Screen-Shot-2014-01-07-at-4.00.39-PM.png" /&#62;
&#60;img width="500" height="281" width_o="500" height_o="281" data-src="https://freight.cargo.site/t/original/i/ea289455a8ab6e11800ef242520a41191f149f259d6e3578431f2bc5173ea61d/sherry-2.gif" data-mid="170751032" border="0"  src="https://freight.cargo.site/w/500/i/ea289455a8ab6e11800ef242520a41191f149f259d6e3578431f2bc5173ea61d/sherry-2.gif" /&#62;

&#60;img width="500" height="281" width_o="500" height_o="281" data-src="https://freight.cargo.site/t/original/i/e902f94dffa74be1e4a57058c4e83660156131017917182199ea09fe821ef886/t-1.gif" data-mid="170751036" border="0"  src="https://freight.cargo.site/w/500/i/e902f94dffa74be1e4a57058c4e83660156131017917182199ea09fe821ef886/t-1.gif" /&#62;
&#60;img width="1970" height="1392" width_o="1970" height_o="1392" data-src="https://freight.cargo.site/t/original/i/a7c95eba508aeae5583912eac922be1fe12290612ad06017e17855feefcb6c26/Screen-Shot-2014-07-05-at-10.48.17-am.png" data-mid="170751085" border="0"  src="https://freight.cargo.site/w/1000/i/a7c95eba508aeae5583912eac922be1fe12290612ad06017e17855feefcb6c26/Screen-Shot-2014-07-05-at-10.48.17-am.png" /&#62;
&#60;img width="1740" height="2306" width_o="1740" height_o="2306" data-src="https://freight.cargo.site/t/original/i/340861d3ff59edc3b9a641a13b1d934198713dff02e130dc1ef71f3ab6c93afb/Screenshot-2023-03-06-at-4.31.01-PM.png" data-mid="170752340" border="0"  src="https://freight.cargo.site/w/1000/i/340861d3ff59edc3b9a641a13b1d934198713dff02e130dc1ef71f3ab6c93afb/Screenshot-2023-03-06-at-4.31.01-PM.png" /&#62;
&#60;img width="1650" height="1926" width_o="1650" height_o="1926" data-src="https://freight.cargo.site/t/original/i/8493c948039825d5c6602d456e6b2dc158fc02903040d752c6f634f8bbaa04f4/Screenshot-2023-03-06-at-4.29.04-PM.png" data-mid="170752217" border="0"  src="https://freight.cargo.site/w/1000/i/8493c948039825d5c6602d456e6b2dc158fc02903040d752c6f634f8bbaa04f4/Screenshot-2023-03-06-at-4.29.04-PM.png" /&#62;


</description>
		
	</item>
		
		
	<item>
		<title>I Hate Perfume</title>
				
		<link>https://nick-sweeney.com/I-Hate-Perfume</link>

		<pubDate>Thu, 02 Mar 2023 17:33:53 +0000</pubDate>

		<dc:creator>Nick Sweeney</dc:creator>

		<guid isPermaLink="true">https://nick-sweeney.com/I-Hate-Perfume</guid>

		<description>More at W Magazine.




	New York perfumer Christopher Brosius, the olfactory visionary behind fragrance house CB I Hate Perfume, discusses his unorthodox approach to scent and his cult conceptual fragrances.
	Director: Nick SweeneyProducer: Aaron PeasleyCamera: Rachel ShaneAnimator: Richard Van Der Oost


</description>
		
	</item>
		
	</channel>
</rss>