RSSAmplifier

Blog

Kevinleary.net

Freelance WordPress developer and BigQuery consultant

kevinleary.netRSS feed ↗15 posts

Latest posts

Scaling n8n for AI Automation

Most n8n deployments start the same way: one container, SQLite, a handful of workflows, and it works beautifully. Then someone wires up a webhook that receives a few hundred events a minute, or an AI agent workflow that spends ninety seconds waiting on model responses, and the whole thing falls over. Executions that took two

OpenAI Ads Conversion Tracking: A Complete Implementation Guide

Ads inside ChatGPT are live, and the measurement layer is where nearly all of the real implementation work sits. OpenAI s developer documentation for the Ads platform is accurate, but it s scattered. The pixel, the image tag, the Conversions API, event schemas, product feeds, and campaign types each live on their own page with no narrative

Reddit’s True Association with AEO

Reddit comes up in almost every AEO conversation I have with clients now. The logic usually goes something like this: LLMs pull heavily from Reddit, so we should start a subreddit and post our webinars, blogs and research there so ChatGPT and Claude find us. I understand the thinking. It s also wrong, and it fails

Self-Hosted Cookie Consent Management

Consent management has quietly become one of the most expensive line items in marketing technology. Not because the software is hard to build, but because the industry has convinced businesses that compliance requires a $10,000+/year SaaS subscription. It doesn t. This article walks through the full picture: what the laws actually require, what a consent management

#1 Rankings in AI: Proven Optimization That Works

Taking brand visibility to #1 in all major AI LLM responses for ideal prompts. This is a real client case study of results that work. The approaches used are novel in many ways, and aren t found in general how to rank in AI articles elsewhere. How LLMs Read Your Website LLMs understand and rank website

Consent Mode for Google Tag Manager

How to configure Google Tag Manager consent mode V2 to comply with GDPR, CCPA, and US privacy laws without breaking your analytics or ad tracking. Covers a free, open-source consent banner, proper consent defaults by region, delayed pageview handling for late opt-ins, and the correct consent categories for GA4, Google Ads, Meta, TikTok, LinkedIn, and other common tags.

Web Visitor Company Identification

There are tools that claim to solve this problem, and many of them do, but they ll charge you hundreds to thousands of dollars a month for it. For some teams that makes sense, but for most it s overpriced for what you actually get. You can build this yourself with no recurring cost, using a custom

Credit Unions, Banks & Finance Organization that use WordPress

Powering a bank or financial website with WordPress for content management is not only possible, in most circumstances it s ideal. Anytime it comes up there are always security concerns, compliance requirements and concerns about enterprise expectations. WordPress can exceed at all of these, surpassing many other systems used by enterprise providers. Many credit unions, banks

Google’s December 2025 Core Update

The December 2025 Google algorithm update is actively rolling out this week, and the signals are clearer than usual if you know where to look. While the volatility in search rankings this week is significant, it isn’t random. The December 2025 Core Update appears to be the algorithmic enforcement of the standards Google established in

Facebook Conversions API Explained

Here s how I d approach tracking Facebook pageviews and conversion events in the browser (Facebook Pixel) and also server-side (Conversions API). Facebook Browser Pixel The Facebook Pixel loads on every page, sending pageview requests from an app or websites front-end to meta for ad tracking. When I configure this on a site it involves: Adding the

Testing Redirects with Curl

Tracing the source of a redirect can be difficult, especially for a redirect loop, but the curl command can make it much easier. One of the most frustrating things to encounter is a redirect loop that you can t trace back to it s original, but if you plan your approaches well it can be very simple

Well-Built WordPress Websites (And Why They’re So Rare)

A well-built WordPress site starts with a custom theme that contains only what s needed—nothing more. This approach allows you to confidently remove old and unused CSS and JavaScript because you understand every line of code in the project. This matters more than ever because Google PageSpeed scores, SEO performance, and LLM vectorization are all positively

The #1 Cost Efficient HubSpot Alternative

HubSpot is powerful, but if you have a decent-sized audience you want to track, it s extremely expensive for what it provides. If you re looking for a great alternative to HubSpot that s low cost—particularly for businesses with large contact databases—consider exploring Mautic. What is Mautic? Mautic is an open-source marketing automation platform that gives you complete

BigQuery TABLESAMPLE: Faster, Cheaper Queries

Working with massive datasets in Google BigQuery delivers incredible analytical power, but that power comes at a cost. Running a complex GROUP BY or JOIN on billions of rows can drain both time and budget, particularly during development and debugging. The solution is simpler than you might think: work with a smaller, random subset of

Automatic Redirects in WordPress

WordPress automatically manages redirects to maintain consistent URLs, protect SEO, and prevent broken links when slugs or structures change. This can help prevent duplicate content issues by ensuring there s only one canonical URL for each piece of content. Canonical Redirects WordPress enforces canonical URLs for each page using the redirect_canonical function/hook. This function creates…