A small friction I finally removed

Published: (December 3, 2025 at 05:33 PM EST)
2 min read
Source: Dev.to

Source: Dev.to

Overview

Cover image for A small friction I finally removed

Whenever I needed to track a number over time, I never even seriously looked at existing metrics tools. They all felt complicated at a glance… dashboards, exporters, configs.

So instead I kept doing this odd little workaround: store the numbers myself, then ask an LLM to generate a quick script to visualise them.

It worked.

But it was also tedious in a way that felt out of proportion with the problem.

What I really wanted

send a number → see how it changes over time

I stopped rebuilding the storage and the chart every time and turned that tiny pattern into a single endpoint instead. No dashboards. No setup. No decisions to make.

  • One number goes in, again and again.
  • One chart quietly grows.

Because I already lean on AI for glue code, I also wrote a prompt that drops this kind of tracking straight into an existing codebase. It scans your project, suggests sensible metrics to track, and then wires in calls to a single API.

Rules

The rules are intentionally dull:

  • Fire and forget
  • Fail silently
  • Aggregate anything noisy

Nothing clever. Nothing fragile.

Availability

I’m planning on keeping it free. The 1,000‑datapoint rolling limit per chart is the trade‑off that makes that possible.

If you end up wiring it into a side project, I’d genuinely love to see how you use this in the comments.

And if the problem resonates, the little thing I built from this is at spikelog.com.

Back to Blog

Related posts

Read more »

Powershell is low-key cool

PowerShell often gets overlooked in favor of more popular shells, but it offers powerful features that can streamline local development workflows. Below is a st...