I hereby claim:
- I am lukespragg on github.
- I am lukespragg (https://keybase.io/lukespragg) on keybase.
- I have a public key whose fingerprint is CA52 D124 60B7 776E 98A3 185F B87C 537F 95CD 260B
To claim this, I am signing this object:
| # Check if today is Sunday, if commit is not a pull request, if git repo is official, and if branch is master. If checks pass, run Sonar reports | |
| - "[[ $(date +%u) -gt 5 ]] && [[ $TRAVIS_PULL_REQUEST == false ]] && [[ $TRAVIS_REPO_SLUG == RepoOrg/RepoName ]] && [[ $TRAVIS_BRANCH == master ]] && mvn sonar:sonar" |
| <!-- Javadocs GitHub deployment --> | |
| <plugin> | |
| <groupId>com.github.github</groupId> | |
| <artifactId>site-maven-plugin</artifactId> | |
| <version>0.7</version> | |
| <executions> | |
| <execution> | |
| <configuration> | |
| <server>github-deploy</server> | |
| <repositoryName>${project.name}</repositoryName> |
| <!-- Site generation plugin --> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-site-plugin</artifactId> | |
| <version>3.3</version> | |
| <dependencies> | |
| <dependency> | |
| <groupId>lt.velykis.maven.skins</groupId> | |
| <artifactId>reflow-velocity-tools</artifactId> | |
| <version>1.0.0</version> |
| <!-- ProGuard obfuscation plugin --> | |
| <plugin> | |
| <groupId>com.github.wvengen</groupId> | |
| <artifactId>proguard-maven-plugin</artifactId> | |
| <version>2.0.6</version> | |
| <executions> | |
| <execution> | |
| <configuration> | |
| <proguardVersion>4.9</proguardVersion> | |
| <options> |
| #!/bin/bash | |
| clear | |
| prompt="Pick select a task: " | |
| options=("Generate Certificate Signing Request" "Generate Chained Certificate" "Decrypt Private Key") | |
| PS3="$prompt " | |
| select opt in "${options[@]}" "Quit"; do | |
| case "$REPLY" in | |
| 1 ) echo "You picked \"$opt\"" |
| # Vanilla Forums: traditional vs flat | |
| location = /discussions { | |
| rewrite ^ $scheme://$server_name permanent; | |
| } | |
| location = /discussions/ { | |
| rewrite ^ $scheme://$server_name permanent; | |
| } | |
| location = /categories/discussions { | |
| rewrite ^ $scheme://$server_name permanent; | |
| } |
I hereby claim:
To claim this, I am signing this object:
| <style type="text/css"> | |
| #console { | |
| width: 800px; | |
| height: 500px; | |
| background-color: #000; | |
| color: #00FF00; | |
| font-family: 'lucida console', arial; | |
| font-size: 12px; | |
| font-weight: bold; | |
| padding: 5px; |
| after_success: | |
| - "test ${TRAVIS_BRANCH} = master && cd $TRAVIS_BUILD_DIR/target && travis-artifacts upload --path $PROJECT_ARTIFACT_ID-* --target-path $TRAVIS_BUILD_NUMBER" | |
| env: | |
| global: | |
| - "ARTIFACTS_S3_BUCKET=sc-snapshots" | |
| - "ARTIFACTS_AWS_REGION=us-east-1" | |
| - secure: "Ksr3R/yLPtTnLlzouCch4c/O8WhdCnRh5qGOcVxFTvhZ8iQ7tA4f37cjmv4D\ndILSF29rl830HuBk8BOurr/GZEuNLmGFIR+8p/CG9kRFUiOxqYbo2fEhFbmT\n+3sAAm9M82tEjBE3r6EBVrO+8UcGCZJSpuoHpaRnGnPMTzX6mBM=" | |
| - secure: "07ZvSYyJpZI+MTOCxH28PGnvD3cn1/0E6t4DfcNMfXRW5kEWs2BWUBvytd9J\nu0MyL1IuoExLaNuDMKC5Mw/7dHIbNJvSpV9gyyHz6NHe3qlGhbgZcgpvZnMO\n60Gjkn3I9LX6BWULhFG9cEFArGhi6v1mAM7Qvk/+XfNV0QnGo0Y=" |
| #!/bin/bash | |
| git clone https://github.com/ircanywhere/ircanywhere.git | |
| git checkout development | |
| sudo add-apt-repository ppa:chris-lea/node.js | |
| sudo apt-get update | |
| sudo apt-get install nodejs | |
| sudo curl https://raw.github.com/creationix/nvm/v0.3.0/install.sh | sh |