- no upfront installation/agents on remote/slave machines - ssh should be enough
- application components should use third-party software, e.g. HDFS, Spark's cluster, deployed separately
- configuration templating
- environment requires/asserts, i.e. we need a JVM in a given version before doing deployment
- deployment process run from Jenkins
This file contains hidden or 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
| // Java System properties | |
| // ======================= | |
| // http://docs.oracle.com/javase/tutorial/essential/environment/properties.html | |
| // http://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html | |
| /* | |
| Key Meaning | |
| ================ | |
| "file.separator" Character that separates components of a file path. This is "/" on UNIX and "\" on Windows. | |
| "java.class.path" Path used to find directories and JAR archives containing class files. Elements of the class path are separated by a platform-specific character specified in the path.separator property. | |
| "java.home" Installation directory for Java Runtime Environment (JRE) |
This file contains hidden or 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
| // ==UserScript== | |
| // @name ingress.com/intel chat improvements | |
| // @description Small improvements to the Ingress Chat at ingress.com/intel. 1. Better distinction between public/faction chat. Prevents accidentally posting to public. 2. Switch to faction chat by default. 3. Ability to hide automated messages (will consume a LOT of CPU though, so beware). 4. Scrolling up in chat issmoother (less “Loading…”) 5. Bits and pieces. | |
| // @namespace https://gist.github.com/4415985 | |
| // @updateURL https://gist.github.com/raw/4415985/ingress_intel_chat_improvements.user.js | |
| // @downloadURL https://gist.github.com/raw/4415985/ingress_intel_chat_improvements.user.js | |
| // @include http://www.ingress.com/intel* | |
| // @version 8 | |
| // ==/UserScript== |
This file contains hidden or 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
| import org.apache.poi.ss.usermodel.* | |
| import org.apache.poi.hssf.usermodel.* | |
| import org.apache.poi.xssf.usermodel.* | |
| import org.apache.poi.ss.util.* | |
| import org.apache.poi.ss.usermodel.* | |
| import java.io.* | |
| class GroovyExcelParser { | |
| //http://poi.apache.org/spreadsheet/quick-guide.html#Iterator |
NewerOlder