Skip to content

Instantly share code, notes, and snippets.

View poespas's full-sized avatar
😁
Hi

Jonathan poespas

😁
Hi
View GitHub Profile
@poespas
poespas / transform-an-physical-disk-into-a-vm.md
Last active March 24, 2026 08:37
Transform an physical disk into a VM

Transform an physical disk into a VM

Commands are ran from a liveUSB

Transfer raw image to external host

Use compression over the network, but extract on target

sudo dd if=/dev/nvme0n1 bs=256M status=progress | pigz -c -p 4 | ssh [user]@[host] "gunzip -c > /mnt/disks/dev-nvme0n1.img"
@poespas
poespas / close_bitbucket_prompt.user.js
Created February 25, 2021 08:23
Closes bitbucket "Take your first steps" prompts after pageload
// ==UserScript==
// @name Bitbucket First Steps admisser
// @namespace https://poespas.me/
// @version 0.1
// @description Really annoying stuff bitbucket, not cool.
// @author You
// @match https://bitbucket.org/*
// @grant none
// ==/UserScript==