Answers to the Ultimate Question of Life, the Universe, and Everything. Into a single brainstorming repo.
This is the code styling that must be used to contribute to Omni Notes project
Google Java style is used as base
- Hard wrap at 120 chars (instead than 100)
- Single space before method declaration parenthesis
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
# Move into the Android project BEFORE running the following command | |
rm local.properties; docker rm android; docker run -v $PWD:/workspace --name android tabrindle/min-alpine-android-sdk:latest bash -c "yes | sdkmanager --update && yes | sdkmanager --licenses && cd workspace && ./gradlew build --stacktrace -Dorg.gradle.daemon=true -Pandroid.useDeprecatedNdk=true" |
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 checkout develop | |
git pull | |
mvn jgitflow:release-start -B | |
mvn jgitflow:release-finish |
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 checkout develop | |
for i in $(git branch | grep release); do git branch -D $i; done |
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 push origin develop master --tags | |
git checkout master | |
mvn docker:build docker:push docker:removeImage | |
git checkout develop |
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
#!/bin/bash | |
path=`curl -sL https://github.com/federicoiosue/PSMetadataFetcherJava/releases/latest | egrep -o '/federicoiosue/PSMetadataFetcherJava/releases/download/.+/.*.jar'` | |
fileName=`echo $path | rev | cut -d '/' -f 1 | rev` | |
echo $path | wget --base=http://github.com/ -i - | |
cp $fileName PlayStoreMetadataFetcher.jar |
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
keystore=/path/tp/your/keystore | |
keystore.password=keystorePassword | |
keystore.alias=aliasForApp | |
keystore.alias.password=aliasForAppPassword |
NewerOlder