Related resources for programming
  • Create Your Customized Copilot Using Microsoft Copilot - Part 1 4/25/2024 10:13:39 AM. Create your own personalized Copilot with Microsoft Copilot, leveraging its AI prowess to enhance code generation and streamline development tasks. This series explores customizing Copilot for tailore
  • Adapter Design Pattern In Flutter4/25/2024 9:50:09 AM. Explore the Adapter Design Pattern, a popular structural design pattern in software development. Learn its definition, real-world examples, appropriate use cases, potential pitfalls, and more.
  • C# Programming: Language Fundamentals, OOP, Async, LINQ4/25/2024 8:39:35 AM. This guide provides a thorough exploration of the C# language, covering essential topics such as language fundamentals, object-oriented programming concepts, asynchronous programming, and Language Int
  • Create Word Reports Without Microsoft Word Using Spire.doc4/25/2024 8:09:25 AM. Spire.doc provides a robust solution for generating reports as Word documents without relying on Microsoft Word. Utilizing the .NET framework and C# programming, it offers efficient document processin
  • Exploring the BlockingCollection<T> Class in .NET4/25/2024 6:56:24 AM. In the world of concurrent programming in .NET, developers often encounter scenarios where multiple threads need to communicate and synchronize access to shared data structures. In this article, we&#3
  • Getting Started with WaitGroups in Go4/25/2024 5:51:03 AM. Discover the power of WaitGroups in Go for coordinating concurrent tasks. This beginner&#39;s guide will show you how to synchronize goroutines effectively, ensuring smooth parallel execution. Perfect
  • User Input Management with SegmentManager in C#4/25/2024 5:42:35 AM. In C#, one such tool that simplifies user input management is the `SegmentManager` class. This article delves into how the `SegmentManager` class facilitates the handling of user input in a structured
  • Entity Framework Code First Example4/24/2024 1:24:22 PM. Explore an Entity Framework Code First example to understand database modeling in C#. This tutorial demonstrates object-relational mapping (ORM) techniques, using .NET Framework to create entity class
  • Best Practices for Threading in .NET C#4/24/2024 6:26:03 AM. Threading is a powerful feature in .NET C# that allows developers to execute multiple tasks concurrently. In this article, we&#39;ll explore best practices for managed threading in .NET C#, covering t
  • Creating Picture Viewer Using C# in .NET 4.54/23/2024 9:56:35 AM. Create a sleek Picture Viewer in C# using .NET 4.5. This project blends UI development with graphics programming, offering a seamless interface for viewing and managing images. Dive into image process
  • Introduction To Recursion4/23/2024 9:00:06 AM. Recursion in programming involves a method calling itself with modified parameters until a termination condition is met. It operates on a Last In First Out (LIFO) stack memory. The algorithm consists
  • ConcurrentBag<T> in C#: Thread-Safe Collection Guide4/23/2024 8:49:54 AM. In the world of concurrent programming in C#, managing data safely across multiple threads is a paramount concern. In this article, we&#39;ll delve into ConcurrentBag&lt;T&gt;, its usage, and provide
  • Exploring About Azure Function4/23/2024 8:34:53 AM. Explore the power of Azure Functions, Microsoft&#39;s serverless computing offering in the cloud. Dive into event-driven programming, scalability, and seamless integration with Azure services.
  • Applied Reverse Engineering With OllyDbg4/23/2024 8:25:53 AM. This paper explores executable cracking using OllyDbg, focusing on reverse engineering without source code. It emphasizes Assembly Programming and tools like OllyDbg and CFF Explorer. Methods include
  • Demystifying Iron Ruby in .NET4/23/2024 7:28:07 AM. IronRuby, a dynamic language for .NET platform, as this guide demystifies its integration with the Common Language Runtime (CLR). Explore seamless interoperability, scripting capabilities, and the und
  • Native Assembly Programming in .NET4/22/2024 8:56:22 AM. Learn to create EXE and DLL files using MASM in Visual Studio. Configure project settings, write assembly code, debug, and test applications. Explore the power of assembly language for faster executio
  • Concurrent Dictionary for String Comparison in .NET Core4/20/2024 7:04:27 AM. In .NET Core, the `ConcurrentDictionary&lt;TKey, TValue&gt;` class provides a thread-safe collection for storing key-value pairs, making it suitable for concurrent operations in multi-threaded environ
  • Queue & Dequeue with Concurrent Dictionary in .NET Core4/20/2024 7:02:23 AM. In multi-threaded applications, efficient handling of concurrent data structures is crucial to ensure thread safety and performance. While .NET Core provides a variety of thread-safe collections, each
  • Exploring the fundamentals of concurrent programming in .NET4/19/2024 11:57:13 AM. Concurrency is vital for efficient applications. .NET offers Thread, Multithreading, Task, Async &amp; Await, Threadpool, Lock, and Deadlock tools. Understanding them enhances .NET development for sca
  • CancellationToken in ASP.NET Core4/19/2024 5:43:27 AM. CancellationToken in ASP.NET Core provides a powerful mechanism for achieving this goal. In this article, we will delve into the concept of CancellationToken, its usage, and practical examples to illu
  • Introduction to the Assembly Concept4/18/2024 1:23:08 PM. An introduction to the assembly concept explores the fundamental unit of deployment in .NET applications. Assemblies encapsulate code, metadata, and resources, aiding in code management, versioning, a
  • Learning and Improving Our Code Style with C# 104/16/2024 10:40:00 AM. Ziggy Rafiq wrote this article on Learning and Improving Our Code Style with C# 10 to highlight the Basics, and latest features of C# 10, clean code, review code, problem-solving, reading high-quality
  • Exploring Frozen Collections in .NET 8 With Benchmarking4/14/2024 5:32:01 AM. Frozen Collections is a new .NET 8 feature that can be used to create Dictionaries and Sets for faster read operations when you don’t need to make changes after the creation. In this article, I presen
  • Not all Functions are C# Methods4/13/2024 5:54:14 PM. How to write your functional programming functions in C#? That is the main question we&#39;re going to answer in this article.
  • Best Practices for Working with DateTime, UTC, and Offset in C#4/9/2024 5:50:01 PM. Discover best practices for handling DateTime, UTC, and Offset in C# with expert insights from Ziggy Rafiq, ensuring efficient time management in your applications Learn best practices, tips, and cod
  • Getting Started With .NET Core 3.1 - Part One4/9/2024 10:56:29 AM. In this article, you will learn the fundamentals of .NET Core 3.1 with this comprehensive tutorial series. In Part One, delve into the essentials of development, covering basic concepts, tools, and pr
  • Parallel Programming with SemaphoreSlim in .NET4/9/2024 5:59:21 AM. SemaphoreSlim in .NET enables efficient concurrency management, regulating resource access and ensuring thread safety. It&#39;s crucial for robust parallel programming, offering scalability without sa
  • How To Install Flutter In Windows4/8/2024 8:35:15 AM. In this article, you will learn how to install Flutter on your Windows system effortlessly. Follow step-by-step instructions to set up the Flutter SDK and necessary tools for mobile app development.
  • Understanding Extreme Programming (XP) and Its Core Values4/5/2024 9:46:06 AM. In this article, we will learn Extreme Programming (XP) is an Agile methodology emphasizing collaboration and feedback. Its core values include communication, simplicity, feedback, and courage.
  • 12 Core Practices In Extreme Programming XP🧙‍♂️4/5/2024 9:43:57 AM. Extreme Programming (XP) embodies 12 core practices including continuous integration, test-driven development, pair programming, and small releases. These practices foster agile development, emphasizi
  • Roles In Extreme Programming (XP)4/5/2024 5:45:28 AM. In this article, we will learn Extreme Programming (XP) emphasizes teamwork and collaboration through defined roles. The Scrum Master ensures adherence to XP practices, facilitating team efficiency.
  • How do I Generate Random Number in C#?4/4/2024 8:58:32 AM. Learn how to generate random numbers in C# with this comprehensive tutorial. Master the art of randomization using built-in methods and algorithms. Explore various approaches and techniques for genera
  • Explanation of HttpClient in .NET Core4/3/2024 10:41:08 AM. The HttpClient class simplifies making HTTP requests (like GET or POST) in your .NET Core applications. It handles connections, timeouts, and responses, letting you focus on the data you need.
  • Functional programming in C# - Introduction4/2/2024 8:55:30 AM. Lets learn the concept of functional programming, its usage and why functional programming is important
  • Functional Programming in C# - Functional Features4/2/2024 4:53:04 AM. C# boasts diverse paradigms, including Object-Oriented, Imperative, Functional, and Generic programming. Its multi-paradigm nature empowers developers to solve problems using various styles, enhancing
  • Multithreading With .NET3/29/2024 6:46:05 AM. Multithreading allows a program to run multiple threads concurrently. This article explains how multithreading works in .NET. This article covers the entire range of threading areas from thread creati
  • The "this" Keyword in C#3/28/2024 10:38:53 AM. The &quot;this&quot; keyword in C# is a reference to a class or a struct itself. In this article, you&#39;ll learn what the C# &quot;this&quot; keyword is, and how and when to use the &quot;this&quot;
  • ref vs out in C#3/28/2024 10:37:15 AM. Explore the distinction between &#39;ref&#39; and &#39;out&#39; keywords in C#. Learn how &#39;ref&#39; passes arguments by reference for both input and output, while &#39;out&#39; is used solely for
  • Object Oriented Programming With A Real-World Scenario3/28/2024 10:35:38 AM. This article explores the significance of real-world scenarios in understanding Object-Oriented Programming (OOP) for young programmers. It discusses the four pillars of OOP - abstraction, encapsulat
  • Learn About Data Structures And Algorithm (DSA) - Part Four3/21/2024 9:28:01 AM. This article will tell you about the crucial concepts of data structures and algorithms in terms of understanding the comparison between the array and linked list. This article is the fourth one in th
  • Singleton Design Pattern In Flutter3/21/2024 9:25:49 AM. Learn how and when to use Singletons, implement them effectively, and explore their advantages and limitations. This article also includes a sample implementation using the shared_preferences package
  • Abstract Factory Design Pattern In Flutter3/21/2024 9:25:33 AM. Learn about the Abstract Factory design pattern in Flutter for creating platform-specific widgets. This pattern centralizes the creation of related objects, making it easier to manage and work with m
  • Factory Method Design Pattern In Flutter3/21/2024 9:25:05 AM. Factory Method design pattern! Learn how to create objects dynamically, improve code flexibility, and build platform-specific UIs (like buttons) with ease. Explore a practical payment gateway example
  • Introduction to Design Patterns in Flutter3/21/2024 9:12:16 AM. Explore the importance of design patterns in software development. Learn about different types of patterns, their benefits, and how they can improve code efficiency, readability, and maintainability.
  • Decorator Pattern in C# - 3 versions3/20/2024 10:17:27 AM. In this article, we will explore the versatile Decorator Pattern in C#, presented in 3 different versions. Enhance your understanding of object-oriented design with this powerful pattern, offering fle
  • JavaScript Map, Filter And Reduce3/19/2024 11:47:34 AM. In this article, I have explained how to leverage JavaScript&#39;s powerful array methods to Map, Filter, and Reduce. Explore functional programming concepts to manipulate data efficiently. Streamline
  • Simulating Multiple Inheritance in C#: Part I3/19/2024 6:16:39 AM. In this article, we will explore techniques for simulating multiple inheritance in C#. Discover how to leverage interfaces, composition, and class hierarchies to mimic this powerful feature, enhancing
  • English as a New Programming Language: Bridging the Gap Between Code and Language3/15/2024 4:18:56 AM. Explore the concept of using English as a programming language, with examples and explanations for better understanding.
  • Filter An Array of Different Data Types by Array Filter Method3/13/2024 8:44:17 AM. Learn to efficiently filter arrays containing various data types using JavaScript&#39;s Array Filter method. Enhance your understanding of functional programming techniques as you manipulate arrays ba
  • The Dangling If-Else Problem: A Common Pitfall in Programming3/8/2024 2:14:22 PM. Explore the often-overlooked issue of the &quot;dangling if-else problem&quot; in programming through our insightful article. We delve into the ambiguity that arises when multiple if-else statements a
  • A Comprehensive Guide to Nullable Reference Types in C# 103/8/2024 2:55:22 AM. Explore a comprehensive guide to leveraging nullable reference types in C# 10 by Ziggy Rafiq, providing detailed explanations, code examples, and best practices for improving code safety and robustnes
  • Exploring AI-Driven C# Development with GitHub Copilot3/7/2024 4:00:58 AM. One of the most exciting advancements in this space is GitHub Copilot, an AI-powered coding assistant specifically designed to streamline the development process for C# programmers. This article delve
  • Backup Your Source Code Daily Using C# Programming3/6/2024 10:26:00 AM. Discover an automated solution for daily source code backup with ease. This content introduces an executable file designed to streamline the backup process, ensuring your data is safeguarded without m
  • Performance Testing with K6 Tool3/6/2024 9:34:00 AM. k6 is an open-source framework designed to simplify performance testing for developers. It leverages the Goja programming language, an implementation of ES2015 JavaScript on Golang. This allows develo
  • Asynchronous Programming in Angular Promises vs. Observables3/6/2024 4:33:48 AM. Asynchronous programming plays a crucial role in modern web development, especially in Angular applications where data fetching, event handling. In this article, we&#39;ll delve into the differences b
  • What is Network Tool Whois in C#?3/1/2024 10:26:06 AM. WHO is query tool in C# with a user-friendly interface using various components such as Combo Box, Text Box, Button, Label, and Progress Bar. It covers the design aspect of the user interface, backgro
  • Network Programming in C# - Part 13/1/2024 9:35:16 AM. Explore C# network programming fundamentals in Part 1. Cover TCP/IP, UDP, socket programming, client-server communication, and asynchronous techniques for efficient networking solutions.
  • How Can We Get Last Characters Of A String In Java?2/29/2024 5:07:53 AM. In this article, we will learn about String in Java Programming Language with examples. Explore the intricacies of Java strings, covering their creation using literals or the &quot;new&quot; keyword.
  • Object Oriented Programming In Java2/29/2024 4:57:24 AM. Object-oriented programming is the basic term of any programming language like Java. Object-Oriented Programming (OOP) in Java, covering concepts like Class, Object, Inheritance, Abstraction, Encapsul
  • Cherry-Pick and Stash for Efficient Development Workflows2/28/2024 9:23:45 AM. Excited to share SourceTree tips! Learn how to boost productivity with cherry-pick &amp; stash features. Keep commits clean &amp; manage work-in-progress seamlessly!
  • 2D Array with Matrix Multiplication in C Programming2/28/2024 4:20:43 AM. A double subscripted variable, also known as a two-dimensional array, is a variable that has two subscripts assigned to it in order to represent a list of items.
  • Programming in Practice Discipline2/27/2024 10:10:08 AM. Programming in Practice is a discipline that systematically applies engineering principles to the program design, development, and implementation of algorithms, program text editions, and testing. It
  • Usage of Classes, Structs, and Records in C#2/26/2024 10:34:08 AM. In the world of C# programming, choosing the right data structure can significantly impact the efficiency and readability of your code. In this article, we&#39;ll delve into the nuances of each const
  • Programming Template in Web Server Controls2/20/2024 6:37:31 AM. Templates play a major role in managing the layout and format of the data being displayed in ASP.NET data bound controls.
  • Array Manipulations in C#: Part 12/18/2024 5:19:14 AM. In this article, we will learn to Explore essential array manipulations in C# with this introductory guide. Learn how to modify, copy, and manipulate array elements efficiently
  • Unveiling New Features for Simplified Syntax and Improved Performance in C# 102/18/2024 3:32:44 AM. In C# 10, authored by Ziggy Rafiq, developers will discover simplified syntax and performance improvements. Record structs combine the benefits of records and structs for better memory efficiency. Glo
  • Polymorphism Concept in Object-Oriented Programming2/12/2024 6:20:17 AM. What do you mean by polymorphism? Polymorphism is explained with C# examples, Polymorphism, a concept extending beyond programming, is illustrated in everyday scenarios. Electrical outlets serve as an
  • Getting Started With .NET Core And Visual Studio Code2/9/2024 7:04:48 AM. In this article, you will learn how to install .NET Core and how to create and run a simple console application. .NET Core supports command line interface for developing the applications.
  • C# Versions2/9/2024 6:04:09 AM. This article provides a comprehensive overview of the major releases of the C# programming language, detailing their dates of release, associated .NET Framework versions, Visual Studio editions, and s
  • What is Memento Pattern in C#?2/9/2024 5:57:36 AM. In this article, we will learn aboutThe Memento Pattern in C# enables capturing and restoring an object&#39;s state. It&#39;s crucial for implementing undo/redo functionalities and managing state chan
  • NULL Conditional Operator In C# 6.02/7/2024 11:41:56 AM. In C# programming, developers often encounter the &quot;Object reference not set to an instance of an object&quot; exception, commonly known as a NullReferenceException. However, with the introduction
  • Handling Null Values in DataGrid2/7/2024 11:30:13 AM. n C# programming, developers often encounter the &quot;Object reference not set to an instance of an object&quot; exception, commonly known as a NullReferenceException. However, with the introduction
  • Override Basic Object of Python2/6/2024 10:09:49 AM. This article introduces the concept of overriding methods in Python, focusing on the str and repr methods of the base object class. It explains how developers can customize the output when printing ob
  • Null Conditional Check in C# 62/6/2024 8:32:44 AM. This article explains the Null condition check in C# 6.&quot;Delve into the Null Conditional Operator in C# 6.0, streamlining null checks for enhanced simplicity. Learn its application in handling pro
  • Asynchronous Programming with Async and Await in C#2/6/2024 5:54:11 AM. C# leverages async and await keywords for asynchronous programming, crucial for I/O tasks. Defined with an async modifier, methods return Task or Task&lt;T&gt;. TAP enhances responsiveness, allowing c
  • Generate Bell-Shaped Distribution: PySpark & Matplotlib in Fabric Notebook2/5/2024 11:31:42 AM. Learn how to generate and visualize a bell-shaped or normal distribution using PySpark and Matplotlib in Microsoft Fabric Notebook. Explore the characteristics of a normal distribution, its symmetry,
  • iOS - Choosing Image From Photo Library In Swift2/5/2024 10:28:36 AM. This Swift tutorial demonstrates creating a photo library access request, implementing a UIImageView, and handling image selection.
  • Command Line Arguments in C Programming1/30/2024 7:24:28 AM. Programming can be powerfully customized with command line options without requiring changes to the code. In this article, we will learn how command line arguments in C programming empower users to mo
  • C#: The Programming Language of the Year 20231/30/2024 7:07:49 AM. C#’s Syntax Wins Hearts and Minds.
  • Synchronous vs Asynchronous Programming in ASP.NET Core Web API1/21/2024 1:50:22 PM. Synchronous Programming: In synchronous programming, tasks are executed one after the other, in a sequential manner. When a request is made to a synchronous API, the server processes the request and w
  • Statistical Analysis in R Programming1/18/2024 8:51:41 AM. Statistical analysis forms the bedrock of deriving meaningful insights from data, guiding decision-making processes in various fields. R programming, renowned for its statistical prowess, provides a r
  • Handling Observables with NgIf and Async Pipe1/17/2024 5:16:02 AM. Explore the effective use of Angular&#39;s *ngIf directive and the async pipe to efficiently handle observables in your Angular applications. Learn how to seamlessly manage asynchronous data, dynamica
  • What is .NET Dataflow?1/16/2024 6:59:30 AM. Embark on a magical journey into the realm of .NET Dataflow, a library weaving simplicity into parallel programming complexities. Practical examples unveil the enchanting powers of asynchronous progra
  • Partitioning in PostgreSQL: What, Why, and How1/11/2024 4:44:32 AM. PostgreSQL partitioning enhances database management by dividing large tables into smaller, manageable partitions. Learn the benefits and types (range, list, hash, composite) for efficient data organi
  • JWT Authentication Using Refresh Token Series - 1 [Login Feature] In .NET Core 6.0-ADO.NET-SQL1/10/2024 10:39:54 AM. In this series of articles, we&#39;ll focus on a hands-on, practical implementation of JWT authentication with refresh tokens in .NET Core 6.0 using ADO.NET and SQL, emphasizing real-world scenarios a
  • What is Data Manipulation in R1/10/2024 7:17:44 AM. Data manipulation is an essential part of data analysis and plays a vital role in turning raw data into valuable insights. R programming for efficient data manipulation. Dive into data structures, sub
  • What is ThreadPool Class in C#?1/10/2024 5:53:31 AM. In this article, we will learn about ThreadPool in C# for efficient parallel programming. Learn its benefits, working mechanism, and how it compares to manual thread creation. Utilize the ThreadPool c
  • ThreadPool in C#: Practical Examples1/10/2024 5:48:08 AM. Explore practical examples of using ThreadPool in C# for parallel tasks. Learn how to queue work items, handle synchronization, monitor and manage ThreadPool, and follow best practices for efficient c
  • Difference Between Promise and Async/Await 1/9/2024 5:00:06 AM. JavaScript asynchronous programming has evolved with Promises (ES6) and async/await (ES8). Promises offer structured handling with .then() and .catch(), while async/await makes asynchronous code appea
  • Setting Up Python Locally1/8/2024 7:16:43 AM. Throughout this article, we will delve into the process of acquiring a suitable Python installer and subsequently executing the installation on your local machine using said installer.
  • Understanding Dictionary in C#1/3/2024 9:47:41 AM. In this article, we will learn about the potential of C#&#39;s Dictionary collection type with this comprehensive guide. Learn essential operations, iterate through key-value pairs, and explore advan
  • Eager Loading and Lazy Loading in .NET Core12/29/2023 6:18:51 AM. This article delineates two fundamental data retrieval strategies in .NET Core: Eager Loading and Lazy Loading. Eager loading is a technique used to retrieve related or associated data in a single que
  • How to Build an Interactive and Responsive Form12/28/2023 5:03:01 PM. Discover the world of web development with our latest tutorial on building a responsive and interactive form using HTML5, CSS3, and JavaScript. From the fundamentals of HTML5 to styling with CSS3 and
  • Using RESTSharp for CRUD Operations in ASP.NET Core Web API12/19/2023 7:24:01 AM. Utilizing RESTSharp for CRUD operations in ASP.NET Core Web API offers a streamlined approach to interacting with APIs. This library simplifies HTTP requests and responses, allowing developers to focu
  • Macros in Rust12/15/2023 11:48:16 AM. In this article, we will explore an advanced feature of Rust called Macros.
  • What is Asynchronous JavaScript?11/28/2023 11:53:32 AM. In this article, we will explore asynchronous programming in JavaScript. Asynchronous programming in JavaScript is pivotal in enhancing web applications&#39; overall performance and responsiveness. Ja
  • Reading properties of an object in C#11/26/2023 5:47:50 AM. This article explores two ways to read the properties of an object in C# without knowing its type at compile time: reflection and dynamic keyword. Reflection involves inspecting and manipulating metad
  • Code First Migrations in Entity Framework11/22/2023 11:04:05 AM. This article provides an overview of Code First Migrations in Entity Framework.
  • How to Choose Between Inheritance and Composition?11/16/2023 6:41:17 AM. When to use composition over inheritance and vice versa as a coding best practice.
  • C# Artificial Intelligence (AI) Programming: A Basic Object Oriented (OOP) Framework for Neural Networks11/15/2023 11:39:44 AM. A Neural Network is an Artificial Intelligence (AI) methodology that attempts to mimic the behavior of the neurons in our brains. In this article, we’ll be building a basic framework for AI Neural Net
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download