Azure, DevOps and .NET articles

Empowering developers since 2015. Real articles, real insights.

DotNet61 Azure45 DevOps35 JavaScript23 VisualStudio17 CSS12 Jekyll8 Git8 All topics →

    Save time in Visual Studio with these keyboard shortcuts

    The following list contains my favorite keyboard-shortcuts in Visual Studio:

    Read the complete article

    A list of helpful and often used commands of the npm package directory

    The following list contains npm commands that I use practically every day while working with npm packages in my node.js projects:

    Read the complete article

    Create a drop-down list with custom options text and value in Angular

    It is a common practice that the text of the options of a select drop-down box is a combination of a shortcut and it’s full text label.

    For example consider the following array of JSON objects that a server might return:

    var countries = [
        {"shortcut": "DE", "label": "Germany"},
        {"shortcut": "GB", "label": "Great Britain"}
    ];
    
    Read the complete article

    Stop Ruby code from running inside pygments code blocks

    When you want to highlight ruby-code snippets you will deal with the problem that the code, even when it is wrapped inside the {% highlight ruby %}…{% endhighlight %} tags, it gets executed and you do not see the code snippet itself.

    Read the complete article

    Use Jekyll and Bootstrap to build a tag-filtered article list

    For my personal blog, which is based on Jekyll, I created a tag-area on the top of the homepage so that the visitors are able to navigate through the different articles in a tag-page by clicking on the tag that they are interested in. With this article I would like to present you the code of the tag-area:

    Read the complete article