Terminal showing Git log and diff outputs being processed into a structured file

Git Context Collector for AI Changelog Generation

This Bash script aggregates Git repository data into a structured file, providing the necessary context for AI models to generate readable changelogs. It captures commit history, file changes, diffs, and contributor stats since the last tagged release. How It Works The script performs four key operations: Records commit messages between the latest tag and HEAD Lists all modified files in this range Captures detailed diffs for each changed file Collects contributor statistics The Script #!...

January 12, 2025
Terminal output showing DNS, SSL, and connectivity checks for a website

Debug Website DNS, SSL, and Connectivity with Bash Script

Bash Script for Debugging Website DNS, SSL, and Connectivity Issues When managing websites across different hosting providers, debugging connectivity issues can be challenging. I created a bash script that helps identify DNS configurations, SSL certificate details, and site availability in one go. What Does This Script Check? DNS records (A, CNAME, NS) from multiple providers SSL certificate information and expiry dates HTTP/HTTPS responses and redirects Website availability across different protocols The Script #!...

November 28, 2024