Skip to content

Instantly share code, notes, and snippets.

View drohrbaugh9's full-sized avatar

David Rohrbaugh drohrbaugh9

  • Northern Colorado
View GitHub Profile
@drohrbaugh9
drohrbaugh9 / twitch-chat-bookmarklet.js
Last active February 6, 2021 00:51
Twitch Chat bookmarklet
javascript:(function() {
var link = document.location.href;
var l = link.length;
/* check for special Firefox or Chrome URLs */
if (link.search(/^(about|chrome):/) >= 0) {
if (link == "about:blank") {
return "<link rel=\"icon\" type=\"image/png\" href=\"chrome://branding/content/icon32.png\"><style>a,p {color:white;}</style><p>congrats, you broke it; why did you try that</p><a href=\"https://www.youtube.com/watch?v=dQw4w9WgXcQ\">secret</a><br><a href=\"https://www.bouncingdvdlogo.com\" style=\"display:none\">extra secret</a>";
}
return;
}
@drohrbaugh9
drohrbaugh9 / GitUpdate.bat
Created April 8, 2015 23:14
Batch file to update local repositories automatically
cd <directory>
echo <repository name>
git pull origin master
cd <another directory>
echo <another repository name>
git pull origin master