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
import logging | |
# keep in mind that the lower the number, the more verbose the log output | |
# everything greater than that number will also print | |
logging.DEBUG_PLUS = 5 # more verbose debug | |
logging.INFO_PLUS = 15 # more verbose info | |
logging.WARNING_PLUS = 25 # more verbose warning | |
logging.ERROR_PLUS = 35 # more verbose error | |
logging.CRITICAL_PLUS = 45 # more verbose critical |
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
import datetime | |
""" | |
A small module extending timedelta. | |
Provides a method to print a formatted | |
string detailing elapsed time in the given delta | |
""" | |
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
/** | |
* Reddit Comment Hider Userstyle | |
* | |
* by ievans3024 | |
* | |
* For when you just need to prevent yourself from getting into arguments with idiots. | |
* This style hides all comment sections in all posts. | |
*/ | |
@namespace url(http://www.w3.org/1999/xhtml); |
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
/** | |
* Reddit Gag Userstyle | |
* | |
* by ievans3024 | |
* | |
* For when you just need to prevent yourself from getting into arguments with idiots. | |
* This style hides all reply/submit/comment forms and links, except in existing private messages. | |
*/ | |
@namespace url(http://www.w3.org/1999/xhtml); |
NewerOlder