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
| while true; do | |
| osascript -e ' | |
| tell application "Music" | |
| if it is running and player state is playing then | |
| try | |
| if rating of current track is 20 then next track | |
| end try | |
| end if | |
| end tell | |
| ' |
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
| #!/bin/zsh | |
| FASTMAIL_BASE="https://app.fastmail.com/mail/inbox/compose" | |
| # 1. In safari, go to "https://app.fastmail.com" | |
| # 2. Save this as "FastMail.app" in ~/Applications | |
| # 3. Get python3 and make sure it is in path as "python3" (just try to run `python3` in a brand new terminal session | |
| # encode URLs using python3 | |
| urlencode() { |
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
| #!/bin/bash | |
| # IMPORTANT: You will need to disable SIP aka Rootless in order to fully execute this script, you can reenable it after. | |
| # WARNING: It might disable things that you may not like. Please double check the services in the TODISABLE vars. | |
| # Get active services: launchctl list | grep -v "\-\t0" | |
| # Find a service: grep -lR [service] /System/Library/Launch* /Library/Launch* ~/Library/LaunchAgents | |
| # Agents to disable | |
| TODISABLE=('com.apple.security.keychainsyncingoveridsproxy' 'com.apple.personad' 'com.apple.passd' 'com.apple.screensharing.MessagesAgent' 'com.apple.CommCenter-osx' 'com.apple.Maps.mapspushd' 'com.apple.Maps.pushdaemon' 'com.apple.photoanalysisd' 'com.apple.telephonyutilities.callservicesd' 'com.apple.AirPlayUIAgent' 'com.apple.AirPortBaseStationAgent' 'com.apple.CalendarAgent' 'com.apple.DictationIM' 'com.apple.iCloudUserNotifications' 'com.apple.familycircled' 'com.apple.familycontrols.useragent' 'com.apple.familynotificationd' 'com.apple.gamed' 'com.apple.icloud.findmydeviced.findmydevi |
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 bash | |
| # Updated to work in 2017 from the original: http://hints.macworld.com/article.php?story=20091014194517371 | |
| # --- applesource.bash --- downloads source code for an entire Apple release | |
| # Take input from command-line (use "10.5.8", "10.6.1", etc.) | |
| # Example: ./get-sources.sh 10.12.4 | |
| version="macos-`echo $* | tr -d "."`" | |
| # URL: | |
| homepage="https://opensource.apple.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
| #!/usr/bin/env python2.7 | |
| #Usage: | |
| #./update-names.py FILE.iso | |
| #Always make backups. | |
| import sys | |
| print(sys.argv[1]) | |
| file = open(sys.argv[1], "r+b") | |
| bytestring = '' | |
| # DVD Titles are stored in seven location on UDF disk images | |
| offsets = [32808, 65561, 67701, 71765, 98329, 100469, 104533] |