Skip to content

Instantly share code, notes, and snippets.

View mvillafuertem's full-sized avatar
💭
😏

mvillafuertem

💭
😏
View GitHub Profile
def nodeSpecs(List specs, Closure callback) {
def nodes = [:]
for (item in specs) {
def spec = item
nodes["Spec ${spec}"] = { callback.call(spec) }
}
return nodes
}
@mvillafuertem
mvillafuertem / gatling-simple.sc
Created May 8, 2020 13:51 — forked from dacr/gatling-simple.sc
Just ONE ammonite script file to execute a load performance test using gatling ! #ea7a4259-9461-44a8-99fa-1ec6ec3c48ed/cb9ae6dd7c07d7f534a416c586bc5182a8244daa
// summary : Just ONE ammonite script file to execute a load performance test using gatling !
// keywords : scala, gatling, ammonite, scala, load-test, performance
// publish : gist, snippet
// authors : David Crosson
// id : ea7a4259-9461-44a8-99fa-1ec6ec3c48ed
// execution : scala ammonite script (http://ammonite.io/) - run as follow 'amm scriptname.sc'
/*
A performance load script file directly executable using ammonite, run on all OS (linux / Mac / Windows), just install ammonite REPL (http://ammonite.io).
@mvillafuertem
mvillafuertem / build.sbt
Created May 8, 2020 13:44
run h2 console from sbt
// Method 1 Create a task
// It can throw java.util.NoSuchElementException: head of empty list if you don't have h2 dependency
lazy val h2Console = taskKey[Int]("Init H2 console task")
h2Console := (Compile / dependencyClasspathAsJars)
.value
.map(_.data)
.filter(_.getPath.contains("h2database"))
.map(h2database => Process(s"java -jar ${h2database} org.h2.tools.Server").!)
.head
@mvillafuertem
mvillafuertem / .gitconfig
Created February 1, 2018 15:07 — forked from robmiller/.gitconfig
Some useful Git aliases that I use every day
#
# Working with branches
#
# Get the current branch name (not so useful in itself, but used in
# other aliases)
branch-name = "!git rev-parse --abbrev-ref HEAD"
# Push the current branch to the remote "origin", and set it to track
# the upstream branch
publish = "!git push -u origin $(git branch-name)"