<?xml version="1.0" encoding="utf-8" standalone="yes"?><?xml-stylesheet type="text/xsl" href="/pretty-feed-v3.xsl"?>
<rss
  version="2.0"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:source="https://source.scripting.com/"
>
  <channel>
    <title>Paul Tibbetts</title>
    <link>https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/17/</link>
    <description>Posts by Paul Tibbetts published on Tuesday, March 17, 2026</description>
    <generator>Hugo</generator>
    <language>en-gb</language>
    <atom:link href="https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/17/feed.xml" rel="self" type="application/rss+xml" /><item>
      <title>Added support for photos and videos</title>
      <link>https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/17/added-support-for-photos-and-videos/</link>
      <pubDate>Tue, 17 Mar 2026 23:30:00 +0000</pubDate>
      <guid>https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/17/added-support-for-photos-and-videos/</guid>
      <category>meta</category>
      <description>Three days after posting Changes to the Site and it’s already out of date.
I wrote that I was going to optimise my photos so they would be smaller and I could include them in my posts, since that’s all I was planning to do.
Then I realised I needed a video in my post. If you’ve read Museum memories you’ll know why.</description>
      <content:encoded><![CDATA[<p>Three days after posting <a href="https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/14/changes-to-the-site/">Changes to the Site</a>
 and it&rsquo;s already out of date.</p>
<p>I wrote that I was going to optimise my photos so they would be smaller and I could include them in my posts, since that&rsquo;s all I was planning to do.</p>
<p>Then I realised I <em>needed</em> a video in my post. If you&rsquo;ve read <a href="https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/17/museum-memories">Museum memories</a>
 you&rsquo;ll know why.</p>
<h2 id="the-problem">The problem</h2>
<p>My website is powered by Hugo, a static site generator that takes an input, like my markdown files where I write my posts, and outputs a website.</p>
<p>I store both my site code and content in Git, which also drives my deployment process: every change triggers a new build and deploy.</p>
<p>This is where it gets tricky with media files.</p>
<h3 id="photos">Photos</h3>
<p>To include my own photos in a blog post I need to host them. I can do that in Hugo, but I would need to save the photos with Git so it&rsquo;s part of the site and the deployment process. The problem with this is photos can be quite large, so they bloat the Git repository.</p>
<p>This isn&rsquo;t really a problem with one blog post with a few photos, but it does become a problem when you do it over and over for many years.</p>
<p>I don&rsquo;t know if I&rsquo;ll be posting lots of photos, or doing it for many years, but I don&rsquo;t like the idea of one day having a scaling problem, I&rsquo;d rather fix it now.</p>
<h3 id="videos">Videos</h3>
<p>Videos are even more of a problem. They&rsquo;re much bigger than photos, and they don&rsquo;t compress down as effectively.</p>
<p>A 7 MB photo can compress down to 200 KB, which might be tolerable in a Git repo.</p>
<p>A 15 second video might be 30 MB and only compress down to 15 MB.</p>
<h2 id="a-solution">A solution</h2>
<p>Instead of keeping my photos and videos inside the Git repo I am moving towards separate media hosting for them. I wanted to publish <a href="https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/17/museum-memories/">my photo post</a>
 before fully solving media hosting, so I&rsquo;m using a temporary solution for now.</p>
<p>I have made a directory on my server and uploaded the videos there. I then changed my web server to serve the files in this directory at <code>https://paultibbetts.uk/media/</code> and updated my post to use this URL for videos.</p>
<p>You can see the change in infrastructure code <a href="https://github.com/paultibbetts/infra.paultibbetts.uk/commit/72240f724e786a189c2138d73a643c3b2ae4b4d9">on GitHub</a>
.</p>
<h2 id="its-temporary">It&rsquo;s Temporary™</h2>
<p>My web server has 50 GB of storage so there is a limit to how many photos and videos I can upload. This type of storage is relatively expensive and it&rsquo;s awkward changing the setup.</p>
<p>A better solution for media hosting would be a storage bucket and a Content Delivery Network to serve the files, as mentioned in <a href="https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/14/changes-to-the-site/">Changes to the Site</a>
.</p>
<p>I don&rsquo;t know when that&rsquo;s happening.</p>]]></content:encoded><source:markdown>
Three days after posting [Changes to the Site](/2026/03/14/changes-to-the-site/) and it&#39;s already out of date.

