Skip to content

Instantly share code, notes, and snippets.

@HysMagus
HysMagus / status-austin.py
Last active March 31, 2021 18:27
Modify Matsuro Hadouken's Casper-Tools to work on a remote node, specifically Austin's remote node
#!/usr/bin/python3
import sys,os,curses,json,time,select,random
from datetime import datetime
from collections import namedtuple
from configparser import ConfigParser
peer_blacklist = []
purse_uref = 0;
@koenrh
koenrh / gcp-gpu-vm-hashcat.md
Last active February 4, 2024 18:37
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.

@c0ldlimit
c0ldlimit / git_newrepo
Created November 16, 2012 17:14
Git: Push a new or existing repo to Github
# Create a new repository on the command line
touch README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/c0ldlimit/vimcolors.git
git push -u origin master
# Push an existing repository from the command line