Skip to content

Instantly share code, notes, and snippets.

View kudaz28's full-sized avatar
💭
Singing kumbaya

Kuda William Z kudaz28

💭
Singing kumbaya
  • Redhill , United Kingdom
  • 23:16 (UTC -12:00)
View GitHub Profile
@kudaz28
kudaz28 / jenkins-git-backup.sh
Created March 10, 2019 20:15 — forked from abayer/jenkins-git-backup.sh
Example of a script for backing up Jenkins config in git.
#!/bin/bash
#
# Copies certain kinds of known files and directories from a given Jenkins master directory
# into a git repo, removing any old ones, adds 'em, commits 'em, pushes 'em.
#
set -ex
if [ $# -ne 2 ]; then
echo usage: $0 root_dir jenkins_master
@kudaz28
kudaz28 / VFBootstrapSample
Created April 7, 2016 17:33 — forked from anupj/VFBootstrapSample
Use Bootstrap with Visualforce on the Force.com platform
<apex:page showHeader="false" sidebar="false" standardStylesheets="false" docType="html-5.0" language="en-US" applyHTMLTag="false">
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Anup's Bootstrap example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap -->
<link href="{!URLFOR($Resource.Bootstrap_3_0_3, 'dist/css/bootstrap.min.css')}" rel="stylesheet" />