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
{% load staticfiles %} | |
<!doctype html> | |
<style> | |
#map { | |
height: 500px; | |
} | |
</style> | |
cool! |
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
sudo apt-get install postgis postgresql-9.3-postgis-2.1 | |
sudo -iu postgres createuser proj123 -S -D -R | |
sudo -iu postgres createdb proj123 -O proj123 | |
sudo -iu postgres psql -c \"alter user proj123 with password 'proj123';\" | |
sudo -iu postgres psql proj123 -c \"CREATE EXTENSION postgis;\ | |
sudo -iu postgres psql proj123 -c \"CREATE EXTENSION postgis_topology;\"" | |
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): |
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
# -*- 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 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
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
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
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 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): |