I hereby claim:
- I am pingiun on github.
- I am pingiun (https://keybase.io/pingiun) on keybase.
- I have a public key whose fingerprint is A3A3 65AE 16ED A7A0 C29C 88F1 9712 452E 8BE3 372E
To claim this, I am signing this object:
from telegram.ext import Updater, CommandHandler, MessageHandler | |
from sqlalchemy import Column, BigInteger | |
from sqlalchemy import create_engine | |
from sqlalchemy.orm import scoped_session, sessionmaker | |
from sqlalchemy.ext.declarative import declarative_base | |
from sqlite3 import IntegrityError | |
import logging | |
import random |
import re | |
import sys | |
from datetime import datetime | |
from b2.api import B2Api | |
def parse(inp, mformat=None, thing=None): | |
if thing is None: | |
thing = 'th' | |
if mformat is None: |
pragma solidity ^0.4.0; | |
contract Ownable { | |
/// @dev `owner` is the only address that can call a function with this | |
/// modifier | |
modifier onlyOwner() { | |
require(msg.sender == owner); | |
_; | |
} |
# -*- coding: utf-8 -*- | |
# This alphabet is handpicked to be visually distinctive | |
_alphabet = ['☕️', '🐜', '✉️', '🎋', '👟', '📺', '😅', '✌️', '🌰', '🍇', | |
'🐶', '👢', '💉', '💈', '⚡️', '🌹', '🗽', '👌', '💔', '🎈', | |
'🥑', '⌚️', '🚿', '🐫', '🔧', '🔌', '😈', '💳', '😊', '👍', | |
'🍞', '😘', '🎯', '⛄️', '🔦', '🐳', '🍌', '‼️', '🥝', '✂️', | |
'🎄', '💥', '🍷', '🚦', '📬', '🎡', '🎆', '🔍', '🍻', '🏭', | |
'🎶', '💡', '🏄', '👂', '🗡️', '🍒', '👑', '🚃', '🙏', '❌', | |
'💾', '🙋', '👸', '🔪', '👎', '🌊', '🍕', '⚽️', '🎁', '🏈', |
FROM python:3 | |
MAINTAINER Jelle Besseling <[email protected]> | |
COPY . /app | |
WORKDIR /app | |
RUN pip install uwsgi && pip install -r requirements.txt |
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:a3a365ae16eda7a0c29c88f19712452e8be3372e] |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
import os | |
import markdown2 | |
with open('head.html') as f: | |
head = f.read() | |
with open('foot.html') as f: | |
foot = f.read() |
#!/bin/env python | |
from __future__ import print_function | |
import argparse | |
import sys | |
try: | |
import BaseHTTPServer |
#!/usr/bin/env python3 | |
# MIT License | |
# | |
# Copyright (c) 2016 Jelle Besseling | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |