Skip to content

Instantly share code, notes, and snippets.

Enterprise: NJVYC-BMHX2-G77MM-4XJMR-6Q8QF
Professional: KBJFW-NXHK6-W4WJM-CRMQB-G3CDH
Keys are generic ones. These are the same from MSDN account.
Product Key : -6Q8QF
Validity : Valid
Product ID : 00369-90000-00000-AA703
Advanced ID : XXXXX-03699-000-000000-00-1032-9200.0000-0672017
@rcx
rcx / CLASSAdv-FIXED.bt
Created June 5, 2019 07:23
010 editor Java classfile template with fix for classfiles version < 45.3
//------------------------------------------------
//--- 010 Editor v5.0 Binary Template
//
// File: CLASSAdv.bt
// Authors: Pishchik Ilya L. (RUS)
// Version: 1.2
// Purpose: A template for parsing Java Class (JVM) Files.
// Includes visualizing bytecode.
// Category: Programming
// File Mask: *.class
@rcx
rcx / README.md
Last active December 24, 2019 10:06
Generate self-signed certificate with openssl

Based off of this gist

I'm sick of typing the commands to self-sign these certs but I'm also way too lazy to setup proper PKI and ACME server. So instead I ssh into this server and do the needful each time, then rsync the key and crt LOL. All this crap is behind a VPN and the ssl is really just there so firefox will remember my passwords...

Why do we need faketime (apt install faketime)? Because Apple.

And same with the fancy extendedKeyUsage nonsense.

@rcx
rcx / fancurve.py
Last active January 28, 2020 11:10
Dell Poweredge manual fan controller
#!/usr/local/bin/python
import subprocess, os, time, collections, re
goal_temp = 40.0
k_p = 5
k_i = 0.1
k_d = 2
max_fan = 100
min_fan = 10 # keep the fans at x% at least so the server remains cool when idle.
@rcx
rcx / rtorrent
Created September 23, 2020 04:46 — forked from Grogdor/rtorrent
rtorrent FreeBSD startup rc.d service script tmux user
#!/bin/sh
#
# $FreeBSD$
#
# Runs as unprivileged user "rtorrent"
# Lives in "tmux" (like "screen") because rtorrent can't daemonize itself
# To access rtorrent client that's in the tmux: su - rtorrent && tmux attach
# To detach the tmux and leave rtorrent running: Ctrl-B then D
# nice'd default +10 step to make it go easy on the machine
# Don't forget to put rtorrent_enable="YES" in your /etc/rc.conf