top of page
Search


Introduction to Laravel Admin Panels
Using the Laravel admin panel, developers can cut out the bulk of manual programming work with prebuilt dashboard functions. This gives...

The Tech Platform
Jun 30, 2022


REST vs gRPC vs GraphQL: The Key Difference
REST (Representational State Transfer) REST is one of the most used API technology among the three options. REST uses various HTTP verbs...

The Tech Platform
Jun 29, 2022


Microservices Logging: Architecture, Challenges, and Best Practices
In a microservices-based application, there are multiple services running and interacting with each other. However, things can become...

The Tech Platform
Jun 29, 2022


Write a Python program to repeat specific Characters in String
To Repeat all the Characters string = "thetechplatform" n = 2 repeated_characters = ''.join([character*n for character in string])...

The Tech Platform
Jun 28, 2022


The Difference Between WPF and WinForms
WPF (Windows Presentation Foundation) WPF is a UI framework used for developing Windows or desktop client applications. It is the latest...

The Tech Platform
Jun 28, 2022


How to Create Windows Forms Application?
Windows Forms is a Graphical User Interface(GUI) class library which is bundled in .Net Framework. Its main purpose is to provide an...

The Tech Platform
Jun 28, 2022


Filters in ASP.NET: How to use dependency injection in action filters in ASP.NET Core?
Filters are special components in ASP.NET Core that allow us to control the execution of a request at specific stages of the request...

The Tech Platform
Jun 28, 2022


CSS Functions
Functions in CSS are used to set the various CSS property. For example, the attr() function is used to retrieve the value of the HTML...

The Tech Platform
Jun 28, 2022


Write a Program to convert the temperature in C++
Algorithm: Temperature Conversion This algorithm inputs a temperature in Fahrenheit and converts into centigrade. Start Input Temperature...

The Tech Platform
Jun 27, 2022


Top 10 Types and Uses of technology in 21st century
Technology is the result of accumulated knowledge and application of skills, methods, and processes used in industrial production and...

The Tech Platform
Jun 27, 2022
bottom of page