Skip to content

Instantly share code, notes, and snippets.

View jeremy-wolfe's full-sized avatar

Jeremy Wolfe jeremy-wolfe

  • Minneapolis
View GitHub Profile
@jeremy-wolfe
jeremy-wolfe / ipmi-dell-fans.js
Last active October 17, 2019 19:22
Automatic low-speed fan control for Dell PowerEdge systems via IPMI
#!/usr/bin/env node
/*
Automatic low-speed fan control for Dell PowerEdge systems via IPMI
https://gist.github.com/CaptainVascular/4c5ba83a455f277b86d36f7639a32eb9
MIT License
Tested on R710 only
Requires nodejs, lm_sensors, ipmitool, freeipmi
@jeremy-wolfe
jeremy-wolfe / update.sh
Last active March 10, 2020 13:40
ProtonMail Bridge Updater for Arch Linux
#!/bin/bash
# Should work with your favorite hash algorithm (md5sum, sha256sum, etc.)
hash=md5sum
old="$($hash PKGBUILD)"
wget -O PKGBUILD https://protonmail.com/download/beta/PKGBUILD
new="$($hash PKGBUILD)"
[ "$old" = "$new" ] && echo "Up to date." || makepkg -si