Skip to content

Instantly share code, notes, and snippets.

View OldrichKruchna's full-sized avatar

Olda Kruchna OldrichKruchna

View GitHub Profile
@OldrichKruchna
OldrichKruchna / gist:2a13d5f456afca012a60465f8d3b3bca
Created April 18, 2018 09:03
Regex to test branch names if they contain ticket number
^(((feature)|(bugfix))\/([A-Z]*-[0-9]+)|(hotfix\/)).*
@OldrichKruchna
OldrichKruchna / jSigHelper.js
Created October 18, 2016 14:20 — forked from mattgaspar/jSigHelper.js
jSignature helper - Code pulled from jSignature plugins for use in server side javascript to convert base30 to SVG
jSigHelper = (function() {
var chunkSeparator = '_'
, charmap = {} // {'1':'g','2':'h','3':'i','4':'j','5':'k','6':'l','7':'m','8':'n','9':'o','a':'p','b':'q','c':'r','d':'s','e':'t','f':'u','0':'v'}
, charmap_reverse = {} // will be filled by 'uncompress*" function
// need to split below for IE7 (possibly others), which does not understand string[position] it seems (returns undefined)
, allchars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWX'.split('')
, bitness = allchars.length / 2
, minus = 'Z'
, plus = 'Y'