Repository for classifying and indexing scripts for any programming language
This repository is organized using a three-level hierarchy:
Python/- Python scriptsJavaScript/- JavaScript/Node.js scriptsBash/- Bash shell scriptsPowerShell/- PowerShell scriptsRuby/- Ruby scriptsGo/- Go scripts
Each programming language directory contains the following categories:
automation/- Automation and task scheduling scriptsweb-scraping/- Web scraping and data extraction scriptsdata-processing/- Data transformation and analysis scriptsnetworking/- Network-related utilities and toolssystem-administration/- System administration and management scriptstext-processing/- Text manipulation and processing scriptsmiscellaneous/- Other scripts that don't fit into specific categories
Each category contains subcategories for specific use-cases:
file-operations/- File and directory managementapi-integration/- API clients and integrationsdatabase/- Database operations and queriesmonitoring/- System and application monitoringbackup/- Backup and restore operationslogging/- Logging and log analysistesting/- Testing utilities and scriptsdeployment/- Deployment automationconfiguration/- Configuration management
Place your scripts in the appropriate directory based on:
- Programming Language (supercategory)
- General Application (category)
- Specific Use-Case (subcategory)
Example: A Python script for backing up files would go in:
Python/automation/backup/