I wrote that I was going to optimise my photos so they would be smaller and I could include them in my posts, since that&#39;s all I was planning to do.

Then I realised I _needed_ a video in my post. If you&#39;ve read [Museum memories](/2026/03/17/museum-memories) you&#39;ll know why.

&lt;!--more--&gt;

## The problem

My website is powered by Hugo, a static site generator that takes an input, like my markdown files where I write my posts, and outputs a website.

I store both my site code and content in Git, which also drives my deployment process: every change triggers a new build and deploy.

This is where it gets tricky with media files.

### Photos

To include my own photos in a blog post I need to host them. I can do that in Hugo, but I would need to save the photos with Git so it&#39;s part of the site and the deployment process. The problem with this is photos can be quite large, so they bloat the Git repository.

This isn&#39;t really a problem with one blog post with a few photos, but it does become a problem when you do it over and over for many years.

I don&#39;t know if I&#39;ll be posting lots of photos, or doing it for many years, but I don&#39;t like the idea of one day having a scaling problem, I&#39;d rather fix it now.

### Videos

Videos are even more of a problem. They&#39;re much bigger than photos, and they don&#39;t compress down as effectively.

A 7 MB photo can compress down to 200 KB, which might be tolerable in a Git repo.

A 15 second video might be 30 MB and only compress down to 15 MB.

## A solution

Instead of keeping my photos and videos inside the Git repo I am moving towards separate media hosting for them. I wanted to publish [my photo post](/2026/03/17/museum-memories/) before fully solving media hosting, so I&#39;m using a temporary solution for now.

I have made a directory on my server and uploaded the videos there. I then changed my web server to serve the files in this directory at `https://paultibbetts.uk/media/` and updated my post to use this URL for videos.

