Skip to content

Instantly share code, notes, and snippets.

View mmeyer2k's full-sized avatar

mmeyer2k

View GitHub Profile
@mmeyer2k
mmeyer2k / zfs.md
Last active November 19, 2024 01:30
ZFS cheatsheet

zfs cheatsheet

vdevs

Create zpool with initial vdev

zpool create poolX mirror /dev/sdY /dev/sdZ

Add vdev to zpool

zpool add poolX mirror /dev/sdY /dev/sdZ
@mmeyer2k
mmeyer2k / boom.php
Created March 16, 2025 08:00
Laravel queue fork bomb
$fn = function ($fn) {
dispatch(fn() => $fn($fn));
dispatch(fn() => $fn($fn));
};
dispatch(fn() => $fn($fn));