Related resources for programming
  • Custom Code-Generator Using ASP.NET Core7/26/2024 6:27:55 AM. Discover how to create a custom code generator using ASP.NET Core. This guide covers building a flexible code generator to automate repetitive coding tasks, enhance development efficiency, and integra
  • Understanding flatMap in Java7/23/2024 7:42:33 AM. The flatMap operation in Java is a powerful tool for transforming and flattening collections. Learn about Java's `flatMap` operation in this article, which maps each element to a stream and flatte
  • Understanding Constructors in .NET Core7/23/2024 6:55:12 AM. "Explore the fundamentals of constructors in .NET Core, focusing on their role in object initialization and class setup. Learn about constructor overloading, chaining, and best practices in C#.
  • Understanding Sealed Classes in C#7/22/2024 8:27:05 AM. Sealed classes in C# are a vital concept in object-oriented programming, preventing other classes from inheriting them. This ensures a secure and stable class hierarchy by stopping further extension.
  • Getting Started with ADO.NET7/22/2024 8:14:00 AM. ADO.NET (ActiveX Data Objects . NET) is a set of classes in the .NET Framework that provides access to data sources such as SQL Server, Oracle, and other databases. It is a part of the larger .NET eco
  • HashSet Class and TreeSet Class in Java Collections7/19/2024 6:22:36 AM. Explore the HashSet and TreeSet classes in Java Collections Framework. Learn how HashSet uses hashing for fast access and TreeSet maintains sorted order through a Red-Black tree.
  • Object Oriented Programming in Python7/19/2024 5:03:08 AM. Object Oriented Programming in Python" delves into the principles and concepts of OOP using Python. This guide covers classes, objects, inheritance, polymorphism, and encapsulation, providing pra
  • Prototype Design Pattern7/18/2024 2:51:17 PM. Learn about the Prototype design pattern in Java, a creational pattern that enables object cloning for efficient instantiation. Explore cloneable interfaces, deep vs. shallow copying, and how to imple
  • Programming in Practice - LINQ to SQL - Explained7/18/2024 10:39:53 AM. Discover the power of LINQ to SQL in this comprehensive guide. Learn how to seamlessly integrate LINQ queries with SQL databases using the .NET framework. From setting up your environment to executing
  • Encapsulation, Inheritance, and Polymorphism in C#7/18/2024 10:38:48 AM. In this article, we will learn how to encapsulate data for security, leverage inheritance for code reuse, and implement polymorphism to create flexible and scalable applications.
  • Discard Variable in C# .NET7/17/2024 12:17:22 PM. The discard variable (_), introduced in C# 7.0, allows developers to ignore values intentionally. It enhances code clarity by signaling unused data in tuples, pattern matching, out parameters, and LIN
  • Working with SQLite3 in Python7/17/2024 6:02:20 AM. SQLite is a lightweight, serverless, and self-contained relational database engine. It's an excellent choice for small to medium-sized applications, especially when you need a database that doesn&
  • Logging in Python7/17/2024 5:51:53 AM. Logging in Python" explores the powerful logging module, providing essential tools for effective log management. Learn to track errors, debug code, and monitor applications with various log level
  • Background Tasks with BackgroundService in .NET 77/17/2024 5:49:53 AM. In modern software development, background tasks are essential for handling operations that need to run independently of user interactions, such as processing data, sending notifications, or performin
  • Object Inheritance and Object Composition in Object Oriented Programming 7/12/2024 10:28:38 AM. This content delves into two fundamental concepts of Object-Oriented Programming (OOP): object inheritance and object composition. It explores how inheritance enables class hierarchies and polymorphis
  • JavaScript – Prototypal Inheritance – Illustrated7/12/2024 7:06:15 AM. JavaScript – Prototypal Inheritance – Illustrated" is an in-depth guide that explores the concept of prototypal inheritance in JavaScript. This illustrated tutorial simplifies complex topics like
  • PDF Generation in .NET Core 8.0 API7/11/2024 10:13:46 AM. Learn how to generate PDFs in a .NET Core 8.0 API using the DinkToPdf library. This guide covers project setup, adding DinkToPdf, configuring settings, creating endpoints, and testing your API.
  • C# Discriminated Unions and .NET Channels7/11/2024 3:00:02 AM. Explore the advanced features of C# with a focus on Discriminated Unions and .NET Channels. Learn how Discriminated Unions enhance type safety and pattern matching, and how .NET Channels facilitate co
  • Interface Vs Abstract Class 7/10/2024 3:44:36 PM. This article delves into the differences between interfaces and abstract classes in object-oriented programming. It explores their roles in languages like Java and C#, highlighting key concepts such a
  • Convert Speech into Text using Python 7/9/2024 9:15:39 AM. Speech-to-text conversion is a fascinating area of technology that allows computers to understand and transcribe spoken language into text. This capability has numerous applications, from virtual assi
  • TaskCompletionSource in .NET to Convert Async Non Task to Async Task7/9/2024 7:34:07 AM. TaskCompletionSource<T> in .NET allows manual creation and control of tasks, enabling custom async patterns and adapting non-task-based APIs. With methods like SetResult, SetException, and SetCa
  • Synchronous vs Asynchronous: Task.WaitAll and Task.WhenAll in .NET7/9/2024 12:38:06 AM. Synchronous vs Asynchronous: Explore the distinctions between Task.WaitAll and Task.WhenAll in .NET programming. Learn how Task.WaitAll synchronously waits for all tasks to complete, while Task.WhenAl
  • Programming in Practice - GUI - XAML - Description of the User Interface7/9/2024 12:34:12 AM. This article concerns selected issues related to the representation of process information in graphical form to develop a comprehensive User Interface. It presents XAML Domain-Specific Language as a d
  • Multi-Threading (4), Delegate based Asynchronous Programming Model7/8/2024 10:59:18 AM. This article will discuss delegate based Asynchronous Programming Model.
  • Understanding @wraps in Python: Preserving Function Metadata7/7/2024 6:28:30 PM. Explore the intricacies of Python's @wraps decorator, essential for preserving function metadata. Learn how @wraps simplifies debugging, maintains docstrings, and ensures correct function signatur
  • Programming in Practice - GUI - MVVM Program Design Pattern7/3/2024 11:09:45 AM. This article concerns selected issues related to the representation of process information in graphical form to develop a comprehensive User Interface. It presents MVVM programming pattern as an imple
  • Mastering Nested Types in C#: Best Practices and Common Pitfalls7/3/2024 6:31:39 AM. Nested types in C# allow developers to define a type within another type, such as a class, struct, interface, enum, or delegate. This feature helps in organizing related types, encapsulating implement
  • Understanding C# Records with Example7/2/2024 5:32:48 AM. This article delves into the syntax and usage of records, comparing them with classes, and demonstrates how records can simplify code while improving performance and maintainability in .NET applicatio
  • Design Patterns and Advantages of Different Design Patterns7/1/2024 6:42:39 AM. Design patterns are recurring solutions to common problems in software design. They provide a template for solving issues in a particular context. The advantages of using different design patterns inc
  • Learn Use of Lambda Operator in C#7/1/2024 6:28:21 AM. Explore the versatility of lambda expressions in C#, powerful tools for creating inline functions without the need for traditional method declarations. Discover their syntax, applications in LINQ quer
  • Understanding Structs In C# with Example7/1/2024 6:26:12 AM. Structs in C# provide a lightweight alternative to classes, ideal for representing small, immutable data structures. Unlike classes, structs are value types stored on the stack, enhancing performance
  • Mastering the Null-Coalescing Operator in C#6/30/2024 6:58:45 AM. Learn how to efficiently handle null values in C# using the null-coalescing operator. This guide covers the syntax, practical applications, and advanced techniques to enhance your programming skills.
  • JavaScript Promises: The Easy Way to Async6/29/2024 10:05:45 AM. In modern JavaScript development, Promises introduced in ES6 provide a powerful way to handle asynchronous operations. They offer a cleaner alternative to callbacks, allowing developers to manage task
  • Exploring Record Classes in Java6/28/2024 9:03:23 AM. Discover the simplicity and power of record classes in Java with our comprehensive guide. Explore how Java's record classes, introduced in Java 14, streamline the creation of immutable data struct
  • The Implementation of Pointer to Function6/27/2024 11:58:19 AM. This content explores the implementation of pointers to functions in C and C++ programming. It delves into their syntax, usage, and benefits, such as dynamic function calls, callback functions, and ef
  • Implementing MongoDB with .NET6/26/2024 6:35:29 AM. Learn essential techniques for data persistence, leveraging MongoDB's document-oriented structure, implementing CRUD operations with C#, and optimizing performance using the MongoDB .NET driver.
  • Concurrency and Parallelism in C#6/24/2024 11:45:43 AM. This article introduces concurrency and parallelism in C#, covering key concepts, benefits, and practical examples. Learn how to use async/await for asynchronous programming and the Parallel class for
  • Types Of Relationships In Object Oriented Programming (OOPS)6/24/2024 9:01:53 AM. This article explores the key relationships in Object-Oriented Programming (OOP), including inheritance, association, composition, and aggregation. These relationships enable code reuse and flexibilit
  • Understanding AsMemory() in C# .NET with Examples6/24/2024 5:47:07 AM. In C#, the AsMemory method is a powerful tool for creating Memory<T> instances from arrays, array segments, or strings. It is part of the System.Memory namespace, which offers types designed to
  • Methods and Properties in C#6/23/2024 9:46:10 PM. In C#, methods and properties are fundamental constructs used to define the behavior and state of objects. Understanding how to create and use methods and properties is essential for effective C# prog
  • Predicate Delegates in .NET Core C#: Syntax, Usage and Examples6/22/2024 10:26:47 AM. Like Func and Action delegates, the predicate is a delegate. It symbolizes a procedure that verifies that the passed parameter satisfies a set of requirements. One input parameter must be provided by
  • Upload And Download File To Azure Blob Storage Using C#6/20/2024 10:12:14 AM. Learn how to seamlessly upload and download files to Azure Blob Storage using C#. This guide covers setting up your Azure Storage account, configuring Blob containers, and utilizing the Azure Storage
  • Introduction To Azure Function App6/20/2024 10:10:26 AM. Discover the power of Azure Function Apps, Microsoft's serverless computing service. Learn to leverage event-driven architecture for scalable, cost-efficient solutions in the cloud.
  • Understanding the Data Structure Behind HashMap in Java6/20/2024 9:52:15 AM. Explore the intricate workings of HashMap in Java, a pivotal data structure in the Java Collections Framework. Understand its mechanism of storing key-value pairs using hashing, handling collisions th
  • Training Large Language Models & Small Language Models Using C#6/20/2024 9:02:17 AM. Training Large Language Models (LLM) and Small Language Models (SLM) Using C# by John Godel" delves into advanced techniques for developing and optimizing AI language models.
  • How to make Image Editor Tool in C#6/18/2024 10:46:04 AM. How to make an image editing tool with the help of C#. In this image editing tool we include resizing image, cropping image, brightness and contrast in images, rotation and other various common image
  • Free Book: C# Programming for Beginners6/14/2024 10:42:38 AM. Programming C# is a concise 56-page tutorial book aimed at beginners and students. Learn C# programming fundamentals, syntax, data types, and advanced topics like classes, arrays, and exception handli
  • StreamReader And StreamWriter Classes In C#6/14/2024 10:42:15 AM. Learn about StreamReader and StreamWriter classes in C#. These classes are essential for reading from and writing to files efficiently. Understand their usage for file handling tasks, including readin
  • Common Code Smell Mistakes In C#, Part One6/14/2024 10:39:44 AM. Learn about code smells—indicators of deeper issues in programming. Discover through examples like redundant boolean literals, explicit exception throwing, inefficient string concatenation, redundant
  • How to Become a Professional .NET Developer in 20246/14/2024 6:19:30 AM. Discover how to become a professional .NET developer in 2024 with this comprehensive guide. Learn essential skills, the latest .NET technologies, and effective learning paths.
  • Agile Methodology Essential for Fast-Paced Software Development6/13/2024 5:23:25 AM. Agile methodology is a collaborative, flexible approach to project management, emphasizing iterative progress, customer feedback, and team collaboration. Originating from the Agile Manifesto in 2001,
  • What Are Object-Oriented Databases And Their Advantages6/12/2024 10:23:20 AM. In this article, you will learn what object-oriented databases are what are their advantages.
  • Super Mario Platform Runner Using Gdevelop Engine6/12/2024 6:59:42 AM. Embark on a nostalgic journey with Super Mario Platform Runner, crafted using the powerful GDevelop Engine. Run, jump, and collect coins across vibrant levels filled with obstacles and power-ups. Expe
  • Overloading vs Overriding in Java6/12/2024 5:17:59 AM. Method overloading and overriding in Java, essential OOP concepts for code reusability and polymorphism. Overloading allows multiple methods with the same name but different parameters while overridin
  • Orientation, Anchoring, Resizing And Repositioning Of Views In Android Application6/11/2024 12:38:57 PM. Learn Android programming basics, including handling screen orientations, anchoring views with RelativeLayout, resizing, and repositioning views for different orientations. Customize UI based on scree
  • How to Write Tests in Rust?6/11/2024 7:08:01 AM. Learn how to write effective tests in Rust to ensure your code is robust and error-free. This guide covers the basics of unit and integration tests, explores Rust's built-in testing framework, and
  • OOPS Interview Questions - C#6/7/2024 10:31:18 AM. Here is a list of the most popular OOPS interview questions and answers explained. These OOPS interview questions are for both beginners and professional C# developers.
  • Parallel Programming Using TPL in .NET6/7/2024 10:21:43 AM. With today's computers, we have multiple cores that must be equipped to design and develop applications that can utilize these resources. We must develop programs that can run our functions in par
  • Innovative Solutions with .NET: Enhancing Your Developer Toolkit6/7/2024 4:22:53 AM. Master current technologies and enhance your toolkit with .NET, a powerful framework by Microsoft. Explore cross-platform development with .NET Core, build modern web apps with ASP.NET Core, boost pro
  • Multithreading in C#6/6/2024 11:32:01 AM. In this article, we will learn Multithreading is a parallel way of execution where the application is broken into parts so that it can have more than one execution path at the same time.
  • Scaling with .NET: How to Build High-Performance Applications6/6/2024 11:29:51 AM. Scaling with .NET: How to Build High-Performance Applications" explores strategies for optimizing .NET applications. Microservices, cloud computing, asynchronous programming, and performance test
  • Comprehensive Guide to C# Programming for Developers6/6/2024 5:05:55 AM. C# (C sharp) is a versatile programming language by Microsoft, ideal for web, desktop, mobile, cloud, and gaming apps. It features strong typing, garbage collection, and extensive libraries.
  • ⏲️ Visual Time Spent - Time Tracking Extension For Coding In Visual Studio6/5/2024 8:10:58 AM. Visual Time Spent" is a time-tracking extension for Visual Studio, enhancing coding productivity. It provides insights into coding habits, metrics, and performance, facilitating efficient time ma
  • The Simplicity of the New Terse Syntax [ Collection Expressions ]6/3/2024 8:08:47 AM. Explore the elegance of the latest terse syntax for collection expressions, offering unparalleled simplicity in programming. Dive into efficient coding techniques, optimized syntax, and enhanced reada
  • Understanding JavaScript: Map vs Reduce6/2/2024 10:18:36 AM. In this article, we delve into the JavaScript functions map and reduce, essential tools for array manipulation and functional programming. We'll explore their differences, use cases, and performan
  • Understanding SOLID Principles in .NET Core6/2/2024 10:05:10 AM. SOLID principles are a set of five design principles in object-oriented programming that aim to make software designs more understandable, flexible, and maintainable. In this blog post, we’ll explore
  • Mastering Asynchronous Programming in C# Async and Await Patterns 6/1/2024 9:17:52 AM. Master asynchronous programming in C# with the async and await patterns. Learn how to write non-blocking code, improve application performance, and handle concurrency. Understand Task-based asynchrony
  • Difference Between "is" And "as" Operator in C#5/31/2024 4:38:54 AM. The is and as operators in C# have distinct behaviors and serve different purposes. The is operator is used for type checking, while the as operator is used for casting.
  • Programming in Practice - Graphical User Interface (GUI)5/30/2024 8:42:52 AM. This article concerns selected issues related to the representation of process information in graphical form. It tries to answer how to design and deploy a graphical user interface. It is a contributi
  • Using Static Class Statements: A New Feature of C# 6.05/29/2024 10:31:05 AM. C# 6.0 introduces Static Class Statements, simplifying code organization and enhancing readability by allowing static members to be imported directly, improving code maintenance and reducing verbosity
  • Using Await in Catch and Finally Blocks: A New Feature of C# 6.05/29/2024 8:12:06 AM. Discover the power of using 'await' in catch and finally blocks with C# 6.0. Explore how this feature revolutionizes error handling and asynchronous programming, improving code readability and
  • Nameof Operator: A New Feature of C# 6.05/29/2024 8:06:24 AM. C# nameof operator returns the unqualified string name of a variable, type, or member. In this article, we will learn how to use the nameof operator in C# code example.
  • Synchronous Asynchronous Blocking Non-Blocking Concurrent Parallel Programming5/29/2024 6:24:45 AM. Explore the intricacies of programming paradigms with a comprehensive dive into synchronous, asynchronous, blocking, non-blocking, concurrent, and parallel execution.
  • Mastering SOLID Principles in C# with Real-Time Examples5/29/2024 5:39:49 AM. Mastering SOLID principles in C# enhances software design by promoting maintainability, scalability, and robustness. These principles include Single Responsibility, Open/Closed, Liskov Substitution, I
  • How to Use Combine framework in SwiftUI?5/28/2024 10:43:33 AM. Combine framework enhances SwiftUI by managing data flow, essential for reactive UIs. Publishers emit data, subscribers receive, and operators transform streams. Learn to create publishers, subscribe
  • ECMAScript and JavaScript: Shaping the Web's Interactivity5/28/2024 8:15:15 AM. ECMAScript, the standardized scripting language specification, and JavaScript, its most popular implementation, are pivotal in shaping web interactivity. They empower developers to create dynamic, res
  • Const, ReadOnly and Static Keywords in C#5/24/2024 9:36:40 AM. Explore the differences between const, readonly, and static keywords in C#. This guide covers their unique functionalities, use cases, and best practices in C# programming. Learn how to effectively us
  • Some Important Keywords of C#: Part 15/24/2024 9:36:12 AM. This is very simple part 1 article but will clear some of the concepts of C# for those who are learning or for those also who might have good knowledge but unfortunately miss these important keywords.
  • Learn Object Oriented Programming Using C#: Part 25/24/2024 8:57:02 AM. Discover advanced Object-Oriented Programming techniques in C# with our comprehensive Part 2 guide. Master inheritance, polymorphism, encapsulation, and more. Learn to create robust classes, utilize i
  • Learn Object Oriented Programming Using C#: Part 35/24/2024 8:56:44 AM. Part 3 of our tutorial series delves deeper into Object Oriented Programming with C#. Explore advanced concepts like inheritance, polymorphism, and encapsulation. Master class hierarchies, method over
  • Learn Object Oriented Programming Using C#: Part 45/24/2024 8:56:29 AM. Delve into essential Object-Oriented Programming (OOP) concepts with C# in Part 4. Learn about encapsulation, properties, constructors, and methods. Explore access modifiers and best practices for cod
  • Learn Object Oriented Programming Using C#: Part 55/24/2024 8:55:43 AM. Delve deeper into Object-Oriented Programming with C# in Part 5 of our series. Explore advanced concepts like inheritance, polymorphism, and encapsulation, empowering you to build robust and efficient
  • While Loop in C#5/24/2024 8:36:46 AM. Explore the power of while loops in C# programming with this comprehensive guide. Learn how to utilize while loops for iterative tasks, control flow, and conditional execution. Master essential syntax
  • Learn Object Oriented Programming Using C#: Part 65/24/2024 7:28:34 AM. Explore advanced concepts in Object-Oriented Programming (OOP) with C# in Part 6 of this series. Learn about inheritance, polymorphism, interfaces, and abstract classes. Understand method overriding,
  • Learn Object Oriented Programming Using C#: Part 75/24/2024 7:26:51 AM. Delve deeper into Object-Oriented Programming with C# in Part 7 of our comprehensive tutorial series. Explore advanced concepts like inheritance, polymorphism, and more. Enhance your coding skills and
  • Learn Object Oriented Programming Using C#: Part 85/24/2024 7:17:07 AM. Dear reader's, this article is the fourth and last pillar of OOP. It's confusing for the beginners of OOP. So we provide an example in very simple words.
  • Learn Object Oriented Programming Using C#: Part 15/24/2024 4:29:44 AM. Embark on your journey to master Object-Oriented Programming with C# in Part 1. Explore essential concepts like classes, methods, properties, and inheritance, laying the foundation for advanced C# dev
  • Introduction to Microsoft Copilot5/22/2024 10:54:38 AM. In today's fast-changing world of artificial intelligence (AI), Microsoft has launched a powerful new tool called Microsoft Copilot. Built into the Microsoft 365 suite, Copilot uses advanced AI to
  • Optimizing Long Polling Performance in .NET Applications5/20/2024 10:23:56 AM. Long polling emulates real-time client-server communication by keeping connections open until new data is available. Optimizing long polling in .NET enhances user experience and server efficiency thro
  • If Statement in C#5/20/2024 5:09:33 AM. Master the fundamentals of C# with if statements. Learn to control program flow based on conditions, enabling dynamic decision-making in your code efficiently."
  • Programming in Practice - Structural Data5/19/2024 6:40:42 AM. In object-oriented programming, the basic way to create structural data is to define custom types and interconnect them using references. Let's analyze this case using sample code in the context o
  • Understanding Thread Synchronization in Concurrent Programming5/18/2024 6:43:01 AM. Thread synchronization in C# ensures safe, correct access to shared resources in concurrent programming, preventing race conditions, data corruption, deadlocks, and livelocks through various mechanism
  • 6 Important .NET Concepts5/17/2024 10:37:22 AM. This article will explain 6 important concepts, Stack, heap, value, ref, boxing, and unboxing. Explore the essence of .NET through six pivotal concepts.
  • Dynamic Objects And Alternatives To Reflection5/17/2024 10:22:34 AM. The CodexMicroORM open-source project on GitHub includes several features to help you create fast, concise .NET deliverables. One such feature is implemented in the Performance. cs file and enables dy
  • Decorator Design Pattern In Dart/Flutter5/16/2024 9:27:33 AM. Decorator Design Pattern in Dart/Flutter, a flexible and reusable solution for extending functionality in object-oriented software. Learn through real-world examples, understand when to use it, and be
  • Pointers to Pointers and How Pointers Relate with Array5/16/2024 9:25:05 AM. Pointers is a type of data in C; hence we can also have pointers to pointers, just we have pointers to integers. Pointers to pointers offer flexibility in handling arrays, passing pointers variables t
  • Facade Design Pattern In Dart/Flutter5/16/2024 9:24:03 AM. Explore the Facade Design Pattern, a GoF design pattern that simplifies interactions with complex systems. Learn its definition, when to use it, and how to implement it in Dart/Flutter with a practica
  • MSIL Programming: Part 15/16/2024 5:52:09 AM. Learn MSIL programming fundamentals in this comprehensive series. Explore Microsoft Intermediate Language (MSIL) concepts, .NET assembly structure, IL instructions, and .NET runtime.
  • New Features in .NET 4.5 and 5.05/16/2024 5:51:25 AM. Discover the latest enhancements in .NET with versions 4.5 and 5.0. Explore async programming using async/await, improved performance, Entity Framework updates, ASP.NET Core (in .NET 5.0), enhanced LI
  • Exploring in Depth Of Abstraction in C#5/14/2024 11:09:13 AM. Dive deep into abstraction in C#, exploring OOP concepts like encapsulation, inheritance, and polymorphism. Learn about abstract classes, interfaces, generics, and advanced features like delegates and
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download