Skip to content

Instantly share code, notes, and snippets.

View binkley's full-sized avatar

Brian Oxley (binkley) binkley

  • Thoughtworks
  • Houston, TX
  • 23:42 (UTC -05:00)
View GitHub Profile
@binkley
binkley / steam-system-report.txt
Created November 29, 2019 17:13
Steam System Report
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Laptop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
CPU Family: 0x6
@binkley
binkley / jurlq.sh
Created December 21, 2015 13:41
Bash helper for curl plus jq
#!/bin/bash
curl_args=()
for arg
do
case "$arg" in
-- ) shift ; break ;;
* ) curl_args=("${curl_args[@]}" "$arg") ; shift ;;
esac
done