Skip to content

Instantly share code, notes, and snippets.

@colbyn
colbyn / Webmaster-Agency-Notes.md
Created June 19, 2025 02:24
Webmaster Agency Notes

Oh now I understand what’s on your mind, I myself have come to the same conclusion but it was just speculation. Yes, I’m definitely interested. I apologize, while I’m always interested in discussing new ideas with strangers, when someone anonymously reaches out to me without providing much context or background, I don’t know what to expect so I take it very casually until I find out who I’m talking to on the other end. I also have a lot on my mind at this time, there’s this local contractor offering $60K annually for someone to manage their online site, which in my mind was such a technically simple problem, without also being too time consuming that it got me thinking about possibly scaling things up, starting my own agency and working with many such clients. Although, I may have a tendency to over complicate the problem, in my mind the web dev / webmaster space is very saturated, its not the early 2000’s anymore, its mature and I’ve thinking hard about fundamental value differentiation. What can I do that c

@colbyn
colbyn / Turn.swift
Created June 23, 2025 16:19
Turn Angles
import Foundation
/// A type-safe representation of an angle in full turns.
/// One full turn equals 360 degrees or 2π radians.
struct Turn: Hashable, Codable {
/// The raw value in full turns. 1.0 = 360° = 2π radians.
let value: Double
/// Creates a `Turn` from a value in full turns.
/// - Parameter value: The angle in full turns.
@colbyn
colbyn / check-hardware.sh
Created June 24, 2025 16:30
FFMPEG Video Recording Automation Scripts — 2025-6-24
#!/usr/bin/env bash
set -euo pipefail
# ffmpeg -encoders | grep -E 'hevc_videotoolbox|aac_at'
ffmpeg -encoders | grep -E 'hevc_videotoolbox|aac_at'
@colbyn
colbyn / README.md
Created June 24, 2025 17:19
My Automated FFMPEG hardware recoding setup (desktop screen capture + camera + multiple audio sources for redundancy) all muxed into a single master copy

🎥 Clean Multi-Input Capture on macOS

A set of dead-simple FFmpeg helper scripts for recording high-quality, synchronized video + audio streams directly into a clean, editable .mkv master file on macOS. Designed for screen walkthroughs, project documentation, and clean archival capture using built-in or external hardware.

🎙️ Why Record and Mux Multiple Raw Streams?

This project is built around a "clean master capture" philosophy:

📦 1. Everything in One File (Synchronized)