Related resources for RAC
  • Efficient Data Manipulation: Using Square Brackets in DataTable Compute4/24/2024 1:56:01 PM. Square brackets are used in programming for indexing and accessing elements in lists, arrays, or other data structures. They provide a concise and intuitive way to reference specific elements based on
  • Composite Design Pattern Using Java4/24/2024 7:45:07 AM. The composite design pattern facilitates creating nested objects of the same type, forming a hierarchical system. Components define a base contract, composites implement it, and clients build system
  • 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'll explore best practices for managed threading in .NET C#, covering t
  • Binary Cracking and Byte Patching With IDA Pro4/23/2024 8:31:51 AM. This dissertation explores binary patching techniques using IDA Pro, emphasizing reverse engineering, byte-level manipulation, and assembly code analysis. It covers configuring IDA Pro for patching,
  • 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
  • Implementing a Map with Latitude and Longitude in JavaScript 4/23/2024 5:06:40 AM. We'll explore how to leverage Leaflet, a powerful JavaScript library for interactive maps. This article guides the creation of dynamic maps using Leaflet and geolocation. It covers HTML structure,
  • What is New in the Swift 5.10?4/22/2024 5:13:07 AM. Swift 5.10 focuses on improving concurrency features with stricter data race checks. Swift 5.10 enhances concurrency safety by enforcing data isolation and preventing data races. Actors and tasks ensu
  • Securing Your Workloads in VMware Cloud4/22/2024 3:52:59 AM. Fortify your VMware Cloud environment! Discover essential security practices for access control, networking, disaster recovery & more. #VMwareCloud #CloudSecurity
  • Extracting Values from PDFs in .NET Core 8 without ASP.NET4/21/2024 2:18:45 PM. In this article, we'll explore how to extract values from PDF files within the .NET Core 8 ecosystem without relying on ASP.NET, using the PdfSharpCore library. We'll provide a step-by-step gu
  • Easily Extract Values from PDF Without AI Only Using .NET Core 84/20/2024 9:21:53 AM. In this post, we will be discussing extracting content from PDF file without using any AI algorithms.
  • Angular Services: Implementation, Examples & Best Practices4/19/2024 10:53:23 AM. AngularJS services facilitate modularization and reusability by providing a way to share logic and data across components. They employ dependency injection for seamless integration, enabling efficient
  • Mastering SQL Server Common Table Expressions (CTEs)4/19/2024 10:50:28 AM. Mastering SQL Server Common Table Expressions (CTEs) empowers users to create complex queries efficiently. Learn recursive and non-recursive CTEs, optimize queries, and enhance database management ski
  • SQL Stored Procedures: Benefits, Implementation & Best Practices4/19/2024 9:52:48 AM. Stored procedures are a powerful feature of SQL databases that allow developers to encapsulate SQL logic and execute it as a single unit. In this article, we'll delve into the concept of stored pr
  • What are SQL dialects with Example?4/19/2024 4:09:17 AM. SQL dialects are versions of SQL tailored to specific database systems. Each dialect has its syntax and features while adhering to SQL's core principles. Understanding dialects is essential for wr
  • Select Stored Proc With Raw SQL Query Via EDF Framework4/18/2024 10:43:47 AM. Utilize Entity Data Framework (EDF) for selecting stored procedures with raw SQL queries. Enhance data access in your application by leveraging the power of SQL alongside EDF's object-relational m
  • Mastering SQL Joins with the WITH(INDEX(Index_Name)) Clause4/18/2024 9:09:24 AM. Explore how the WITH(INDEX(Index_Name)) clause in SQL can turbocharge query performance by providing hints to the query optimizer regarding index selection, particularly when used in joins. Learn the
  • How To Integrate Azure Application Insights Service To An Angular4/17/2024 8:00:08 AM. Elevate your Angular app's performance and monitoring capabilities by seamlessly integrating Azure Application Insights service. Track and optimize user experiences with advanced logging and monit
  • 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
  • A Comprehensive Guide to Entity Framework Core in .NET 84/16/2024 10:54:12 AM. Explore the comprehensive guide to Entity Framework Core in .NET 8, enriched with the latest features of C# 10. Authored by Ziggy Rafiq, this detailed overview covers everything from basic concepts to
  • Best Practices for Handling Exceptions in C# 4/16/2024 10:49:46 AM. Learn effective exception handling techniques in C# with Ziggy Rafiq's comprehensive guide. Discover best practices for managing exceptions, including specifying exception types, logging errors, a
  • Extracting Content of HTML Page in Javascript4/16/2024 10:48:29 AM. Developing a solution that extracts the content of an HTML page from scratch requires a lot of effort. In this article we'll have a look at library that automates this task.
  • C# 10 and .NET Interactive Web Applications with Blazor WebAssembly4/16/2024 10:45:26 AM. This framework, emphasizing C# and .NET, simplifies UI updates, fosters code reusability, and seamlessly integrates with .NET Standard libraries for enhanced functionality. Dive into component-based a
  • Code readability is enhanced with C# 10 top-level statements4/16/2024 10:18:02 AM. Ziggy Rafiq discusses tackling challenges in software component specification standards through the implementation of solutions such as adapters and bridges for standard mediation, abstraction and enc
  • Abstracting Azure Service Bus And Azure Queues To Send Messages4/16/2024 8:51:29 AM. Abstracting Azure Service Bus and Azure Queues simplify message sending by providing high-level interfaces. This allows seamless integration with Azure's messaging infrastructure, enabling efficie
  • Sharing Data Between Components In Angular4/16/2024 5:33:03 AM. Share data between Angular components efficiently using Input and Output decorators, EventEmitter, and component interaction techniques. Explore parent-child and child-parent communication methods to
  • Learn about Static Class in C#4/16/2024 4:43:10 AM. This article explores the concept of static classes in C#, detailing their characteristics, usage, and limitations. It covers static class setup, static class features, static method usage, and depend
  • Sharing Data from Child to Parent in Angular 8 Using @viewchild4/15/2024 11:51:06 AM. Angular 8 facilitates efficient parent-child component communication through @ViewChild. This TypeScript decorator allows a parent component to access a child component's properties and methods, e
  • Alibaba Cloud Security Best Practices for Safeguarding Your Data4/14/2024 5:24:57 AM. Secure your data on Alibaba Cloud! Learn best practices for encryption, access control, & threat detection to ensure data security & compliance. #AlibabaCloudSecurity
  • Share Data Between Child And Parent Components In Blazor 4/12/2024 11:14:56 AM. Explore Blazor, Microsoft's framework for building dynamic web UIs with .NET. Learn about Razor components, data sharing between parent and child components, and creating reusable UI elements like
  • Create an Interactive Flower Using HTML54/12/2024 8:17:56 AM. Learn how to create an interactive flower using HTML5 canvas. Follow beginner-friendly steps, from setting up an HTML editor to defining functions and adding interactivity. Utilize KineticJS for graph
  • Blazor Component: Creation, Lifecycle, Nesting, & UI Integration 4/11/2024 10:41:35 AM. Blazor Components offer a modern approach to web development by utilizing Razor syntax and C#. They enable building interactive and reusable UI elements with data binding and event handling.
  • Consuming Web Service In an ASP.Net Web Application4/11/2024 10:27:29 AM. This article explains how to consume web service in an ASP.Net web Application. Here we will see how to add a Web Service Reference in the ASP.Net Web Application and how to call the Web Service metho
  • How To Unlock HR Schema In Oracle-12C Or How To Fix The ORA - 01033 Error 4/10/2024 10:41:23 AM. In this article, I explain how to unlock the HR schema in Oracle 12c in detail. Sometimes while making the clone of production database into a test server this type of error occurs. So this article is
  • Create A Simple Bot With Azure Bot Service4/10/2024 10:40:35 AM. Explore creating a simple Bot using Azure Bot Framework. Bots automate tasks, interact like humans, and offer various functionalities. Follow the steps to set up in Azure portal, select the template,
  • Move Controls With The Mouse On A Form At Runtime4/10/2024 9:42:29 AM. Enable dynamic control movement on a WinForms application at runtime by incorporating mouse interaction. Empower users to drag and drop UI elements for personalized layouts, enhancing user experience
  • Add Color To Your Visual Studio Text Editor4/10/2024 9:41:51 AM. Enhance your Visual Studio coding experience by adding colors to the text editor using the Viasfora extension. Learn to install and customize colors for braces and other elements, optimizing your work
  • Migrate and Run VMware Workloads to Oracle Cloud VMware Solution4/10/2024 7:10:31 AM. Migrating VMware workloads to the cloud can be a complex but rewarding process. This article explores the benefits, challenges, and steps involved in migrating and running VMware workloads on Oracle C
  • 15 Effective Methods for Enhancing Performance in Our ASP.NET Core Application4/9/2024 6:09:14 PM. Explore 15 effective methods meticulously curated by Ziggy Rafiq to enhance performance in ASP.NET Core applications, ensuring optimal efficiency and scalability for your projects
  • Best Practices for Maintaining Security and Preventing Vulnerabilities in C#4/9/2024 5:54:03 PM. Explore essential security practices in C# programming with Ziggy Rafiq, covering password hashing, input validation, SQL injection prevention, cryptography, HTTPS, secret management, and staying upda
  • 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
  • Best Practices for Creating ASP.NET Core REST API using OpenAPI4/9/2024 5:44:39 PM. Learn best practices for developing ASP.NET Core REST APIs using OpenAPI. Follow Ziggy Rafiq's expert guidance to streamline your API development process and ensure optimal performance and scalabi
  • How To Create SSIS Catalog4/9/2024 8:25:51 AM. In this article, you will learn how to efficiently create an SSIS Catalog in SQL Server Integration Services (SSIS). This comprehensive guide covers the setup and management of the catalog, including
  • Customize Current Theme From Power BI Desktop Without Using JSON - Part One4/8/2024 8:44:58 AM. In this article, we will talk about how we can customize the current Power BI report theme in Power BI.
  • Efficient and Maintainable Angular Best Practices for Applications4/6/2024 5:51:39 AM. In this article, we will learn how Angular has emerged as one of the most popular JavaScript frameworks for building dynamic and scalable web applications. However, with its powerful features and flex
  • 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
  • Client Scripts in ServiceNow- Simplified with Real-Time Use Cases4/5/2024 8:50:33 AM. From onChange to onLoad, discover the four key types of client scripts and how to use them effectively to enhance user experience and streamline platform functionality. Explore essential tips and best
  • 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 to Use Stored Procedure in PHP4/5/2024 5:42:14 AM. Using stored procedures in PHP involves connecting to a database using MySQLi or PDO, preparing and executing SQL queries that call the stored procedures. Utilize parameterized queries for security an
  • How To Build An Interactive Dashboard Using Power BI4/4/2024 9:33:23 AM. In this article, we will learn step-by-step how to create captivating interactive dashboards using Power BI. Dive into the world of data visualization and business intelligence with this comprehensive
  • Password Policy/Strength ASP.NET MVC Validator4/4/2024 9:12:10 AM. The ASP .NET MVC Password Policy Validator facilitates implementing password policies and determining password strength for web system users. It utilizes ASP .NET MVC architecture, extension methods,
  • Create Power BI Report Using PDF Data Source4/4/2024 8:56:31 AM. Learn how to extract data from PDF files using Power BI's PDF Connector. Enable the feature, select the PDF, preview pages, load data, view available fields, and prepare a Power BI report based on
  • The Best Decentralized Apps of 20244/3/2024 8:30:18 AM. Explore the world of decentralized applications (DApps) and their impact on various industries. Learn about the benefits of DApps, including privacy, security, and cost-effective transactions. Discove
  • C# Structs: Performance Benefits, Usage, and Best Practices4/1/2024 4:25:28 AM. This article provides an insightful overview of structs in C#, detailing their value type nature, stack allocation, and key characteristics. It includes examples and considerations for when to use str
  • C# Propertie Implementation, Types, Examples, and Best Practices3/29/2024 6:38:03 AM. C# property is a member of a class that allows the class to expose some functionality without exposing the implementation details. This article explains what a property is in C#, why we need properti
  • Activate & Deactivate Account Record in Dynamic 365 with PowerShell 3/28/2024 10:51:22 AM. InteractiveMode prompts user for login in Dynamics CRM, storing connection in $conn. BypassPluginExecution set to true avoids plugin execution.Set-CrmRecordState modifies record state in CRM using spe
  • Power Apps: Bind Default Values from SharePoint Using Slider Control3/28/2024 10:44:16 AM. In this article, we will learn how to enhance user experience in Power Apps by utilizing the Slider control. This tutorial guides you through binding default values seamlessly from SharePoint, streaml
  • Abstract Class vs Interface3/28/2024 10:36:35 AM. Abstract classes provide a partial implementation with the option for subclasses to extend, while interfaces define a contract without implementation, allowing multiple inheritance. Abstract classes s
  • 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
  • Difference Between Sealed Class & Abstract Class in C#3/28/2024 10:16:55 AM. In object-oriented programming (OOP) with C#, classes serve as the foundation for building robust and scalable applications. Two important concepts in class design are sealed classes and abstract clas
  • Keeping Large Table Statistics Current - TF23713/28/2024 6:33:21 AM. Statistics are the magic ingredient that helps the query optimizer create its best guess for generating an execution plan. Keeping statistics as accurate as possible will give the optimizer the inform
  • Get List Control Dynamic value from SharePoint List in Power Apps3/27/2024 8:26:58 AM. The List Box control in Power Apps coupled with SharePoint integration enhances data visualization and interactivity. Customize appearance and behavior, bind to SharePoint lists, implement filtering/s
  • What is the Abstract Class in C#?3/27/2024 6:45:19 AM. The abstract class is a special privileged class in the C#, this will provide a blueprint for the derived classes with a setup of rules and instructions to be derived. The abstract class contains both
  • Best Practices for Designing APIs in .NET3/26/2024 11:55:39 AM. This article provides a thorough overview of the fundamental principles, criteria, and concerns for creating APIs in.NET.
  • Enums in C#: Syntax, Usage, and Best Practices3/26/2024 5:21:08 AM. In C#, enums (short for enumerations) offer a powerful tool for developers to define a set of named integral constants. In this article, we'll delve into the fundamentals of enums in C# and explor
  • Ensuring Secure Coding in C#: Maintaining Security 3/22/2024 10:11:52 AM. The article on secure coding in C# applications, written by Ziggy Rafiq, is a must-read for developers who want to fortify their applications against potential vulnerabilities and security threats. By
  • 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
  • Logging And Tracing With Post Sharp3/19/2024 11:58:46 AM. Learn how to implement logging and tracing in .NET applications using PostSharp. Utilize aspect-oriented programming to inject logging behavior into methods, simplifying code maintenance and enhancing
  • Working with Branch Policies in Azure DevOps3/18/2024 11:56:42 AM. In this article, we will learn how to enforce quality and compliance standards in your Azure DevOps repositories by implementing branch policies. Ensure code quality, enforce code reviews, and automat
  • Best Practices To Make Responsive Website Design (RWD)3/15/2024 11:07:00 AM. Employ a mobile-first approach, utilizing flexible grids, media queries, and fluid layouts. Implement breakpoints, optimize images, and prioritize content for performance. Focus on enhancing user expe
  • What Is DevOps And Its Key Principles3/15/2024 6:16:52 AM. DevOps merges development and operations, emphasizing collaboration, automation, and continuous integration. Key principles include infrastructure as code, agile practices, and a feedback loop for mon
  • Let's Understand How Git Maintains History Of Version Or Commit Ids 📥📤 With Details3/14/2024 10:48:47 AM. In this article, you will Delve into Git's intricate versioning system, uncovering its robust method of tracking changes through commit IDs and the underlying mechanisms of branch management and r
  • Use and Manage Microsoft Viva Engage 3/11/2024 11:30:20 AM. Yammer was rebranded to Viva Engage, and would now be part of the Microsoft Viva employee experience platform. So Yammer is now called as Viva Engage as it rebranded. This article is about Viva Engage
  • What is Prompt Engineering and Why Do We Care?3/10/2024 9:45:39 AM. Learn about Prompt Engineering and its role in optimizing AI interaction, enabling users to leverage the full potential of advanced language models.
  • New Features Of Entity Framework Core 2.03/7/2024 8:53:53 AM. Entity Framework Core is a lightweight and extensible version of Entity Framework. It is based on an ORM (Object-Relational Mapper) which enables us to work with databases using .NET objects. This art
  • Connected And Disconnected Scenarios in Entity Framework3/7/2024 8:45:09 AM. In this article, we will explore the intricacies of data handling in Entity Framework through connected and disconnected scenarios. Learn how to manage data manipulation, state tracking, and persisten
  • Practical Introduction to Entity Framework: Day 63/6/2024 10:40:13 AM. In this article, you will Explore Day 6 of our Practical Introduction to Entity Framework series, diving deeper into database integration. Learn essential concepts, including object-relational mapping
  • Practical Introduction To Entity Framework: Day 53/6/2024 10:39:36 AM. Day 5 of our practical introduction to Entity Framework delves deeper into database management with advanced concepts like relationships and efficient CRUD operations. Explore Entity Framework Core fo
  • Practical Introduction To Entity Framework: Day 43/6/2024 10:36:48 AM. This content provides a detailed guide on returning multiple result sets or data sets in Entity Framework. It walks through the steps involved, including creating a normal stored procedure, adding an
  • Practical Introduction To Entity Framework: Day 33/6/2024 10:32:09 AM. Day 3 of this practical Entity Framework introduction delves into database transactions, query optimization, and advanced EF features. Learn to manage relationships, optimize data models, and fine-tun
  • Practical Introduction To Entity Framework: Day 23/6/2024 10:30:54 AM. This article provides a comprehensive guide on executing stored procedures using Entity Framework. It covers creating stored procedures in SQL Server, adding entity models to projects, and calling aut
  • Practical Introduction To Entity Framework: Day 13/6/2024 10:29:58 AM. In this article, we will discover the fundamentals of Entity Framework in this practical introduction. Learn about ORM concepts, database operations, and CRUD operations through hands-on examples.
  • Build A PoC Blockchain Application Using Hyperledger Fabric3/6/2024 10:25:30 AM. In this article, we will explore building a Proof of Concept (PoC) blockchain application with Hyperledger Fabric. Learn to develop decentralized solutions, utilize smart contracts, and deploy prototy
  • How to Extract Initials from a String in Vue.js3/6/2024 7:16:41 AM. To extract initials from a string in Vue.js, you can create a custom filter or method. Define a filter or method to process the string and return the initials, providing flexibility in implementation.
  • Importing Access Database into SQL Server 20123/5/2024 10:40:07 AM. Destructuring simplifies value extraction from objects/arrays. React's event handling enables dynamic responses to user interactions, crucial for interactive UIs. Components manage state/props, fa
  • Building Reports With Power BI Designer Using Excel Data3/5/2024 10:30:51 AM. Transform Excel data into insightful reports with Power BI Designer. Utilize its intuitive interface and powerful features for data modeling, visualization, and dashboard creation, enabling interactiv
  • Vue Methods: Improving Interactivity in Your Vue.js Applications3/5/2024 5:45:41 AM. Vue.js, with simplicity and reactivity system, empowers developers to build interactive and dynamic web applications effortlessly. In addition to data properties, Vue introduces the concept of methods
  • AI Builder Platform for Effortless Resume and Invoice Handling3/4/2024 11:29:05 AM. The AI Builder platform streamlines resume and invoice handling by automating data extraction and analysis. It boosts efficiency and accuracy, enabling effortless processing of documents for enhanced
  • SQL Tuning - Effective Strategies with Practical Examples3/3/2024 5:01:15 AM. SQL Tuning — Effective Strategies with Practical Examples
  • Reactive Forms In Angular with Practical Example 3/1/2024 6:05:44 AM. Angular is a popular framework for building dynamic web applications, and one of its key features is its powerful Forms module. Angular offers two types of forms: template-driven forms and reactive fo
  • 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 "new" keyword.
  • Access Windows Accessories Tools In Windows 102/28/2024 9:48:17 AM. This article provides a comprehensive guide on how to easily find the Accessories folder in Windows 10, which contains useful tools like the Snipping Tool, Character Map, and Steps Recorder.
  • Using Plugin.Maui.Popup to Create Eye-Catching Popups in Apps2/28/2024 8:59:24 AM. Learn how to utilize Plugin.Maui.Popup to incorporate popup functionality into your Xamarin.Forms application. Follow step-by-step instructions to install the package, create custom popup pages, and c
  • Vue.js HTTP Handling: Dynamic Interactions, State, Uploads, Real-Time Data2/28/2024 5:15:01 AM. Vue.js, with its reactive framework and extensive ecosystem, provides developers with powerful tools to handle HTTP requests seamlessly. In this guide, we will explore advanced examples, extending bey
  • Creating Cohorts Using Custom Properties in Application Insights2/27/2024 10:13:19 AM. In this article, we will learn how to leverage custom properties in Application Insights to create cohorts for in-depth user behavior analysis.
  • 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
  • Get App History on Windows 82/23/2024 9:45:22 AM. Learn how to access app history on Windows 8 using the Task Manager. Monitor app usage, resource consumption, and performance metrics to optimize your system. Gain insights into your app activity for
  • Building an Interactive Chatbot with Prompt Engineering using ChatGPT, .NET Core, and Azure2/23/2024 4:00:55 AM. This article will talk about building an Interactive chatbot with Prompt Engineering using ChatGPT, .NET Core, and Azure.
  • Exploring Vue.js Practical Examples2/21/2024 12:09:24 PM. Vue.js, a progressive JavaScript framework, has gained immense popularity for its simplicity and flexibility. In this article, practical examples to demonstrate the power and versatility of Vue.js. Ea
  • Blazor - Connect With Oracle Database In Amazon RDS2/21/2024 11:32:58 AM. We will see how to create an Oracle database instance in Amazon RDS (AWS Relational Database Service) and we will connect Oracle database from Blazor application. We will use an Employee details Singl