Skip to content

Instantly share code, notes, and snippets.

View rodionmoiseev's full-sized avatar

Rodion Moiseev rodionmoiseev

View GitHub Profile
head 1 | eval '_.report1 = _.alert_id + "_report1.pdf"; _.report2 = _.alert_id + "_report2.pdf";_.report3 = _.alert_id + "_report3.pdf";' | exec "/home/verx/x-2.0/scripts/Uniadex.sh ${report1} ${report2} ${report3}" -plainText
@rodionmoiseev
rodionmoiseev / JavaPuzzle2.java
Created February 25, 2012 06:24
Solution to Java Puzzle 2
public class JavaPuzzle2 {
public static void main(String[] args) {
//test
if (new Sleeper().sleep(new Dream()) != 0) {
System.out.println("Still dreaming");
}
}
}
class Sleeper {
@rodionmoiseev
rodionmoiseev / gist:2484934
Created April 25, 2012 00:41
Setting up Play 2.0 in build.gradle
apply plugin: 'java'
apply plugin: 'scala'
// For those using Eclipse or IntelliJ IDEA
apply plugin: 'eclipse'
apply plugin: 'idea'
def findPlay20(){
def pathEnvName = ['PATH', 'Path'].find{ System.getenv()[it] != null }
for(path in System.getenv()[pathEnvName].split(File.pathSeparator)){
for(playExec in ['play.bat', 'play.sh', 'play']){