Skip to content

Instantly share code, notes, and snippets.

View bitzip's full-sized avatar
😀
Focusing

bitzip

😀
Focusing
View GitHub Profile
@bitzip
bitzip / tampermonkey-redmine-commit-text.user.js
Last active May 18, 2017 06:51
concatenate redmine title as commit text
// ==UserScript==
// @name redmine-issue-text
// @namespace https://gist.github.com/kelly-apollo/3943a049fd9cebb2ad5abaa6327a9245
// @version 0.2.2
// @description try to take over the world!
// @author Kelly Apollo
// @match *://redmine.gizwits.com/*
// @match *://redmine.xtremeprog.com/*
// ==/UserScript==
/* jshint -W097 */
@bitzip
bitzip / watch.sh
Last active July 4, 2017 01:38 — forked from mikesmullin/watch.sh
watch is a linux bash script to monitor file modification recursively and execute bash commands as changes occur
#!/usr/bin/env bash
# script: watch
# author: Mike Smullin <mike@smullindesign.com>
# license: GPLv3
# description:
# watches the given path for changes
# and executes a given command when changes occur
# usage:
# watch <path> <cmd...>
#
@bitzip
bitzip / tampermonkey-fontawesome-copy-icon-name.user.js
Last active June 4, 2018 06:38
Fontawesome click icon to copy icon name to clipboard
// ==UserScript==
// @name fontawesome copy icon name
// @namespace https://gist.github.com/kelly-apollo/1173743d2884dce0b8b1dd4b60125f23
// @version 0.2
// @description try to take over the world!
// @author Kelly Apollo
// @match http://fontawesome.io/icons/
// @grant GM_setClipboard
// ==/UserScript==