Testing SignalR Hubs in ASP.Net Core 2.1

Hello and Welcome 🙂 As some of you might have heard, ASP.NET Core 2.1.0 went live at the end of last month. One of the features that come with this release is also the release of SignalR which for those who do not know about it, it's a library that allows for two-way communication between … Continue reading Testing SignalR Hubs in ASP.Net Core 2.1

Securing Ids on web applications

Hello and welcome 🙂 Recently I have been reading through the documentation and articles about how to protect our web applications from tampering when giving a form to the user. Looking at this, one realizes that the cause for these security measures is due to the inherent nature of HTTP, in that being stateless, we … Continue reading Securing Ids on web applications

LINQPad, A developer’s best friend

Hello and welcome 🙂 , Today I want to discuss one tool that is indispensable from my toolbox (also by popular demand :D), from testing out ideas, to developing custom controls, I default to LINQPad most of the time, and not for just "development" topics. Warning, a wall of text is incoming 😀 . We … Continue reading LINQPad, A developer’s best friend

Getting Closure on Closures

Hello and welcome, It’s been some time since last I wrote, and the reason behind this is because I got caught up in learning more about other languages, particularly Lua, javascript and python, and in this adventure I encountered a repeating topic that I thought is also present in .Net yet not often enough discussed, … Continue reading Getting Closure on Closures

Rolling our own IoC

Hello and welcome 🙂 Previously we talked about what Dependency Inversion and Dependency Injection are, today we’re going to look at what an Inversion of Control (IoC) container is and how it works. In the future, we will also have a look at what are the common implementations of IoCs available and which are my … Continue reading Rolling our own IoC

ASP.NET Core 1.1 and Identity adventures

Hello and Welcome ☺ Recently a friend and I were trying to implement the Identity pattern from ASP.Net Core 1.1 on a different database schema and with custom tables from a legacy application and though some trial and error we managed to do it. Today I want to share the steps we took and how … Continue reading ASP.NET Core 1.1 and Identity adventures