Skip to content

Instantly share code, notes, and snippets.

@zataraine
zataraine / feed-validator.ps1
Created December 30, 2025 13:45
feed-validator is a robust, parallel, live-streaming PowerShell script for validating feeds and URLs. It handles RSS, Atom, JSON APIs, CSVs, HTML pages, gzipped content, and more, giving live feedback and automatic repair suggestions.
# ==========================================================
# Parallel Feed / URL Validator (PowerShell 7+)
# Robust + LIVE console output (ACTUALLY streaming)
# ==========================================================
[CmdletBinding()]
param(
[string]$Path,
[int]$ThrottleLimit = 12,
[int]$MaxRetries = 2,