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
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
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. |
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 -euo pipefail | |
# ffmpeg -encoders | grep -E 'hevc_videotoolbox|aac_at' | |
ffmpeg -encoders | grep -E 'hevc_videotoolbox|aac_at' |
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.
This project is built around a "clean master capture" philosophy:
OlderNewer