View JPEG thumbnails
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
Run thumbs.py to generate: | |
- thumbnails | |
- previews (enlarged and blurred thumbnails) | |
- stripped image data | |
- restored images out of stripped data |
View build.gradle
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
apply from: "$rootDir/gradle/scripts/{your_script}.gradle" |
View settings.gradle
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
git { | |
fetch 'https://example.com/build_scripts_repo.git', { | |
dir "$rootDir/gradle/scripts" | |
tag 'v1.2.3' | |
} | |
} |
View build.gradle
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
git { | |
implementation 'https://example.com/repository.git', { | |
tag 'v1.2.3' | |
} | |
} |
View settings.gradle
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
plugins { | |
id 'com.alexvasilkov.git-dependencies' version '2.0.1' | |
} |
View build.gradle
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
dependencies { | |
implementation 'org.gradle.cpp-samples:utilities:1.0' | |
} |
View build.gradle
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
repositories { | |
maven { url 'https://jitpack.io' } | |
} | |
dependencies { | |
implementation 'com.github.User:Repo:Tag' | |
} |
View Turbo Boost toggle for macOS
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
Simple script to toggle Turbo Boost on MacBook Pro |