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 signal | |
class GracefulInterruptHandler(object): | |
def __init__(self, sig=signal.SIGINT): | |
self.sig = sig | |
def __enter__(self): | |
self.interrupted = False |
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> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Telostats</title> | |
<meta name="description" content="Tel Aviv municipal bike service (tel-o-fun) statistics and visualizations."> |
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
class Occupation(models.Model): | |
event = models.ForeignKey(Event, related_name='sections') | |
section = models.ForeignKey(Section) | |
expected_capacity = models.PositiveIntegerField( | |
help_text=) | |
def __unicode__(self): | |
return self.section.name | |
class OccupationForm(forms.ModelForm): |
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 bottle import get, post, request, run | |
import time | |
LIMIT = 500 | |
messages = [] | |
@get('/') | |
def poll_messages(): | |
ts = float(request.query.timestamp or "0") |
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
class Iframe(object): | |
def __init__(self, prm): | |
self.param = prm | |
def __call__(self, view): | |
def df(*args, **kwargs): | |
for i in args: | |
if type(i) == WSGIRequest: | |
host = i.META['HTTP_REFERER'] |
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
MAZE_DRAWING = """ | |
################################### | |
################################### | |
########################### | |
## ######## ####### | |
## ########### ############ ####### | |
## ########### ############ ####### | |
## ########### ####### |
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 threading | |
import itertools | |
from time import sleep | |
from random import random | |
def main(): | |
c = Container(value=0) | |
adders = [threading.Thread(target=lambda x: x.add(1), args=(c,)) | |
for _ in xrange(10000)] |
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
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
from django.db import models, migrations | |
class Migration(migrations.Migration): | |
dependencies = [ | |
] |
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 collections | |
import pathlib | |
import sys | |
USAGE = """usage: {} path | |
displays number of files and total size per extension in the specified path.""" | |
def get_info(path): |
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 lxml import etree | |
def clear_element(e): | |
e.clear() | |
while e.getprevious() is not None: | |
del e.getparent()[0] | |
def parse_file(filename): |
OlderNewer