You can see the change in infrastructure code [on GitHub](https://github.com/paultibbetts/infra.paultibbetts.uk/commit/72240f724e786a189c2138d73a643c3b2ae4b4d9).

## It&#39;s Temporary™

My web server has 50 GB of storage so there is a limit to how many photos and videos I can upload. This type of storage is relatively expensive and it&#39;s awkward changing the setup.

A better solution for media hosting would be a storage bucket and a Content Delivery Network to serve the files, as mentioned in [Changes to the Site](/2026/03/14/changes-to-the-site/).

I don&#39;t know when that&#39;s happening.
</source:markdown></item><item>
      <title>Museum memories</title>
      <link>https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/17/museum-memories/</link>
      <pubDate>Tue, 17 Mar 2026 14:00:22 +0000</pubDate>
      <guid>https://paultibbetts-uk-feat-cooks.preview.lab.paultibbetts.uk/2026/03/17/museum-memories/</guid>
      <category>IndieWeb Carnival</category>
      <category>Barcelona</category>
      <description>This is my entry for this month’s IndieWeb Carnival: Museum memories.
I have not been to many museums or galleries. I am not a cultured person.
My favourite museum is the city of Barcelona.</description>
      <content:encoded><![CDATA[<p>This is my entry for this month&rsquo;s IndieWeb Carnival: <a class="u-in-reply-to" href="https://jamesg.blog/2026/03/01/indieweb-carnival-museum-memories/">Museum memories</a>.</p>
<p>I have not been to many museums or galleries. I am not a cultured person.</p>
<p>My favourite museum is the city of Barcelona.</p>
<h2 id="museums">Museums</h2>
<p>I grew up in Birmingham, UK, and I have been to a few museums there. We went on a school trip to the <a href="https://www.birminghammuseums.org.uk/thinktank">Science Museum</a>
 and I&rsquo;m pretty sure I&rsquo;ve been down to London to go to the Natural History Museum.</p>
<p>They&rsquo;re all great.</p>
<p>My favourite museum trips were all in Barcelona, and there must be something to that city because out of the three entries to this month&rsquo;s carnival I&rsquo;ve read there&rsquo;s already <a href="https://jeffbridgforth.com/two-museum-memories/">one about a museum there</a>
.</p>
<h2 id="barcelona">Barcelona</h2>
<figure>
      <img
        src="https://paultibbetts.uk/media/2026/03/17/museum-memories/barcelona.jpg"
        width="1200"
        height="800"
        alt="Barcelona&#39;s Gothic Quarter with ornate balconies and Sagrada Família visible in the distance"
        loading="lazy"
        decoding="async"
        class="w-full h-auto rounded-lg"
      />
      <figcaption>not my photo</figcaption>
    </figure>
<p>I first went in 2017, staying for a week in a hotel in Eixample, a giant extension to the city that was started in the 1860s.</p>
<p>The Old Quarter, the historic core, dates back over 2,000 years. It was founded by the Romans as Barcino and some of their walls are still standing.</p>
<p>The development of other parts of the city, like Barri Gòtic and El Born, happened during the medieval period and were built right on top of what came before.</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/old_wall.jpeg"
      width="1200"
      height="1600"
      alt="Ancient stone foundations and walls preserved beneath buildings in Barcelona"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />
<p>It&rsquo;s chaotic and organic.</p>
<h3 id="eixample">Eixample</h3>
<p>Eixample, known in English as &ldquo;extension&rdquo;, is the complete opposite. It was designed as a uniform grid layout, and turned out to be very forward-thinking design.</p>
<figure>
      <img
        src="https://paultibbetts.uk/media/2026/03/17/museum-memories/eixample.jpg"
        width="1200"
        height="827"
        alt="Aerial view of Barcelona&#39;s Eixample district showing its distinctive grid layout with octagonal blocks"
        loading="lazy"
        decoding="async"
        class="w-full h-auto rounded-lg"
      />
      <figcaption>also not my photo</figcaption>
    </figure>
<p>The octagonal blocks give better visibility at intersections and make turning easier for vehicles, even ones we use now, which didn&rsquo;t exist when the design was first conceived.</p>
<h3 id="museums-1">Museums</h3>
<p>I mention all of this because the city itself is a giant museum. You can step back in time, in design, and urban planning, and wander through the narrow cobbled streets of the Old Quarter, then walk ten minutes to Eixample to see an extension, started two hundred years ago, that&rsquo;s still celebrated for how modern it is.</p>
<figure>
      <img
        src="https://paultibbetts.uk/media/2026/03/17/museum-memories/museum.jpeg"
        width="1200"
        height="900"
        alt="Museum"
        loading="lazy"
        decoding="async"
        class="rounded-lg"
      />
      <figcaption>Castle of the Three Dragons</figcaption>
    </figure>
<p>Barcelona has free museum visits on Sundays (in most city-run museums), with free entry from 3pm onwards and all day on the first Sunday of the month.</p>
<p>I made a second trip later in 2017 for a month, and ended up staying six weeks. I visited most of <a href="https://www.barcelonaturisme.com/wv3/en/enjoy/25/a-zero-cost-cultural-afternoon.html">the free museums</a>
 whilst I was there,</p>
<p>as well as Castell de Montjuïc, the fort on the hill.</p>
<div class="not-prose image-grid my-6">
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/fort_garden.jpeg"
      width="1200"
      height="900"
      alt="Gardens and stone walls at Castell de Montjuïc overlooking Barcelona"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />

<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/fort_entrance.jpeg"
      width="1200"
      height="900"
      alt="Entrance to Castell de Montjuïc with stone walls and walkway"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />
</div>

<p>It was interesting to see how it was being used.</p>
<figure>
      <img
        src="https://paultibbetts.uk/media/2026/03/17/museum-memories/fort_inside.jpeg"
        width="1200"
        height="675"
        alt="Interior courtyard of Castell de Montjuïc with white flags showing messages of peace"
        loading="lazy"
        decoding="async"
        class="not-prose wide-photo rounded-lg"
      />
      <figcaption><blockquote>Do economic and military interests help educate for peace?</blockquote></figcaption>
    </figure>
<p>Barcelona does a really good job of preserving layers of its past, from Castell de Montjuïc, to Roman walls in the Gothic Quarter and entire neighbourhoods from the 1700s, like those uncovered in El Born.</p>
<p>These are curated spaces that preserve and display the history of the city itself.</p>
<figure>
      <img
        src="https://paultibbetts.uk/media/2026/03/17/museum-memories/old_walls.jpeg"
        width="1200"
        height="1600"
        alt="Preserved walls from the 18th century displayed under a covered walkway"
        loading="lazy"
        decoding="async"
        class="rounded-lg"
      />
      <figcaption>El Born Centre de Cultura i Memòria</figcaption>
    </figure>
<p>I don&rsquo;t have a favourite museum in Barcelona. Barcelona is my favourite museum.</p>
<h3 id="galleries">Galleries</h3>
<p>It&rsquo;s also a giant street art gallery.</p>
<p>The residents communicate with posters, stickers and slogans:</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/street_art.jpeg"
      width="1200"
      height="1600"
      alt="Street posters and stickers covering a wall"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />
<p>To deter graffiti many property owners commission work for their shutters:</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/painted_door.jpeg"
      width="1200"
      height="900"
      alt="Colourful mural painted on a metal shop shutter"
      loading="lazy"
      decoding="async"
      class="col-span-2 w-full h-auto rounded-lg"
    />
<div class="not-prose image-grid my-6">
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/painted_door_bird.jpeg"
      width="1200"
      height="1600"
      alt="Street art mural of a bird painted on a shop shutter"
      loading="lazy"
      decoding="async"
      class="w-full h-auto rounded-lg"
    />

<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/painted_door_woman.jpeg"
      width="1200"
      height="1600"
      alt="Street art mural of a woman painted on a shop shutter"
      loading="lazy"
      decoding="async"
      class="w-full h-auto rounded-lg"
    />
</div>

<p>which is respected and left untouched.</p>
<p>The streets become a gallery, with guides offering tours of their own curated favourites.</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/gato.jpeg"
      width="1200"
      height="900"
      alt="Street art of 2 cat heads formed into one"
      loading="lazy"
      decoding="async"
      class="w-full h-auto rounded-lg"
    />
<h2 id="architecture">Architecture</h2>
<p>Speaking of streets, some of the best views are of the architecture.</p>
<p>Whether it&rsquo;s an open public space…</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/parque.jpeg"
      width="1200"
      height="960"
      alt="Open public space around the Arc de Triomf"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />
<p>or one of the many gold statues…</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/park.jpeg"
      width="1200"
      height="960"
      alt="Ornate golden statue in a Barcelona park surrounded by greenery"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />
<p>or an ornate entrance to a church…</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/sagrada_familia_entrance.jpeg"
      width="1200"
      height="900"
      alt="Highly detailed sculpted entrance of the Sagrada Família basilica"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />
<p>it&rsquo;s hard not to admire the intricate details and extravagance of Barcelona.</p>
<p>A lot of that is the result of Antoni Gaudí, a Catalan architect and designer, whose designs stretched from parks and gardens:</p>
<figure>
      <img
        src="https://paultibbetts.uk/media/2026/03/17/museum-memories/fantasy_house.jpeg"
        width="1200"
        height="1200"
        alt="Colourful Gaudí-designed house in Park Güell"
        loading="lazy"
        decoding="async"
        class="rounded-lg"
      />
      <figcaption>Park Güell</figcaption>
    </figure>
<p>to one of the most ambitious Catholic churches in the world, started 143 years ago and still under construction:</p>
<figure>
      <img
        src="https://paultibbetts.uk/media/2026/03/17/museum-memories/sagrada_familia.jpeg"
        width="1200"
        height="1600"
        alt="The towering spires of the Sagrada Família basilica in Barcelona"
        loading="lazy"
        decoding="async"
        class="rounded-lg"
      />
      <figcaption>Sagrada Família</figcaption>
    </figure>
<h2 id="culture">Culture</h2>
<p>Perhaps the biggest highlight of my first trip was its timing. I&rsquo;d accidentally arrived during La Mercè, Barcelona&rsquo;s annual festival that&rsquo;s been going on since 1871.</p>
<p>Every corner of the city was filled with art and music…</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/music_show.jpeg"
      width="1200"
      height="960"
      alt="Outdoor music performance during the La Mercè festival in Barcelona"
      loading="lazy"
      decoding="async"
      class="wide-photo rounded-lg"
    />
<p>as well as papier-mâché giants and castells (human pyramids, or &ldquo;castles&rdquo;)…</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/la_merce.jpeg"
      width="1200"
      height="675"
      alt="Human pyramid and giant papier-mâché figures during La Mercè festival"
      loading="lazy"
      decoding="async"
      class="wide-photo rounded-lg"
    />
<p>and the wildest fireworks show…</p>
<video controls playsinline preload="none" poster="https://paultibbetts.uk/media/2026/03/17/museum-memories/fireworks_poster.jpeg" width="1200" height="675">
  <source src="https://paultibbetts.uk/media/2026/03/17/museum-memories/fireworks.webm" type="video/webm">
  <a href="https://paultibbetts.uk/media/2026/03/17/museum-memories/fireworks.webm">Open the fireworks video directly</a>.
</video>
<p>I&rsquo;ve ever been to…</p>
<video controls playsinline preload="none" poster="https://paultibbetts.uk/media/2026/03/17/museum-memories/more_fireworks_poster.jpeg" width="1200" height="675">
  <source src="https://paultibbetts.uk/media/2026/03/17/museum-memories/more_fireworks.webm" type="video/webm">
  <a href="https://paultibbetts.uk/media/2026/03/17/museum-memories/more_fireworks.webm">Open the second fireworks video directly</a>.
</video>
<h2 id="2017">2017</h2>
<p>What made 2017 special was the result of hundreds of years of history - it marked the first independence referendum hosted by the Catalan government.</p>
<figure>
      <img
        src="https://paultibbetts.uk/media/2026/03/17/museum-memories/democracy_month.jpeg"
        width="1200"
        height="900"
        alt="Poster reading &#39;Democracy Month&#39; displayed during Catalonia&#39;s independence movement"
        loading="lazy"
        decoding="async"
        class="rounded-lg"
      />
      <figcaption>democracy month</figcaption>
    </figure>
<p>The city was covered in flags, and signs that said &ldquo;Si&rdquo; - which meant yes, if given the chance to vote.</p>
<div class="not-prose image-grid my-6">
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/want_to_vote.jpeg"
      width="900"
      height="720"
      alt="People surround a poster that reads &#39;We want to vote&#39;"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/wants_to_vote.jpeg"
      width="1200"
      height="960"
      alt="Poster on a balcony that reads &#39;Catalonia wants to vote&#39;"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />
</div>

<p>There were plenty of Si supporters…</p>
<img
      src="https://paultibbetts.uk/media/2026/03/17/museum-memories/flags_parade.jpeg"
      width="1200"
      height="675"
      alt="Lots of Catalan flags"
      loading="lazy"
      decoding="async"
      class="rounded-lg"
    />
<p>They once interrupted a conversation I was having, and it was the highlight of my trip.</p>
<p>At, I think it was, 6pm, supporters of the vote leaned out their windows and started smashing pots and pans. It was a DIY siren to let everyone else know they existed, and that they wanted to vote.</p>
<p>It was deafeningly loud and an extremely effective way of communicating.</p>
<h2 id="history">History</h2>
<p>I&rsquo;m no expert, but a brief history is:</p>
<ul>
<li>in the Middle Ages, Catalonia was part of the Crown of Aragon</li>
<li>the War of Spanish Succession (1701-1714) saw Catalonia become part of Spain</li>
<li>the dictatorship of Francisco Franco restricted Catalan language and culture from 1939 to 1975</li>
<li>in 2006 Catalonia negotiated a new agreement with Spain</li>
<li>Spain&rsquo;s conservative party opposed it and it went to court for 4 years</li>
<li>in 2010 the court ruled that parts of the agreement should be annulled</li>
<li>Catalans saw the agreement as settled and not to be changed</li>
<li>this sparked a resurgence in the independence movement</li>
</ul>
<p>which led to the referendum in 2017.</p>
<h2 id="the-result">The result</h2>
<p>The Catalan government claimed that 90% of voters voted &ldquo;Yes&rdquo;, however they also recognised that it had only a 42% turnout.</p>
<p>Because of this, Spain ignored the result and then called it illegal anyway.</p>
<p>A month later Catalonia&rsquo;s parliament declared independence.</p>
<p>The next day Spain dissolved the Catalan government, arrested several of its leaders, and the regional president Carles Puigdemont fled to Belgium.</p>
<h2 id="since-then">Since then</h2>
<p>Unfortunately, since then, the only notable things to have happened are trials and prison sentences followed by a new amnesty law that pardons some of those involved in the push for independence.</p>
<p>I wish this had a better ending, and that the Catalan people were given a legal vote to decide what they want to do. I don&rsquo;t know if independence is a good or bad thing for Catalonia, I&rsquo;m just a tourist with an admiration for its capital.</p>
<h2 id="memories">Memories</h2>
<p>I met a Spanish man on a hiking trail once and tried to tell him how nice Barcelona is. It turned out he did not want Catalonia to become independent, so he didn&rsquo;t want to talk to me, and he definitely didn&rsquo;t want to see my photos.</p>
<p>Thanks for the IndieWeb Carnival prompt <a href="https://jamesg.blog">James</a>
. It gave me an excuse to put this on my blog and add support for photos and videos.</p>
<p>And it was good to reminisce.</p>]]></content:encoded><source:markdown>
This is my entry for this month&#39;s IndieWeb Carnival: &lt;a class=&#34;u-in-reply-to&#34; href=&#34;https://jamesg.blog/2026/03/01/indieweb-carnival-museum-memories/&#34;&gt;Museum memories&lt;/a&gt;.

I have not been to many museums or galleries. I am not a cultured person.

My favourite museum is the city of Barcelona.

&lt;!--more--&gt;

## Museums

I grew up in Birmingham, UK, and I have been to a few museums there. We went on a school trip to the [Science Museum](https://www.birminghammuseums.org.uk/thinktank) and I&#39;m pretty sure I&#39;ve been down to London to go to the Natural History Museum.

They&#39;re all great.

My favourite museum trips were all in Barcelona, and there must be something to that city because out of the three entries to this month&#39;s carnival I&#39;ve read there&#39;s already [one about a museum there](https://jeffbridgforth.com/two-museum-memories/).

## Barcelona

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/barcelona.jpg&#34; alt=&#34;Barcelona&#39;s Gothic Quarter with ornate balconies and Sagrada Família visible in the distance&#34; class=&#34;w-full h-auto rounded-lg&#34; width=&#34;1200&#34; height=&#34;800&#34; figcaption=&#34;not my photo&#34; &gt;}}

I first went in 2017, staying for a week in a hotel in Eixample, a giant extension to the city that was started in the 1860s.

The Old Quarter, the historic core, dates back over 2,000 years. It was founded by the Romans as Barcino and some of their walls are still standing.

The development of other parts of the city, like Barri Gòtic and El Born, happened during the medieval period and were built right on top of what came before.

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/old_wall.jpeg&#34; alt=&#34;Ancient stone foundations and walls preserved beneath buildings in Barcelona&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;1600&#34; &gt;}}

It&#39;s chaotic and organic.

### Eixample

Eixample, known in English as &#34;extension&#34;, is the complete opposite. It was designed as a uniform grid layout, and turned out to be very forward-thinking design.

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/eixample.jpg&#34; alt=&#34;Aerial view of Barcelona&#39;s Eixample district showing its distinctive grid layout with octagonal blocks&#34; class=&#34;w-full h-auto rounded-lg&#34; width=&#34;1200&#34; height=&#34;827&#34; figcaption=&#34;also not my photo&#34; &gt;}}

The octagonal blocks give better visibility at intersections and make turning easier for vehicles, even ones we use now, which didn&#39;t exist when the design was first conceived.

### Museums

I mention all of this because the city itself is a giant museum. You can step back in time, in design, and urban planning, and wander through the narrow cobbled streets of the Old Quarter, then walk ten minutes to Eixample to see an extension, started two hundred years ago, that&#39;s still celebrated for how modern it is.

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/museum.jpeg&#34; alt=&#34;Museum&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;900&#34; figcaption=&#34;Castle of the Three Dragons&#34; &gt;}}

Barcelona has free museum visits on Sundays (in most city-run museums), with free entry from 3pm onwards and all day on the first Sunday of the month.

I made a second trip later in 2017 for a month, and ended up staying six weeks. I visited most of [the free museums](https://www.barcelonaturisme.com/wv3/en/enjoy/25/a-zero-cost-cultural-afternoon.html) whilst I was there,

as well as Castell de Montjuïc, the fort on the hill.

{{&lt; image_grid &gt;}}
{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/fort_garden.jpeg&#34; alt=&#34;Gardens and stone walls at Castell de Montjuïc overlooking Barcelona&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;900&#34; &gt;}}

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/fort_entrance.jpeg&#34; alt=&#34;Entrance to Castell de Montjuïc with stone walls and walkway&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;900&#34; &gt;}}
{{&lt; /image_grid &gt;}}

It was interesting to see how it was being used.

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/fort_inside.jpeg&#34; alt=&#34;Interior courtyard of Castell de Montjuïc with white flags showing messages of peace&#34; class=&#34;not-prose wide-photo rounded-lg&#34; width=&#34;1200&#34; height=&#34;675&#34; figcaption=&#34;&lt;blockquote&gt;Do economic and military interests help educate for peace?&lt;/blockquote&gt;&#34; &gt;}}

Barcelona does a really good job of preserving layers of its past, from Castell de Montjuïc, to Roman walls in the Gothic Quarter and entire neighbourhoods from the 1700s, like those uncovered in El Born.

These are curated spaces that preserve and display the history of the city itself.

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/old_walls.jpeg&#34; alt=&#34;Preserved walls from the 18th century displayed under a covered walkway&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;1600&#34; figcaption=&#34;El Born Centre de Cultura i Memòria&#34; &gt;}}

I don&#39;t have a favourite museum in Barcelona. Barcelona is my favourite museum.

### Galleries

It&#39;s also a giant street art gallery.

The residents communicate with posters, stickers and slogans:

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/street_art.jpeg&#34; alt=&#34;Street posters and stickers covering a wall&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;1600&#34; &gt;}}

To deter graffiti many property owners commission work for their shutters:

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/painted_door.jpeg&#34; alt=&#34;Colourful mural painted on a metal shop shutter&#34; class=&#34;col-span-2 w-full h-auto rounded-lg&#34; width=&#34;1200&#34; height=&#34;900&#34; &gt;}}

{{&lt; image_grid &gt;}}
{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/painted_door_bird.jpeg&#34; alt=&#34;Street art mural of a bird painted on a shop shutter&#34; class=&#34;w-full h-auto rounded-lg&#34; width=&#34;1200&#34; height=&#34;1600&#34; &gt;}}

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/painted_door_woman.jpeg&#34; alt=&#34;Street art mural of a woman painted on a shop shutter&#34; class=&#34;w-full h-auto rounded-lg&#34; width=&#34;1200&#34; height=&#34;1600&#34; &gt;}}
{{&lt; /image_grid &gt;}}

which is respected and left untouched.

The streets become a gallery, with guides offering tours of their own curated favourites.

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/gato.jpeg&#34; alt=&#34;Street art of 2 cat heads formed into one&#34; class=&#34;w-full h-auto rounded-lg&#34; width=&#34;1200&#34; height=&#34;900&#34; &gt;}}

## Architecture

Speaking of streets, some of the best views are of the architecture.

Whether it&#39;s an open public space…

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/parque.jpeg&#34; alt=&#34;Open public space around the Arc de Triomf&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;960&#34; &gt;}}

or one of the many gold statues…

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/park.jpeg&#34; alt=&#34;Ornate golden statue in a Barcelona park surrounded by greenery&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;960&#34; &gt;}}

or an ornate entrance to a church…

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/sagrada_familia_entrance.jpeg&#34; alt=&#34;Highly detailed sculpted entrance of the Sagrada Família basilica&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;900&#34; &gt;}}

it&#39;s hard not to admire the intricate details and extravagance of Barcelona.

A lot of that is the result of Antoni Gaudí, a Catalan architect and designer, whose designs stretched from parks and gardens:

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/fantasy_house.jpeg&#34; alt=&#34;Colourful Gaudí-designed house in Park Güell&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;1200&#34; figcaption=&#34;Park Güell&#34; &gt;}}

to one of the most ambitious Catholic churches in the world, started 143 years ago and still under construction:

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/sagrada_familia.jpeg&#34; alt=&#34;The towering spires of the Sagrada Família basilica in Barcelona&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;1600&#34; figcaption=&#34;Sagrada Família&#34; &gt;}}

## Culture

Perhaps the biggest highlight of my first trip was its timing. I&#39;d accidentally arrived during La Mercè, Barcelona&#39;s annual festival that&#39;s been going on since 1871.

Every corner of the city was filled with art and music…

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/music_show.jpeg&#34; alt=&#34;Outdoor music performance during the La Mercè festival in Barcelona&#34; class=&#34;wide-photo rounded-lg&#34; width=&#34;1200&#34; height=&#34;960&#34; &gt;}}

as well as papier-mâché giants and castells (human pyramids, or &#34;castles&#34;)…

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/la_merce.jpeg&#34; alt=&#34;Human pyramid and giant papier-mâché figures during La Mercè festival&#34; class=&#34;wide-photo rounded-lg&#34; width=&#34;1200&#34; height=&#34;675&#34; &gt;}}

and the wildest fireworks show…

&lt;video controls playsinline preload=&#34;none&#34; poster=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/fireworks_poster.jpeg&#34; width=&#34;1200&#34; height=&#34;675&#34;&gt;
  &lt;source src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/fireworks.webm&#34; type=&#34;video/webm&#34;&gt;
  &lt;a href=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/fireworks.webm&#34;&gt;Open the fireworks video directly&lt;/a&gt;.
&lt;/video&gt;

I&#39;ve ever been to…

&lt;video controls playsinline preload=&#34;none&#34; poster=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/more_fireworks_poster.jpeg&#34; width=&#34;1200&#34; height=&#34;675&#34;&gt;
  &lt;source src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/more_fireworks.webm&#34; type=&#34;video/webm&#34;&gt;
  &lt;a href=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/more_fireworks.webm&#34;&gt;Open the second fireworks video directly&lt;/a&gt;.
&lt;/video&gt;

## 2017

What made 2017 special was the result of hundreds of years of history - it marked the first independence referendum hosted by the Catalan government.

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/democracy_month.jpeg&#34; alt=&#34;Poster reading &#39;Democracy Month&#39; displayed during Catalonia&#39;s independence movement&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;900&#34; figcaption=&#34;democracy month&#34; &gt;}}

The city was covered in flags, and signs that said &#34;Si&#34; - which meant yes, if given the chance to vote.

{{&lt; image_grid &gt;}}
{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/want_to_vote.jpeg&#34; alt=&#34;People surround a poster that reads &#39;We want to vote&#39;&#34; class=&#34;rounded-lg&#34; width=&#34;900&#34; height=&#34;720&#34; &gt;}}
{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/wants_to_vote.jpeg&#34; alt=&#34;Poster on a balcony that reads &#39;Catalonia wants to vote&#39;&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;960&#34; &gt;}}
{{&lt;/image_grid &gt;}}

There were plenty of Si supporters…

{{&lt; img src=&#34;https://paultibbetts.uk/media/2026/03/17/museum-memories/flags_parade.jpeg&#34; alt=&#34;Lots of Catalan flags&#34; class=&#34;rounded-lg&#34; width=&#34;1200&#34; height=&#34;675&#34; &gt;}}

They once interrupted a conversation I was having, and it was the highlight of my trip.

At, I think it was, 6pm, supporters of the vote leaned out their windows and started smashing pots and pans. It was a DIY siren to let everyone else know they existed, and that they wanted to vote.

It was deafeningly loud and an extremely effective way of communicating.

## History

I&#39;m no expert, but a brief history is:

- in the Middle Ages, Catalonia was part of the Crown of Aragon
- the War of Spanish Succession (1701-1714) saw Catalonia become part of Spain
- the dictatorship of Francisco Franco restricted Catalan language and culture from 1939 to 1975
- in 2006 Catalonia negotiated a new agreement with Spain
- Spain&#39;s conservative party opposed it and it went to court for 4 years
- in 2010 the court ruled that parts of the agreement should be annulled
- Catalans saw the agreement as settled and not to be changed
- this sparked a resurgence in the independence movement

which led to the referendum in 2017.

## The result

The Catalan government claimed that 90% of voters voted &#34;Yes&#34;, however they also recognised that it had only a 42% turnout.

Because of this, Spain ignored the result and then called it illegal anyway.

A month later Catalonia&#39;s parliament declared independence.

The next day Spain dissolved the Catalan government, arrested several of its leaders, and the regional president Carles Puigdemont fled to Belgium.

## Since then

Unfortunately, since then, the only notable things to have happened are trials and prison sentences followed by a new amnesty law that pardons some of those involved in the push for independence.

I wish this had a better ending, and that the Catalan people were given a legal vote to decide what they want to do. I don&#39;t know if independence is a good or bad thing for Catalonia, I&#39;m just a tourist with an admiration for its capital.

## Memories

I met a Spanish man on a hiking trail once and tried to tell him how nice Barcelona is. It turned out he did not want Catalonia to become independent, so he didn&#39;t want to talk to me, and he definitely didn&#39;t want to see my photos.

Thanks for the IndieWeb Carnival prompt [James](https://jamesg.blog). It gave me an excuse to put this on my blog and add support for photos and videos.

And it was good to reminisce.
</source:markdown></item>
  </channel>
</rss>
