Related resources for eSign
  • Bootstrap Dropdown Menu10/8/2024 9:26:56 AM. This article provides a step-by-step guide on creating a dropdown menu using Bootstrap. It covers dropdown basics, customization options like variations (dropup, dropright, dropleft), setting active o
  • Creating DropDown Menu in Bootstrap10/8/2024 9:17:17 AM. Learn how to create a dropdown menu in Bootstrap, a powerful frontend framework for web development. This guide covers step-by-step instructions to implement responsive navigation menus using HTML, CS
  • Multiple Diagrams Per Model With Entity Framework and Visual Studio 201310/8/2024 9:03:31 AM. The Model First Approach in Entity Framework allows users to create and manage entity models using the EDMX file. It features a design surface for editing entities, a model browser for navigation, and
  • Customize Scrollbars Using CSS310/8/2024 9:02:58 AM. This guide covers essential CSS properties, such as scrollbar width, scrollbar-color, and ::-webkit-scrollbar for cross-browser compatibility, enabling you to create sleek, modern scrollbars.
  • Using Border Radius and Gradients in CSS3: Part I10/8/2024 9:01:34 AM. This article introduces the use of CSS3 for creating gradients directly in web pages, eliminating the need for image workarounds. It explains the two primary types of gradients: linear and radial. A p
  • How to use StyleSheets10/8/2024 8:54:45 AM. Learn how to effectively use StyleSheets to enhance your web design and development skills. This guide covers the fundamentals of CSS, including external and inline styles, responsive design technique
  • What is Inline Arrays in C# 1210/7/2024 6:44:43 AM. C# 12 unveils a hidden gem - inline arrays. This article delves into these performance powerhouses, showcasing how they boost speed, simplify memory management, and enhance type safety. Discover their
  • Exploring Network Topologies10/5/2024 6:02:32 AM. Network topologies define the structure of a network, with common types like Bus, Ring, Star, Mesh, and Hybrid, each offering unique advantages and suited for different network needs
  • Disable Splash Screen For Reducing Startup Time/Boot Time of Windows 1010/3/2024 11:48:10 AM. Disabling the Splash Screen in Windows 10 can significantly reduce boot time by eliminating the 3-5 seconds spent displaying the Windows logo. To do this, access the System Configuration dialog by typ
  • Bootstrap For Beginners - Part Two (Bootstrap Containers) 10/3/2024 11:31:45 AM. This article explores Bootstrap containers, focusing on the two main classes: .container for a responsive fixed-width layout and .container-fluid for a full-width layout. It provides practical example
  • Design Pattern (5-3), Dependency Injection, Console Demo10/1/2024 1:45:33 PM. This article will make console demo for the Dependency Injection
  • Design Pattern (5-1), Dependency Injection Implementation​​​​​​10/1/2024 1:44:22 PM. This article will discuss more about the implementation of Dependency Injection.
  • Design Pattern (5-4), Dependency Injection, MVC Demo10/1/2024 1:43:52 PM. This article will be an implementation of Dependency Injection for a MVC app.
  • Understanding the Concept of Rule Engine through Shopping Cart Discount feature9/29/2024 4:59:27 AM. This article explores how a rule engine can be used to implement a shopping cart discount feature, automating discount logic based on conditions such as cart value, product category, and promotions.
  • REPR Pattern - For C# Developers9/27/2024 8:14:53 AM. Discover the REPR Pattern, a powerful design technique tailored for C# developers. Learn how this pattern can simplify code structure, improve maintainability, and optimize performance in C# applicati
  • How to Build a Clean Architecture Web API with .NET Core 89/26/2024 9:15:22 AM. Learn how to build a robust Web API using Clean Architecture principles with .NET Core 8. This guide covers essential concepts, including modular design, dependency injection, and best practices for A
  • Create A Custom Page Layout For SharePoint Online9/26/2024 8:35:30 AM. Learn how to create a custom page layout in SharePoint Online to enhance your site's design and functionality. This guide covers essential steps for customizing page layouts, including utilizing w
  • Why "Service Locator" is an "Anti-Pattern" for Dependency Injection9/26/2024 8:29:26 AM. The "Service Locator" pattern, while widely used, often leads to issues in software design, making it an anti-pattern in the context of Dependency Injection (DI). This article explores the d
  • Using Business Objects As Models In MVC9/26/2024 7:15:50 AM. This approach enhances code reusability, maintainability, and separation of concerns by clearly defining the role of models in managing the application's core functionality.
  • Create Custom Tab in Office Ribbon at Excel/ Word 20079/25/2024 9:48:35 AM. This article provides a step-by-step guide for customizing Office 2007 applications like Excel and Word using Visual Studio 2008. It demonstrates how to create a custom tab in the Ribbon without codin
  • Create Modern Page Template In SharePoint Online9/24/2024 11:55:00 AM. Learn to customize layouts, integrate web parts, and optimize content management within SharePoint's modern UI. Ideal for improving site design and user experience.
  • Understanding Key Concepts in Domain-Driven Design9/23/2024 8:30:18 AM. In this article, we will explore how these concepts drive effective software modeling, ensuring alignment between the business domain and your codebase.
  • How to use Bootstrap With Angular9/23/2024 5:08:21 AM. This guide covers Bootstrap installation in Angular projects, configuring styles and components, and tips for optimizing your design, helping you build modern, responsive web apps.
  • Learn CSS Scroll Snaps9/21/2024 2:51:51 PM. In this article we learn about CSS Scroll Snaps.
  • With code examples, learn how to develop ASP.NET Core C# 12 using domain-driven design9/21/2024 4:15:04 AM. In this guide, you will learn how to develop applications using ASP.NET Core with C# 12, applying domain-driven design principles. Through clear code examples, we’ll explore how to create effective do
  • Design Principle (2): Inversion of Control (IoC) Principle9/19/2024 3:44:37 PM. This series delves into Software Design Principles, with a focus on the Inversion of Control (IoC) Principle in this article. It covers Dependency Inversion, Dependency Injection, IoC Containers, and
  • Design Principle (1-1): SOLID in Code Demo9/19/2024 3:43:58 PM. This article will discuss the SOLID in code demo. This article series covers Software Design Principles, focusing on the SOLID principles. It includes practical code demos and explanations for each pr
  • Prototype Pattern: Cloning Objects in C#9/18/2024 7:52:32 AM. The Prototype Pattern is a creational design pattern that simplifies object creation by cloning existing instances instead of starting from scratch. Ideal for complex objects, it reduces initializatio
  • Repository Design Pattern in MVC Architecture With Entity Framework9/18/2024 5:49:26 AM. In this article, we will learn the Repository Design Pattern in MVC Architecture with Entity Framework simplifies data access by creating a layer between the data and business logic.
  • Introducing New Features of CSS39/17/2024 10:38:32 AM. Discover the latest advancements in CSS3 with our comprehensive guide to its new features. Explore enhancements like Flexbox for flexible layouts, Grid for complex designs, and powerful animations and
  • Singleton Pattern: Ensuring a Single Instance in .NET Core9/17/2024 7:19:37 AM. In this article, we learn about Singleton Pattern: Ensuring a Single Instance in .NET Core. The Singleton Pattern ensures a class has only one instance, providing global access. It's commonly used
  • Abstract Factory Pattern: Designing Families of Related Objects in C#9/17/2024 5:10:34 AM. The Abstract Factory Pattern provides an interface for creating families of related objects without specifying their concrete classes. It ensures consistency and flexibility in object creation, useful
  • Factory Method Pattern: Simplifying Object Creation in C#9/17/2024 4:01:43 AM. The Factory Method Pattern is a creational design pattern that delegates object creation to subclasses, promoting flexibility and maintainability. It defines an interface for creating objects but lets
  • Categorizing Design Patterns: Creational, Structural & Behavioral9/16/2024 8:17:37 AM. In this article we will learn about Categorizing Design Patterns: Creational, Structural, and Behavioral. It provides real-life examples, benefits, and challenges, offering developers insights for be
  • The Importance of Design Patterns in .NET Core Development9/16/2024 6:11:56 AM. This article discusses the importance of design patterns in .NET Core development, highlighting how they enhance scalability, maintainability, and flexibility. Key patterns include Singleton, Reposito
  • What Are Design Patterns? Understanding the Basics9/16/2024 5:51:51 AM. Design patterns are essential in software development, offering reusable solutions to common problems. By applying patterns like Singleton, Factory Method, and Observer, developers create flexible, ma
  • Builder Pattern: Constructing Complex Objects9/14/2024 1:58:12 PM. In this article, we learn about Builder Pattern: Constructing Complex Objects. The Builder Pattern simplifies the creation of complex objects through step-by-step construction. It enables flexibility,
  • Make Conversations Interactive with Adaptive Cards Copilot Studio9/14/2024 11:54:24 AM. Learn how Adaptive Cards enhance user engagement by providing dynamic, card-based interfaces in chatbots, allowing for real-time responses and rich interaction in conversational AI.
  • Design Principle (1): SOLID in Concept9/13/2024 12:17:57 PM. This series explores software design principles, focusing on SOLID principles: Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, and Dependency Inversion, and their pract
  • Design Principle (0): Design Principle vs Design Pattern9/13/2024 12:17:06 PM. This series explores software design principles, distinguishing between high-level design principles like SOLID and low-level design patterns, offering practical guidelines and implementation strategi
  • Design Pattern (3), Singleton9/5/2024 12:49:09 PM. This article will discuss the Singleton pattern.
  • Create a Material-UI Custom Select Component with React js.9/5/2024 8:31:11 AM. Learn how to create a custom select component using Material-UI with React JS in this tutorial. We’ll walk through setting up Material-UI, designing a customizable select dropdown, and integrating it
  • Magnific Pop Up.js Implementation To Zoom In Pictures9/4/2024 7:27:59 AM. This article explains how to implement Magnific Pop Up.js to display full-sized images in a pop-up on a webpage, avoiding the need to navigate away from the page. The guide provides step-by-step instr
  • Explain Primary Constructor in C# 129/4/2024 6:23:27 AM. The primary constructor in C# 12 introduces a new way to define and initialize properties directly within the class declaration, simplifying object creation and reducing boilerplate code.
  • A Guide to Using the Decorator Pattern in Your C# Code9/4/2024 5:40:43 AM. In this article, we will learn how to implement this pattern in your C# code, improve code reusability, and follow best practices for more maintainable and flexible software design.
  • Understanding State Design Pattern9/2/2024 5:00:07 AM. This pattern is particularly useful for implementing state machines or managing complex state-dependent logic, as it promotes cleaner code and improves maintainability in software development.
  • Using Factory Patterns in C# 12 to simplify A/B testing8/31/2024 4:40:36 AM. Find out how Ziggy Rafiq simplifies A/B testing with feature toggles in C# 12 by using Factory and Abstract Factory design patterns.
  • Tailwind CSS Header and Seamlessly Integrating It with ReactJS8/30/2024 11:08:43 AM. Tailwind CSS is a utility-first CSS framework that enables rapid UI development with minimal custom CSS. It provides a wide array of predefined classes, allowing developers to style directly in their
  • Understanding of Design Patterns8/30/2024 5:13:44 AM. Design patterns are essential in software development, divided into architectural and application/code-level patterns. Architectural patterns guide the high-level structure of software, ensuring compo
  • C# 12 Design Patterns: Factory and Abstract Factory8/29/2024 2:29:42 PM. By Ziggy Rafiq, discover how Factory and Abstract Factory design patterns simplify the creation of complex objects in C# 12.
  • Understanding of Domain Driven Design (DDD)8/29/2024 6:25:58 AM. Domain-driven design is a software development approach that closely aligns software models with business needs. It focuses on key concepts like Entities, Value Objects, Aggregates, and Aggregate Root
  • RESTful API Design with .NET8/29/2024 5:49:32 AM. Explore the principles of RESTful design and learn how to implement robust, scalable, and maintainable web APIs in a .NET environment. This guide covers key REST concepts like statelessness, client-se
  • Abstract Factory Design Pattern in .NET Core C# 128/29/2024 4:29:33 AM. In this detailed article by Ziggy Rafiq, you will learn how to implement key components like AbstractFactory, ConcreteFactory, AbstractProduct, and ConcreteProduct in .NET Core with C# 12. By leveragi
  • How to Create a Custom Message Box in Windows Form Application8/28/2024 6:50:09 AM. Learn how to create a custom message box in a Windows Forms application using C#. This step-by-step guide covers everything from designing the message box to implementing it in your WinForms project.
  • Understanding CQRS Design Pattern8/28/2024 5:57:21 AM. CQRS (Command Query Responsibility Segregation) is a pattern that separates the responsibilities of reading and writing data into distinct models. This separation can help optimize both aspects indepe
  • Creating Dynamic Toast Notifications in Blazor8/27/2024 12:20:09 PM. Blazor is a modern framework by Microsoft for building interactive web applications using C# and .NET. It features a component-based architecture, ideal for creating reusable and modular UI elements.
  • Singleton Pattern Caching in .NET C#8/26/2024 4:05:29 AM. Learn how to implement caching using this pattern to enhance memory management, ensure thread safety, and optimize performance in your applications.
  • Dynamic Forms and Flexible Data Storage for Web Apps8/26/2024 4:03:17 AM. This guide covers responsive form creation, scalable data management, and seamless backend integration, offering strategies for efficient user input handling and adaptable storage solutions.
  • Switch Theme Between Light and Dark Mode on Webpage Using Bootstrap8/24/2024 7:13:25 AM. This guide covers step-by-step instructions on implementing theme toggling with Bootstrap's built-in classes, JavaScript, and CSS. Enhance your website's user experience by providing a respons
  • Delete Site Collection in SharePoint Online And Office 365 Using Nintex Workflows8/23/2024 6:03:47 AM. This article guides you on how to delete a site collection in SharePoint Online and Office 365 using Nintex Workflows. It covers the step-by-step process of configuring the "Office 365 delete sit
  • Overflow Property With Auto Value in CSS8/22/2024 11:05:36 AM. The article walks through creating a div with HTML and CSS, applying the overflow property, and demonstrating how the auto value displays scrollbars when necessary, ensuring a responsive design.
  • How to Use Absolute Position Property in CSS8/22/2024 11:05:22 AM. In this article, you'll learn how to position an image as a background using the Z-index property in CSS. We start by designing a header with a title in a div container, then create a main body di
  • Create Button Using HTML5 and CSS38/22/2024 11:04:26 AM. This article guides you through creating a custom button using HTML5 and CSS3 without relying on images or the HTML form button element. You'll design a 'div' to serve as the button, style
  • Best Practices for Data Visualization in Power BI8/21/2024 8:46:19 AM. This guide covers essential techniques for creating clear, impactful dashboards and reports. Discover how to choose the right visualizations, design effective layouts, and leverage Power BI’s features
  • Factory Design Pattern Real World Example8/21/2024 8:44:53 AM. In this article, you will see the real world example of Factory Design Pattern.
  • Unlocking the World of AI Image Generation: Tips for Beginners8/21/2024 6:03:44 AM. Learn how to navigate popular AI tools, understand key concepts, and apply practical tips to create stunning digital images. Perfect for beginners eager to explore the creative potential of AI.
  • Understanding the Interface Segregation Principle (ISP) with C#8/21/2024 4:03:01 AM. Explore the Interface Segregation Principle (ISP) from SOLID design principles to ensure code flexibility and maintainability. ISP advocates for breaking down large, unwieldy interfaces into smaller,
  • CRUD Operations with Repository Pattern and Web API in .NET 88/20/2024 6:57:32 AM. This guide covers creating a clean, maintainable data access layer by leveraging the Repository Pattern for managing database interactions and exposing endpoints through Web API, enhancing your .NET 8
  • How To Create DropDown And Pagination In Bootstrap 48/16/2024 7:55:53 AM. This article provides a step-by-step guide on using Bootstrap 4 for dropdowns and pagination. Learn to create responsive dropdown menus and pagination components with Bootstrap’s built-in classes and
  • Understanding Adapter Design Pattern8/16/2024 7:15:32 AM. The Adapter Design Pattern is a structural pattern that allows incompatible interfaces to work together. It acts as a bridge between two incompatible interfaces by converting the interface of a class
  • How to Create a Border Animation and Hover Effect in Bootstrap8/12/2024 11:07:47 AM. In this article, you'll learn to create a border animation and hover effect using Bootstrap and CSS. Follow step-by-step instructions to integrate the necessary Bootstrap and JS links, write CSS f
  • Exploring Advanced Design Patterns in .NET Core8/12/2024 9:20:27 AM. A deep dive into the latest trends in design patterns within the .NET Core ecosystem. Understand how these advanced patterns are shaping modern application development and architecture.
  • Advanced .NET Core Design Patterns with Code Examples8/12/2024 8:58:55 AM. This article delves into advanced design patterns in .NET Core, offering practical examples and code snippets. Learn how to implement these patterns to build scalable and maintainable applications.
  • Understanding the Open/Closed Principle (OCP) with C#8/12/2024 8:46:10 AM. The Open/Closed Principle (OCP) states that software entities should be open for extension but closed for modification. This principle helps in creating flexible and maintainable code by allowing new
  • Text Shadows in Canvas Using HTML 58/9/2024 12:02:56 PM. This guide shows beginners how to create text shadows in an HTML5 canvas using HTML and CSS. It covers setting up an HTML file, adding CSS for text effects, and styling text with shadows.
  • Multilevel Toggle Responsive Navigation Menu8/9/2024 9:48:15 AM. This article guides you through creating a multilevel toggle responsive navigation menu using HTML, CSS, and jQuery. It includes a mobile-friendly design with nested dropdowns and a hamburger menu tog
  • How Generative AI is Changing the Gaming Industry8/9/2024 8:26:22 AM. Generative AI is revolutionizing the gaming industry by enhancing game development and creating more dynamic, personalized player experiences. This technology enables the creation of vast, ever-changi
  • Builder Design Pattern in .NET Core C#8/9/2024 5:34:59 AM. The Builder Design Pattern in .NET simplifies constructing complex objects by using a step-by-step approach. It involves components like Abstract Builder, Concrete Builder, Director, and Product to se
  • Designing Responsive Charts Using D3JS8/8/2024 11:39:15 AM. This article demonstrates how to make your charts more user-friendly and interactive using D3.JS. Learn to enhance your charts with responsiveness, zoom, and scroll effects. The guide includes code sn
  • Advanced .NET Core with MediatR Pattern8/8/2024 10:07:41 AM. Dive deep into the advanced usage of the MediatR pattern in .NET Core applications. Learn how to enhance application architecture with MediatR for complex scenarios, including code examples and best p
  • Create A Form Using HTML Tables8/8/2024 3:19:03 AM. In this article we will see how to create a form using HTML Tables. First we learn how to create controls like TextBox and DropDownList, then we use them together in our table to create a form where u
  • How to Create a Horizontal Hierarchical Menu Using HTML And CSS8/7/2024 10:44:57 AM. In this article, the first of a series on menu creation, we'll build a simple 2-level menu using only HTML and CSS. You'll learn to structure your menu with <ul> and <li> tags and
  • Panel In C#8/7/2024 10:44:17 AM. A Panel Control in Windows Forms is a container for grouping and managing child controls. It simplifies showing and hiding multiple controls by allowing you to manage them as a group. You can create P
  • Creating Some Impressive Buttons Using CSS8/7/2024 5:23:09 AM. In this article, you'll learn to craft eye-catching buttons with CSS! Elevate your web design skills by mastering CSS techniques to create impressive, interactive buttons. Enhance user experience
  • Implementing the Mediator Pattern in .NET Core with MediatR8/6/2024 10:55:03 AM. Learn how to implement the Mediator pattern in .NET Core using the MediatR library. This article provides a detailed guide with code examples to help you understand and apply the Mediator pattern in y
  • Priciples of Scalable System Design8/5/2024 9:50:14 AM. The principles of scalable system design focus on creating architectures that can efficiently handle increasing loads. Key aspects include load balancing, fault tolerance, and performance optimization
  • CQRS Design Pattern and Its Use Case8/5/2024 9:45:32 AM. In this article, we will explore its use cases in microservices and domain-driven design, focusing on event sourcing, command and query handling, and optimized data management.
  • Repository Pattern In ASP.NET MVC8/5/2024 3:53:48 AM. In this article, we will learn about Repository pattern which is mostly used to create enterprise applications. Repository pattern divides application’s UI, business logic and data access components i
  • Introduction to Bootstrap8/1/2024 9:56:46 AM. Learn how to create responsive, mobile-first websites using Bootstrap's powerful grid system, pre-designed components, and customizable classes. Ideal for beginners and experienced developers.
  • Understanding Builder Design Pattern8/1/2024 6:14:40 AM. The Builder is a pattern that belongs to the creational design patterns family. What makes it special is its ability to provide abstraction to the client by encapsulating different types of the same o
  • Design A High Availability Application With Azure App Service7/29/2024 8:32:55 AM. This article outlines creating a high-availability app using Azure PaaS, focusing on scalability and performance. It covers defining availability metrics (uptime, MTTR, MTBF, RTO, RPO), designing faul
  • Design Pattern (1), MVC7/29/2024 2:27:55 AM. This article will discuss Design Pattern, Model View Controller.
  • Design Pattern (2), MVVM7/29/2024 2:27:32 AM. This article discuss the Design Pattern, MVVM for WPF.
  • Design Pattern (3-1), Differences between Singleton & Static Class7/29/2024 2:24:17 AM. This article will discuss the Differences between Singleton and Static Class. This series explores Design Patterns, starting with MVC. The article discusses differences between Singleton and Static cl
  • Design Pattern (5), Dependency Injection7/29/2024 2:22:29 AM. This article discusses Dependency Injection. This article series covers Design Patterns, starting with MVC. This specific article focuses on Dependency Injection (DI) in .NET, explaining the Dependenc
  • Building A Login Form Using Material Design Control In Visual Studio 20177/26/2024 6:28:26 AM. This article demonstrates how to use Material Skin in Windows. Forms applications with Visual Studio 2017. It covers starting a project, installing Material Skin via NuGet, adding Material controls to
  • Singleton Design Pattern in .NET Core7/26/2024 5:01:10 AM. The Singleton Design Pattern ensures a class has only one instance and provides a global access point to it. In .NET Core, this involves a private constructor, a static instance variable, and a static
  • Database First Approach in .NET Core7/25/2024 7:54:49 AM. Discover the Database First Approach in .NET Core with our comprehensive guide. Learn how to efficiently integrate databases into your application using Entity Framework Core, design robust data model
  • Understanding the Repository Design Pattern in .NET Core7/25/2024 4:53:07 AM. The Repository Design Pattern is a commonly used design pattern in software development that provides an abstraction layer between the business logic and data access layers in an application. It helps
  • How to Create Scrollable Screen?7/25/2024 4:31:00 AM. Learn how to create and manage scrollable screens in your project, enhancing user experience with full-screen scrolling. This guide covers adding and configuring scrollable screens, managing control a