Source: My Favorite Programming Fonts for Visual Studio Development
Category: Tips & Tricks
Setting custom background color on a web page in Chrome
“Care your eyes” – extension for Chrome:
Change a webpage’s background color to reseda or night mode to protect your eyes from intensity of white or other lightness color.
https://chrome.google.com/webstore/detail/care-your-eyes/fidmpnedniahpnkeomejhnepmbdamlhl
“Deluminate” – extension for Chrome:
Invert the brightness of the web without changing the colors! Useful as a night mode to darken most bright web sites (like Google), or just for making the web soothing black instead of glaring white. Similar to the “High Contrast” or “Hacker Vision” extensions, but tries not to ruin images by blowing out the contrast or changing the colors.
https://chrome.google.com/webstore/detail/deluminate/iebboopaeangfpceklajfohhbpkkfiaa
Windows 8 auto login without password – Super User
http://windows.microsoft.com/en-us/windows-vista/turn-on-automatic-logon
If the “Users must enter a password…” checkbox does not appear:
passwords – Windows 8 auto login – Super User.
– must leave the network domain.
Using jQuery to prevent Internet Explorer from accidentally submitting form on enter key
$(function () {
//page is ready
//Prevents users from accidentally submitting form with enter key (e.g. IE problem)
//http://stackoverflow.com/questions/895171/prevent-users-from-submitting-form-by-hitting-enter
$(document).on("keyup keypress", "form input[type='text']", function (e) {
if (e.keyCode === 13 /*enterkey*/ || event.keyCode === 169 /*enter on numpad*/) {
e.preventDefault();
return false;
}
});
});
Works in ajax templated context as well.
Windows Tip: Easily show your Computer Name in the Taskbar – Scott Hanselman
If you ever wonder which machine you are remoting to, simple way to show the computer name.
Windows Tip: Easily show your Computer Name in the Taskbar – Scott Hanselman.
Google Chrome – Command Line API Reference
Code Refactoring (Software Gardening – Pruning)
Create Bookmarklets – The Right Way – Tuts+ Code Tutorial
“Bookmarkets can be defined as mini applications masquerading as tiny snippets of JavaScript awesomeness that reside in your browser and provide additional functionalities to a web page.
Today, we’re going to look into creating bookmarklets from scratch and on the way, some best practices to follow.”
via Create Bookmarklets – The Right Way – Tuts+ Code Tutorial.
Tell Chrome Developer Tools to use a dark theme – howchoo
Tell Chrome Developer Tools to use a dark theme – howchoo.
Themes for Chrome Developer Tools:
http://devthemez.com/themes/chrome-developer-tools?sort=downloads
