Skip to content

Instantly share code, notes, and snippets.

View wonderbeyond's full-sized avatar
🎯
Focusing

Wonder wonderbeyond

🎯
Focusing
View GitHub Profile
@wonderbeyond
wonderbeyond / gstate.py
Created September 22, 2022 02:45
[KV][global state storage] Key/Vale store implemented with SQLAlchemy + PostgreSQL
from typing import Any
import copy
import sqlalchemy as sa
from sqlalchemy.dialects.postgresql import JSONB
from my_proj.db import db
class GState(db.Model):
@wonderbeyond
wonderbeyond / on-exit.py
Created August 4, 2022 15:00
[signal][atexit] Demo: Handle on-exit event in Python program
from typing import List
import os
import atexit
import signal
files_to_remove_on_exit: List[str] = []
def on_exit(*args):
@wonderbeyond
wonderbeyond / rsync-exclude.md
Last active July 9, 2022 10:25
Common rsync's "--exclude" option setting

Use below snippet as rsync's option:

--exclude={'.*.sw[a-p]','*.pyc',__pycache__,.tox,.cache,tmp,.venv,node_modules,.git,dist,build}

Note the Bash brace expansion is used.

@wonderbeyond
wonderbeyond / caches.py
Last active May 20, 2022 08:16
[Python] Multiple-backend caches management
from typing import Any, Type
from xxx.utils import import_from_string
from xxx.conf import get_settings
undefined = object()
CACHE_BACKENDS = {
'fs': 'cachelib.file.FileSystemCache',
'memory': 'cachelib.simple.SimpleCache',
@wonderbeyond
wonderbeyond / match_list.py
Created April 13, 2022 08:13
[Python]检查列表(不限类型)是否符合某种模式(使用通配符)
def match_list(lst1: List[Any], lst2: List[Any], /) -> bool:
"""
检查列表是否符合某种模式
https://stackoverflow.com/questions/8847257/algorithm-to-match-2-lists-with-wildcards
参数 lst1, lst2 分别为 目标列表 和 模式,顺序无关,
列表元素类型不限, 模式中可以用通配符(*)表示任意数量的任意元素。
>>> A = 'A'; B = 'B'; C = 'C'; D = 'D'; E = 'E'
>>> match_list([A, B, C], [A, B, C])
@wonderbeyond
wonderbeyond / float-miss-precision.py
Created February 9, 2022 07:42
Demo script to show float type could miss precision
import random
for _ in range(100):
f1 = round(random.random(), 2) + random.randint(1, 1e8)
f2 = round(random.random(), 2) + random.randint(1, 1e8)
r = f2 - f1
r_round2 = round(r, 2)
if not r == r_round2:
print(f'{f2} - {f1} = {r}')
interface Disposable {
dispose(): void
}
function addDisposableEventListener(
node: HTMLElement, type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions
): Disposable {
node.addEventListener(type, listener, options);
return {dispose() {
node.removeEventListener(type, listener, options)
@wonderbeyond
wonderbeyond / my-watcher.service
Last active December 23, 2021 08:48
Use systemd to autostart a watching script
[Unit]
Description=A Watcher
[Service]
ExecStart=/home/ubuntu/.pyenv/versions/minio/bin/auto-extractor -d /var/www/minio/ -x \\.minio\\.sys/
Restart=on-abort
[Install]
WantedBy=multi-user.target
@wonderbeyond
wonderbeyond / get-port.py
Last active December 16, 2021 09:37
Get random available port
"""
https://stackoverflow.com/questions/1075399/how-to-bind-to-any-available-port
https://eklitzke.org/binding-on-port-zero
"""
import socket
def get_available_port(host='localhost'):
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
@wonderbeyond
wonderbeyond / git-tips.md
Last active January 23, 2022 08:19
Git tips

Get current tag or commit hash

REV="$(git describe --tags 2> /dev/null || git rev-parse HEAD)"