Skip to content

Instantly share code, notes, and snippets.

View bentalexanderhaase's full-sized avatar
👷
I create problems and solve them for a living!

Bent Alexander Haase bentalexanderhaase

👷
I create problems and solve them for a living!
  • DB InfraGO AG
  • Germany
View GitHub Profile
@taslabs-net
taslabs-net / PVE9_TB4_Guide_Updated.md
Last active February 17, 2026 15:53
Thunderbolt4 mesh network

PVE 9.1.1 TB4 + Ceph Guide

2026-01-30 Created public repo in attempts to help. Not really sure what I'm doing in. repo. So.. be nice https://github.com/taslabs-net/proxmox-tb4

Updated as of: 2025-11-19 - Network architecture corrections applied


Network Architecture (UPDATED)

@JimiSweden
JimiSweden / dwraw.io. configuration example.md
Last active January 7, 2026 21:57
draw.io windows app override default configuration to allow larger images

problem

When trying to insert an image you might get the warning "Image too big" when selecting "Actual size" in the insert dialog

Soulution

is to change the default settings.

note: this is tested on Windows, probably similar in Mac - check out the linke here if you are using Mac https://gist.github.com/cellularmitosis/e5e7d1517939b98418a58cdd8595dd8c

open Draw.io app ()

  • in menu "Extras" , select "Configuration".
@flungo
flungo / lsiommu
Created March 10, 2017 23:59
List the devices and their IOMMU groups.
#!/bin/bash
for d in $(find /sys/kernel/iommu_groups/ -type l | sort -n -k5 -t/); do
n=${d#*/iommu_groups/*}; n=${n%%/*}
printf 'IOMMU Group %s ' "$n"
lspci -nns "${d##*/}"
done;
@tuxfight3r
tuxfight3r / tcp_flags.txt
Last active April 5, 2026 14:15
tcpdump - reading tcp flags
##TCP FLAGS##
Unskilled Attackers Pester Real Security Folks
==============================================
TCPDUMP FLAGS
Unskilled = URG = (Not Displayed in Flag Field, Displayed elsewhere)
Attackers = ACK = (Not Displayed in Flag Field, Displayed elsewhere)
Pester = PSH = [P] (Push Data)
Real = RST = [R] (Reset Connection)
Security = SYN = [S] (Start Connection)