This file contains 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
/* | |
Copy this script into console and run. | |
*/ | |
{ | |
/** | |
* Convert HSL colors to HEX | |
* @param {number} h Hue | |
* @param {number} s Saturation | |
* @param {number} l Lightness | |
* @returns {string} HEX color |
This file contains 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
{ | |
"symbolMasks.masks": [ | |
{ | |
"language": "python", | |
"patterns": [ | |
{ | |
"pattern": "(lambda)|(?<=lambda).?\\s?|(?<=lambda[^:]*):", | |
"replace": { | |
"lambda": { "text": "λ" }, | |
": ": { "text": "() => " }, |
This file contains 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 Sanitize Stackoverflow | |
// @namespace https://gist.github.com/scarf005/ | |
// @version 0.2.1 | |
// @description excesive information is crime | |
// @author scarf005 | |
// @match https://stackoverflow.com/* | |
// @match https://*.stackexchange.com/* | |
// @match https://askubuntu.com/* | |
// @match https://superuser.com/* |
This file contains 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 Font Ligatures | |
// @namespace https://gist.github.com/scarf005/ | |
// @version 0.5.0 | |
// @description ligatures are good | |
// @author youkim | |
// @match *://*/* | |
// @grant none | |
// ==/UserScript== |