Skip to content

Instantly share code, notes, and snippets.

View tomcbe's full-sized avatar

Thomas Bernhart tomcbe

View GitHub Profile
@tomcbe
tomcbe / 0_reuse_code.js
Last active August 27, 2015 08:14
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@tomcbe
tomcbe / grel_custom-text-facet-matching-a-pattern.grel
Last active October 5, 2017 12:36
Grel: Custom Text facet matching a pattern
grel:match(value, /(?:.*?([\(\[].*[\)\]])+.*?)|/)
@tomcbe
tomcbe / grel_replace-chars-in-colum.grel
Last active October 5, 2017 12:35
Grel: replace characters in a column
grel:value.replaceChars(value, "()[]", "")
@tomcbe
tomcbe / bash_count-files-in-directory.sh
Last active October 5, 2017 12:33
bash: Count files in a directory
find . -type f -printf . | wc -c
@tomcbe
tomcbe / chocolatey_list-installed-packages.ps1
Last active November 1, 2017 07:57
Chocolatey: List installed packages
chocolatey list -localonly
# chocolatey list -lo
# clist -lo
svn update --set-depth exclude some-feature-branch3
@tomcbe
tomcbe / disable-jenkins-jobs.groovy
Created February 1, 2018 14:03
Disable all Jenkins jobs on an instance and clear the build queue
// Disable all the Jenkins jobs
import hudson.model.*
for(item in Hudson.instance.items) {
println("Disabled job: " + item.name + '\n')
item.disabled=true
item.save()
}
def queue = Hudson.instance.queue
@tomcbe
tomcbe / pom.xml
Last active March 27, 2018 11:46 — forked from nwinkler/pom.xml
Combining the git-flow branching model and the Maven Release Plugin to play nice. Based on info found here: http://vincent.demeester.fr/2012/07/maven-release-gitflow/
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>group</groupId>
<artifactId>dummy</artifactId>
<name>Dummy Project</name>
<version>1.0.12</version>
<packaging>pom</packaging>
<scm>
<connection>scm:git:https://......</connection>
<tag>HEAD</tag>