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
| htmlToPlain: function (html) { | |
| var tempDiv = document.createElement("DIV"); | |
| tempDiv.innerHTML = html; | |
| return tempDiv.textContent || tempDiv.innerText; | |
| }, |
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 python2 | |
| import watchdog.events | |
| import watchdog.observers | |
| import sh | |
| import time | |
| import os | |
| # Detach | |
| if os.fork(): os._exit(0) |