Copy photos to date folders
Sony:
exiftool -o . '-Directory<CreateDate' -d /Volumes/home/Photos/Original/Sony\ Camera/%Y-%m-%d -r /Volumes/Untitled/DCIM -progress
[ | |
{ | |
"summary": "DTO" | |
}, | |
{ | |
"summary": "BAMS Oncall Handover" | |
}, | |
{ | |
"summary": "Mid Week Oncall Sync" | |
}, |
<?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>PayloadDisplayName</key> | |
<string>tony-edge-lite</string> | |
<key>PayloadIdentifier</key> | |
<string>io.tonyxu.edge-lite</string> | |
<key>PayloadType</key> | |
<string>Configuration</string> |
{ | |
"Ansi 6 Color" : { | |
"Green Component" : 0.9137254901960784, | |
"Red Component" : 0.54509803921568623, | |
"Blue Component" : 0.99215686274509807 | |
}, | |
"Tags" : [ | |
], | |
"Ansi 12 Color" : { |
<?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>PayloadDisplayName</key> | |
<string>Edge Lite (Tony Xu)</string> | |
<key>PayloadIdentifier</key> | |
<string>io.tonyxu.edge-lite</string> | |
<key>PayloadType</key> | |
<string>Configuration</string> |
<?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>ANSIBlueColor</key> | |
<data> | |
YnBsaXN0MDDUAQIDBAUGBwpYJHZlcnNpb25ZJGFyY2hpdmVyVCR0b3BYJG9iamVjdHMS | |
AAGGoF8QD05TS2V5ZWRBcmNoaXZlctEICVRyb290gAGjCwwTVSRudWxs0w0ODxARElVO | |
U1JHQlxOU0NvbG9yU3BhY2VWJGNsYXNzTxAmMC43NDExNzY0ODYgMC41NzY0NzA2MTM1 | |
IDAuOTc2NDcwNTg5NgAQAYAC0hQVFhdaJGNsYXNzbmFtZVgkY2xhc3Nlc1dOU0NvbG9y |
Content moved to: https://github.com/tonyxu-io/pkce-generator/blob/master/index.html
// Merge two arrays | |
function merge(arr1, arr2) { | |
var res = [] | |
while (arr1.length > 0 && arr2.length > 0) { | |
if (arr1[0] < arr2[0]) { | |
res.push(arr1.shift()) | |
} else { | |
res.push(arr2.shift()) | |
} | |
} |