This file contains hidden or 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
| // ==UserScript== | |
| // @name hackedHN.js | |
| // @namespace https://gist.github.com/embayer/ | |
| // @version 1.0 | |
| // @description big font sizes, full width and alternate mark inversion rows, colorful points | |
| // @match https://news.ycombinator.com/ | |
| // @copyright 2015, embayer | |
| // ==/UserScript== | |
| (function styleRows() { |
This file contains hidden or 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
| #/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # git hook to run a command after `git pull` if a specified file was changed | |
| # Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`. | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
| # check_run changed to work in dirty multiproject-repos | |
| check_run() { |