Skip to content

Tag: automation

All the articles with the tag "automation".

Borgmatic: Borg Backup, Done Right

Borgmatic: Borg Backup, Done Right

BorgBackup is great. Borgmatic makes you actually run it: config-driven schedules, hooks, healthchecks, and a backup system that pages you when it breaks.

AI Swarm Audited My 840-Post Blog

AI Swarm Audited My 840-Post Blog

I pointed a parallel swarm of AI agents at 840 technical posts to fact-check and refresh them — the architecture, the token bill, and the guardrails.

Dify: Visual Agent Workflows

Dify: Visual Agent Workflows

Dify is an open-source LLM-app builder you can self-host. Visual workflow editor, RAG, agents, tool use — without writing 500 lines of LangChain glue.

Automating Docker via Ansible

Automating Docker via Ansible

· Updated:

Automate Docker container deployment with shell scripts, cron, and Ansible — stop SSHing in and restarting things by hand.

Function Calling in Local LLMs

Function Calling in Local LLMs

Local LLMs can call tools, query APIs, and run code if you set them up right. Function calling on Ollama and llama.cpp explained — patterns that actually work.

MCP Servers: Tools for LLMs

MCP Servers: Tools for LLMs

Model Context Protocol turns your LLM into a tool-using agent — file access, APIs, your home lab. Build your first MCP server in under 50 lines of Python.

n8n + LLM: Building Automations That Actually Think

n8n + LLM: Building Automations That Actually Think

Traditional automation is just very fast copy-paste. When your email filter breaks because someone wrote "URGENT" in lowercase, you realize rule-based logic has limits. Connecting n8n to a local LLM turns "if this then that" into "figure this out and do the right thing."

Bash for loops sequential counting

Bash for loops sequential counting

· Updated:

Master bash for loops, while loops, and seq for sequential counting — iterate over files, ranges, and arrays without losing your mind.

Bulk rename files in bash

Bulk rename files in bash

· Updated:

Remove spaces and special characters from filenames using bash loops, rename, find, and parameter expansion tricks.