Skip to content

Instantly share code, notes, and snippets.

View aalkhodiry's full-sized avatar

Abdulrhman Alkhodiry aalkhodiry

View GitHub Profile
@zeroows
zeroows / start-hive.sh
Last active February 18, 2026 17:36
A self-bootstrapping shell script that sets up and launches a [claude-flow] hive-mind team with Claude Code.
#!/usr/bin/env bash
##############################################################################
# Project — AiDevSquad Hive-Mind Launcher
#
# Reads the hive manifest and starts Claude Code with the team already spinning.
# Check the gist https://gist.github.com/zeroows/5b86f7a38735e4719929c0e7cbbe763b
# Usage:
# ./start-hive.sh # Start hive (interactive)
# ./start-hive.sh "add pushback notification domain" # Start hive with a task
# ./start-hive.sh --resume # Resume last session
@stenuto
stenuto / hls.sh
Created November 7, 2024 16:58
HLS ffmpeg script
#!/bin/bash
# Function to display usage information
usage() {
echo "Usage: $0 /path/to/input.mp4 [ /path/to/output_directory ]"
exit 1
}
# Check if at least one argument (input file) is provided
if [ $# -lt 1 ]; then