Skip to content

Instantly share code, notes, and snippets.

View kersh's full-sized avatar

Vladimir Shafikov kersh

View GitHub Profile
htmlToPlain: function (html) {
var tempDiv = document.createElement("DIV");
tempDiv.innerHTML = html;
return tempDiv.textContent || tempDiv.innerText;
},
#!/usr/bin/env python2
import watchdog.events
import watchdog.observers
import sh
import time
import os
# Detach
if os.fork(): os._exit(0)