As a developer are you also blogging what you are learning?
2025 on Tumblr: Trends That Defined the Year
Sade Olutola
Peter Solarz

tannertan36

oozey mess

PR's Tumblrdome
h

blake kathryn
dirt enthusiast
noise dept.
No title available
Mike Driver
DEAR READER
wallacepolsom

roma★

shark vs the universe

★
Aqua Utopia|海の底で記憶を紡ぐ
taylor price

@theartofmadeline
seen from Philippines
seen from United Kingdom
seen from Poland

seen from United States
seen from United Kingdom
seen from United States
seen from Malaysia
seen from United States

seen from United States
seen from United States
seen from United Kingdom
seen from United Kingdom

seen from United States
seen from Brazil
seen from United States

seen from Russia
seen from Indonesia

seen from China
seen from United Kingdom
seen from United States
@coderethinked
As a developer are you also blogging what you are learning?
Are you preferring composition over inheritance?
How to create a custom feature filter in ASP.NET Core - coderethinked.com
We saw how to create feature flags with the Microsoft Feature Management package. But, do you know how to create a custom feature filter in ASP.NET Core application?
What is a custom feature filter?
Feature filters allow us to filter/limit a feature to a specific group. This allows us to control who has access to the features.
To learn more about creating custom feature filters, please visit coderthinked.com
In this post, we will see how to create a custom feature filter for a specific user and also see how to configure custom feature filter.
Extension Methods And Their Benefits In Csharp
Extension methods are one of the most powerful features that helped C# as a language take a significant leap in the programming space.
What are Extension Methods?
Extension methods are used to add functionality to the existing types, without
Knowing or modifying the source code
Inheriting
Recompiling the source code
Learn more on our blog coderethinked.com
You may know extension methods in C#. But, do you know the advantages and their real-time usage? In this post we'll explore extension method
Comprehensive guide to feature management in ASP.NET Core
There is an important feature that some of the developers don't know anything about. That is feature management or feature flags.
What are feature flags?
Feature/feature flag management is the ability to show/hide a feature on demand.
Simply put, feature flags are like having a switch to control features which should either be shown or hidden to the user based on the flag value
Learn more about feature management on coderethinked.com
What is Feature Management in asp.net core, its benefits and we'll also see how to consume IFeatureManager directly in razor pages
There are many tools that will let you view IL for C# code. But sharplab.io is a website which will just do the same thing in the browser. SharpLab will let you view IL, Decompiled c# and much more.
Instead of looking for tools to visualize what objects fall into heap/stack here is a website which will visualize stack and heap. It’s SharpLab.io.
understanding e.preventDefault() and e.stopPropagation() will help developers when dealing with events. This post explains preventDefault() and stopPropagation() and it also help you understand where
stopPropagation and preventDefault are the easiest things to understand. Look at the article which explains both of them
Why LINQ query is slow. Func delegate on Entity framework causes performance issue. In this post, I'll talk about how the func delegate causes performance implications on Entity framework entities.
This article explains why the Func delegate on Entity framework entities should not be used. And also it details what happens when you use Func delegate on the entities.
what is event bubbling? How does event bubbles up? In this post, I'll explain how event bubbling happens and how to achieve event bubbling with JavaScript and jQuery using event delegation. Event dele
event bubbling is an awesome concept of bubbling the event up the hierarchy.
In this post, we’ll see what is event bubbling? and how to implement event bubbling?
In this post, we’ll see how to create a custom tag helper in ASP.NET Core project. Custom tag helpers can be created by implementing TagHelper class. The Tag helper class has two methods that can be o
Tag helpers are here in the ASP.NET Core. But, how do we implement a tag helper.
Infact, how to write our own custom tag helpers in ASP.NET core.
This post guides you through how to create a custom tag helpers in asp.net core projects.
This is a tutorial for streaming in ASP.NET CORE SignalR.
You can stream the content in #ASP.NET Core signalr. Here is a post that shows how to stream the content.
The interesting part is that you can stream the content as and when the content is available with ASP.NET Core SignalR.
Checkout the article on how we can implement data streaming in ASP.NET Core Signalr