Skip to content

Instantly share code, notes, and snippets.

View identor's full-sized avatar
🌴
On vacation

Irvin Denzel Torcuato identor

🌴
On vacation
View GitHub Profile
@barezina
barezina / usb-unlock
Last active April 1, 2024 21:57
a script to initramfs that allows for keyfiles on USB drives to be used to unlock 22.04 disks
#!/bin/sh
set -e
file="usbtries.txt"
if [ -e ${file} ]; then
count=$(cat ${file})
else
count=0
fi
@abstractart
abstractart / books.md
Last active February 28, 2025 11:33
Free Programming Ebooks - O'Reilly Media. Codeship free ebooks here - https://bit.ly/2oQ0knQ
@koenrh
koenrh / gcp-gpu-vm-hashcat.md
Last active November 24, 2024 21:49
Running Hashcat on Google Cloud's new GPU-based VMs

Running Hashcat on Google Cloud's GPU-based VMs

In February 2017, Google announced the availability GPU-based VMs. I spun up a few of these instances, and ran some benchmarks. Along the way, I wrote down the steps taken to provision these VM instances, and install relevant drivers.

Update April 2019: Updated instructions to use instances with the Tesla T4 GPUs.