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 for better programming with the React Native framework

    Based on my current experience with the React Native framework, I would like to share with you some hints and tips that will improve your skills in the way you develop with the framework.

    Isolate the business logic of your application from the UI/ components code

    This is probably the most valuable information someone should have in her mind when developing with React Native. React Native tries to be as platform independent as possible, however, there will be cases, that you will have to write different JavaScript code for iOS and different code for Android.

    Read the complete article

    Run your React Native app on iOS with the XCode Simulator

    You decided to create a new application for iOS and you want to program the app with the React Native framework.

    Here is a list with all the steps you have to take if you want to start XCode Simulator and test the UI of your application on your developer machine:

    Read the complete article

    Variable scope: must-know JavaScript features explained

    JavaScript is a small language, however, as any other technology one should invest some time in learning the fundamentals of it, so that she has a solid knowledge when writing code or architecting web applications.

    With the Must Know JavaScript features articles I try to give you a starting point for your further familiarization with the most important features of the language. You are going to use these features extensively as a JavaScript engineer, directly or indirectly.

    Read the complete article

    Fix BadImageFormatException when unit testing in Visual Studio

    The BadImageFormatException was unhandled -- An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B) exception is being thrown when you try to load a .dll of your application which was compiled with 32 bits (X86) or 64 bits (X64) and the process that runs this file runs in a different bit-environment than the file.

    Read the complete article

    Fix the EPERM error in npm when using TFS and Visual Studio

    When you work with Team Foundation Server (TFS) and Visual Studio and you do web development, chances are that you will come across the EPERM error when npm tries to change a file in your application. The complete error message is Error: EPERM: operation not permitted, rename and then the absolute path to the problematic file follows.

    Read the complete article