Home
Reset your code
Cancel

Debug production safely using Application Insights

Debugging production is bad. Even access to production is bad. But debugging production is evil. I even cannot describe how evil I think it is. But if you ask most developers (including myself), th...

Caring is sharing (vol.1) - OAuth

Last week I was mainly interested in deeply understanding OAuth, JWT and how to implement it in .NET (Core). https://stormpath.com/blog/authentication-asp-net-core - simple list of basic tools ...

Run Angular cli, React cli, Aurelia or Vue cli build in VSTS

Modern JavaScript frameworks come with dedicated command line interface (CLI). It applies for: Angular -> Angular CLI React -> react cli - not offical Vue.js -> vue cli Aurelia -...

How to deploy & warm-up an application in Azure using VSTS

Disclaimer This article was also published on my company blog. You can read it in Polish and in English on FinAi blog. This article is based on Umbraco site deployment, but I’m sure that it will f...

Owin middleware in .NET Standard for Application Insights - part 2

Some things were done, much more to do. If you didn’t read part 1, look at it before reading this one. Simple tracking The basic telemetry tracking method is a piece of cake. The example code belo...

Owin middleware in .NET Standard for Application Insights

I’m sure that you heard about .NET Standard. To simplify the definition just one quote from the offical GitHub repo FAQ .NET Standard is a specification that represents a set of APIs that all ....

Search and clean redundant JS and CSS on your page

Creating a web page is easy. But making it fast it isn’t a piece of cake. First steps are “easy”. You optimize the server-side response time, images sizes and weight, minification, and bundling. An...

Working on IISExpress with custom domain and SSL on 443

Working with IISExpress in extremely useful. But running in on custom domain and SSL on a default port (443) is a bit tricky. Custom domain If you are running Visual Studio as administrator, you c...

Using letter Pi(π) in JavaScript

Today I was doing some math in JavaScript. I needed a simple calculation from degrees to radians. Of course, I didn’t remember the formula. I copied it from Rapid Tables but I forgot to replace π c...

Discover what is inside webpack bundle

You start a new project using magic tools like yo, a built-in CLI (e.g. aurelia-cli, angular-cli, react-cli, vue-cli, omg-new-framework-cli) or just a template from GitHub. Most of them have a web...