parcel – fast and simple web application bundler
Asynchronous JavaScript: Async/Await Tutorial | Toptal
How to preserve line breaks in p elements with CSS
pre-line Sequences of whitespace will collapse into a single whitespace. Text will wrap when necessary, and on line breaks
Source: CSS white-space property
Example:
p.intro {
white-space: pre-line;
}
Works in all modern browsers and IE8+
Measure performance with Visual Studio 2017 profiling tools | Microsoft Docs
Measure which methods takes longest time (cpu analysis) or how the memory is used in a .NET application with the built-in Performance Profiler in Visual Studio 2017
docs.microsoft.com/en-us/visualstudio/profiling/profiling-feature-tour
CSS transitions – Free tutorial to learn HTML and CSS
CSS transitions allow to smoothly go from one element’s state to another. How it works is that individual properties are animated from an initial to a final state.
marksheet.io/css-transitions.html
Nuget package handling – Using package.config instead of new PackageReference in csproj Visual Studio 2017
In Visual Studio 2017 and with .NET Core projects a new way of referencing nuget packages was introduced. Somehow during a .NET project upgrade one of the nuget packages were converted into a PackageReference (referenced in the csproj file and not from package.config). Below are the steps to convert such package reference back into plain old package.config behaviour:
In addition to removing the PackageReferences from the project file, I also had to remove the following files from the $ProjectDir\obj directory: Myproject.csproj.nuget.cache Myproject.csproj.nuget.g.props Myproject.csproj.nuget.g.targets project.assets.json
JavaScript Developer Docs | Mozilla Developer Network
Good Developer documentation for JavaScript
Source: JavaScript | MDN
ES6 Overview in 350 Bullet Points
Good learning resource for javascript 2015 (ecmascript v6).
ponyfoo.com/articles/es6
Visual Studio Code Tips and Tricks
“Tips and Tricks” lets you jump right in and learn how to be productive with Visual Studio Code. You’ll become familiar with its powerful editing, code intelligence, and source code control features and learn useful keyboard shortcuts. This topic goes pretty fast and provides a broad overview, so be sure to look at the other in-depth topics in Getting Started and the User Guide to learn more.
code.visualstudio.com/docs/getstarted/tips-and-tricks