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
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; | |
} |
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
cd <directory> | |
echo <repository name> | |
git pull origin master | |
cd <another directory> | |
echo <another repository name> | |
git pull origin master |