Skip to content

Instantly share code, notes, and snippets.

View reality's full-sized avatar
🎯
Focusing

ks reality

🎯
Focusing
View GitHub Profile
@stephanetimmermans
stephanetimmermans / ubuntu-groovy
Created July 11, 2014 12:31
Install Groovy on Ubuntu 14
curl -s get.gvmtool.net | bash
source "$HOME/.gvm/bin/gvm-init.sh"
gvm install groovy
groovy -version
@AlBaker
AlBaker / RDFDSL.groovy
Created July 13, 2011 07:30
Groovy SPARQL RDFBuilder DSL
@Grab('org.codehaus.groovy.sparql:groovy-sparql:0.2')
import groovy.sparql.*
/**
Can be constructed with:
- Outputstream
- PrintWriter
- Model (all statements built will be copied into the input model
via model.add(List<Statement>)