On Generative AI, Simplicity, and Easiness

Last week I presented a speech at Linux Day 2025, in Prato, about meta-search engines. Specifically, I was talking about SearXNG. While preparing the slides for the speech, I came across articles talking about “AI Overview”, the new feature/product by Google Search giving out answers for your queries in a LLM generated box on top of standard search results. According to many sources, AI Overview has already had a great impact on websites’ traffic across many industries since its release: notably, newspapers and websites giving out generic information such as Wikipedia, have seen their traffic reduced. Preliminary research on the topic seems to confirm this trend. ...

October 30, 2025 · 11 min · Tommaso Colella

Faster, please! (Or, how I reverse engineered an app to cater to my needs)

I love listening to podcasts, and news in general. For a couple of years, I’ve been subscribed to a somewhat-niche (but really high quality) Italian weekly magazine. I like their Android application, and I use its Text To Speech functionality, but there’s a big problem with that: it’s impossible to increase the audio reproduction speed. I usually listen to articles while doing something else, such as washing the dishes, or commuting to the office. This means I only have a fixed amount of time for this activity. Because of these time restrictions, I like to cram as much content as possible in my daily listening. I also get bored very quickly when someone speaks slowly (sorry, I’m engineered like this!). That’s exactly why I set the speed to 2x for most of the podcasts I’m listening to. Being unable to do the same with the magazine’s articles really bothered me. ...

April 27, 2025 · 7 min · Tommaso Colella

Dirt-cheap Computer Science books

If you’re a bookworm like me, you can’t resist the fascination of the paper medium. Reading a proper book is a much more relaxing experience than reading on a screen. Some studies also found a correlation between phone usage in bed and increased risk of having poor sleep quality. These are some reasons I’ve always preferred reading from paper books, especially at nighttime. Computer Science books are often expensive, and one could always object that paper production has an undeniable carbon footprint. You could go to a public library, which I personally do, and it is always a great idea. That said, some textbooks are perfect for frequent consultation: one would like to have them readily available. ...

March 26, 2024 · 6 min · Tommaso Colella

Enforcing OPA policies with Terraform / OpenTofu in network-isolated Azure VNet - Part 1

Recently, we had a couple of naming-related incidents at work. We respect certain naming conventions, but sometimes errors slip into our Terraform infrastructure’s code, and remediation may be costly. I had to find a way to simplify resource naming policy enforcement: at first, I thought about using Git Hooks (with a custom HCL parser) or local linters. Both of these approaches came with downsides that would make it unpractical to employ them on multiple repositories: first of all, the necessity to set up hooks or linter configurations in each repo. ...

March 6, 2024 · 10 min · Tommaso Colella

How to build a Summarizer Bot using GPT4, Azure Functions, GitHub Actions

A friend asked me to create a Telegram channel to cross-post my articles onto (I did! You can find it here). The idea seemed nice, but I didn’t want to bother with writing a small summary for each article every time, and most of all, forgetful as I am, I would absolutely forget to post to the channel. I only had one choice: automate everything using GitHub Actions, Azure Function Apps, and Azure OpenAI, trying to have fun and learn something new in the process. ...

February 27, 2024 · 8 min · Tommaso Colella