├── .gitignore ├── LICENSE ├── README.md ├── bitrise └── download-recent-error-logs.sh ├── carthage ├── checkout ├── search-bcsymbolmap ├── update └── update-with-hack.sh ├── fabric └── download-ipa.sh ├── git ├── blame-word ├── brdmerged ├── brset ├── git-branch-by-author ├── replaceOriginWith.sh ├── take-ours └── take-theirs ├── github ├── add-collab ├── find-pull-requests ├── pr-approve ├── pr-check-milestone ├── pr-ready-for-review ├── pro └── update-comment ├── image ├── pixelSize.sh └── sips-assets.sh ├── ios └── resize-appicon.sh ├── media └── hls │ └── extract-master-playlist ├── net ├── url_decode └── url_encode ├── snippet └── gen │ ├── color-printf │ └── swift-json-decode ├── swiftpm ├── install.sh └── release.sh ├── tools └── sync-file.sh ├── twitter └── bearer └── xcode ├── build-time.sh ├── check-build-time.sh ├── check-expiring-mobileprovision.sh ├── find-error.sh ├── fix-framework-version.sh ├── latest-build-time.sh ├── open-device-support-dir.sh ├── pbpasteReplayArgs.sh ├── plugins ├── revert-xquick.scpt ├── xcode_toggleFlux_backward.scpt ├── xcode_toggleFlux_forward.scpt ├── xcode_toggleImplAndTests.scpt └── xquick.scpt ├── printUUIDofMobileprovision.sh ├── sort-Xcode-project-file ├── sort-xcpretty-by-time ├── sync-device-support-dir.sh ├── total-test-duration └── xquick.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/README.md -------------------------------------------------------------------------------- /bitrise/download-recent-error-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/bitrise/download-recent-error-logs.sh -------------------------------------------------------------------------------- /carthage/checkout: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | carthage checkout --use-ssh $@ 3 | -------------------------------------------------------------------------------- /carthage/search-bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/carthage/search-bcsymbolmap -------------------------------------------------------------------------------- /carthage/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/carthage/update -------------------------------------------------------------------------------- /carthage/update-with-hack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/carthage/update-with-hack.sh -------------------------------------------------------------------------------- /fabric/download-ipa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/fabric/download-ipa.sh -------------------------------------------------------------------------------- /git/blame-word: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/git/blame-word -------------------------------------------------------------------------------- /git/brdmerged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/git/brdmerged -------------------------------------------------------------------------------- /git/brset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/git/brset -------------------------------------------------------------------------------- /git/git-branch-by-author: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/git/git-branch-by-author -------------------------------------------------------------------------------- /git/replaceOriginWith.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/git/replaceOriginWith.sh -------------------------------------------------------------------------------- /git/take-ours: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/git/take-ours -------------------------------------------------------------------------------- /git/take-theirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/git/take-theirs -------------------------------------------------------------------------------- /github/add-collab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/github/add-collab -------------------------------------------------------------------------------- /github/find-pull-requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/github/find-pull-requests -------------------------------------------------------------------------------- /github/pr-approve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/github/pr-approve -------------------------------------------------------------------------------- /github/pr-check-milestone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/github/pr-check-milestone -------------------------------------------------------------------------------- /github/pr-ready-for-review: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/github/pr-ready-for-review -------------------------------------------------------------------------------- /github/pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/github/pro -------------------------------------------------------------------------------- /github/update-comment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/github/update-comment -------------------------------------------------------------------------------- /image/pixelSize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/image/pixelSize.sh -------------------------------------------------------------------------------- /image/sips-assets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/image/sips-assets.sh -------------------------------------------------------------------------------- /ios/resize-appicon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/ios/resize-appicon.sh -------------------------------------------------------------------------------- /media/hls/extract-master-playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/media/hls/extract-master-playlist -------------------------------------------------------------------------------- /net/url_decode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/net/url_decode -------------------------------------------------------------------------------- /net/url_encode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/net/url_encode -------------------------------------------------------------------------------- /snippet/gen/color-printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/snippet/gen/color-printf -------------------------------------------------------------------------------- /snippet/gen/swift-json-decode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/snippet/gen/swift-json-decode -------------------------------------------------------------------------------- /swiftpm/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/swiftpm/install.sh -------------------------------------------------------------------------------- /swiftpm/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/swiftpm/release.sh -------------------------------------------------------------------------------- /tools/sync-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/tools/sync-file.sh -------------------------------------------------------------------------------- /twitter/bearer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/twitter/bearer -------------------------------------------------------------------------------- /xcode/build-time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/build-time.sh -------------------------------------------------------------------------------- /xcode/check-build-time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/check-build-time.sh -------------------------------------------------------------------------------- /xcode/check-expiring-mobileprovision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/check-expiring-mobileprovision.sh -------------------------------------------------------------------------------- /xcode/find-error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/find-error.sh -------------------------------------------------------------------------------- /xcode/fix-framework-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/fix-framework-version.sh -------------------------------------------------------------------------------- /xcode/latest-build-time.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/latest-build-time.sh -------------------------------------------------------------------------------- /xcode/open-device-support-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/open-device-support-dir.sh -------------------------------------------------------------------------------- /xcode/pbpasteReplayArgs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/pbpasteReplayArgs.sh -------------------------------------------------------------------------------- /xcode/plugins/revert-xquick.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/plugins/revert-xquick.scpt -------------------------------------------------------------------------------- /xcode/plugins/xcode_toggleFlux_backward.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/plugins/xcode_toggleFlux_backward.scpt -------------------------------------------------------------------------------- /xcode/plugins/xcode_toggleFlux_forward.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/plugins/xcode_toggleFlux_forward.scpt -------------------------------------------------------------------------------- /xcode/plugins/xcode_toggleImplAndTests.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/plugins/xcode_toggleImplAndTests.scpt -------------------------------------------------------------------------------- /xcode/plugins/xquick.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/plugins/xquick.scpt -------------------------------------------------------------------------------- /xcode/printUUIDofMobileprovision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/printUUIDofMobileprovision.sh -------------------------------------------------------------------------------- /xcode/sort-Xcode-project-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/sort-Xcode-project-file -------------------------------------------------------------------------------- /xcode/sort-xcpretty-by-time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/sort-xcpretty-by-time -------------------------------------------------------------------------------- /xcode/sync-device-support-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/sync-device-support-dir.sh -------------------------------------------------------------------------------- /xcode/total-test-duration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/total-test-duration -------------------------------------------------------------------------------- /xcode/xquick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toshi0383/scripts/HEAD/xcode/xquick.sh --------------------------------------------------------------------------------