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
function make_full_backup() { | |
var phase1 = 'init'; | |
var phase2 = 'init'; | |
var counters = {}; | |
var contact_iter = 0; | |
//var contact_iter = 3; | |
var result = $('<div></div>'); | |
var awaiting_loader_spinner = false; | |
// First we close all of the little chat windows (sorry!) |
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
from flask import Flask | |
from flask import request | |
from gunicorn import util | |
from gunicorn.app.base import Application | |
from werkzeug.serving import run_simple | |
import json | |
import logging | |
import multiprocessing | |
import requests | |
import string |
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
version: 1 | |
formatters: | |
simple: | |
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s' | |
handlers: | |
console: | |
class: logging.StreamHandler | |
level: DEBUG | |
formatter: simple | |
stream: ext://sys.stdout |
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
<!DOCTYPE html> | |
<div class="blackborder"> | |
<p>Here is some text in a box</p> | |
</div> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
<script> | |
$(".blackborder").each(function(i, e) { | |
console.log(e); | |
var container = $("<div/>"); | |
var e = $(e); |
