I hereby claim:
- I am touilleMan on github.
- I am touilleman (https://keybase.io/touilleman) on keybase.
- I have a public key whose fingerprint is 08B3 DE7C 9373 8156 219E CA52 C360 860E 645E FFC0
To claim this, I am signing this object:
#! /usr/bin/env python3 | |
# Most internet box support DynDNS... but not my Livebox ! | |
# Well it's more complicated than that: only a (very) limited | |
# number of DynDNS services are supported, and OVH is not among | |
# them... After all, why would the biggest French internet provider | |
# support the biggest French hosting service ? (╬ ಠ益ಠ) | |
# | |
# Anyway, this script poll the Livebox to retrieve it current IP address, | |
# then (if it has changed) update the OVH DynDNS service accordingly. |
"""pytest-trio implementation.""" | |
import contextlib | |
import inspect | |
import socket | |
from functools import partial | |
import pytest | |
import trio | |
I hereby claim:
To claim this, I am signing this object:
--[[ | |
multiReplace is (c) 2015 by Emmanuel Leblond <[email protected]>. | |
It is licensed to you under the terms of the WTFPLv2 (see below). | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2004 Sam Hocevar <[email protected]> |
#!/usr/bin/env python3 | |
"""Simple HTTP Server With Upload. | |
This module builds on BaseHTTPServer by implementing the standard GET | |
and HEAD requests in a fairly straightforward manner. | |
see: https://gist.github.com/UniIsland/3346170 | |
""" | |