I hereby claim:
- I am neoel on github.
- I am d3xt3r (https://keybase.io/d3xt3r) on keybase.
- I have a public key ASAbbI7aVT7iDl2bJDGUZGc6NuKFXofUOs0t6JQfmkZS5Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python3 | |
import datetime | |
from dateutil.parser import parse as parsedate | |
import json | |
import re | |
# Als je dit onder python3 wil draaien, moet je even 'python-dateutil' installeren | |
isoformat_regex = re.compile(r'(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}).(\d{6})') |
<li>{{value}}</li> | |
<script> | |
export default { | |
data() { | |
return { | |
value: 'XX' | |
}; | |
}, | |
onrender() { |
<svg viewBox='0 0 100 100'> | |
<!-- first create a group and move it to 50,50 so | |
all co-ords are relative to the center --> | |
<g transform='translate(50,50)'> | |
<circle class='clock-face' r='48'/> | |
<!-- markers every minute (major markers every 5 minutes) --> | |
{{#each minor as tick, i}} | |
<line class='minor' y1='42' y2='45' transform='rotate( {{ |
Zoek HHG quote over politiek
from functools import partial | |
from itertools import chain, ifilter, islice, izip_longest | |
import time | |
# First approach |
resp_lines = [ | |
str(range(i)) for i in range(20, 50,3) | |
] | |
width = 80 | |
space = " " | |
""" | |
The proper way ? |
# -*- coding: utf-8 -*- | |
import re, json | |
import urllib2 | |
import sys, time, datetime | |
cursor = u"|" | |
class Poller(object): |
import ast | |
def transform(node, transformations): | |
""" | |
Match node a node in transformations. | |
""" | |
match = transformations.get(type(node)) | |
if match: |