A compilation of all the links to slides and repositories used in workshops or shown by the speakers.
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
GRAILS GROOVY SOURCE | |
3.0.1 | |
3.0.0 2.4 https://grails.github.io/grails-doc/3.0.x/guide/introduction.html | |
2.5.0 2.4 http://grails.1312388.n4.nabble.com/ANN-Grails-2-4-5-and-Grails-2-5-0-released-td4658938.html | |
2.4.5 | |
2.4.4 | |
2.4.3 | |
2.4.2 |
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
import com.sun.net.httpserver.HttpExchange | |
import com.sun.net.httpserver.HttpHandler | |
import com.sun.net.httpserver.HttpServer | |
import groovy.transform.CompileStatic | |
import groovy.transform.TypeChecked | |
@CompileStatic | |
@TypeChecked | |
class GroovyHttpServer { |
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
# Asciidoctor | |
.asciidoctor/ |
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
wget -q https://github.com/AdoptOpenJDK/openjdk8-releases/releases/download/jdk8u172-b11/OpenJDK8_x64_Linux_jdk8u172-b11.tar.gz | |
tar -xf OpenJDK8_x64_Linux_jdk8u172-b11.tar.gz | |
sudo mkdir /usr/lib/jvm && sudo mv jdk8u172-b11 /usr/lib/jvm/jdk8u172-b11 | |
export JAVA_HOME=/usr/lib/jvm/jdk8u172-b11 | |
export PATH=/usr/lib/jvm/jdk8u172-b11/bin | |
java -version |