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
Introducing the clipper
Hello and welcome :), This will be a short example related to a previous post about Closures. I just found an excellent use of closures while working with a matrix structure. The back story for this is the fact that a lot of times when traversing matrixes every which way (finding neighbors to cells, doing … Continue reading Introducing the clipper
Generating Breakpoints
Hello and welcome :), So I received a WPF project I never touched before, so my first instinct after looking around is to run the application and see what it actually does. After that, the next logical step for me is to put a bunch of breakpoints to make sure I covered most scenarios. For … Continue reading Generating Breakpoints
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
Let’s talk about MEF – Part 1
Hello and welcome :), This series is retired due to me spending most of my time on the .net core side. Thanks to feedback, this series might be revived at one point under .net core since I recently found out that there is a port for MEF on .net core but at this point I … Continue reading Let’s talk about MEF – Part 1
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
Games as a service?
Hello and welcome, Today I will try something different, both as a way of writing the posts and also today’s post is not so much about what we do during this post as to what we learn from it and opening up new ways of thinking. New Tool First off, I want to mention that … Continue reading Games as a service?