Skip to content

Instantly share code, notes, and snippets.

View darron-haworth's full-sized avatar

Darron Haworth darron-haworth

  • Financial Sector
  • Roseville California
View GitHub Profile

Basic Masks

Basic input masks use symbols to create the mask.

  • 9: Numeric
  • a: Alphabetical
  • A: Alphabetical (forces uppercase)
  • *: Alphanumeric
  • &: Alphanumeric (forces uppercase)
@darron-haworth
darron-haworth / download_jenkins_plugins.py
Created April 29, 2020 21:16 — forked from XuefengWu/download_jenkins_plugins.py
download jenkins plugin and dependencies offline for the internal jenkins server cannot access internet.
#!/usr/bin/python
import sys
import zipfile
import urllib
def download_plugin(name,version):
pluginUrl = "http://updates.jenkins-ci.org/download/plugins/%s/%s/%s.hpi" % (name,version,name)
print "downloading: %s" % pluginUrl
file = "%s.hpi" % name
@darron-haworth
darron-haworth / nuget.sh
Created September 15, 2017 14:30 — forked from andypiper/nuget.sh
nuget for OS X
#!/bin/sh
# add a simple 'nuget' command to Mac OS X under Mono
# get NuGet.exe binary from http://nuget.codeplex.com/releases/view/58939
# get Microsoft.Build.dll from a Windows .NET 4.0 installation
# copy to /usr/local/bin and Robert is your father's brother....
#
PATH=/usr/local/bin:$PATH
mono --runtime=v4.0 /usr/local/bin/NuGet.exe $*
@darron-haworth
darron-haworth / README.md
Created January 6, 2017 21:12 — forked from hofmannsven/README.md
My simply Git Cheatsheet