Skip to content

Instantly share code, notes, and snippets.

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@sceeter89
sceeter89 / JiraAgileBoardRefresh.user.js
Created September 9, 2015 08:19
GreaseMonkey script to automatically refresh Jira Agile board once yellow popup appears
// ==UserScript==
// @name AutoRefresh board
// @namespace JIRA
// @include http://<JIRA URL>/secure/RapidBoard.jspa
// @version 1
// @grant none
// ==/UserScript==
var i = setInterval(reloadBoard, 1000);
function reloadBoard() {
if (AJS.$('.js-refresh-now').length && AJS.$('.js-refresh-now').is(':visible')) {