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 ZSH Documentation Enhancer - Dark | |
| // @version 0.4 | |
| // @description Make ZSH Documentation more readable (fork from rjf89) | |
| // @require http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.1/highlight.min.js | |
| // @resource theme http://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.1/styles/tomorrow-night.min.css | |
| // @resource bootstrap https://bootswatch.com/4/darkly/bootstrap.min.css | |
| // @author btamayo | |
| // @match http://zsh.sourceforge.net/Doc/* | |
| // @run-at document-start |
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 Gist Age Highlighter | |
| // @description Highlights the age of different Github Gist results, based on age | |
| // @version 0.4 | |
| // @author rjf89 | |
| // @match https://gist.github.com/search* | |
| // @grant none | |
| // ==/UserScript== | |
| Array.prototype.flatMap = function(lambda) { return Array.prototype.concat.apply([], this.map(lambda)); }; | |
| const setColor = (e, bgColor) => e.parentElement.style = `background-color: ${bgColor}; color: ivory`; |
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 Highlight Pokemon in PokeMontpellier.fr | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.4 | |
| // @description Add a bouncing animation to the Pokemon species you want | |
| // @author Err0r404 | |
| // @match https://www.pokemontpellier.fr/ | |
| // @grant none | |
| // @downloadURL https://gist.githubusercontent.com/Err0r404/7799395b3c34e4d55e64fd33b0342c36/raw/ | |
| // @updateURL https://gist.githubusercontent.com/Err0r404/71c5f4882a4a518e85a1b6ce8b613e67/raw/ |
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 Reddit Comment Highlighter | |
| // @namespace https://gist.github.com/fgrsnau | |
| // @include http://www.reddit.com/r/*/comments/* | |
| // @include https://www.reddit.com/r/*/comments/* | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| var id = $('.content .sitetable .thing:first').attr('data-fullname'); |
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 Reddit Title Bold For r/acturnips | |
| // @version 0.1 | |
| // @description Bolds Reddit Post Titles | |
| // @author btamayo | |
| // @match https://www.reddit.com/r/acturnips/* | |
| // @run-at document-idle | |
| // @grant GM_addStyle | |
| // @grant GM_getResourceText | |
| // @grant GM_log |
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 | |
| # Pretty rough script on downloading GDSLs. Replace http://localhost:8080 with your Jenkins URL. You may have to | |
| # provide an authtoken. | |
| jobs_curl=$(curl --silent --location --request GET 'http://localhost:8080/api/json?tree=jobs\[name\]') | |
| list=$(jq --raw-output '.jobs[] | .name' <<< "$jobs_curl") | |
| write_gdsl_file() { |