Skip to content

Instantly share code, notes, and snippets.

@dreness
dreness / swift_volume.swift
Created October 6, 2024 23:21
Swift CLI to get or set the sound volume of the main audio device using CoreAudio
// compile with: swiftcc swift_volume.swift -o swiftvol
import CoreAudio
import AudioToolbox
import Foundation
class SystemVolumeManager {
private let outputDeviceID: AudioDeviceID = AudioObjectID(kAudioObjectSystemObject)
private func getDefaultOutputDevice() -> AudioDeviceID? {
@dreness
dreness / photo_scores.py
Created October 4, 2024 19:33
Create browsable lists of your photos ordered by score for various kinds of image analysis that Photos.app already does
# #!/usr/bin/env python
import sqlite3
import pandas as pd
import os
from glob import glob
"""
This script reads a Photos SQLite database to produce views of the top scored assets in each category.
"""
@dreness
dreness / save_chat_gpt_code_snippets.js
Last active July 10, 2024 03:15
Tampermonkey script for use with chatgpt.com to add a "Save code" button below the "Copy code" button
// ==UserScript==
// @name Save Code Snippets
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Add a button to save code snippets from ChatGPT responses
// @author dre
// @match https://chat.openai.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=openai.com
// @grant GM_download
// ==/UserScript==
#!python -u
import re
from datetime import datetime
import click
import subprocess
import json
"""
NOTE: this requires a log config profile that enables 'private data' logging.
@dreness
dreness / empty-file-in-front-finder-window.scpt
Created April 16, 2024 06:56
Make a new empty file in the front finder window
use scripting additions
use framework "Foundation"
tell application "Finder"
-- path to frontmost Finder window
set windowPath to POSIX path of (target of front window as alias)
-- selected items in Finder, if any
set itemlist to selection as alias list
if length of itemlist > 0 then
repeat with i from 1 to length of itemlist
@dreness
dreness / favserver.py
Created March 29, 2024 06:49
Favicon Force-feeder
import http.server
import socketserver
import random
import os
import uuid
from http import HTTPStatus
'''
I wanted a quick way to spawn a bunch of Safari tabs with distinct favicons, so made a little webserver
to rotate through some PNGs. A substantially smaller program was sufficient for Chrome, which does what
@dreness
dreness / private-data.mobileconfig
Created February 8, 2024 04:57
enable private data in macOS logs
<?xml version="1.0"encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<array>
<dict>
<key>PayloadDisplayName</key>
<string>ManagedClient logging</string>
<key>PayloadEnabled</key>
@dreness
dreness / add_fork_remote.sh
Last active May 4, 2024 08:31
Use gh cli and fzf to add a remote for a fork of the current repo
#!/bin/sh
# Scenario:
# - you have a local checkout of a github repo
# - you're looking at public forks of that repo
# - you want to add a remote to your local checkout for one of the forks
set -e
set -o pipefail
@dreness
dreness / batch-transcribe-whisper.py
Created November 27, 2023 01:31
Batch audio transcription with whisper.cpp
#!python
"""
Configure the arguments to the process_directory call at the bottom.
Start additional instances of this script until your hw is full. If you
have multiple GPUs, you're responsible for setting CUDA_VISIBLE_DEVICES.
Using the 'medium' model, a V100 is mostly utilized with two instances.
This still has some bugs probably...
"""
@dreness
dreness / powermetrics_reader.py
Created November 20, 2023 11:40
Extract just one data point from powermetrics, suitable for graphing
#!python -u
import subprocess
import plistlib
import sys
"""
Print selected power metrics from /usr/bin/powermetrics at intervals, suitable
for graphing.
"""