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
| import json | |
| import csv | |
| import sys | |
| from datetime import datetime | |
| def parse_simkl_to_letterboxd(input_file, output_file): | |
| try: | |
| with open(input_file, 'r', encoding='utf-8') as f: | |
| data = json.load(f) | |
| except FileNotFoundError: |
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
| #!/bin/bash | |
| # ========================================== | |
| # Omarchy Single-Archive Backup Script | |
| # ========================================== | |
| # 1. Setup final archive name and a secure temporary staging directory | |
| FINAL_ARCHIVE="$HOME/Backup/omarchy_backup_$(date +%Y%m%d_%H%M%S).tar.gz" | |
| STAGE_DIR=$(mktemp -d) |
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
| // ========================================== | |
| // VIMPERATOR / PENTADACTYL CONFIGURATION | |
| // ========================================== | |
| // --- Tab Management --- | |
| api.map('d', 'x'); // Close current tab (Vimp: d | Default: x) | |
| api.map('u', 'X'); // Restore closed tab (Vimp: u | Default: X) | |
| api.map('J', 'E'); // Go one tab left (Vimp: J | Default: E) | |
| api.map('K', 'R'); // Go one tab right (Vimp: K | Default: R) |
OlderNewer