2025 Year Review

This entry is part 7 of 7 in the series Year Reviews

Well, I’m still not back on a boat as I was in 2023… Where to start…

Lightbug

I havn’t written a whole lot about Lightbug yet on this blog, but its still been a fun year of new developments at, and I think it’s time to share some of them with pictures ;)

We released small handheld RTK device, with programmable ESP32 onboard, giving high precision accuracy, in a nice small package.

I’v enjoyed seeing how folks have been using these devices, from tracking lane changes in cars, to finding accuract path positions, or traking things around race courses.

You can find the documentaiton to read through on the docs site, a fancy looking marketing booklet on the website or look at some of the code examples for the programmable ESP32 also on the docs site.

Hopfully this year I’ll get to the point of writing my GPS, RTK, phone etc comparison blog post, comparing the tracks recorded from a bunch of different devices to compare accuracy etc.

Given my open source / open data interests, I do wonder if this will end up being useful for the OpenStreetMap community.

Now we also developed and worked on the ZCard device, though this has primarily remained inhouse, or for show and conferences and workshops. So much so, that there isn’t even a picture of one on the Lightbug website yet, but here is one sitting on one of our tshirts bak at MWC earlier this year, where we had a demo application running on it, allowing basic interactions from a web page.

Think of it kind of like a Flipper Zero in a way, but running the same hardware and firmware stack as the rest of the Lightbug devices, at a fraction of the price, focued on developers. Buttons, Lights, Eink screen, but more importantly, cellular connectivity (GSM LTE CAT 1), LORA, WiFi, Bluetooth, GPS and more.

The primary processor, and high levels SDKs take care of the complexities of connectivity, power management and eink screen renderings, and give you a high level API for interacting the the device in many ways, such as drawing on the screen, communicating over LORA, or connecting to a server to send and receive data.

Wikimedia

Meanwhile, in my non work Wikimedia volunteer time, I have the privilege of attending both Wikimania 2025 in Nairobi, as well as the Wikimedia Hackathon 2025 in Istanbul, Turkey.

Read more

Easy fix for UK blocked imgur images on a wordpress site

If you are like me, then I expect you have in the past at some point used https://imgur.com/ to upload a few images, and also used them on your WordPress site. But since some time in 2025 imgur blocked access to images for users of the UK. Instead of seeing the image, you just see something like the below instead, that says “Content not viewable in your region” with a little imgur logo in the bottom corner.

You can read more in their help article.

I could go through and permenantly replace all of these links in my blog, but I really can’t be bothered, and instead went looking for a less permennt solution.

While looking around I found the Imgur unblocker chrome extension, that makes use a content proxy by duckduckgo to easily rewrite requests and be able to load the content no matter your geography. The extension is on Github too, and the single actions is so hillariously simple, that I figured this might be a nice solution for my WordPress install too.

I found a WordPress plugin called Real-Time Find and Replace that says:

This plugin allows you to dynamically (i.e. at the time when a page is generated) replace code and text from themes and other plugins with code and text of your choosing before a page is delivered to a user’s browser.

Which sounds like exactly what I wanted, and after a quick install, the replacement was rather easy to setup, and eems to cover all cases for me.

Read more