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+
My bookmarks and blogposts regarding Software Development in .NET, C#, Angular, JavaScript, CSS, Html
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 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 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
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
Good Developer documentation for JavaScript
Source: JavaScript | MDN
Good learning resource for javascript 2015 (ecmascript v6).
ponyfoo.com/articles/es6
“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
An alternative to Postman for testing RESTful APIs.
Nice UI and used by Netflix and Cisco among others.
Source: Insomnia REST Client