.Net Core

Simple Settings service example in C#.

Posted on

In .NET world storing data into xml configuration files is very common scenario. While, web apps (Asp.Net) use web.config, desktops use app.config (renamed to <FullExecutableFilename>.exe.config at runtime). Every application sooner or later needs to collect, persist and restore some data (settings) from (to) end user. While web apps store these information almost always into database, […]

.Net Core

Experimenting with gRPC in .NET Core.

Posted on

Modern applications are distributed, loose-coupled and service oriented. Decoupled systems perform and scale better, maintenance is far easier (by reducing complexity into smaller more maintainable parts). Communication system that glue together these decoupled parts is important part of the system. Windows Communication Foundation (WCF) has always been de-facto framework for communication between decoupled systems/processes in […]

Development

How to get data from WordPress.

Posted on

I tried to pull some data from one WordPress to another WordPress installation. As I normally do, first I checked if some fancy plugin or widget exist in enormous WordPress plugin repository. After a while, I did not find (did not conform all my needs) any nice and easy solution.

Azure DevOps

How to setup private Linux Azure DevOps Agent.

Posted on

Azure DevOps is amazing set of services which support all parts of Application lifecycle management. Although, built-in (Hosted) build agents are enough for almost all scenarios, there are cases when special needs are required. In this case, custom build agents covers these scenarios. In this blog post I will describe how to put on custom Linux build agent for Azure DevOps.