The Rebirth of Páirc Uí Chaoimh

On this day when Tipperary beat Cork in the All Ireland Hurling Final I thought it appropriate to show these old photos of Páirc Uí Chaoimh in 2016 and 2017 when it was being rebuilt. The only time I’ve been to the new stadium was to see Bruce Springsteen play there, which just goes to show you how much interest I have in sports. Since I grew up close by I was always interested in the redevelopment of the place. Above you can see the Blackrock end of the stadium, with the skeleton of the building visible.

Almost a year later, in early 2017, there had been a lot of progress. The main stand is complete, and the Blackrock side is being filled in.

The reconstruction of Páirc Uí Chaoimh was one of the most expensive GAA stadium projects ever undertaken, with costs eventually reaching over €100 million. The new stadium was designed to hold 45,000 spectators, making it the second-largest GAA stadium in Ireland after Croke Park. The rebuild incorporated cutting-edge engineering techniques, including a unique cantilever roof design that allows unobstructed views from every seat. The project faced significant delays and cost overruns, leading to considerable controversy, but when completed in 2017, it featured Ireland’s largest covered terrace and became a flagship venue for Munster GAA, hosting its first All-Ireland semi-final in 2018.

The panorama images are displayed using my new panoramic block plugin for WordPress. It’s still early days yet, and it’s simple, but I’ve wanted a way to display 3-image panoramas for a while. If you’re looking at this post in a feed, click through to the post for the JavaScript powered panorama viewer.


Apertureƒ/8
CameraCanon EOS 6D
Focal length24mm
ISO100
Shutter speed1/500s

The Watchtower and Seaside Blooms

The lifeguard tower at the end of the main section of the beach at Youghal. The beach does continue on, but the sand was green with algae and it was obvious it’s not used by humans much.

I love the matching colours in this photo. I spent a good few minutes kneeling in damp sand and dirt trying to get this photo.


Apertureƒ/8
CameraILCE-7RM5
Focal length24mm
ISO500
Shutter speed1/125s

Export photos with a border from Lightroom Classic

This is how I add a nice thick black border to my photos after I export them from Lightroom Classic using free software.

This is for macOS, but since the same software exists on Windows, you can do something similar there, but I haven’t used that platform in years, so YMMV.

I’m going to presume you’re familiar with export presets in Lightroom Classic. You’re going to use one of them to run a small script that does the magick.

Take a deep breath. You’re going to learn a lot in the next couple of steps. Persist, and it will be worth it.

Installing ImageMagick

To add the border you need to install ImageMagick using brew. Think of ImageMagick as a Swiss Army knife for images. While Lightroom excels at organizing and editing individual photos, ImageMagick can automatically resize hundreds of images, create contact sheets, add watermarks, or convert file formats. You can do all this without you having to click through each image individually.

Step 1: Open Terminal (It’s Not as Scary as It Sounds!)

Terminal is like a text-based way to talk to your Mac. Instead of clicking buttons, you type commands. Here’s how to find it:

  1. Press Command + Space to open Spotlight search
  2. Type “Terminal” and press Enter
  3. A black window will open. This is Terminal

Don’t panic if it looks intimidating! Think of it like switching from Auto mode to Manual on your camera. It gives you more control once you know what you’re doing.

Step 2: Install Homebrew (Your New Best Friend)

Homebrew is like an App Store for command-line tools. It makes installing software like ImageMagick incredibly easy. Here’s how to install it:

  1. Copy this entire command (click and drag to select it all):
    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  2. Paste it into Terminal (Command + V) and press Enter.
  3. You’ll be prompted to enter your Mac’s password (the same one you use to log in). Note: When you type your password, you won’t see any characters appear. This is normal for security reasons. Just type it and press Enter.
  4. The installation will take a few minutes. You’ll see lots of text scrolling by, and this is normal! Grab a coffee and let it do its thing.
  5. When it’s finished, you might see instructions about adding Homebrew to your PATH. If you see a message starting with “Run these two commands in your terminal,” copy and paste those commands one at a time.

Step 3: Install ImageMagick

Now that you have Homebrew installed, installing ImageMagick is incredibly simple:

  1. Type this command in Terminal:
    brew install imagemagick
  2. Press Enter and wait.
  3. This will download and install ImageMagick automatically. When it’s done, you’ll see your command prompt again (it looks like YourName@YourMac ~ % or similar).

Step 4: Test Your Installation

Let’s make sure everything worked:

  1. Type this command:
    magick -version
  2. If you see version information appear (something like “Version: ImageMagick 7.1.x”), congratulations! You’ve successfully installed ImageMagick.

Apart from adding borders to images, ImageMagick can also resize images, convert RAW files to Jpeg, add watermarks and more.

Your first ImageMagick script

Open TextEdit or your favourite text editor to create your black borders script. If you use TextEdit, you need to adjust the settings as follows.

Go to TextEdit → Preferences and under “New Document”

  1. Select “Plain text”.
  2. Uncheck “Smart quotes” and “Smart dashes”.

Copy this code into your editor before saving it in your Documents folder as add_black_borders.sh

#!/bin/bash

# Add black borders to export images

today=$(date +%F)

open ~/Pictures/
/opt/homebrew/bin/magick mogrify -bordercolor black -border 15 "$@"

Your computer can’t run the script without making it executable, so use this command to do that:

chmod +x ~/Documents/add_black_borders.sh

