Clean Architecture As I already stated Clean Architecture was the main reason I started this journey. If you are seriously interested in reading more about Clean Architecture I kindly recommend … Continue Reading Chapter 2: Clean Architecture & Domain Driven Design
Last year I’ve read several new books about software development. One of them was the book “Clean Architecture: A Craftsman’s Guide to Software Structure and Design” by Robert C. Martin … Continue Reading My journey in Clean Architecture and Domain Driven Design
If you write an app you probably need a way to store data. If you do it using a SQL Database (eg. SQL-Server) you need a way to change your … Continue Reading Update SQL Database using EF Core and Azure DevOps
I recently moved a build-job for our front-end library over to Azure Pipelines. This build-job builds multiple TypeScript projects where each one produces its own NPM package using the Lerna … Continue Reading Update Azure Pipeline BuildNumber using PowerShell
For a new app I’m writing using ASP.Net MVC Core 2.1, EF Core 2.1 and ASP.Net Identity 2.1 I had to implement the sign-out / log-out functionality. You may ask … Continue Reading Fix sign-out with ASP.Net Identity Core 2.1
I was at a meet-up from the Software Craftsmanship Zürich on the topic of “No estimates QA session” with Vasco Duarte. I read a few things about “No estimates” (aka “NE”) … Continue Reading No estimates
My goal was to have a polyfill.js bundle generated by Webpack 4 that gets inserted into the apps index.html file before any other Javascript as it must load and install … Continue Reading Polyfill, Vendors and App Bundle using Webpack 4
Intro We use React for most of our current web-frontends. For older React Apps we used the MobX (databinding-library for MVVM) and then moved over to Redux. But even with … Continue Reading State-Handling in React apps
I’m relatively new to the stack of React, Redux and TypeScript but I had to do a lot of coding in this area over the past months. To get started … Continue Reading Structuring a React/Redux/TypeScript app
Again some notes from my recent React and Javascript/TypeScript learnings. I knew already how to use Promises by building method chains with .then() or .catch() to chain the asynchronous actions … Continue Reading Javascript async/await in React Components
As I am making myself familiar with modern frontend development based on React, TypeScript, Webpack and some more I learned something really cool. I like to write this down not … Continue Reading Compile-check LESS/CSS classnames using TypeScript and Webpack
I just spent a fair amount of hours calculating one MD5 hash code over multiple strings so I thought I write this down. Please note that the same principle can … Continue Reading Calculating MD5 Hash over multiple strings with C#
In a previous post I described how to set up the Ligatures font “Fira Code” in Visual Studio 2017. As I startet coding these days in Visual Studio for Mac … Continue Reading Visual Studio for Mac with Ligatures font ‘Fira Code’
We read about that Visual Studio Team Services (VSTS) now not only support hosting your Nuget package feeds but also your source-symbols and source-symbol packages. This sounds very promissing in … Continue Reading How to build and publish Nuget packages with source-symbols to VSTS
In the current version of Visual Studio for Mac there is “Add file” template for xUnit Unit-Tests. Nice and easy. But how to run these tests? The problem is, that … Continue Reading How to run xUnit Tests in Visual Studio for Mac
I just got a bug-report where a field label is too long and (with the use of Bootstrap 3) doesn’t wrap but get cut off. So I took this opportunity … Continue Reading Line-breaks in webpages