dman is now compatible with macOS/FreeBSD. Huge thanks to @stokito for helping upstream this patch!
curl https://salsa.debian.org/debian/debian-goodies/-/raw/master/dman?ref_type=heads > ~/.local/bin/dman| #!/usr/bin/env python3 | |
| # (c) 2025 Alexander Pushkov <[email protected]> | |
| # Based on https://github.com/susam/mintotp, copyright (c) 2019 Susam Pal | |
| # SPDX-License-Identifier: MIT | |
| import argparse | |
| import base64 | |
| import hmac | |
| import struct | |
| import time |
| # SPDX-License-Identifier: Unlicense | |
| rm() { | |
| local flags=() | |
| local args=() | |
| for arg in "$@"; do | |
| if [[ $arg == -* ]]; then | |
| flags+=("$arg") | |
| else |
| services: | |
| app: | |
| image: docuseal/docuseal:latest | |
| networks: [default, traefik-public] | |
| deploy: | |
| labels: | |
| - traefik.enable=true | |
| - traefik.docker.network=traefik-public | |
| - traefik.constraint-label=traefik-public | |
| - traefik.http.routers.${PROJECT_NAME?}-http.rule=Host(`${DOMAIN?}`) |
| from typing import Any, Final | |
| import msgspec | |
| from msgspec import inspect | |
| class _RecurseMarker: | |
| def __repr__(self): | |
| return "RECURSE" |
| { | |
| "meta": { | |
| "theme": "professional" | |
| }, | |
| "basics": { | |
| "name": "Alexander Pushkov", | |
| "label": "Full-Stack Developer", | |
| "summary": "I’m a versatile full-stack developer with a diverse background in various industries. I prioritize intuitive interfaces and thoughtful interactions in my development process and strive to ship software that users will love.", | |
| "email": "[email protected]", | |
| "location": { |
| swagger: '2.0' | |
| info: | |
| title: Authzed | |
| version: '1.0' | |
| contact: | |
| name: Authzed, Inc. | |
| url: https://github.com/authzed/api | |
| email: [email protected] | |
| license: | |
| name: Apache 2.0 License |
dman is now compatible with macOS/FreeBSD. Huge thanks to @stokito for helping upstream this patch!
curl https://salsa.debian.org/debian/debian-goodies/-/raw/master/dman?ref_type=heads > ~/.local/bin/dman| from fastapi import FastAPI, Depends | |
| from contextlib import asynccontextmanager, contextmanager | |
| app = FastAPI() | |
| @contextmanager | |
| def get_answer(): | |
| yield 42 |
| /* ==UserStyle== | |
| @name WaniKani spacier reviews | |
| @namespace [email protected] | |
| @version 1.0.0 | |
| @author Alexander Pushkov ([email protected]) | |
| ==/UserStyle== */ | |
| @-moz-document domain("wanikani.com") { | |
| :root { | |
| --color-quiz-srs-correct-background: var(--color-quiz-correct-background); |