Related resources for AT&T
  • Learn AngularJS ng src Directive4/19/2024 10:53:58 AM. The AngularJS ng-src directive dynamically binds the src attribute of an HTML element, typically used for images. It allows seamless integration of data-driven image URLs, enabling conditional loading
  • .NET Binary Reverse Engineering: Part 14/19/2024 10:41:26 AM. This article elucidates the Common Instruction Language (CIL), foundational to .NET, distinguishing directives, attributes, opcodes, and tools like IL Disassembler and Reflector. It explores CIL's
  • C# Corner Delhi Chapter Meet, June-22, 2013 Official Recap4/19/2024 10:28:10 AM. Recap of the C# Corner Delhi Chapter Meet held on June 22, 2013, featuring sponsors, enthusiastic attendees, agenda with sessions on LINQ, ASP.Net MVC, and Web API by notable speakers Dhananjay Kumar,
  • Make Your Debugging Easier With 'Login As' Design Pattern4/18/2024 1:16:39 PM. Streamline debugging with the 'Login As' design pattern, enabling authorized users to temporarily access accounts for testing purposes. Enhance development efficiency and ensure thorough testi
  • Dependency Injection and Service Lifetimes in .NET4/18/2024 9:51:28 AM. In this article, I will explain Dependency Injection (DI) is a design pattern that supports the development of loosely coupled code, and it’s also one of the SOLID principles (Dependency Inversion Pri
  • Parameters In Blazor Components (Deep Dive)4/18/2024 9:34:02 AM. Explore the intricacies of Blazor component parameters with this deep dive. Learn about data binding, lifecycle methods, and communication between parent and child components for interactive and reusa
  • Singleton vs. Static Class in C# - Choosing the Right Approach4/17/2024 4:54:57 AM. Singleton and Static classes can only have one instance available in memory, and both classes can be used to maintain the global state of an application, however, there are many differences between th
  • Singleton Vs Static Classes in C#4/17/2024 4:49:59 AM. Why do you use a Singleton class if a Static class serves the purpose What is the difference between Singleton and Static classes and when do you use each one in your program?
  • Record and Pattern Matching in C# 94/16/2024 10:08:20 AM. Unlock the elegance of C# 9 with this article on Records and Pattern Matching. Learn how to craft concise and readable code using the simplicity of Records for immutable data structures and the enhanc
  • Sending Email with Attachment using SendGrid Email Service 4/15/2024 11:42:50 AM. Learn to integrate SendGrid email service in ASP.NET Core MVC using C#. Set up SendGrid account, obtain API key, implement email sending functionality, and utilize ASP.NET Core MVC for web application
  • Handling Date Time In Excel To SharePoint List4/15/2024 11:42:15 AM. Automate handling Email attachments named "Excel.xlsx" in Outlook by adding them to SharePoint library. Read Excel data, insert/update in SharePoint list based on primary key. Manage Date Ti
  • Pattern Matching In C#4/15/2024 8:53:28 AM. Pattern matching in C# is a powerful feature allowing concise and expressive code for conditional statements and type checking. It enables matching based on various patterns like types, constants, pro
  • Experimental Attribute in .NET & C#4/15/2024 6:22:38 AM. The Experimental attribute is a new C# 12 feature that allows you to add the Experimental attribute to your types, methods, or assemblies to indicate that they are experimental features. When someone
  • Create Custom Dependency Property In WPF4/13/2024 6:12:17 PM. Creating custom dependency properties in WPF allows developers to extend the functionality of existing controls or create entirely new controls with additional properties. By leveraging dependency pro
  • Formatting HTML Table In FLOW - Before Sending Email4/12/2024 8:14:49 AM. Learn how to enhance the visual presentation of your emails by formatting HTML tables in Microsoft Power Automate (Flow) before sending. Discover techniques for styling data effectively, optimizing la
  • Generic Repository Pattern With MVC4/12/2024 7:21:48 AM. The Generic Repository Pattern with MVC is a design approach where a generic interface is used to define CRUD operations, providing a flexible way to interact with data in an MVC application. It promo
  • AppSettings - Six Ways To Read The Config In ASP.NET CORE 3.04/11/2024 6:23:13 AM. Learn six methods to read AppSettings in ASP.NET Core 3.0, including options pattern, configuration providers, IConfiguration interface, environment variables, and JSON files, ensuring flexibility and
  • SOLID Principles in C# for Employee Management Example Mastering4/11/2024 4:56:36 AM. SOLID principles are a set of design principles that help developers create maintainable, scalable, and flexible software. In this article, we'll explore each of the SOLID principles: Single Respo
  • Learn about HTML5 Canvas with Example4/9/2024 9:19:36 AM. Explore the potential of HTML5 Canvas for creating graphics, animations, and interactive elements. Learn about its methods and browser compatibility. Discover its features like flexibility, interactiv
  • Core Concept Of ERD (Entity Relationship Diagram)4/9/2024 8:43:47 AM. In this article, we will learn The core concept of Entity Relationship Diagram (ERD) lies in visually representing the relationships between entities in a database system. It illustrates how different
  • ESXi Vulnerability: Understanding the Impact on IXMetro Powerhouse4/9/2024 5:20:18 AM. This article explores the ESXiArgs ransomware attack that targeted IXMetro Powerhouse, detailing the vulnerable ESXi versions and the infection pathway exploited through a Service Location Protocol (S
  • How To Override Attribute Class To Do Custom Authorization In .NET Core4/8/2024 11:48:35 AM. In this article, Discover how to customize authorization behaviors using attribute classes, providing finer control over access to resources based on specific criteria such as user roles, permissions,
  • Singleton Design Pattern With C# Sample4/8/2024 9:13:27 AM. In this article, we will Explore the Singleton Design Pattern in C# with a concise sample code demonstrating its implementation. Learn how to ensure a class has only one instance, providing global acc
  • Globally Configuring Values For JSON Serializer In ASP.NET Core 3.14/8/2024 8:18:26 AM. Learn how to set constraints globally for JSON serialization in ASP.NET Core, avoiding manual decoration of every property. Customize data formatting using converters, and fallback to default settings
  • Implementing API Gateway Pattern in Node.js Microservices 4/5/2024 8:35:44 AM. Implementing the API Gateway pattern in Node.js for microservices architecture simplifies client interaction by centralizing access and providing essential functionalities like routing and load balanc
  • The Experimental Attribute in .NET 8 and C# 124/3/2024 4:56:32 AM. In this article, we will discuss Experimental Attributes in .NET 8 and C# 12. The ExperimentalAttribute in C# .NET 8 marks APIs as experimental, signaling potential changes. It's crucial for libra
  • Attribute Routing in ASP.Net MVC 5.04/2/2024 9:14:50 AM. This article introduces Attribute routing in ASP.Net MVC 5.0 and offers a powerful way to define routes directly within controller actions using attributes, enhancing control over URL patterns and rou
  • Exception Filters in MVC4/2/2024 9:12:12 AM. Learn how MVC handles exceptions using built-in and custom exception filters. Explore the HandleError attribute for managing exceptions and creating custom error pages. Avoid the dreaded Yellow Scree
  • Adding Custom Validation in MVC4/2/2024 9:09:42 AM. In MVC, custom validation involves creating validation attributes to enforce specific rules beyond built-in ones, enhancing data integrity and user experience through tailored validation logic.
  • Remote Validation in MVC4/2/2024 9:09:23 AM. Learn to implement remote validation in MVC, validating specific data without posting the entire form. Utilize the "Remote" attribute to check email existence by calling a controller action.
  • Dependency Inversion Principle (DIP)4/2/2024 5:43:52 AM. The Dependency Inversion Principle (DIP) advocates that high-level modules shouldn't rely on low-level modules. Instead, both should depend on abstractions, reducing coupling and facilitating futu
  • Learn Open/Closed Principle (OCP)4/2/2024 5:16:26 AM. The Open/Closed Principle (OCP) emphasizes that software entities should be open for extension but closed for modification. It enables adding new functionalities without altering existing code structu
  • Learn Interface Segregation Principle (ISP)4/2/2024 4:11:52 AM. Learn about the Interface Segregation Principle (ISP) for cleaner and more maintainable code. Discover how segregating interfaces based on functionality improves system clarity and prevents unnecessar
  • Learn Liskov Substitution Principle (LSP)4/1/2024 11:49:58 AM. Explore the Liskov Substitution Principle (LSP) for robust software design. Learn how to ensure derived classes can seamlessly substitute base classes, avoiding unexpected behaviors and maintaining co
  • Attribute Based Routing In ASP.NET MVC 54/1/2024 8:15:42 AM. Explore ASP.NET MVC 5's attribute-based routing, offering debugging ease, decoupling benefits, and flexible route configuration. Learn to optimize routing with RoutePrefix, Route Constraints, and
  • Routing to Controller Actions in ASP.NET Core3/30/2024 8:47:24 AM. In ASP.NET Core, routing plays a pivotal role in directing incoming HTTP requests to the appropriate controller actions, enabling developers to build powerful and structured web applications.
  • Single Responsibility Principle (SRP)3/30/2024 8:40:56 AM. This article explores the Single Responsibility Principle (SRP), emphasizing the importance of class cohesion and minimizing reasons for modification. It provides examples of code violating and adheri
  • Options Pattern Named Options in .Net Core with examples3/29/2024 9:41:11 AM. Learn how to implement the options pattern and validation in .NET Core using named and default options. Explore techniques for binding configurations, fetching options in APIs, injecting services into
  • memoObject Pooling In .NET3/29/2024 6:42:42 AM. Object Pooling optimizes resource usage by reusing objects from a pool. It enhances performance by minimizing object creation overhead. In .NET, it's implemented using a Factory pattern and a Queu
  • Cyber Defense Using Artificial Intelligence3/29/2024 6:31:13 AM. Cyber Defense involves safeguarding data from unauthorized access through various techniques such as Machine Learning and Deep Learning. The application of Machine Learning using Random Forest classif
  • Gemini Pro Text: Flawless Formatting with markdown23/29/2024 4:29:10 AM. This guide explores the integration of Gemini Pro AI output with markdown2 for HTML rendering in Django web apps. It details the challenges of formatting symbols, offers practical solutions, and empow
  • What is the Directive in Angular?3/28/2024 11:03:40 AM. During development, many user Interfaces are often created. The directives will provide flexible support to modify the styles, manage the user Inputs, and manipulate the DOM much more easily.
  • What Are Data Attributes in HTML, and How Are They Used?3/28/2024 8:56:13 AM. Know the data attributes in HTML. Data attributes are commonly used in conjunction with JavaScript and CSS to enhance the functionality and styling of web pages.
  • Options Pattern in .NET Core with Examples3/28/2024 7:12:54 AM. Options Pattern in .Net Core with examples
  • What is a Sealed Classes in C#?3/28/2024 6:49:58 AM. In C#, the concept of inheritance plays a vital role in object-oriented programming (OOP). Developers often design class hierarchies to create a relationship between different types of objects. Howeve
  • Options Pattern Validation in .NET Core with Examples3/28/2024 4:34:54 AM. .NET offers built-in resources for validating settings to ensure correctness without manual checks. Techniques like data annotations and custom validations streamline the process, enhancing configurat
  • Convert Attachment to Base64 in Power Apps for Email Attachments3/27/2024 8:05:57 AM. Convert attachment files into Base64 strings in Power Apps. Use Power Automate to trigger email creation, dynamically attaching the Base64-encoded files. Streamline workflow, automating attachment han
  • Learn Service Locator Pattern in C#3/26/2024 11:29:22 AM. This beginner’s tutorial explores the Service Locator Pattern in C#. Despite its decline in favor of Dependency Injection, it remains relevant for legacy systems. The tutorial covers its implementati
  • Building a Logging Proxy in C#3/26/2024 8:09:28 AM. In this article, we build a practical reusable Logging Proxy in C#. This article elucidates the creation of a Logging-Proxy, vital for logging calls and data transfers over specified interfaces, aidin
  • Flow and List Document in WPF3/21/2024 9:34:09 AM. Explore WPF's powerful capabilities in managing flow documents and lists through XAML. Learn to design visually appealing user interfaces with structured content presentation, utilizing features l
  • 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.
  • Creating Contact Record in Dynamics 365 with PowerShell Attributes3/20/2024 10:21:52 AM. Learn to efficiently create Contact records in Dynamics 365 using PowerShell, covering all attribute types. Utilize Microsoft.Xrm.Data.PowerShell module for seamless CRMOnline connection and managing
  • 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
  • How to Use Modular Pattern in Javascript3/20/2024 9:43:37 AM. In this article, we will learn how to leverage the Modular pattern in JavaScript for better code organization and scalability. By encapsulating code into separate modules, you can achieve separation o
  • Learn about Asynchronous Events in C#3/20/2024 5:49:33 AM. Explore asynchronous event invocation in C#, addressing threading challenges with event handlers. Learn about the synchronous nature of events, concurrency issues, and solutions using TPL and TAP. Id
  • Getting Started With ASP.Net MVC3/19/2024 6:00:31 AM. ASP.NET MVC is a pattern dividing apps into Model, View, and Controller, offering advantages like modularity and control. It's recommended for large-scale apps, offering namespaces like System.Web
  • What is Alternative of Multiple Inhertitance in C#?3/18/2024 7:22:10 AM. This approach allows for achieving some level of multiple inheritance-like behavior while avoiding the complexities associated with traditional multiple inheritance.
  • Creating Global Option Sets & Using Them Effectively in CRM3/18/2024 6:57:37 AM. To create a Global Option Set in Dynamics 365, define a set of standardized values applicable across multiple entities. Then, reference this set when creating option set fields, ensuring consistent da
  • Alert on Saving Email Attachment to Blob Storage Account3/17/2024 9:38:44 AM. How to notify when Saving specific Email attachments to blob storage accounts using Azure Logic App to the user. Azure Logic App automates workflows, notifying users when specific email attachments ar
  • Creating Contact Record in D365 with PowerShell Script & Image Attribute3/15/2024 8:31:22 AM. Learn to automate Dynamics 365 contact record creation via PowerShell. This script includes adding image attributes, streamlining CRM data management. Utilize Microsoft's Xrm.Data.PowerShell modul
  • Exploring the Data Table Control in Power Apps3/12/2024 10:15:27 AM. Discover the intricacies of the Data Table Control in Power Apps with our comprehensive guide. Learn to harness its power for seamless data manipulation, visualization, and user interaction.
  • Exploring the Power of Rich Text Editor in Power Apps3/12/2024 7:07:40 AM. Unlock the potential of Power Apps with this in-depth exploration of the Rich Text Editor feature. Our comprehensive guide provides step-by-step tutorials, tips, and insights into leveraging this powe
  • Autonumber Attribute Generation: Programmatically or Non-Programmatically3/12/2024 7:02:14 AM. In this article, we will discover techniques for auto-incrementing identifiers, managing data, and implementing automation, potentially utilizing frameworks like Entity Framework.
  • Save Email Attachment to Blob Storage using Azure Logic App3/11/2024 9:09:42 AM. In this article, we are going to learn about how to Save specific Email attachment to blob storage using Azure Logic App
  • Exploring Various Triggers and Their Applications in WPF3/11/2024 8:27:29 AM. Triggers play a crucial role in defining interactions and behaviors within the WPF user interface. This article explores the various types of triggers in WPF and their implementation within the MVVM p
  • Creating Custom Attribute Directives in Angular3/7/2024 5:38:16 AM. Angular is a powerful framework for building dynamic web applications with JavaScript, HTML, and CSS. One of its key features is the ability to create custom directives, which allow developers to exte
  • How To Create Industry Standard .NET Core CRUD API Quickly3/6/2024 9:50:04 AM. To swiftly develop an industry-standard .NET Core CRUD API, utilize ASP.NET Core's MVC framework with Entity Framework Core for data access. Employ dependency injection, repository pattern, and Au
  • Boosting Web Page Performance with the Defer Attribute3/6/2024 5:59:51 AM. JavaScript plays a vital role in enhancing the interactivity and functionality of web pages. However, the way scripts are loaded can significantly impact the user experience and overall performance of
  • Fundamentals of Unit Testing: Understand AAA in Unit Testing3/5/2024 10:32:19 AM. Master the fundamentals of unit testing with a focus on AAA. Arrange, Act, and Assert. Dive into test methods, understand the AAA pattern, and leverage testing frameworks like Microsoft's Unit Tes
  • Automate Email Generation with Power Automate Email Signatures3/4/2024 10:17:03 AM. This HTML snippet fetches an email signature using Microsoft Power Automate. It uses an ID attribute to target a specific div element and utilizes inline code to access and display the signature dynam
  • Save Email Attachment From Outlook To Dropbox With Microsoft Azure Logic App3/1/2024 10:22:03 AM. Learn to streamline your workflow with this comprehensive guide on saving email attachments from Outlook directly to Dropbox using Microsoft Azure Logic App. Discover seamless integration, automation,
  • Repository Pattern with Multiple Databases in C# and .NET3/1/2024 4:10:35 AM. Implementing the Repository Pattern with multiple databases in C# and .NET requires strategic abstraction, database-specific implementations, entity mapping, and transaction management. Explore challe
  • Fallthrough Attributes in Vue.js 2/29/2024 6:20:54 AM. Vue.js provides a powerful feature known as fallthrough attributes, which allows attributes not declared as props to seamlessly pass through to the root element in a component. This feature enhan
  • Send Email with Multiple Attachments from SharePoint Library Docs2/29/2024 4:48:12 AM. Sending an email with attachments using Power Automate, specifically focusing on scenarios where files with their metadata are created in a SharePoint Library
  • Mastering Pattern Matching in C#2/28/2024 5:30:16 AM. Mastering Pattern Matching in C# provides comprehensive insights into leveraging pattern matching techniques to enhance code readability and efficiency. From type patterns to constant patterns, proper
  • Better Implementation Of Singleton Pattern in .NET2/28/2024 4:09:40 AM. This article explains the mistakes made in writing Singleton Pattern in the multithreaded environment create a bug and how to bring a solution to it.
  • Add Attachment in Windows 8 Mail App2/26/2024 9:27:05 AM. This article provides a step-by-step guide on how to send an email with an attachment file using the Windows 8 Mail app.
  • .NET Delegates in Event-Based Asynchronous Pattern for Seniors2/26/2024 5:06:24 AM. This article dives into the practical learning of delegates, emphasizing real-world examples. It explores the Event-Based Asynchronous Pattern (EAP) in C# and its advantages, using delegates to implem
  • Angular URL/Site Validation using Regular Expression and Bootstrap with Reactive Forms2/26/2024 4:26:28 AM. Steps to add validation for URL using the regex pattern in the angular application. I will explain steps to create a form with text input using the reactive forms in angular. This input field will on
  • An in-depth look at C# 10 and performance improvements2/25/2024 2:25:50 AM. Get a comprehensive analysis of Ziggy Rafiq's latest C# 10 enhancements and how they affect application performance. Discover how function pointers simplify method invocation, records enhance memo
  • Async Patterns in MVC Controllers for Efficiency or Adding Unnecessary Complexity?2/22/2024 8:08:10 AM. Explore the necessity of async patterns in MVC controllers—unveiling the intricacies of conventional and alternative coding styles
  • Sending an Email with Multiple Attachments from SharePoint List2/22/2024 5:26:42 AM. Explore the efficient process of automating email sending with attachments using Power Automate, focusing on scenarios like SharePoint list item creation. Optimize your Power Automate skills for enhan
  • Enable Enhanced Experience for Email Attachments2/21/2024 4:15:39 AM. Enable a seamless email attachment experience in CRM by configuring the enhanced email attachment control. Follow simple steps to add attachments, preview files, export data, and efficiently manage at
  • Mobile Number Validation Using Angular and Bootstrap2/19/2024 9:48:49 AM. This article illustrates the implementation steps for 10-digit mobile number validation in an Angular app using reactive forms and Angular's phone number validation pattern. It guides us through s
  • Dependency Inversion Principle2/15/2024 6:57:31 AM. In this article, you will learn about the Dependency Inversion Principle. The Dependency Inversion Principle (DIP) in SOLID, outlined by Robert C. Martin, advocates that high-level modules should depe
  • Open Closed Principle in SOLID2/15/2024 6:51:23 AM. In this article, we will learn about the Open Closed Principle. The Open Closed Principle (OCP) in SOLID, coined by Robert C. Martin, asserts that software entities should be open for extension but cl
  • Interface Segregation Principle2/15/2024 6:51:21 AM. In this article, you will learn about the Interface Segregation Principle. The Interface Segregation Principle (ISP) in SOLID, by Robert C. Martin, emphasizes coding according to specific interfaces r
  • Liskov Substitution Principle2/15/2024 6:41:43 AM. This article explains the Liskov Substitution Principle. The Liskov Substitution Principle (LSP), a key SOLID principle by Barbara Liskov, advocates seamless substitution of base class objects with de
  • React Design Pattern Series: Container/Presentational Pattern2/14/2024 7:17:48 AM. Learn how to master the Container/Presentational Pattern in React with our comprehensive guide. This design pattern separates view and application logic, promoting improved code organization, reusabil
  • Learn about ToolTip in WPF2/14/2024 7:11:29 AM. The ToolTip element in XAML adds a tooltip to a WPF control. The ToolTip class represents a tooltip in C#. The ToolTip property of a control represents the tool tip of the control. Code examples in th
  • React Design Pattern Series: Mastering Render Props Pattern2/13/2024 10:41:52 AM. The article delves into the power and flexibility of React render props as a fundamental design pattern in React development. Exploring the concept, benefits, and real-world use cases, the article dem
  • React Design Pattern Series: Mastering HOC Pattern2/13/2024 10:25:52 AM. This React Design Pattern Series introduces the Higher Order Component (HOC) pattern, a powerful tool in React development. Exploring its definition, benefits, and a real-world example of an authentic
  • SharePoint Online List JSON View Formatting - Video Thumbnail2/13/2024 9:38:59 AM. Customizing YouTube video thumbnails in SharePoint lists enhances visual appeal and user experience. By creating a list with specific columns and using JSON formatting, you can display thumbnails alon
  • Mastering Middleware in .NET2/13/2024 6:28:06 AM. Discover the role and importance of middleware in .NET development. Explore its implementation, patterns, and integration within the ASP.NET request processing pipeline for enhanced application functi
  • Attending Tech Conferences: Speak to the Speakers2/13/2024 5:20:13 AM. Attending conferences offers valuable opportunities to engage with speakers and fellow attendees, enhancing your career. Learn tips for effective networking and building connections at conferences for
  • 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's state. It's crucial for implementing undo/redo functionalities and managing state chan
  • Key Design Patterns in Software Engineering2/8/2024 6:48:50 AM. Discover essential design patterns such as Singleton, Factory, Abstract Factory, Unit of Work, Repository, and Command Query Responsibility Segregation (CQRS). Learn their applications and implementat