This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Southwest Auto Check-In | |
// @namespace http://dbknickerbocker.blogspot.com | |
// @description Automatically check-in for Southwest flights | |
// @include http://southwest.com/flight/retrieveCheckinDoc* | |
// @include http://www.southwest.com/flight/retrieveCheckinDoc* | |
// @include http://southwest.com/flight/selectPrintDocument* | |
// @include http://www.southwest.com/flight/selectPrintDocument* | |
// @updateURL https://gist.github.com/dbknickerbocker/5730976/raw/southwest.user.js | |
// @author David B. Knickerbocker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function get_temp() { | |
exec("/usr/local/bin/mbmon -c1 -T1", $dfout); | |
return trim($dfout[0]); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Yes, Pandora, I'm Still Listening | |
// @namespace http://dbknickerbocker.blogspot.com | |
// @description Automatically click "I'm still listening" | |
// @match http://www.pandora.com/* | |
// @match https://www.pandora.com/* | |
// @updateURL https://gist.github.com/dbknickerbocker/5300881/raw/pandora_user_script.js | |
// @version 0.2 | |
// ==/UserScript== |