$ uname -r
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
///////////////////// | |
// | |
// DO NOT DELETE ME! | |
// Please take care when editing the announcement banner - it contains custom Javascript/CSS to improve Jira's UI. | |
// | |
///////////////////// | |
///////////////////// | |
// Inspired by | |
// https://jira.atlassian.com/browse/GHS-3690?focusedCommentId=693585&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-693585 |
Problem: When linking to the raw version of a gist, the link changes with each revision.
Solution:
To return the first file from a gist: https://gist.github.com/[gist_user]/[gist_id]/raw/
- Example: https://gist.github.com/atenni/5604522/raw/
- Works even when you change the filename.
To get a file from multi–file gist: https://gist.github.com/[gist_user]/[gist_id]/raw/[file_name]
Using the Lync mute/unmute hotkey (Win + F4), allows another key to be used for push to talk.
Install AutoHotkey. Note - needs to be a recent version to support the splash image.
Direct link here.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// source: https://github.com/Conlectus/WhoAmI | |
var rawSites = { | |
'programming': [ | |
'http://blog.codinghorror.com/', | |
'http://thedailywtf.com/', | |
'http://www.hanselman.com/blog/', | |
'http://code.tutsplus.com', | |
'https://news.ycombinator.com/', | |
'http://www.reddit.com/r/programming/', | |
'http://codebetter.com', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set ctrl-a as prefix | |
set -g prefix C-a | |
unbind C-b | |
# ctrl-a passthrough by sending ctrl-a 2 times | |
bind C-a send-prefix | |
# Less delay | |
set -sg escape-time 1 |
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert $1 -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 $2