What happens to old cars is one of the harsh realities of island life that doesn’t make it into the tourist brochures.
Getting a dead vehicle off Cape Clear isn’t as simple as calling a scrap dealer as everything has to go by ferry, which makes the economics of removal pretty grim for islanders already dealing with the higher costs of island living. It’s a stark reminder that even in Ireland’s most picturesque corners, people have to deal with the mundane realities of modern life, including what to do with that blue van that’s given up the ghost and will never make another trip to the mainland.
Cape Clear Island, located about 13 kilometres off the coast of West Cork, has a permanent population of around 120 people and faces unique challenges with waste disposal due to its remote location. All waste, including scrap vehicles, must be transported by ferry to the mainland, making disposal expensive and logistically complex. The island’s small size (just 6.5 square kilometers) means that space for storing unusable vehicles is extremely limited, leading to accumulations like the one shown in this photograph. Irish islands have lobbied for government assistance with waste disposal costs, as the expense of transporting bulky items like cars can be prohibitive for island communities with limited resources.
An estimated 100,000 people joined the Trans+ Pride event yesterday in London as they marched from near BBC Broadcasting House, past Downing Street, and on to Westminster Palace to Parliament Square Gardens. It was spectacular & emotional to watch.
“The message was clear: we will not be erased. Our existence is natural, historic, and enduring. You can try to take away our rights, but you will never remove us from society. We are a part of humanity, and the public will not stand by while harm is done to our community.”
Lewis G Burton, one of the founding members of London Trans+ Pride
More coverage from the Guardian & BBC and elsewhere.
An old abandoned house on the Sheep’s Head Peninsula in Co. Cork. This isn’t the first time I’ve photographed it. In 2017 it looked much the same, but not quite as overgrown.
A groyne standing upright by the seashore near Youghal.
The wooden post in this photograph is part of Youghal’s coastal defence system called groynes. They are structures built perpendicular to the shore to prevent beach erosion by trapping sand moved by longshore drift. These timber groynes at Youghal are regularly maintained and replaced as part of ongoing coastal management efforts by Cork County Council. The long exposure technique used in this photograph typically requires exposure times of 30 seconds to several minutes, using neutral density filters to reduce the amount of light entering the camera, which creates the smooth, ethereal water effect by averaging out the motion of waves over time.
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.
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:
Press Command + Space to open Spotlight search
Type “Terminal” and press Enter
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:
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)"
Paste it into Terminal (Command + V) and press Enter.
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.
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.
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:
Type this command in Terminal: brew install imagemagick
Press Enter and wait.
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:
Type this command: magick -version
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”
Select “Plain text”.
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.
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!
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.
When the weather is as nice as it is now, there’s nowhere like West Cork. Rolling hills and beautiful countryside, trees heavy with leaves and flowers in bloom, friendly people, and loads of things to do.
One way is Bantry, Ballydehob is the other way. We were headed to Ballydehob when I stopped for a few quick photos.
Kitte Kat stares out from the bushes at us as she contemplates making friends, or enemies. She chose the former and walked out after myself and my dog, Diego. She allowed me to rub her head before wandering off into the garden again at Carbery Guest Lodge on Sheep’s Head, Co Cork.
She was raised by the family dog, Sisken, from an early age and thinks she’s a dog, but sometimes they get confused when she doesn’t run from them!
While enjoying the market in Skibbereen I spotted a march in support of Palestine and got a few photos. It was West Cork for Palestine marching. They were a small group but made up for it in noise and their presence.
Aperture
ƒ/4
Camera
ILCE-7RM5
Focal length
24mm
ISO
100
Shutter speed
1/640s
Close
Ad-blocker not detected
Consider installing a browser extension that blocks ads and other malicious scripts in your browser to protect your privacy and security. Here are a few options.
uBlock Origin is a free, open source, ad blocker for your browser.
Use pi-hole if you have a spare Raspberry Pi on your network.
Set the private DNS settings on your phone to dns.adguard.com to block adverts and trackers.