Skip to content

Instantly share code, notes, and snippets.

@SamWindell
SamWindell / floe-remove-quarantine-extra.sh
Created October 20, 2025 13:27
Remove the quarentine from Floe plugins (recursively)
#!/bin/bash
echo "=== Floe Quarantine Removal (v2) ==="
echo "This will remove quarantine from ALL files in the plugin bundles"
echo "You may have to enter your user password. As you type your password it will be invisible. Press enter to submit."
echo ""
PLUGINS=(
"/Library/Audio/Plug-Ins/Components/Floe.component"
"/Library/Audio/Plug-Ins/VST3/Floe.vst3"
"/Library/Audio/Plug-Ins/CLAP/Floe.clap"
@SamWindell
SamWindell / floe-remove-quarantine.sh
Created October 7, 2025 13:31
Remove the quarantine from Floe plugins.
#!/bin/bash
echo "Removing quarantine from Floe plugins..."
echo "You may have to enter your user password. As you type your password it will be invisible. Press enter to submit."
sudo xattr -r -d com.apple.quarantine /Library/Audio/Plug-Ins/Components/Floe.component
sudo xattr -r -d com.apple.quarantine /Library/Audio/Plug-Ins/VST3/Floe.vst3
sudo xattr -r -d com.apple.quarantine /Library/Audio/Plug-Ins/CLAP/Floe.clap
echo "Done!"
@SamWindell
SamWindell / floe-diagnostics.sh
Last active October 7, 2025 08:42
Floe macOS installation diagnostics
#!/bin/bash
echo ""
echo "Starting Floe plugin diagnostics..."
echo "This will take about a minute. Please wait..."
echo ""
# Capture all output to a variable
output=$(cat <<'EOF_DIAGNOSTICS'
@SamWindell
SamWindell / atomic_ref_list.h
Last active July 2, 2024 13:47
Atomic linked list of reference counted objects - single reader, singler writer
// This code can now be found in Floe
// https://github.com/Floe-Synth/Floe/blob/main/src/utils/thread_extra/atomic_ref_list.hpp