Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
# https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/
# https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c
# http://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver
# http://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception
# http://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal
# http://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04
# Versions
@iamnimnul
iamnimnul / JIRA Rapid Board points
Last active April 3, 2018 13:45
JIRA Rapid Board - table header with sum of points in the column (bookmarklet)
javascript:(function () {
jQuery('.ghx-column-headers li').each(function (index) {
var pointsSum = 0;
jQuery('.ghx-columns li').eq(index).find(".aui-badge[title='Story Points']").each(function (index) {
pointsSum += parseInt(jQuery(this).text());
});
var span = jQuery('<span>(' + pointsSum + ')</span>');
span.css({'display': 'inline-block', 'right': 0, 'position': 'absolute'});
jQuery(this).append(span);
});