$ brew install unbound ldns
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import groovy.json.JsonOutput | |
| import groovy.json.JsonSlurper | |
| import java.util.Date | |
| datadog = new com.freshbooks.jenkinshelper.datadog() | |
| github = new com.freshbooks.jenkinshelper.GitHub() | |
| helper = new com.freshbooks.jenkinshelper.pipelinehelper() | |
| slack = new com.freshbooks.jenkinshelper.slack() | |
| def APP_NAME = 'service-name' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #![no_std] | |
| extern crate core; | |
| use core::option::{None, Some}; | |
| use core::iter::Iterator; | |
| use core::str::StrSlice; | |
| #[lang="stack_exhausted"] | |
| pub extern "C" fn rust_stack_exhausted() { | |
| unsafe { core::intrinsics::abort() } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # From http://tech.serbinn.net/2010/shell-script-to-create-ramdisk-on-mac-os-x/ | |
| # | |
| ARGS=2 | |
| E_BADARGS=99 | |
| if [ $# -ne $ARGS ] # correct number of arguments to the script; | |
| then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # nexusdeb builds a debian package of the Nexus repository manager. nexusdeb | |
| # downloads nexus by itself. You run it by | |
| # nexusdeb.sh <version> <maintainer> | |
| # Example: | |
| # nexusdeb.sh 2.0.5 "Denny Colt <[email protected]>" | |
| # | |
| # The script has been tested with version 2.0.5. | |
| if [ -z $1 ] |