This file contains 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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import os | |
import shlex, subprocess | |
import logging | |
from django.conf import settings | |
logger = logging.getLogger('pagetracker.grabber') | |
def grab_page(url, outfile): |
This file contains 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 django.shortcuts import render_to_response, get_object_or_404, get_list_or_404 | |
from django.http import HttpResponseRedirect, Http404, HttpResponse | |
from django.template import RequestContext | |
from django.core.cache import cache | |
import iso8601 | |
from pollster import Pollster | |
def presidentmatch(request): |
This file contains 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 local_settings import GOOGLE_USER, GOOGLE_PWD | |
from googleanalytics import Connection | |
from datetime import date | |
#googleanalytics is found here: https://github.com/clintecker/python-googleanalytics/ | |
gaaccounts = { | |
'myaccountname': '1234567', | |
} |
This file contains 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
api = client.InstagramAPI(client_id=CONFIG['client_id'], client_secret=CONFIG['client_secret']) | |
instagen, pages = api.tag_recent_media(30, 0, "thetag", max_pages=1, return_json=True) | |
videos = [] | |
for item in instagen: | |
if "videos" in item: | |
videos.append( | |
{'user': item['user']['username'], | |
'videourl': item['videos']['standard_resolution'] |
This file contains 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
#!/usr/bin/env python | |
import sys | |
import argparse | |
import networkx as nx | |
import community | |
from networkx.readwrite import json_graph | |
def graphmltojson(graphfile, outfile): |
This file contains 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 django import template | |
from django.test.client import Client | |
from django.conf import settings | |
from django.core.cache import cache | |
from django.utils.hashcompat import md5_constructor | |
register = template.Library() | |
@register.simple_tag | |
def esi(url, timeout=10): |
This file contains 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
Map { | |
background-color: #ffffff; | |
} | |
#kommuner { | |
polygon-fill: #e8e4e4; | |
polygon-opacity: 1; | |
line-color: #a1a1a1; | |
line-width: 0.5; | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
SELECT ST_Multi(ST_UNION(ST_MakeValid(k.the_geom))) FROM norske_kommuner k WHERE nr IN ('1201', '1247', '1243') |
This file contains 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
.stack { | |
margin: 20px auto; | |
width: 400px; | |
padding: 0; | |
position: relative; | |
max-width: 100%; | |
} | |
.stack div { | |
max-width: 100%; |