http://markdownpad.com/ (splitted source/preview editor)
My bookmarks and blogposts regarding Software Development in .NET, C#, Angular, JavaScript, CSS, Html
Download free virtual machines to test Microsoft Edge and IE8 to IE11:
Source: Free Virtual Machines from IE8 to MS Edge – Microsoft Edge Development
Start coding sooner with a virtual machine prepped for Windows 10 development. It has the latest versions of Windows, the developer tools, SDKs, and samples ready to go:
https://developer.microsoft.com/en-us/windows/downloads/virtual-machines
Prefix will help troubleshoot what your code is doing by inspecting key methods, database queries, web service calls, and logging statements.
Prefix is designed for developers to use everyday as they write & test their own code. Prefix answers the question of “What just happened” in my code.
Free to use with a few limitation (shows 1000 latest requests etc.)
Source: What is Stackify Prefix?
Getting started videos:
http://www.dotnetswede.com/prefix-is-out-heres-a-list-of-resources-for-getting-started/
Creating Reports in Excel 2007 using EPPlus (Header, Footer, Comments, Image, Formatting, Shape and Formula)
IntroductionEPPlus is really a powerful tool to generate excel based reports on server side and it is becoming my favorite tool as I am getting more experienced with it. Previously I wrote a post about Creating advanced Excel 2007 Reports on Server. This post is update on the last post and I am sharing more advanced feature of EP Plus.
Source: Zeeshan Umar’s Blog
Set up persistent authoring in Chrome DevTools so you can both see your changes immediatedly and save those changes to disk.
Source: Set Up Persistence with DevTools Workspaces | Web Tools – Google Developers
The easiest and most powerful way to compile LESS, Scss, Stylus, JSX and CoffeeScript files directly within Visual Studio or through MSBuild.
Source: Web Compiler extension
Is there a way to download a previous version of a package with nuget, not the latest one?
Source: Download old version of package with nuget – Stack Overflow
The IIS server logs looks something like this:
#Software: Microsoft Internet Information Services 8.0 #Version: 1.0 #Date: 2016-04-19 00:47:15 #Fields: date time s-sitename s-computername s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs-version cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken
This simple to use tool parses those logfiles and creates a html file that opens in the web browser and presents the data in a nice simple way complete with graphs.
Download “WebLog Expert Lite” for free.
Source: WebLog Expert Download
The easiest, fastest way to update or install software. Ninite downloads and installs programs automatically in the background.
Source: Ninite – Install or Update Multiple Apps at Once
Also check these out:
http://boxstarter.org/
https://chocolatey.org/
The C# Interactive Window provides a fast and iterative way to learn APIs, experiment with code snippets, and test methods by giving immediate feedback on what an expression will return or what an API call does.
The C# Interactive Window is a read-eval-print-loop (REPL) with advanced editor support. It supports features like IntelliSense as well as the ability to redefine functions & classes. After entering a code snippet–which can contain class and function definitions at top-level along with statements–the code executes directly. This means you no longer need to open a project, define a namespace, define a
Main
method, add aConsole.WriteLine()
call to output your result, and add aConsole.ReadLine()
call in order to play with code. In other words, say goodbye to ConsoleApp137 or whatever ridiculously high number your Console Apps default to today!