Tag

framework

All blogs tagged with framework

24
Articles
140,865
Total Views

Showing 24 of 24 articles

29
Mar
2026
Comprehensive Guide to Building Web Applications with Django Framework
3 views

In this tutorial, readers will learn the fundamentals of the Django web framework, including its architecture, core components, and how to build a fully functional web application. Understanding Django is essential for developers looking to create scalable and maintainable web applications efficiently. Prior knowledge of Python and web development concepts will greatly enhance the learning experience.

28
Mar
2026
Comprehensive Flask Web Framework Tutorial for Beginners: Building Web Applications with Python
7 views

In this tutorial, readers will gain a deep understanding of the Flask web framework, learning how to build robust web applications using Python. Flask's lightweight and flexible nature makes it an excellent choice for both beginners and experienced developers alike. A basic understanding of Python and web development concepts is recommended before diving into this guide.

20
Jul
2023
LinkedHashMap in Java
3,387 views

Java includes a number of data structures for storing and manipulating collections of objects. The 'LinkedHashMap' class, which is an extension of the 'HashMap' class, is one of the important classes in the Java Collections Framework. LinkedHashMap, unlike HashMap, preserves the order of its items depending on the insertion order, making it helpful in cases where the order of components must be maintained based on their arrival time.

20
Jul
2023
Complete Guide to Hashmap in Java with Examples and Best Practices
3,477 views

HashMap is a component of the Java Collections Framework that implements the Map interface. It offers a key-value pair data structure in which elements are stored as a combination of keys and their corresponding values. HashMap does not support duplicate keys, but it does support mapping multiple values to the same key. It provides constant-time performance for simple operations like as element addition, removal, and retrieval.

19
Jul
2023
Linked Hashset In Java
3,296 views

The Java Collections Framework's LinkedHashSet is an implementation of the Set interface. It combines the advantages of LinkedList and HashSet. The order in which the elements were added to the set is the iteration order that the LinkedHashSet preserves. It offers constant-time performance for fundamental operations and disallows duplicate elements, just like HashSet.

31
May
2023
Getting Started with LINQ Queries in Entity Framework
3,848 views

LINQ (Language Integrated Query) is a powerful tool in .NET that provides a unified way to query data from various data sources. When working with databases, LINQ can be used in conjunction with Entity Framework, a popular Object-Relational Mapping (ORM) framework, to simplify the process of mapping data to objects and querying the database.

10
Sep
2020
Implement Stripe Payment Gateway In ASP.NET
58,650 views

This tutorial demonstrates how to accept payments with Stripe Checkout in an ASP.NET application built with C# and Web Forms. The application uses Checkout to accept credit cards from the end user and send tokens to a back-end API. The back-end controller uses the Stripe .NET library to create a charge. There are four steps: Create the project and configure dependencies Create the payment Web Form Create a page to perform the charge Run the application

Translate Page