Skip to content

Instantly share code, notes, and snippets.

View maxbraun's full-sized avatar

Maximilian Braun maxbraun

  • Karlsruhe / Germany
View GitHub Profile
@jimbojsb
jimbojsb / gist:1630790
Created January 18, 2012 03:52
Code highlighting for Keynote presentations

Step 0:

Get Homebrew installed on your mac if you don't already have it

Step 1:

Install highlight. "brew install highlight". (This brings down Lua and Boost as well)

Step 2:

@hallelujah
hallelujah / create_view.groovy
Created December 14, 2011 15:52
Jenkins Hudson groovy script to create a view in BuildPipeline Plugin
// Use in jenkins v 1.443 and BuildPipeline Plugins version 1.2.3
import hudson.model.*
import hudson.views.*
import au.com.centrumsystems.hudson.plugin.buildpipeline.*
restrict_trigger_to_recent = false
v = new BuildPipelineView("view_name", "view_title", "initial_job_name", "number_of_display_builds", restrict_trigger_to_recent)
Hudson.instance.addView(v)