Skip to content

Instantly share code, notes, and snippets.

View jamiekrug's full-sized avatar

Jamie Krug jamiekrug

  • JK Web Services, LLC
  • Rochester, NY, US
  • 05:53 (UTC -04:00)
View GitHub Profile
@jamiekrug
jamiekrug / youtrack-page-title-rearranger-tampermonkey.user.js
Created August 15, 2018 15:00
YouTrack Page Title Rearranger for Tampermonkey : Swap the order of the issue summary and ID in page title, so ID is first (e.g., "Do Foo : FOO-123" --> "FOO-123 : Do Foo")
// ==UserScript==
// @name YouTrack Page Title Rearranger for Tampermonkey
// @namespace YouTrackPageTitleRearranger
// @version 0.2
// @description Swap the order of the issue summary and ID in page title, so ID is first (e.g., "Do Foo : FOO-123" --> "FOO-123 : Do Foo")
// @author brianhegeman, jamiekrug
// @match https://*.myjetbrains.com/youtrack/issue/*
// @grant none
// ==/UserScript==
@jamiekrug
jamiekrug / bash-template-for-idea.sh
Created March 29, 2013 15:49
IntelliJ IDEA template for Bash scripts. Notice all "$variable" strings must be escaped to "\$variable" to avoid IDEA new file prompt/placeholders.
#!/bin/bash
set -e
# Defaults.
opt_ex_a_no_arg=0
opt_ex_b_with_arg="default"
usage()
{