Skip to content

Instantly share code, notes, and snippets.

View daaang's full-sized avatar

Matt LaChance daaang

  • University of Michigan
  • Ann Arbor, Michigan, United States
View GitHub Profile
@daaang
daaang / solstice2020.txt
Created August 14, 2020 15:58
Solstice 2020 warlock armor
Strike Playlist (600 kills)
---------------------------
When doing strikes, match subclass to the solstice element of the day.
Probably won't need to go out of my way to collect 300 solar orbs before
600 kills happens.
Helmet 600x kills in the Vanguard strike playlist (subclass match day)
Legs 300x Solar orbs collected in Vanguard strike playlist
@daaang
daaang / plover_additions.json
Created February 7, 2019 14:24
The dictionary I use for Plover
{
"HRA/KHAPBS": "LaChance",
"SPWAFT/KWREPB": "Sebastien",
"SUL/PHAPB": "Suleman",
"HA*T/TRUFT": "HathiTrust",
"SKWRAEUPL": "AEIM-{^}",
"SKWRAE": "AE-{^}",
"O*EURS": "OCR",
"TKAET/STR": "datacenter",
"TKAET/STR-S": "datacenters",
@daaang
daaang / get_package_by_repo.rb
Created April 13, 2018 12:38
Get a list of all packages installed on a system, triple-hashed on apt source url, release, and repo
require 'json'
# Collect the url, release, and repo immediately following the first
# line beginning with ` *** `, which indicates the installed instance of
# the package.
get_repo = %r{\n +\*\*\* +.*?\n +[0-9]+ +([^ ]+) +([^ /]+)/([^ ]+) .* Packages}m
# Get a list of all packages apt knows about.
packages = `apt list --installed | sed -e 's,/.*$,,'`.strip.split("\n")