I hereby claim:
- I am 9seconds on github.
- I am 9seconds (https://keybase.io/9seconds) on keybase.
- I have a public key ASBiWuv5KuJMZGUtR7jY0Mzrb4mhajMYZdED6paQCGC7Swo
To claim this, I am signing this object:
import io | |
import pycurl | |
curl = pycurl.Curl() | |
curl.setopt(curl.URL, "https://nghttp2.org") | |
curl.setopt(pycurl.HTTP_VERSION, pycurl.CURL_HTTP_VERSION_2_0) | |
curl.setopt(pycurl.VERBOSE, 1) |
В России есть такие монеты: | |
- 1 копейка | |
- 5 копеек | |
- 10 копеек | |
- 50 копеек | |
- 1 рубль | |
- 2 рубля | |
- 5 рублей | |
- 10 рублей | |
- 25 рублей |
#!/usr/bin/env python3 | |
import sys | |
import itertools | |
COINS = [1, 5, 10, 50, 100, 200, 500, 1000, 2500] | |
CACHE = {} | |
def change_number(money): |
import enum | |
import datetime | |
import pydantic | |
class Comparator(enum.Enum): | |
LT = "<" | |
GT = ">" | |
EQ = "=" |
#!/usr/bin/env python | |
import argparse | |
import datetime | |
import ipaddress | |
import json | |
import pathlib | |
import sys | |
import uuid |
I hereby claim:
To claim this, I am signing this object:
import timeit | |
import string | |
SAMPLE = """ | |
[ | |
{ | |
"url": "https://api.github.com/repos/octocat/Hello-World/releases/1", | |
"html_url": "https://github.com/octocat/Hello-World/releases/v1.0.0", | |
"assets_url": "https://api.github.com/repos/octocat/Hello-World/releases/1/assets", |