Project moved to https://github.com/ivanistheone/ccss_bookmarklet
Demonstrates use of event capture phase (as opposed to bubble phase, used by jQuery's bind) to prevent default trello click events if ALT key is depressed.
// X and Y ranges of the graph | |
var X_RANGE = [-2, 10]; | |
var Y_RANGE = [-35, 100]; | |
// Width of the graph in pixels | |
// Let's use 400 for "normal" graphs and 170 for "small" graphs | |
var SIZE = 400; | |
var xScale; | |
var yScale; |
Project moved to https://github.com/ivanistheone/ccss_bookmarklet
Demonstrates use of event capture phase (as opposed to bubble phase, used by jQuery's bind) to prevent default trello click events if ALT key is depressed.
#!/usr/bin/env python | |
from collections import defaultdict, namedtuple | |
import datetime | |
from operator import itemgetter | |
import re | |
import requests | |
import json |
#!/usr/bin/env python | |
import re | |
from collections import defaultdict, namedtuple | |
import datetime | |
f = open("access.log") | |
logfiles_list = [ f.readlines() ] |