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 python3 | |
| # detach_templates.py | |
| # Version: 1.1 | |
| # | |
| # Removes the attached template reference from .docx files so that | |
| # macros from the template no longer load. Formatting already applied | |
| # to the document is preserved. | |
| # | |
| # Usage: | |
| # python3 detach_templates.py /path/to/folder |
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 python3 | |
| # vtt_process.py | |
| # Version: 1.0 | |
| # | |
| # Processes Zoom/Teams .vtt transcript files for research use: | |
| # - Removes timecodes and block numbers | |
| # - Merges consecutive same-speaker blocks into paragraphs | |
| # - Replaces speaker names with interview labels (I / R) | |
| # - Applies US → UK spelling substitutions | |
| # |
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
| # vtt_process | |
| # Version: 1.0 | |
| # | |
| # Process a Zoom/Teams .vtt transcript file for research use. | |
| # Removes timecodes, merges same-speaker blocks, replaces speaker | |
| # names with interview labels (I / R), and applies US → UK spelling. | |
| # Output is written alongside the original as <name>_edited.txt. | |
| # | |
| # Dependency: relies on the file vtt_process.py. | |
| # |
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
| # interview-noter.scpt | |
| # Version: 1.0 | |
| # | |
| # A script for taking timestamped notes from interviews. | |
| # | |
| # Originally by Jason Snell as [podcast-noter.scpt](https://gist.github.com/jasonsnell/9b95468474d6cc864d4feb6e2a5ca9cf). | |
| # | |
| # Updated by Anthony Arblaster on 04 November 2025. | |
| # – Mastodon: https://mastodonapp.uk/@aarblaster | |
| # – GitHub: https://github.com/aarblaster |
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
| # etc_reset.zsh | |
| # Version: 4.0 | |
| # | |
| # A script for resetting all ports and protocols for ETC software. | |
| # Designed particularly for use with ETC Concert. | |
| # | |
| # Created by Anthony Arblaster on 18 February 2025. | |
| # | |
| # Copyright Anthony Arblaster 2025. | |
| # – Web: https://codebyanthony.com |
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
| -- Anthony Arblaster 22/10/2023 | |
| -- web: https://codebyanthony.com | |
| -- mastodon: https://mastodonapp.uk/@aarblaster | |
| -- An AppleScript to open URLs input as text in a Safari Profile. | |
| -- Requires [Keyboard Maestro](https://www.keyboardmaestro.com/main/) | |
| -- Compiled from a whole bunch of different places in bits and pieces. | |
| -- Particular thanks go to the [KM wiki](https://wiki.keyboardmaestro.com/AppleScript?s[]=applescript&s[]=variable) |