Add it to Lightroom Classic

Lightroom Classic has an “after export” setting in the export dialog you can use to modify the photo(s) you just exported. You’re going to write a small computer programme called a “shell script” that uses ImageMagick to add the border.

Right click on an image, go to Export and click on Export..... Select your export preset and scroll to the bottom, to “Post-Processing. It will look something like this. Click on the “After Export” setting and then on “Go to Export Actions Folder Now”.

A new Finder window will open there. It should be Library/Application Support/Adobe/Lightroom/Export Actions/ in your home directory.

Copy the script from your Documents folder to the Export Actions folder by dragging it from one folder to the other.

Export with Borders

Go to your desired export action in the Export... menu in Lightroom Classic. Scroll to the end, and the After Export setting will have your add_black_borders script.

Select that, and remember to update the settings for your export preset.

Export an image, and it should have a black border. The Pictures folder will pop up too, but you can change that in the script in the line that says open ~/Pictures/. Change that to wherever you put your exported images.

Customize the output

You can change the border width and colour in the script. Look at the magick line.

  1. It’s 15 pixels by default.
  2. -bordercolor black can be changed to whatever colour you want from this list.

Search online, and you’ll find other commands to further change how the border looks.

Bonus: split panoramas

Here’s a bonus script. Save it as panorama.sh in the Export Actions folder. Add it to an export action you use for horizontal panoramas. Vertical panoramas can be split using 100%x33.33% instead.

#!/bin/bash

open ~/Pictures/
for file in "$@"; do
        base=$(basename "$file" .jpg)
        out=$(dirname "$file")
        /opt/homebrew/bin/magick "$file"  -crop 33.33%x100% "${out}/${base}_split_%d.jpg"
done

Gobbledygook?

I hope that made some sense, and it works for you. It is unfortunately technical, but take things slowly and carefully, and you’ll have beautiful borders on your exported photos!


Apertureƒ/8
CameraILCE-7RM5
Focal length172mm
ISO100
Shutter speed5s

Warning: Photographers at Work

Some members of Blarney Photography Club as they worked with their cameras just off the beach in Youghal, Co. Cork last night.


Apertureƒ/8
CameraILCE-7RM5
Focal length172mm
ISO100
Shutter speed5s

The Social Side of Shopping

When you’ve been to the shops, it’s nice to sit down with a friend for a chat.


Apertureƒ/1.8
CameraSM-G998B
Focal length6.7mm
ISO639
Shutter speed1/500s

A Solitary Figure in Birmingham

Walking along Corporation Street, I was watching out for interesting people to photograph when I saw a man watching people walking past. We’d just come out of Grand Central Shopping Centre, the sun was shining, and I quickly walked over to the shaded part of the street. It was too warm for me. Might have been the same for this gentleman.


Apertureƒ/6.3
CameraILCE-7M3
Focal length16mm
ISO320
Shutter speed1/500s

Cork’s Social Life Spills Onto the Street

The Long Valley Bar is always busy, and I love seeing interesting characters sitting at the tables outside.

The Long Valley Bar has been serving Cork since 1842 and is famous for its traditional “combination” sandwiches – hence the “Plain Comb” on the menu board. These legendary sandwiches typically contain a hearty mix of meats, cheese, and pickles, and have remained virtually unchanged in recipe for over a century. The pub’s sandwiches have achieved almost mythical status among Cork locals and visitors alike, with many considering them the best pub grub in Ireland. The establishment has retained its original Victorian fittings and atmosphere, making it not just a place to eat, but a living piece of Cork’s social history.


Apertureƒ/3.5
CameraILCE-7M3
Focal length24mm
ISO400
Shutter speed1/500s

Cork’s Bell Tower from the Steepest Street

Shandon Bells as seen from the top of Patrick’s Hill, from the wall surrounding Bells Field.

The eight bells of Shandon Bells were cast in Gloucester, England, in 1750 and shipped to Cork. They’re tuned to play in the key of D major, and each bell has inscriptions including biblical verses and the names of local dignitaries from the time. Read More.


Apertureƒ/8
CameraILCE-7M3
Focal length113mm
ISO100
Shutter speed1/160s

The Sherkin Island Fishing Boat

A fishing boat with the registration code C353P sits moored in the low-tide mud in Sherkin Island. It sits opposite the island library and has been a feature of the island for as long as I remember. However, it was missing during a visit in 2017, and this gallery of Sherkin Island photos shows an empty space where the boat should be! A blog post here from 2016 shows the boat back in place, so maybe someone took the boat out during my visit in 2017?

Now I would like to know more about this boat. Who owns it? Does anyone take it out for a spin any more?

You’ll also find photos of this boat elsewhere, including this article about a Ukrainian family who settled on the island. It’s also featured in a painting created in 2012, but it’s sitting on a dock somewhere, possibly local.


Apertureƒ/8
CameraILCE-7RM5
Focal length24mm
ISO100
Shutter speed1/250s

Clouds swirl over North Main Street

Whispy cirrus clouds were visible over Cork a few months ago.

The building in the background used to be a Catholic Young Men’s Society hall. These societies were established across Ireland in the late 19th and early 20th centuries as part of a movement to provide educational, social, and recreational facilities for young Catholic men, often serving as alternatives to public houses and promoting temperance alongside community engagement.


Apertureƒ/3.5
CameraILCE-7M3
Focal length24mm
ISO100
Shutter speed1/1600s