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
{ | |
"responses": [ | |
{ | |
"id": 455, | |
"responder_name": "Harald Schjelderup", | |
"responder_title": "Byrådslederkandidat", | |
"motivation": "Hei Heidi! Snegler er noe herk, men dette er nok ikke en sak for bystyret :) Lykke til med kampen i hagen! ", | |
"question": { | |
"id": 148, | |
"question": "Kan du love en handlingsplan mot brunsnegler? Hva går denne planen i så fall ut på?", |
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
<!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" ng-app="prosjektnavnApp"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<meta name="description" content=""> |
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%; |
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') |
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
Map { | |
background-color: #ffffff; | |
} | |
#kommuner { | |
polygon-fill: #e8e4e4; | |
polygon-opacity: 1; | |
line-color: #a1a1a1; | |
line-width: 0.5; | |
} |
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
#!/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
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
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', | |
} |