[feature | fix | fault | refactor | doc | test | build] - Subject line (try to keep under 50 characters)
Short summary of changes and related issues. Include motivation and context.
- none
/* | |
Filename: TransitionDemos.swift | |
Project: Demo Project | |
Created by John Durcan on 02/09/2025. | |
Copyright Β© 2025 Itch Studio Ltd.. All rights reserved. |
/* | |
Filename: GeometryDemo.swift | |
Project: Demo Project | |
Created by John Durcan on 25/09/2025. | |
Copyright Β© 2025 Itch Studio Ltd.. All rights reserved. |
/* | |
Filename: MorphingStarView.swift | |
Project: Demo Project | |
Created by John Durcan on 24/09/2025. | |
Copyright Β© 2025 Itch Studio Ltd.. All rights reserved. |
# Xcode .gitignore template by github.com/JohnnyD | |
## User settings | |
xcuserdata/ | |
## Build products | |
build/ | |
DerivedData/ | |
## Various settings |
#!/bin/bash | |
# Instructions: Copy to your directory, chmod +x update_eml_dates.sh, then ./update_eml_dates.sh /path/to/your/eml/files | |
# Directory containing .eml files | |
DIR=$1 | |
# Function to extract the sent date from the email header | |
extract_date() { | |
awk '/^Date: / {print substr($0, 7); exit}' "$1" | |
} |
#!/bin/bash | |
# Note, requires `ripmime` package. | |
# save file and run chmod +x extract_attachments.sh | |
# Instructions: with a folder of .eml files, run as ./extract_attachments.sh "/path/to/your/eml/files" "/path/to/output/directory" | |
# Directory containing .eml files | |
DIR=$1 | |
# Output directory for attachments | |
OUTPUT_DIR=$2 |
<?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>FILEHEADER</key> | |
<string> | |
// ___FILENAME___ | |
// ___PROJECTNAME___ | |
// |
# Specifies intentionally untracked files to ignore when using Git | |
# http://git-scm.com/docs/gitignore | |
*~ | |
*.sw[mnpcod] | |
*.log | |
*.tmp | |
*.tmp.* | |
log.txt | |
*.sublime-project |