This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # local_net_status.sh | |
| # | |
| # Lightweight on-demand monitoring tool for local network devices. | |
| # | |
| # Checks: | |
| # - Connectivity (ping) | |
| # - Service availability (SSH, HTTP/HTTPS) | |
| # - Internet reachability (local + via devices) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # sanitize_env_aliases.sh | |
| # | |
| # Analyze shell aliases and detect those pointing to non-installed commands. | |
| # | |
| # This script is typically used when enabling GRC (Generic Colourizer) | |
| # on macOS systems, where many Linux-oriented aliases may be auto-created | |
| # but not actually available on the system. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # Interactive Ansible wrapper (dialog-based UI) | |
| # | |
| # -------------------------------------------------------- | |
| # Overview | |
| # -------------------------------------------------------- | |
| # This script provides an interactive interface for running | |
| # ansible-playbook with dynamic tag selection and safe execution. | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -u | |
| IFS=$'\n\t' | |
| # ============================================================================== | |
| # clean-up-aliases.sh — macOS Finder Alias → POSIX Symlink Converter | |
| # ============================================================================== | |
| # | |
| # DESCRIPTION | |
| # —————————————————————————— |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # | |
| # macOS Server Audit Script | |
| # ------------------------------------------------------------ | |
| # Purpose | |
| # Generate a comprehensive audit snapshot of a macOS server. | |
| # | |
| # Designed for: | |
| # • server migration | |
| # • incident investigation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # macports-services-auto.sh | |
| # | |
| # MacPorts (launchd) service management with: | |
| # - Two inventory modes: | |
| # 1) 'present': | |
| # services actually loadable now (plists present on disk) | |
| # 2) 'known': | |
| # services known to launchd (may include stale/residual entries) | |
| # - An exhaustive union mode (present + known) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # passwordGeneration — portable POSIX version | |
| # Version: 2.0 | |
| # Why use this script instead of: | |
| # openssl rand -hex 32 | |
| # gpg --armor --gen-random 0 "$((100 * 3/4))" | cut -c -50 | |
| # | |
| # Advantages: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # ----------------------------------------------------------------------------- | |
| # cross-filter-inventory.sh | |
| # ----------------------------------------------------------------------------- | |
| # Description: | |
| # This custom script compares and filters two related inventory CSV files: | |
| # 1) An anonymized "updates" CSV (e.g.: inventory-anon-updates.csv) | |
| # 2) A confidential detailed inventory CSV (e.g.: inventory-detailed.csv) | |
| # | |
| # It filters out: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # linkedin_export_parser_sweeper.py | |
| # Version 0.2 – 2025-12-02 | |
| # | |
| # CLI tool designed to parse, filter, and clean up your public LinkedIn | |
| # interactions (comments, reactions, shares) based on the official CSV data | |
| # export. Provides interactive triage, persistent SQLite-based whitelist/ | |
| # blacklist, and semi-automated comment removal through Safari integration. | |
| # | |
| # (c) 2025 dzogrim |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: MIT | |
| #version=DEVEL | |
| # Fedora 42 x86_64 minimal TTY Live hybrid ISO for firmware on/offline updates (fwupd) | |
| # | |
| # Purpose (what this ISO is for) | |
| # - Text-only (TTY) Fedora 42 Live ISO to run firmware updates with fwupd. | |
| # - Works online (LVFS over HTTPS) or offline using a restored cache. | |
| # - Boots on UEFI and BIOS/legacy. | |
| # - No GUI (nmcli only). Wi-Fi supported. | |
| # - Persistence supported via an ext4 partition labeled 'overlay' on the USB stick. |
NewerOlder