Skip to content

Instantly share code, notes, and snippets.

@tbwiii
tbwiii / appendTo Blazon Theme
Last active August 29, 2015 14:04
appendTo Blazon Theme
*{
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-ms-box-sizing:border-box;
box-sizing:border-box;
}
html {
background: #fff
}
@tbwiii
tbwiii / Don't Close Me, Bro
Created November 14, 2012 21:07
A Bookmarklet that keeps you form accidentally closing a tab you wanted to keep open.
javascript:(function(){window.addEventListener('beforeunload',function(){return"Whoa bro, you tried to close me. \n Did you mean to do that?"})})();