This file contains 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
const searchAndSelectFirst = async () => { | |
const ids = [ | |
"enter inscription IDs/search terms here, up to 30" | |
]; | |
console.log( | |
"Click into the website to make it focused. Script starting in 5 seconds..." | |
); | |
await new Promise((resolve) => setTimeout(resolve, 5000)); |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>DVTConsoleDebuggerInputTextColor</key> | |
<string>1 1 1 1</string> | |
<key>DVTConsoleDebuggerInputTextFont</key> | |
<string>SFMono-Bold - 11.5</string> | |
<key>DVTConsoleDebuggerOutputTextColor</key> | |
<string>1 1 1 1</string> |
This file contains 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
import UIKit.UIGestureRecognizerSubclass | |
final class MNTLongPressGestureRecognizer: UILongPressGestureRecognizer { | |
var triggerWithForceTouch = true | |
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent) { | |
super.touchesBegan(touches, with: event) | |
handleTouches(touches, with: event) | |
} | |
This file contains 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
#target Adobe Photoshop CC 2015.5 | |
bringToFront() | |
var folder = Folder.selectDialog() | |
var files = folder.getFiles(/\.(pdf)$/i) | |
var densities = [54, 72, 108, 144, 216, 288] | |
var folderNames = ['ldpi', 'mdpi', 'hdpi', 'xhdpi', 'xxhdpi', 'xxxhdpi'] | |
for (var i = 0; i < folderNames.length; i++) { |