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
% https://jimbly.github.io/regex-crossword/ | |
enum LETTER = { | |
A, B, C, D, E, F, G, H, I, J, K, L, M, | |
N, O, P, Q, R, S, T, U, V, W, X, Y, Z | |
}; | |
array[1..7] of var LETTER: row1; | |
array[1..8] of var LETTER: row2; | |
array[1..9] of var LETTER: row3; |
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
tell application "System Events" | |
if (name of processes) contains "Xcode" then | |
-- Check if Xcode is already the active/focused application | |
if (name of first application process whose frontmost is true) is not "Xcode" then | |
tell application "Xcode 16.2 (Beta)" | |
activate | |
delay 0.25 -- Wait for Xcode to become active | |
end tell | |
end if |
OlderNewer