This file contains 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
# Powershell Script Sync iPhone v0.0.2 | |
# | |
# Copy Files (Images/Videos) to PC | |
# Copy Files Created After `date` | |
# Rename Files to "yyyyMMdd_HHmmss.ext" (android style) | |
# | |
# Usage: | |
# .\sync-iphone.ps1 | |
# .\sync-iphone.ps1 -After 2021-07-01 | |
# .\sync-iphone.ps1 -After last |
This file contains 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
/* | |
https://example.com/?id={@start_decimal@,@limit_decimal@} | |
https://example.com/?id={@0@,@999@} | |
*/ | |
static function OnBeforeRequest(oSession: Session) { | |
var regex = /{@([0-9]+)@,@([0-9]+)@}/i; | |
var repeater = oSession.PathAndQuery.match(regex); | |
if (repeater) { |