Skip to content

Instantly share code, notes, and snippets.

View aaronbrooks-gh's full-sized avatar

Aaron Brooks aaronbrooks-gh

View GitHub Profile
@aaronbrooks-gh
aaronbrooks-gh / movieChecker.sh
Created October 31, 2021 02:20
Movie Checker - bash scripts to validate and find errors in a video file collection
#!/bin/bash
DIRLIST="/mnt/media"
REPORT_FILE="/home/aaron/moviereport.xml"
avg_read_speed() {
START_SEC=${1}
END_SEC=${2}
SIZE_BYTES=${3}
@aaronbrooks-gh
aaronbrooks-gh / openinsteam.user.js
Last active May 7, 2020 16:15
A user script that adds a link to open the current Steam page in the desktop client.
// ==UserScript==
// @name Open In Steam
// @namespace http://brooksaar.com/
// @version 0.2
// @description Adds a link to open Steam content in the desktop client.
// @author Aaron Brooks
// @match *://steamcommunity.com/*
// @match *://store.steampowered.com/*
// @grant none
// ==/UserScript==