docker 的 daemon.json
以及 registry 配置参考:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# A Dockerfile for building Python(Chaquo) modules | |
FROM quay.io/pypa/manylinux_2_28_x86_64 AS base | |
ARG GRADLE_VERSION=8.13 | |
ARG ANDROID_API_LEVEL=29 | |
ARG ANDROID_BUILD_TOOLS_LEVEL=29.0.3 | |
ARG ANDROID_NDK_VERSION=27.2.12479018 | |
# See also: | |
# * https://medium.com/@simplatex/how-to-build-a-lightweight-docker-container-for-android-build-c52e4e68997e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GIT_SSH_COMMAND='ssh -o ProxyCommand="connect -S 127.0.0.1:1080 %h %p"' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SnippetFuncExecutor: | |
""" | |
exec and eval a Python code snippet with return expression, as if it's in a non-arguments function | |
""" | |
def __init__( | |
self, | |
*, | |
prefix: Optional[str] = None, | |
optimize: int = -1, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Export all source code files into a single HTML file with Pygments syntax highlight and remove all comments and empty lines. | |
""" | |
import argparse | |
import fnmatch | |
import os | |
import sys |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
# Report PyProject version | |
The tool print python source code project's version from pip install report with a dry-run. | |
The project MUST have a `pyproject.toml` file with metadata defined in it! | |
- On non-western language Windows, environment `PYTHONUTF8` may be in need . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Change dictionary's key naming style | |
""" | |
from typing import ( | |
Any, | |
Callable, | |
Iterable, | |
Mapping, | |
MutableMapping, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from itertools import product | |
from pathlib import Path | |
from random import choice, randint, randrange, uniform | |
from typing import Any, BinaryIO, Mapping, Optional, Sequence, Union | |
from PIL import Image, ImageDraw, ImageFilter, ImageFont | |
__all__ = ['captcha_image'] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
使用 quay.io 提供的 pypa/manylinux Docker 镜像构建该项目及其依赖软件的 Python Wheel 发布包 | |
""" | |
import argparse | |
import os | |
import os.path | |
import platform |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stddef.h> | |
#include <memory.h> | |
#include <openssl/bio.h> | |
#include <openssl/buffer.h> | |
#include <openssl/evp.h> | |
/// 参考: https://www.openssl.org/docs/man1.0.2/man3/BIO_f_base64.html 以及 | |
/// https://gist.github.com/barrysteyn/7308212 |
NewerOlder