development Custom From* attributes for controller action methods in ASP.NET Core Implementing custom From* attributes for controller action methods in ASP.NET Core.
development Deploying Blazor WebAssembly to Azure Static Web App In this post I will show you how to build a web application in Blazor and deploy it automatically with each commit into Azure. But first, let me tell you
Enabling Content Trust in Azure Container Registry Docker Content Trust provides the ability to use digital signatures for data sent to and received from remote Docker registries. These signatures allow client-side verification of the integrity and publisher
macos What should you, as a developer, install once you get a MacBook? More and more developers around me (friends or colleagues) started getting themselves a MacBook (finally). I started getting more and more questions like: What tools for macOS improve my effectivity?
OpenAPI How to avoid breaking changes in your REST API with OpenAPI One of the challenges that you might encounter when you have an application which provides REST API is avoiding doing breaking changes when you update your API. Introducing a breaking change in your REST API can possibly break thousands of clients that are consuming
OpenAPI Specification-first API design Creating an application which provides REST API is nowadays a very easy task. There are countless of languages with frameworks that make this task very easy. Always when you decide to add new resources or update some resources in your API you probably just
traveling Vietnam 2016 - Hanoi In December 2016 I took a trip to Vietnam with my family and our friends. We were thinking about a destination almost for 6 to 7 months. Finally, we decided
Prejudice A lot of people take prejudices lightly. They do not think about it as something important, something that could change the outcome of their decisions. They might not even realize that they are making a prejudice towards something. Is it something that people should
.net Highlighting parts of UILabel in Xamarin I was implementing a search in UITableViewController and received a task to also highlight the searched words in the results. This is not a behaviour that is already implemented in the iOS components (UILabel) so I had to come up with my own solution.
.net Document detection using EmguCV In this blog post I would like to go through a simple technique that could be used for detecting documents in an image. We will be using EmguCV for the image processing part. It is a .NET wrapper for OpenCV. Prerequisities.NET FrameworkEmguCV (I
goland Sets in Golang Welcome to my first blog post! I will try to explain how to implement your own Set data type in Go lang Set is an abstract data type that can store certain values, without any particular order, and no repeated values. It is a