Skip to content

Instantly share code, notes, and snippets.

View unsquare's full-sized avatar

Jeff James unsquare

View GitHub Profile
@unsquare
unsquare / Change Case of Clipboard.scpt
Created June 9, 2021 18:39
AppleScript to change case of clipboard text to uppercase or lowercase
on changeCaseOfText(theText, theCaseToSwitchTo)
if theCaseToSwitchTo contains "Lowercase" then
set theComparisonCharacters to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
set theSourceCharacters to "abcdefghijklmnopqrstuvwxyz"
else if theCaseToSwitchTo contains "Uppercase" then
set theComparisonCharacters to "abcdefghijklmnopqrstuvwxyz"
set theSourceCharacters to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
else
return theText
end if
@unsquare
unsquare / Horror Prompt.scpt
Created October 16, 2015 23:58
Applescript that generates flash fiction mashup prompts.
set theHorror to {"The Exorcist", "The Walking Dead", "Interview With A Vampire", "Frankenstein", "The Babadook", "Poltergeist", "Gremlins", "It", "Rosemary’s Baby", "It Follows", "Hellraiser", "Psycho", "Evil Dead", "The Shining", "Texas Chainsaw Massacre", "The Descent", "The Thing", "Nightmare On Elm Street", "The Ring", "Carrie"}
set theNormal to {"Harry Potter", "House of Cards", "Back to the Future", "The Marvel Universe", "Mad Men", "Scooby Doo", "Scandal", "Planet of the Apes", "Transformers", "Sex and the City", "The Muppets", "Die Hard", "Star Trek", "Pitch Perfect", "50 Shades of Grey", "Fast and the Furious", "The Shawshank Redemption", "Casablanca", "Doctor Who", "The Martian"}
set thePrompt to "It's like " & some item of theHorror & " meets " & some item of theNormal & "!"
display dialog thePrompt