Towards Blazor
Technology Articles Blog » Enterprise Architecture
by admin
10M ago
Need for Single Page Apps Before we delve into what Blazor is and how you can use it for your potential development needs, it will be useful to understand what Single Page Applications (SPA) are and its scope. SPA or Single Page Applications is a web development technique which was coined and recognized as a ..read more
Visit website
Server and Client rendered Web application development frameworks
Technology Articles Blog » Enterprise Architecture
by admin
10M ago
Background The current full-stack web development era is filled with a plethora of front-end and back-end frameworks. Understanding the difference between server and client rendered web application development frameworks will be useful to discern and choose the best framework and tool best suited for you. Lets understand this in the context of the most popular ..read more
Visit website
Building Razor Page Web app. in .NetCore
Technology Articles Blog » Enterprise Architecture
by admin
10M ago
ASP.NETCore Razor pages and ASP.NETCore MVC are both server rendered / server based frameworks for building web apps with .NET. In both techniques/approaches, we use Razor template engine to create UI/view components and processing logic that runs on the server and serves the html content back. Original razor page technique is/was developed to fit single ..read more
Visit website
Importance of Software Architecture
Technology Articles Blog » Enterprise Architecture
by admin
10M ago
Architecture is the blueprint of any physical structure. It defines the basic design principle or building style used for construction based on the need, cost, quality, time, scalability, security, reliability, and risk aversion. Similarly, Software Architecture simply defines the blueprint or the basic design style in which the software is built to satisfy the customer ..read more
Visit website
Simple HTTP log analyzer
Technology Articles Blog » Enterprise Architecture
by admin
10M ago
Here is a simple light weight HTTP analyzer written in PHP. I wrote this to brush up my skills writing schedulers for a typical LAMP stack. Nothing fancy, there are more things to implement on detecting malicious requests, but this will get you started – <?php /** //Simple http log parser and report generation script ..read more
Visit website
MVC Architecture
Technology Articles Blog » Enterprise Architecture
by admin
10M ago
MVC architecture has been in place since past 4 decades or so when GUI (Graphical Use Interfaces) started to be used widely. The idea is simple – to implement separation of concerns.  Plainly put, to separate 1) presentation (UI) 2) user interactions and 3) underlying data and logic/behavior. It might be easy to build a web ..read more
Visit website
Using Extension Methods in C#
Technology Articles Blog » Enterprise Architecture
by admin
10M ago
Extension methods are a way to add methods to a class without changing its source code or adding it into a derived class. Creating extension methods example Define extension method – public static class StringExtensions     {         public static string Reduce(this String str, int numOfWords)         {             if (numOfWords <= 0)      ..read more
Visit website
C# Events and Delegates
Technology Articles Blog » Enterprise Architecture
by admin
10M ago
We use events and delegates to extend applications and to implement loose coupling. Rather than adding various method calls within an implementation and then recompiling the class, we publish the need to call a set of methods as an event from the class that will invoke those methods (publisher). The publisher will thus define the delegate which will act ..read more
Visit website
Using C# Delegates
Technology Articles Blog » Enterprise Architecture
by admin
10M ago
  Delegates is a way to support addition of multiple features (eg: methods) to a framework without the need to recompile the core class that uses these methods. Delegate is a reference to a function/s and is itself an object (derived from MulticastDelegate) that knows how to call a method or group of methods. The ..read more
Visit website
Towards Blazor
Technology Articles Blog » Enterprise Architecture
by admin
1y ago
Need for Single Page Apps Before we delve into what Blazor is and how you can use it for your potential development needs, it will be useful to understand what Single Page Applications (SPA) are and its scope. SPA or Single Page Applications is a web development technique which was coined and recognized as a ..read more
Visit website

Follow Technology Articles Blog » Enterprise Architecture on FeedSpot

Continue with Google
Continue with Apple
OR