mutterings in the dark

mutterings in the dark @tinkertinker

Joined:
Nov 4, 2023

mutterings in the dark
articles - 5 total

Setting up helix with rust on Alpine

Rust health check To pass the helix rust health check hx --health rust, there are 4 items...

Learn More 0 0Sep 30 '24

Setup firewall on Alpine with nftables

# Install nftables doas apk add nftables # List tables (default table is `inet filter`) doas nft...

Learn More 1 0Sep 20 '24

Allow low privileged ports inside podman container

podman run --sysctl=net.ipv4.ip_unprivileged_port_start=80 Enter fullscreen mode ...

Learn More 0 0Nov 19 '23

Podman/Docker container with a (GUI) remote desktop VNC on Raspberry PI 4

Kasmweb podman run --rm -ti -p 6901:6901 \ -e VNC_PW=password \ ...

Learn More 0 0Nov 19 '23

Example of Asynchronous Context Manager (async with)

#!/usr/bin/env python3 import asyncio async def sleep(time): print(f"Sleeping for {time}...

Learn More 0 0Nov 18 '23