os x terminal command.
sudo mdutil -a -i off
| #!/bin/sh | |
| # rename-pictures.sh | |
| # Author: Justine Tunney <jtunney@gmail.com> | |
| # License: Apache 2.0 | |
| # | |
| # This shell script can be used to ensure all the images in a folder | |
| # have good descriptive filenames that are written in English. It's | |
| # based on the Mistral 7b and LLaVA v1.5 models. | |
| # | |
| # For example, the following command: |
| tccutil reset All com.steventheworker.DockAltTab | |
| tccutil reset ScreenCapture com.steventheworker.DockAltTab | |
| tccutil reset AppleEvents com.steventheworker.DockAltTab | |
| tccutil reset Accessibility com.steventheworker.DockAltTab | |
| tccutil reset MediaLibrary com.steventheworker.DockAltTab | |
| tccutil reset ListenEvent com.steventheworker.DockAltTab | |
| # other... ? | |
| # tccutil reset ListenEvent com.steventheworker.DockAltTab | |
| # tccutil reset DeveloperTool com.steventheworker.DockAltTab |
| #!/usr/bin/env python3 | |
| # Copyright © 2023 Justin McGettigan | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of this software | |
| # and associated documentation files (the “Software”), to deal in the Software without | |
| # restriction, including without limitation the rights to use, copy, modify, merge, publish, | |
| # distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the | |
| # Software is furnished to do so, subject to the following conditions: | |
| # | |
| # The above copyright notice and this permission notice shall be included in all copies or |
| // ==UserScript== | |
| // @name Youtube Sort & Filter Playlists When Saving Video | |
| // @version 2026.04.20.11 | |
| // @namespace https://gist.github.com/CaptainJack0404 | |
| // @description Add sort & filter controls to the "Save video to..." dialog | |
| // @author CaptainJack0404 | |
| // @match https://www.youtube.com/* | |
| // @match https://youtube.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
| // @grant none |
CTRL + A : Move the cursor to the beginning of the line
CTRL + E : Move the cursor to the end of the line
OPTION + Left Arrow : Move the cursor one word backward
OPTION + Right arrow : Move the cursor one word forward
Left Arrow : Move the cursor one character backward
Right Arrow : Move the cursor one character forward
I've recently tested on how to move the custom domain catch all email from G Suite to the new iCloud+ Catch All feature and wanted to share my experience.
The end result is having Custom Domain email and Catch All routing, that can be fully used via Gmail, including receiving and sending emails.
| # https://talk.automators.fm/t/unminimize-windows-of-the-current-application/12360/5 | |
| tell application id ("com.apple.systemevents") ¬ | |
| to tell (process 1 where it is frontmost) ¬ | |
| to tell (windows whose attribute named "AXMinimized"'s value is true) ¬ | |
| to if (it exists) then set the value of its attribute named "AXMinimized" of item 1 to false |
| // ==UserScript== | |
| // @name Youtube adblock | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description enough with the ads! | |
| // @author 4v3ngR | |
| // @match https://*.youtube.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
| // @grant none | |
| // @run-at document-start |