Skip to content

Instantly share code, notes, and snippets.

@TyIsI
TyIsI / README.md
Created March 1, 2023 18:42 — forked from pamolloy/README.md
Mesh network using VXLAN over Wireguard
@TyIsI
TyIsI / mysql_uuid_v4.md
Last active November 29, 2023 23:01 — forked from odan/mysq_uuid_v4.md
Generating UUID v4 in MySQL

Generating UUID v4 in MySQL

SELECT
  LOWER(
    CONCAT(
      # 1th and 2nd block are made of 6 random bytes
      HEX(RANDOM_BYTES(4)),
      '-',
 HEX(RANDOM_BYTES(2)),
import { z } from 'zod'
interface MountBindCommon {
type: 'bind'
source: string
target: string
from?: string
}
interface MountBindReadWrite extends MountBindCommon {