Skip to content

Instantly share code, notes, and snippets.

View jboyens's full-sized avatar

JR Boyens jboyens

View GitHub Profile
diff --git a/configure.ac b/configure.ac
index b3b8d869..12a04879 100644
--- a/configure.ac
+++ b/configure.ac
@@ -82,7 +82,7 @@ AS_IF([test "x$enable_mu4e" != "xno"], [
emacs_version="`$EMACS --version | head -1`"
lispdir="${lispdir}/mu4e/"
])
- AS_CASE([$emacs_version],[*23*|*24*|*25*|*26*],[build_mu4e=yes],
+ AS_CASE([$emacs_version],[*23*|*24*|*25*|*26*|*27*],[build_mu4e=yes],

Keybase proof

I hereby claim:

  • I am jboyens on github.
  • I am jboyens (https://keybase.io/jboyens) on keybase.
  • I have a public key ASBVjAYe4HZkiYISfIOLx2ik9jC4YfdWveQZYPsHgZHo_go

To claim this, I am signing this object:

task sourcesJar(type: Jar, dependsOn:classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn:javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
#!/usr/bin/env ruby
git_bundles = [
"git://github.com/msanders/snipmate.vim.git",
"git://github.com/scrooloose/nerdtree.git",
"git://github.com/timcharper/textile.vim.git",
"git://github.com/tpope/vim-cucumber.git",
"git://github.com/tpope/vim-fugitive.git",
"git://github.com/tpope/vim-git.git",
"git://github.com/tpope/vim-haml.git",
****************************************
* Configuring RVM
****************************************
######################################################################## 100.0%
****************************************
* Configuring .bashrc
****************************************
######################################################################## 100.0%
sh: source: not found
****************************************
1 to 100 map { x =>
(x % 3, x % 5) match {
case (0, 0) => "fizzbuzz"
case (0, _) => "fizz"
case (_, 0) => "buzz"
case _ => x.toString
}
} foreach println
import org.apache.ivy.plugins.resolver.*
import org.apache.ivy.core.settings.IvySettings
...
def r = new URLResolver()
r.addArtifactPattern("http://repo1.maven.org/maven2/[organization]/[module]/[revision]/[artifact]-[revision]-jdk15.[ext]")
r.m2compatible = true
def ivySettings = new IvySettings()
@jboyens
jboyens / simplehttp.groovy
Created August 18, 2009 21:29
A simple HTTP sink that prints any message received and replies with "Hi!"
package crap
import org.apache.camel.*;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.language.groovy.GroovyRouteBuilder;
import org.apache.camel.processor.interceptor.*
@Grab (group = 'org.apache.camel', module = 'camel-groovy', version = '2.0-M2')
@Grab (group = 'org.apache.camel', module = 'camel-jetty', version = '2.0-M2')
@Grab (group = 'org.apache.camel', module = 'camel-http', version = '2.0-M2')