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
| use scripting additions | |
| set pagesFolder to choose folder with prompt "Select the folder containing your Pages documents:" | |
| set outputFolder to choose folder with prompt "Select the folder to save the exported DOCX files:" | |
| tell application "Finder" | |
| set pagesItems to every file of pagesFolder whose name extension is "pages" | |
| end tell | |
| if (count of pagesItems) is 0 then |
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
| { | |
| "$schema": "https://biomejs.dev/schemas/2.1.3/schema.json", | |
| "vcs": { | |
| "enabled": false, | |
| "clientKind": "git", | |
| "useIgnoreFile": false | |
| }, | |
| "files": { | |
| "ignoreUnknown": false | |
| }, |
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
| Linting and Formatting Configuration Files |
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
| # This is the configuration file for Ghostty. | |
| # | |
| # This template file has been automatically created at the following | |
| # path since Ghostty couldn't find any existing config files on your system: | |
| # | |
| # /Users/philipsinatra/Library/Application Support/com.mitchellh.ghostty/config | |
| # | |
| # The template does not set any default options, since Ghostty ships | |
| # with sensible defaults for all options. Users should only need to set | |
| # options that they want to change from the default. |
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
Show hidden characters
| { | |
| "compilerOptions": { | |
| /* Base Options: */ | |
| "esModuleInterop": true, | |
| "skipLibCheck": true, | |
| "target": "es2022", | |
| "allowJs": true, | |
| "resolveJsonModule": true, | |
| "moduleDetection": "force", | |
| "isolatedModules": true, |
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
| const fs = require('fs'); | |
| const path = require('path'); | |
| const MAX_FILES_PER_FOLDER = 500; | |
| const IMAGE_EXTENSIONS = ['.png', '.jpg', '.jpeg', '.gif']; | |
| // Get a list of all files in the current directory | |
| const files = fs.readdirSync('.'); | |
| // Filter out only the image files |
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
| { | |
| "[html]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[javascriptreact]": {}, | |
| "[json]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" |
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
| .box { | |
| box-shadow: | |
| 0 2.8px 2.2px rgba(0, 0, 0, 0.034), | |
| 0 6.7px 5.3px rgba(0, 0, 0, 0.048), | |
| 0 12.5px 10px rgba(0, 0, 0, 0.06), | |
| 0 22.3px 17.9px rgba(0, 0, 0, 0.072), | |
| 0 41.8px 33.4px rgba(0, 0, 0, 0.086), | |
| 0 100px 80px rgba(0, 0, 0, 0.12); | |
| } |
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
| :root { | |
| /* #region Color Variables */ | |
| --color-slate-50: #f8fafc; | |
| --color-slate-100: #f1f5f9; | |
| --color-slate-200: #e2e8f0; | |
| --color-slate-300: #cbd5e1; | |
| --color-slate-400: #94a3b8; | |
| --color-slate-500: #64748b; | |
| --color-slate-600: #475569; | |
| --color-slate-700: #334155; |
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/local/bin/python3 | |
| import random | |
| import time | |
| test_board = ['#', 'X', '0', 'X', '0', 'X', '0', 'X', '0', 'X'] | |
| game_board = ['#', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' '] | |
| def display_board(board): |
NewerOlder