Category: Useful tool
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
NirSoft – freeware utilities: password recovery, system utilities, desktop utilities
NirSoft web site provides a unique collection of small and useful freeware utilities, all of them developed by Nir Sofer.
If you are looking for Windows password-recovery tools, click here.
If you are looking for network tools, click here.
To view your IP address and other information, click here.
To view all major IP address blocks assigned to your country, click here.
To read the Blog of NirSoft, click here.
To download a package of all NirSoft utilities (Updated every week), go to this Web page.
via NirSoft – freeware utilities: password recovery, system utilities, desktop utilities.
IIS Add to Hosts File Extension
“Here’s a simple module to solve a recurrent and an annoying everyday task in IIS management: creating an entry in the Windows TCP/IP Hosts file for every demo and test web site.
This module extends the IIS Manager UI in order to add an entry on request in the Hosts file located in%SystemRoot%\System32\drivers\etc\hosts when a web site is created or its bindings are edited.”
IIS Hosts File Manager – Home.
Newer working link:
https://github.com/richardszalay/iishosts
Top 3 free Virtual Desktop Managers for Windows 8 / 7
ExpressProfiler (aka SqlExpress Profiler) – Home
ExpressProfiler (aka SqlExpress Profiler) is a simple and fast replacement for SQL Server Profiler with basic GUI and integration with Red Gate Ecosystem project.
Can be used with both Express and non-Express editions of SQL Server 2005/2008/2008r2/2012/2014 (including LocalDB)
Distribution package contains both standalone version of ExpressProfiler (can be used without installation) and installation package.
In the Coding Zone: Using MiniProfiler with ASP.NET WebForms
website – Miniprofiler for ASP.NET web site – Stack Overflow
Mozilla Introduces the First Browser Built For Developers: Firefox Developer Edition ✩ Mozilla Hacks – the Web developer blog
Simple bat script for keeping site up and running
keepsitealive.bat:
@echo off :start cls echo This is a loop wget http://mysite.localhost --spider timeout /t 60 /nobreak goto start
The script runs a get request against the url given every 60 seconds.
–spider indicates wget should not download anything.
Script above uses wget