Skip to content

Instantly share code, notes, and snippets.

@pyxze
pyxze / turntableMuteOneSong.js
Last active December 25, 2015 00:19
Mute Turntable for one song
// Based on http://eli.eliandlyndi.com/2011/06/28/turntable-fm-mute-until-next-track-starts/
// To use this make a bookmark then save this as the url and click it when needed.
javascript:
(function() {
function toggleMute() {
$(".volume-icon").click();
}
toggleMute();
@pyxze
pyxze / gist:5989284
Last active December 19, 2015 17:09
idempotent iptables command
REJECT_RULE_NO=$(iptables -L INPUT --line-numbers | grep 'REJECT' | awk '{print $1}'); if ! (iptables-save | grep -q -- "-A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT"); then iptables -I INPUT $REJECT_RULE_NO -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT; fi