Xenu’s Link Sleuth: (Windows desktop tool)
http://home.snafu.de/tilman/xenulink.html#Download
More tools here:
http://www.wpuniversity.com/blog/5-tools-find-broken-links
My bookmarks and blogposts regarding Software Development in .NET, C#, Angular, JavaScript, CSS, Html
Xenu’s Link Sleuth: (Windows desktop tool)
http://home.snafu.de/tilman/xenulink.html#Download
More tools here:
http://www.wpuniversity.com/blog/5-tools-find-broken-links
When you try to copy a file larger than 2 GB over a Remote Desktop Services or a Terminal Services session through Clipboard redirection (copy and paste) by using RDP client 6.0 or a later version, the file isn’t copied. And you don’t receive an error message.
It’s a known issue. Copying files larger than 2 GB by using this method isn’t supported.
To resolve this issue, use one of the following methods:
xcopy \\tsclient\c\myfiles\LargeFile d:\temp
I had a problem with a web app service on Azure, the session state was not functioning properly.
2 instances where running for the website and the Session affinity cookie was set to Off, that was the problem, ARR makes sure that the user stays on the correct webserver for the duration of the session.
I had to turn it ON, see link below for where to find it.
Disable Session affinity cookie (ARR cookie) for Azure web apps
If you prefer to use Chrome’s or IE’s own dev tools to do client-side debugging, the recent update to Visual Studio 2017 RC introduced a setting to disable the IE and Chrome script debugger (this will also prevent Chrome/IE from closing after a debugging session ends). Go to Tools -> Options -> Debugging -> General and turn off the setting Enable JavaScript Debugging for ASP.NET (Chrome and IE).
This needs to be done as well sometimes:
Tools > Options > Projects and Solutions > Web Projects, uncheck “Stop debugger when browser window is closed”
Source: Client-side debugging of ASP.NET projects in Google Chrome | .NET Web Development and Tools Blog
BareTail – free “live feed” viewer for log files.
* scrolls to last line of log upon updates
* custom highlight certain rows with a color based on your kewords
Download: https://www.baremetalsoft.com/baretail/index.php
My highlighting settings:

More info: http://geekswithblogs.net/robz/archive/2008/05/09/baretail—log-file-monitoring-tool.aspx
Azure DevTest Labs is a way to easily spin up VMs being used as developer and test machines.
Here are a Microsoft ready made json template to spin up an Azure Selenium Grid (x number of Selenium node servers) allowing automated UI testing for web sites.
https://github.com/Azure/azure-devtestlab/tree/master/Samples/201-dtl-create-lab-with-seleniumgrid
Great intro to responsive web design coding
I had an issue with Javascript files having no color syntax highlighting in Visual Studio 2017.
I first found this:
https://github.com/Microsoft/TypeScript/issues/14422
which focused on a TypeScript related problem and didnt help my issue.
I have ReSharper installed, enabling the settings below solved my issue:
To toggle ReSharper syntax highlighting Open the Code Inspection | Settings page of ReSharper options. Use the Color Identifiers check box to enable or disable ReSharper syntax highlighting. Click Save to apply the modifications and let ReSharper choose where to save them, or save the modifications to a specific settings layer using the Save To drop-down list. For more information, see managing and sharing resharper settings.
Materialize is a modern responsive CSS framework based on Material Design by Google.
Source: Documentation – Materialize