Using BenchmarkDotNet with Azure Functions
BenchmarkDotNet is a tool for benchmarking .NET applications. Azure Functions is a serverless web application offering. You can put these together to benchmark your Azure Functions applications. S...
BenchmarkDotNet is a tool for benchmarking .NET applications. Azure Functions is a serverless web application offering. You can put these together to benchmark your Azure Functions applications. S...
When creating web applications it’s common to create links. Sometimes, links contain query string parameters. Google uses the ?q= query string parameter for search queries. An issue can arise when ...
Sometimes when writing .NET libraries we want to support .NET Full Framework, as well as modern .NET. In many cases the functionality is the same, but sometimes it is different. For the cases wher...
The .NET CLI enables quickly scaffolding a new library. Here’s a quickstart of commands to use, substituting My.Sample.Project for your own new project: dotnet new --update-apply mkdir My.Sample.P...
Travis CI now includes support for Windows builds. It doesn’t have SQL Server LocalDB installed by default currently, but it’s easy to install. Here’s an example Travis CI configuration that instal...
async / await in JavaScript are syntactic sugar for Promises. Since it’s syntactic sugar, they can be used interchangeably! Here’s an example: class TestClass { getPromiseValue() { return ...
How would you like to go from this: to this: Add the following to your settings, accessible by File → Preferences → Settings. { "editor.codeLens": false, "editor.minimap.enabled": fa...
TL;DR: Example at https://github.com/kendaleiv/angular-testing. Angular uses Protractor for end-to-end (e2e) testing. Protractor performs browser automation tasks using a running copy of your An...
Browser-Update.org is useful for notifying users about an outdated web browser. In the case of SPA applications, the experience using an older browser can range from great to completely broken. If...
When working with Angular and the Angular CLI, one might import an RxJS Observable as: import { Observable } from 'rxjs'; Later, running TSLint reports This import is blacklisted, import a submo...