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
/* iframe */ | |
#GM_config { | |
border-radius: 1em; | |
box-shadow: 0 0 1em black; | |
border: 1px solid grey!important; | |
} | |
/* passed to GM_config.init */ | |
body { |
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
.gcd(@v1, @v2) when (@v1 < @v2) { | |
.gcd(@v1, @v2 - @v1); | |
} | |
.gcd(@v1, @v2) when (@v1 > @v2) { | |
.gcd(@v1 - @v2, @v2); | |
} | |
.gcd(@v1, @v2) when (@v1 = @v2){ | |
@return: @v1; |
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
#! python3 | |
import codecs | |
import struct | |
class Codec(codecs.Codec): | |
def encode(self,input,errors='strict'): | |
pass |
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
"size=1, range=1: 0" | |
"count=0" | |
"size=10, range=1: 0" | |
"count=9" | |
"size=100, range=1: 0" | |
"count=99" | |
"size=1000, range=1: 1" | |
"count=999" | |
"size=10000, range=1: 2" | |
"count=9999" |
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
<LexerType name="json" desc="JSON" ext=""> | |
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> | |
<WordsStyle name="NUMBER" styleID="1" fgColor="FFCD22" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> | |
<WordsStyle name="STRING" styleID="2" fgColor="EC7600" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> | |
<WordsStyle name="STRINGEOL" styleID="3" fgColor="808080" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> | |
<WordsStyle name="PROPERTYNAME" styleID="4" fgColor="678CB1" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> | |
<WordsStyle name="ESCAPESEQUENCE" styleID="5" fgColor="FF8409" bgColor="293134" fontName="" fontStyle="1" fontSize="" /> | |
<WordsStyle name="LINECOMMENT" styleID="6" fgColor="008000" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> | |
<WordsStyle name="BLOCKCOMMENT" styleID="7" fgColor="008000" bgColor="293134" fontName="" fontStyle="0" fontSize="" /> | |
<WordsStyle |
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
var require; |
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
rst2html5.py (Docutils 0.13.1 [release], Python 3.6.0, on win32) | |
Usage | |
===== | |
rst2html5.py [options] [<source> [<destination>]] | |
Generates HTML?5 documents from standalone reStructuredText sources Reads from | |
<source> (default is stdin) and writes to <destination> (default is stdout). | |
See <http://docutils.sf.net/docs/user/config.html> for the full reference. |
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
/* ==UserStyle== | |
@name Stack Overflow Navbar Enhancer | |
@description An usercss to move navbar position, change font color, and more. | |
@namespace eight04.blogspot | |
@version 0.1.8 | |
@author eight04 <[email protected]> (https://github.com/eight04) | |
@homepageURL http://example.com/ | |
@supportURL http://example.com/issues | |
@license unlicense | |
@advanced color font-color 'Font color' #123456 |
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
/* ==UserStyle== | |
@name GitHub Dark | |
@homepageURL http://userstyles.org/styles/37035 | |
@updateURL https://userstyles.org/styles/37035.css | |
@md5URL https://update.userstyles.org/37035.md5 | |
@originalMD5 66643ceab5d8c458da6e0ead8f4133f3 | |
@author StylishThemes | |
@advanced color base-color "Base color scheme" #4183C4 | |
@advanced dropdown syntax-theme "Github syntax theme" { | |
Ambiance "Ambiance" <<<EOT |
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
/* ==UserStyle== | |
@name GitHub Dark | |
@namespace stylish | |
@version 0.1.0 | |
@homepageURL http://userstyles.org/styles/37035 | |
@updateURL https://userstyles.org/styles/37035.css | |
@md5URL https://update.userstyles.org/37035.md5 | |
@originalMD5 66643ceab5d8c458da6e0ead8f4133f3 | |
@author StylishThemes | |
@advanced color base-color "Base color scheme" #4183C4 |
OlderNewer