Skip to content

Instantly share code, notes, and snippets.

View emorydunn's full-sized avatar

Emory Dunn emorydunn

View GitHub Profile
@emorydunn
emorydunn / Dict+ID.swift
Last active July 28, 2023 19:37
Coordinated Store
//
// Dict+ID.swift
//
//
// Created by Emory Dunn on 7/25/23.
//
import Foundation
import Collections
@emorydunn
emorydunn / Make Year Group.applescript
Created July 8, 2024 23:45
An script for Capture One which creates monthly collections for the current year.
tell front document of application "Capture One 22"
set theYear to year of (current date) as string
--set theYear to "2012"
-- Make year group
set theYearGroup to make new collection with properties {name:theYear, kind:group}
-- Make month groups
repeat with i from 1 to 12