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
// ==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 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 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 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== | |
// @id linkshighlight@vkopt | |
// @name Links Highlight for VkOpt | |
// @version 1.1 | |
// @namespace https://greasyfork.org/users/23 | |
// @author Pmmlabs@github | |
// @description Плагин для VkOpt, подсвечивающий некоторые неподсвечиваемые ссылки | |
// @include *vk.com* | |
// @run-at document-end | |
// @noframes |
This is a fork of original gist https://gist.github.com/nrollr/3f57fc15ded7dddddcc4e82fe137b58e, with slight changes on pointing to 5.7 version branch, instead of 8 (latest default of MySQL in Hombrew).
This procedure explains how to install MySQL using Homebrew on macOS (Sierra 10.12 and up)
- Installing Homebrew is effortless, open Terminal and enter :
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Note: Homebrew will download and install Command Line Tools for Xcode 8.0 as part of the installation process.