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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Pdf</title> | |
| <style> | |
| html, body {margin: 0; padding: 0; height: 100%;} | |
| iframe {width: 100%; height: 100vh; border: none; | |
| } |
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
| name: Metrics Age | |
| on: | |
| schedule: | |
| - cron: "0 0 1 1 *" # Every January 1st at midnight | |
| workflow_dispatch: | |
| permissions: | |
| contents: write |
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
| :: LICENSE: MIT | |
| :: | |
| :: Description: | |
| :: A batch script to sort files in a specified folder into subfolders based on their extensions | |
| :: and optionally clean up empty folders. | |
| :: | |
| :: Usage: | |
| :: 1. Modify the folder - (set "folder=D:\sorting_text") - variable to specify the folder path where files should be sorted. | |
| :: 2. Run the script by double-clicking or executing it in a command prompt. |
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
| :: LICENSE: MIT | |
| :: | |
| :: Description: | |
| :: This script recursively renames image files (.png, .jpg, .jpeg) in the specified folder and its subfolders to a sequential naming convention, | |
| :: using a provided base name and a 3-digit numbering system (e.g. base_name_000.png, base_name_001.jpg, etc.). | |
| :: | |
| :: It allows the user to: | |
| :: - [C]ontinue: Proceed with files in the current folder. | |
| :: - [S]kip: Skip files in the current folder and move to the next folder. |