Azure, DevOps and .NET articles

Empowering developers since 2015. Real articles, real insights.

DotNet61 Azure45 DevOps35 JavaScript23 VisualStudio17 CSS12 Jekyll8 Git8 All topics →

    Hints and tips about Load and Web Tests with Microsoft Visual Studio

    When dealing with large web applications you will definitely have to apply some load to the infrastructure before going or even during being online. A Load test is a predefined set of URL requests that are submitted to your application from multiple virtual users. The number of the users or the amount of time a Load tests runs, can be defined from you.

    By testing your application with Load tests you can be sure about the maximum workload or number of requests that your infrastructure can support and handle simultaneously. Having this information you can decide if you have to buy (on premise case) or rent (cloud case) new hardware.

    With this article I would like to give some tips and tricks for features of the Load tests in Microsoft Visual Studio.

    Read the complete article

    Define HTML table column widths and truncate text with ellipsis

    A very old HTML best practice suggests that we should not use tables to structure the HTML elements inside a webpage. This solution was used extensively a decade ago, and for this reason tables got a very bad reputation in the web community. However, using tables in your HTML code for structuring and presenting a set of data is still a valid option.

    When you use a table with multiple columns, you often want to define the width for each of the columns of the table.

    Read the complete article

    How to test HTML elements and DOM properties with Jasmine framework

    When you test your JavaScript code you often want to test the user interactions with the UI of your web application and not just its logic. Testing the UI makes even more sense if you use a JS-framework which offers a list of UI controls.

    Consider the following use-cases that could be unit tested:

    Read the complete article

    Split words out of a string and reverse their order in JavaScript

    You want to achieve the following tasks with JavaScript:

    Let’s see how you can split a string based on its words. There are two simple options.

    Read the complete article

    The this keyword in JavaScript: must-know features explained

    The previous days I had a great conversation about the fundamentals of JavaScript, scope, closure, etc.. The this keyword was also a discussion point. I wasn’t 100% sure of the rules that apply to this and I wanted to refresh my memory about the possible ways to use the keyword and for each case identify the owner of this when a function is invoked.

    Read the complete article