top of page
Search
The Tech Platform
Sep 25, 2021
Arguments in C#
In C#, arguments can be passed to parameters either by value or by reference. Passing by reference enables function members, methods,...
The Tech Platform
Sep 25, 2021
Constructors in C#
In C#, a constructor is a special type of method that is automatically executed when an object of a class is created. It is used to...
The Tech Platform
Sep 22, 2021
How to use the mediator design pattern in C#
Design patterns provide solutions to common design problems and help reduce complexity in code. One such pattern is the mediator design...
The Tech Platform
Sep 21, 2021
Implement Secure Remote Password Protocol (SRP) in your web app
Passwordless Authentication for Better Security The Secure Remote Password (SRP) protocol is an augmented password-authenticated key...
The Tech Platform
Sep 20, 2021
Header Files in C/C++
A header file is a file with extension .h which contains C function declarations and macro definitions to be shared between several...
The Tech Platform
Sep 20, 2021
PHP vs Python vs Ruby on Rails
In web development, choosing the right programming language and framework is important to the success of any project. Among the options...
The Tech Platform
Sep 18, 2021
Front-End Development and Back-End Development Languages.
Front End The front-end is built using a combination of technologies such as Hypertext Markup Language (HTML), JavaScript and Cascading...
The Tech Platform
Sep 17, 2021
Spring Boot : Features, Advantages and Disadvantages of Spring Boot
Spring Boot is an open-source micro framework maintained by a company called Pivotal. It provides Java developers with a platform to get...
The Tech Platform
Sep 15, 2021
Stored XSS to RCE Chain as SYSTEM in ManageEngine ServiceDesk Plus
The unauthorized access of FireEye red team tools was an eye-opening event for the security community. In my personal opinion, it was...
The Tech Platform
Sep 13, 2021
How to use Lambda Expression in C#
Let us see some practical examples where lambda expressions can be used in C#. Scenario 1 Imagine a scenario where a list of strings...
bottom of page