I hereby claim:
- I am sephii on github.
- I am sephii (https://keybase.io/sephii) on keybase.
- I have a public key ASAYKKp1dgRrfV3pQWriD6-LQ7Qj2Q_Drgs6P_NvXfdZSwo
To claim this, I am signing this object:
def record_visit(): | |
try: | |
with open("counter.txt", "r") as fp: | |
counter = int(fp.read()) | |
except (IOError, ValueError): | |
counter = 0 | |
counter = counter +1 | |
with open("counter.txt", "w") as fp: |
# cstrike plugin for python-rtmbot (https://github.com/slackapi/python-rtmbot) | |
import glob | |
import os | |
import re | |
import random | |
import socket | |
import struct | |
from valve.source.a2s import ServerQuerier |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
""" | |
Usage: certcheck.py host1 host2 hostN. Will exit with status code 1 if any of the hosts is about to expire (see | |
WARNING_DAYS below). | |
""" | |
from datetime import datetime | |
import socket | |
import ssl |
#!/bin/sh | |
./manage.py makemigrations --dry-run -e --no-input -v1 && echo "Missing migrations detected!" && exit 1; exit 0 |
from urllib2 import urlopen | |
from lxml import etree | |
import six | |
class Options(object): | |
""" | |
_meta class for FeedModel. | |
""" |
<?xml version="1.0" encoding="utf-8" ?> | |
<competitions> | |
<competition id="1" name="Internal competition"> | |
<seasons> | |
<season id="1" name="2013/2014" start="2013" end="2014"/> | |
<season id="2" name="2014/2015" start="2014" end="2015"/> | |
</seasons> | |
</competition> | |
</competitions> |