Resources  
  • Master Dockerfile Instructions: FROM, WORKDIR, COPY, RUN, EXPOSE, ENTRYPOINTJul 03, 2025. A simple article to key Dockerfile instructions: FROM, WORKDIR, COPY, RUN, EXPOSE, ENTRYPOINT. Understand each with examples and a memory trick (FWCREE) to easily build and run Docker containers.
  • Modern CQRS and Messaging in .NET with WolverineJun 30, 2025. Learn how to use Wolverine, a powerful .NET message bus library, to handle commands, publish events, and schedule background tasks in a simple console app with zero boilerplate and full CQRS support.
  • Mastering Connection Pooling with Dapper in ASP.NET Core Web APIJun 27, 2025. In modern web development, one of the key challenges when working with databases is efficiently managing database connections.
  • Introduction to Git and SourceTreeJun 09, 2025. Git is a free and open-source version control system that allows developers to collaborate on projects efficiently. SourceTree is a powerful visual Git client that simplifies the process of using Git.
  • Beginner’s Guide to Git Interview QuestionsJun 02, 2025. A beginner-friendly guide to Git covering key concepts, commands, workflows, and Git vs. GitHub. Learn to manage code, collaborate, and prepare for interviews with real-world examples and step-by-step explanations.
  • Understanding DBCC Commands in SQL Server: Use Cases and ImportanceMay 31, 2025. Learn the essentials of DBCC commands in SQL Server—powerful tools for monitoring, maintaining, and troubleshooting databases. Mastering them ensures performance optimization, deadlock resolution, and proactive database health checks.
  • Getting Hands-On with the Docker MCP CLIMay 04, 2025. Learn how to use the Docker MCP CLI with real-world examples, clear commands, and step-by-step guidance tailored for beginners and devs alike.
  • Advanced C# Database Tricks into a Practical SolutionMay 02, 2025. This project demonstrates an advanced C# database architecture combining EF Core, Dapper, and ADO.NET to achieve optimal performance, flexibility, and maintainability—complete with clean architecture, logging, and benchmarks.
  • How to Use Copilot Slash Commands in Visual StudioApr 21, 2025. Discover how commands like /generate, /explain, and /tests can help you write code, fix errors, add documentation, and create unit tests more efficiently. Boost your productivity today.
  • Getting Started with Docker's new CLI Model RunnerApr 02, 2025. Learn how to install, configure, and use Docker Model CLI to run AI models effortlessly. A beginner-friendly guide with hands-on examples!
  • How to Change Time in LinuxFeb 25, 2025. This article covers how to check, set, and synchronize system time using commands like date, timedatectl, and NTP. Whether adjusting manually or syncing with a time server, learn how to manage time effectively in Linux.
  • Mitigate OWASP A02 2021-Cryptographic Failures Web Security TipsFeb 04, 2025. ADO.NET offers low-level access to databases using SQL commands, while EF is an Object-Relational Mapping (ORM) tool that simplifies database operations by mapping objects to database tables, offering higher-level abstractions.
  • ADO.NET vs Entity Framework: Understanding the DifferencesFeb 03, 2025. This article compares ADO.NET and Entity Framework (EF), two popular data access technologies in .NET. It explores their differences in performance, data manipulation, and development approaches like code-first vs database-first, helping developers choose the right tool for their application needs.
  • Design Patterns for Scalable ASP.NET MVC ApplicationsJan 31, 2025. Discover key design patterns like Repository, Unit of Work, Dependency Injection, Factory, Singleton, and Command to enhance the scalability, maintainability, and testability of your ASP.NET MVC applications.
  • Modern ADO .Net with SQLite in VB and C#Jan 22, 2025. This article demonstrates how to connect SQLite with ADO .NET in C# and VB, showcasing database operations such as creating tables, inserting records, and reading data. It uses the Microsoft.Data.Sqlite package in .NET Core environments.
  • How to Install Docker Engine on UbuntuJan 21, 2025. Learn how to install Docker Engine on Ubuntu with this step-by-step article. Simplify containerized app development and deployment effortlessly.
  • Azure CLI CommandsJan 03, 2025. This article explores key commands for deploying, managing, and monitoring resources, simplifying tasks like creating virtual machines, managing storage, and configuring networks directly from the command line.
  • Docker Desktop 4.37: AI Catalog Access and Command-Line ControlDec 19, 2024. Docker Desktop 4.37 introduces AI Catalog access, command-line management, component upgrades, and bug fixes, streamlining modern development workflows.
  • How to Create a ListView Command Set ExtensionNov 12, 2024. A ListView Command Set extension in SharePoint customizes the command bar or context menu of lists/libraries. It allows adding buttons that trigger custom actions, such as displaying alerts, showing selected items, or integrating with external systems.
  • TypeScript command 'tsc' not running in Terminal and PowerShellOct 06, 2024. This series of articles will discuss a specific feature for PowerShell programming.
  • Basic Linux CommandsOct 06, 2024. Learn about basic Linux commands including listing files and managing directories as part of fundamental of DevOps.
  • Check which process deleted the files on WindowSep 28, 2024. Enable event logging to identify the process causing deletion operations. Set up folder auditing by adjusting security properties, adding auditing entries, and running AuditPol commands.
  • Learning About Docker Basics in Minutes - Docker FileAug 20, 2024. Building a Docker image involves using commands like FROM, CMD, EXPOSE, WORKDIR, ENV, COPY, RUN, and USER in a Docker file. These commands define the base image, set up environment variables, copy files, and execute commands to create a deployable container for various applications.
  • Learn to Shrink a Microsoft SQL Server Database Programatically Aug 20, 2024. Shrinking a SQL Server database reduces file size by reclaiming unused space in data and log files. This can optimize disk usage, especially in storage-constrained environments. However, it can cause data fragmentation and impact performance. Use commands like DBCC SHRINKDATABASE cautiously in C#.
  • Running .NET Core Application using Docker ContainerAug 13, 2024. Creating a microservice with .NET 8.0 and Docker. It covers installing .NET, setting up a .NET Core API project, creating a Dockerfile, and building and running a Docker image. Learn to verify images, run containers, and explore container contents using Docker commands and Docker Desktop.
  • Running PowerShell Inside Docker ContainerAug 06, 2024. This approach leverages the flexibility of Docker and the powerful scripting capabilities of PowerShell, facilitating cross-platform development, streamlined deployments, and efficient DevOps workflows.
  • CQRS Design Pattern and Its Use CaseAug 05, 2024. 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.
  • T-SQL Script for Purging Tables with Foreign Key ReferencesAug 02, 2024. This article provides a comprehensive T-SQL script for purging tables in SQL Server, including those with foreign key references, ensuring data integrity and correct order of operations. Ideal for SQL Developers, Data Engineers, and DBAs seeking efficient data management solutions.
  • Real-World ADO.NET Use Cases: Case Studies and Best PracticesJul 24, 2024. ADO.NET remains a robust data access technology within the .NET framework, even as newer technologies emerge. Its ability to manage data interactions efficiently makes it suitable for a variety of real-world applications.
  • Handling Exceptions in ADO.NET Best Practices for Error Handling Jul 24, 2024. When working with ADO.NET for data access in .NET applications, effective exception handling is crucial to ensure the stability and reliability of your applications. This article will explore common exceptions in ADO.NET and provide best practices for robust error handling and logging.
  • Performance Optimization in ADO.NET: Tips and TechniquesJul 23, 2024. Optimize ADO.NET performance by leveraging connection pooling to reduce overhead, using efficient command execution strategies such as stored procedures and batch processing, and retrieving data effectively by selecting only necessary columns and implementing paging.
  • LINQ to ADO.NET: Enhancing Data Access with Modern QueryingJul 23, 2024. In the evolving world of .NET, querying databases has traditionally been done using ADO.NET, which provides a robust set of classes for data access. However, the introduction of Language Integrated Query (LINQ) has revolutionized the way developers interact with data.
  • Security Best Practices in ADO.NETJul 23, 2024. ADO.NET is a powerful data access technology in the .NET framework, enabling developers to interact with databases. This article explores best practices for protecting sensitive data, preventing SQL injection, implementing secure authentication and authorization, and securing database connections.
  • Advanced ADO.NET Features for Complex Data and Async OperationsJul 23, 2024. ADO.NET remains essential for database interactions in . NET. Advanced features include handling complex types with SQL Server's UDTs and XML data, managing binary data with VarBinary, and leveraging asynchronous operations for improved performance.
  • Efficient Data Retrieval with ADO.NET SqlDataReader Jul 23, 2024. SqlDataReader in ADO.NET provides fast, forward-only data retrieval from SQL Server databases. It reads data as a stream, minimizing memory usage, and making it ideal for large datasets. Unlike SqlDataAdapter, it offers high performance for read-only scenarios and is efficient in handling big data with minimal overhead.
  • Transactions in ADO.NET: Ensuring Data IntegrityJul 23, 2024. In database management, transactions are essential to ensure data integrity and consistency. A transaction is a sequence of operations performed as a single logical unit of work
  • Connecting to a MySQL Database Over LAN Using SQL WorkbenchJul 22, 2024. Learn how to connect to a MySQL database over a local area network (LAN) using SQL Workbench. This guide covers finding the IP address of the MySQL server, configuring it for remote access, setting up firewall rules, and establishing a connection from a client machine.
  • Using DataAdapters and DataSets in .NETJul 22, 2024. In .NET, working with databases often involves handling disconnected data scenarios where data is fetched, manipulated, and then updated back to the database. Two essential components for managing such scenarios are DataAdapter and DataSet.
  • Working with Stored Procedures in ADO.NETJul 22, 2024. Stored procedures are a powerful feature in database management systems that allow you to encapsulate complex logic and operations on the server side. When using ADO.NET in a .NET application, stored procedures can be leveraged to interact with the database efficiently.
  • Getting Started with ADO.NETJul 22, 2024. ADO.NET (ActiveX Data Objects . NET) is a set of classes in the .NET Framework that provides access to data sources such as SQL Server, Oracle, and other databases. It is a part of the larger .NET ecosystem, enabling developers to interact with data in a structured and efficient manner.
  • Setting Up Your First ADO.NET ProjectJul 22, 2024. ADO.NET is a set of classes that expose data access services for .NET Framework programmers. It provides a rich set of components for creating distributed, data-sharing applications. This guide will walk you through setting up your first ADO.NET project, connecting to a database, and executing simple queries.
  • Understanding ADO.NET Data ProvidersJul 22, 2024. In the realm of .NET application development, ADO.NET (ActiveX Data Objects for .NET) serves as a bridge between your application and various data sources. A key component of ADO.NET is its data providers, which are specialized classes designed to interact with specific types of databases.
  • Working with Connection Objects in ADO.NETJul 22, 2024. ADO.NET is a set of classes that expose data access services for .NET Framework programmers. A primary feature of ADO.NET is the ability to work with disconnected data. However, working directly with databases is often necessary, and this is where connection objects come into play.
  • Executing Commands with ADO.NETJul 22, 2024. Explore how to use ADO.NET’s SqlCommand class for executing SQL queries and stored procedures in .NET applications. This guide covers setting up SqlConnection, using methods like ExecuteNonQuery, ExecuteScalar, and ExecuteReader, and preventing SQL injection with parameterized queries.
  • Implementing CQRS and Event Sourcing with .NET CoreJul 19, 2024. This article explores implementing CQRS (Command Query Responsibility Segregation) and Event Sourcing with .NET Core. It covers the basics of CQRS and Event Sourcing, including commands, queries, and event storage.
  • Wrapper Class vs. Object Composition with UseCaseJul 18, 2024. Explore Wrapper Classes and Object Composition in object-oriented programming. Learn how wrappers adapt interfaces and enhance functionality without altering code, ideal for legacy systems.
  • Comprehensive Guide to Angular CLI CommandsJul 17, 2024. Discover the ultimate resource for mastering Angular CLI commands with our comprehensive guide. Whether you're a beginner or an experienced developer, this guide covers everything from installation and configuration to advanced command usage.
  • Integrating an Online Payment Gateway in ASP.NET using ADO.NETJul 10, 2024. Integrating an online payment gateway in ASP.NET using ADO.NET involves setting up a payment gateway account, creating an HTML form to collect payment details, redirecting to the payment gateway for processing, handling the payment response, and updating the database. Ensure security, validate responses, and test thoroughly.
  • Understanding the -fsSL Command in DockerJun 28, 2024. Discover the meaning and usage of the -fsSL command in Docker, how it enhances automation and simplifies Docker-related tasks, ensuring smooth operations.
  • Sharepoint Framework Property Pane Jun 28, 2024. SharePoint Framework (SPFx) offers a client-side model for developing web parts and pages in SharePoint, leveraging modern web technologies and supporting seamless integration with SharePoint data.
  • Copying Footers Between SharePoint Sites Using PnP PowerShellJun 24, 2024. I've been extensively using SharePoint and the PnP PowerShell module, which simplifies tasks with easy command sets and detailed documentation. Notably, copying a footer between SharePoint sites is straightforward with PnP.
  • Top 50 Linux Interview Questions and AnswersJun 18, 2024. Unlock your potential with "The Ultimate Linux Interview Question and Answer Handbook." This comprehensive guide covers essential Linux topics, from basic commands to advanced system administration and troubleshooting.
  • How To Connect Database in ASP.NET MVC using C# with ADO.NETJun 17, 2024. Learn how to integrate SQL Server with your MVC application, configure connection strings, and perform CRUD operations. Ideal for developers seeking to enhance their data access techniques in ASP.NET.
  • Creating a Web Resource Based on React TypeScript in Dynamics 365Jun 13, 2024. Integrating React and TypeScript with Dynamics 365 enables developers to build responsive and maintainable user interfaces. This approach leverages modern web practices for enhanced performance, reusable components, and seamless integration into Dynamics 365 environments.
  • MongoDB Cheat Sheet: Essential Commands and OperationsJun 04, 2024. The MongoDB Cheat Sheet is your go-to guide for essential commands and operations. Covering installation, setup, CRUD operations, indexing, aggregation, data modeling, and more, it simplifies database management.
  • An Overview and Guide to GitJun 01, 2024. It covers essential concepts, commands, and workflows, providing step-by-step instructions for beginners and best practices for advanced users. Learn how to manage your code efficiently and collaborate seamlessly with Git.
  • SQL Command TypesMay 28, 2024. SQL, or Structured Query Language, is essential for managing data in relational databases (RDBMS). It enables tasks like retrieving, updating, inserting, and deleting data. SQL commands are categorized into DDL, DML, DCL, TCL, and DQL, facilitating comprehensive database management and security.
  • What is Alibaba Cloud Command Line Interface (Alibaba Cloud CLI)May 28, 2024. Alibaba Cloud CLI offers robust features for cloud resource management, allowing users to call the APIs of Alibaba Cloud using command lines, thus eliminating the need to log on to the console.
  • Difference between ADO.NET, ORM and DapperMay 20, 2024. This article explores ADO.NET, ORM, and Dapper in the .NET ecosystem, detailing their history, evolution, and best practices and providing C# code examples for effective data access management.
  • How to Create and Use Local NuGet Package in Dot NetMay 20, 2024. NuGet is the package manager for dot net. Developers can create, share, and consume essential dot net libraries. NuGet client tools provide the ability to produce and consume these libraries as packages. Moreover package increase the code reusability.
  • Dynamic Mapping Database result to Entity TMay 20, 2024. This article provides logic for Mapping the SQL Result to C# Class. This code snippet demonstrates the dynamic mapping of SQL result columns to C# properties, converting SNAKE_CASE SQL column names to PascalCase C# properties using MapToList for DbDataReader to object mapping.
  • Command Query Responsibility Segregation and its EvolutionMay 14, 2024. Command Query Responsibility Segregation (CQRS) separates read and write operations in system architecture, enhancing scalability and performance. This article explores its need, evolution, and implementation in .NET Web API Core with sample code.
  • Primary Key in SQL: Syntax, Usages, and ExampleMay 14, 2024. A primary key in SQL uniquely identifies each record in a database table. It ensures data integrity and efficient data retrieval. Defined using the CREATE TABLE or ALTER TABLE commands, a primary key can be a single column or a composite key.
  • Unlocking the Power of Linux File PermissionsMay 06, 2024. In this article, we will Explore the potency of Linux file permissions, ensuring security and control over system resources. Master chmod, user/group management, and access levels for robust security.
  • Database Connectivity in Visual Studio May 03, 2024. Visual Studio facilitates robust database connectivity through technologies like ADO.NET and Entity Framework. Developers can seamlessly integrate with SQL Server, MySQL, Oracle, and more using connection strings and data source management tools.
  • Becoming Proficient in C# and ASP.NET: A Roadmap to MasteryApr 08, 2024. From traditional ASP.NET Web Forms to the sleek ASP.NET MVC, and from robust backend solutions using ADO.NET and SQL Server to dynamic front-end interactions with jQuery, AJAX, and more, developers have a plethora of tools at their disposal to create powerful web experiences.
  • Seamless Database Integration with C#Mar 26, 2024. Efficiently integrating databases with C# applications is crucial for managing data seamlessly. Explore various approaches like ADO.NET, Entity Framework Core, and Dapper along with best practices for successful integration.
  • Passing Values Between Tasks in Azure DevOps PipelineMar 26, 2024. In this article, we will learn efficient inter-task communication in Azure DevOps pipelines. Discover how to pass values between tasks using the task.setvariable logging command, streamlining your pipeline automation.
  • Quick SQL Refresher Feb 28, 2024. The Quick SQL Refresher provides a concise cheat sheet for SQL, covering essential concepts, keys, commands (DDL, DML, DQL, DCL, TCL), constraints, clauses, T-SQL fundamentals, joins, functions, exception handling, indexes, views, stored procedures, transaction control, triggers, and cursors.
  • Explain about Git and GitHubFeb 01, 2024. Git is a powerful, open-source distributed version control system designed by Linus Torvalds for efficient project management. Developers use Git for version control, tracking code changes, and collaborating. GitHub, a platform utilizing Git, facilitates collaborative coding, project hosting, and version control.
  • Command Line Arguments in C ProgrammingJan 30, 2024. 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 modify a program's behavior, providing flexibility and adaptability without altering the source code.
  • What is Command Pattern in C#? Jan 25, 2024. The Command Pattern, a behavioral design pattern in C#, transforms requests into stand-alone objects, promoting decoupling between sender and receiver. It enhances flexibility, undo/redo capabilities, and ease of command integration.
  • Working with Modern Command Bar Designer in PowerAppsJan 25, 2024. In this article we will discuss about modern command designer and how it is becoming more popular alternative to RibbonWorkBench. We will discuss various Use Cases followed by a demo discussing step by step process for the same.
  • Optimizing ADO.NET Code for Efficient Data Management StrategiesJan 12, 2024. In this article, we will learn about ADO.NET performance with strategic data retrieval techniques. Explore stored procedures, pagination, selective column retrieval, caching, batch processing, optimized data types, and connection pooling for efficient database interactions and responsive user experiences.
  • Docker Swarm: Transforming Container OrchestrationJan 12, 2024. Explore the dynamic world of Docker Swarm, where machines become nodes, managers orchestrate, and containers dance in perfect harmony
  • JWT Authentication Using Refresh Token Series - 1 [Login Feature] In .NET Core 6.0-ADO.NET-SQLJan 10, 2024. In this series of articles, we'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 and code examples for a deeper understanding of the underlying concepts.
  • Mastering PostgreSQL CRUD Operations in .NET 8 with ADO.NETJan 01, 2024. Mastering PostgreSQL CRUD Operations in .NET 8 with ADO.NET: Best Practices and Code Examples
  • Microservices Development Using CQRS Architectural Design Pattern in Microsoft Asp.net Core Web API Dec 28, 2023. The Command Query Responsibility Segregation (CQRS) pattern is an architectural principle that separates the responsibility for handling commands (write operations that change state) from queries (read operations that retrieve state). It advocates having separate models for reading and writing data.Components of CQRS: Command: Represents an action that mutates the system's state.Query: Represents a request for data retrieval without changing the system's state.Command Handler: Responsible for executing commands and updating the system's state.Query Handler: Responsible for handling read requests and returning data in response to queries.Command Model: Contains the logic and rules necessary to process commands and update the data store.Query Model: Optimized for querying and presenting data to users, often involving denormalized or optimized data structures tailored for specific queries.Key Principles: Separation of Concerns: Splitting the responsibilities of reading and writing data helps in maintaining simpler, more focused models for each task.Performance Optimization: Enables independent scaling of read and write operations. The read model can be optimized for query performance without affecting the write model.Flexibility: Allows for different models to be used for reading and writing, which can cater to specific requirements and optimizations for each use case.Complex Domain Logic: Particularly beneficial in domains where read and write logic significantly differ, allowing tailored models for each type of operation.Benefits: Scalability: CQRS enables scaling read and write operations independently, optimizing performance.Flexibility and Optimization: Tailoring models for specific tasks allows for better optimization of the system.Complexity Management: Separating concerns can make the system easier to understand and maintain.
  • Building To Do Application Using RustDec 15, 2023. In this article, we will learn to build a todo application using Rust Programming Language. This comprehensive guide navigates through creating a To-Do application using Rust. It covers Rust installation, setting up the project with Rocket, and building a functional UI for task management.
  • How to Detect Event on Clicks Outside in Angular?Dec 11, 2023. Learn to detect click events outside a component in Angular. Follow step-by-step instructions covering prerequisites, project setup, Bootstrap integration, and directive implementation.
  • Navigating Azure Storage: Essential CLI CommandsNov 29, 2023. Azure CLI unlocks the power of Microsoft Azure Storage. Key commands like create, show, list, update, and delete storage accounts empower efficient cloud storage management. Elevate your Azure journey with these commands.
  • How To Solve Nodemon Command Is Not Recognized In Terminal For Node.js?Oct 17, 2023. This article guides users through Nodemon installation in Node.js and offers solutions for the "Nodemon command is not recognized" error, facilitating streamlined and efficient development with automatic server restarts.
  • Microsoft Kiota Command Line ToolOct 16, 2023. The Microsoft Kiota Command Line Tool is a software utility designed by Microsoft that aids developers in generating code for Microsoft's Kiota API client libraries. It offers a command line interface (CLI) for streamlined code generation, allowing developers to efficiently create client libraries that interact with various Microsoft services and APIs. This tool assists in enhancing productivity by automating the process of generating the necessary code for interacting with the Kiota-based APIs, ultimately expediting the development of robust applications and services in the Microsoft ecosystem.
  • Clean Architecture and Command Pattern in ASP.NET Core API ImplementationOct 16, 2023. Explore a clean and efficient approach to building a robust ASP.NET Core Web API for a Car Company, using Clean Architecture and the Command Pattern. Simplify CRUD operations with a structured and maintainable design.
  • CRUD Operations in ASP.NET Core with 3-Tier Harmony and Command Builder Design Pattern Oct 04, 2023. Command Builder Design Pattern in an ASP.NET Core Web API using a Three-Tier Architecture for CRUD operations. For the sake of this example, let's assume you have a model named CSharpCornerArticle.
  • Useful Git CommandsSep 27, 2023. Mastering Git Your Ultimate Cheat Sheet for Effortless Version Control is a comprehensive reference guide that provides a condensed and quick-access summary of essential Git commands, concepts, and best practices. It aims to empower users with the knowledge and tools to effectively utilize Git for version control, streamline workflows, and enhance collaboration on software development projects. This cheat sheet covers a range of Git functionalities, including repository management, branching, merging, collaboration, resolving conflicts, and more, making Git usage efficient and straightforward for both beginners and experienced developers.
  • Essential Git Commands Every Developer Should KnowSep 23, 2023. Git can also be intimidating and confusing for beginners and even experienced developers. That's why in this article, we will learn some of the essential Git commands that every developer should know and master.
  • Transaction Control Language (TCL) Commands in SQLSep 14, 2023. In this article we will learn about Transaction Control Language (TCL) Commands in SQL.
  • SQL CommandsSep 08, 2023. In SQL Server, various types of SQL commands are essential for managing and querying databases. These include Data Query Language (DQL) for retrieving data, Data Definition Language (DDL) for defining structures, Data Manipulation Language (DML) for data manipulation, and Control Language (CL) for transactions and control. Understanding these SQL command types is crucial for effectively working with SQL Server databases, enabling tasks from creating tables to querying data, ensuring efficient data management and retrieval.
  • Generating Certificate and Private Key FilesAug 24, 2023. Create local certificates with ease using Visual Studio 2017 Developer Command Prompt. Generate certificate and private key files, then install them locally for enhanced security. Simplify your authentication process.
  • Benefits of using MongoDB with ADO.NET in ApplicationsAug 21, 2023. In this article, you will learn what are the benefits of using MongoDB with ADO.NET in applications.
  • Azure Virtual MachinesAug 16, 2023. Unlock Cloud Potential with Azure Virtual Machines. Explore deployment, management, scalability, and versatile use cases. Achieve security, efficiency, and innovation as Azure VMs reshape cloud computing's future.
  • The Convergence of Voice Commands and Generative AI with Other technologiesAug 02, 2023. The Convergence of Voice Commands and Generative AI with Other technologies
  • Boosting Your Productivity with .NET Core CLI CommandsJul 31, 2023. Boost productivity with Visual Studio's command-line interface (CLI) for .NET Core. Learn essential commands for creating projects, running applications, managing dependencies, and more. Streamline development with CLI power.
  • Docker CommandsJul 10, 2023. Docker Commands
  • How to Create a CLI in Go?Jun 15, 2023. The article describes how we can create easy to use CLI in Go using the cobra package.
  • WebdriverIO Functions and CommandsJun 12, 2023.
  • A Comprehensive Guide to .NET Development for BeginnersJun 12, 2023. Discover the essentials of .NET development in this comprehensive guide. Learn about the .NET Framework, C# programming, ASP.NET web development, ADO.NET for databases, building desktop applications, and the innovative ASP.NET Core. Ideal for beginners looking to start their journey in .NET development.
  • Execute DOS Command in Desktop flow using Microsoft Power AutomateJun 09, 2023. Reading this article, you can learn how to Execute the DOS Command using Run Dos command actions with Desktop flow in Microsoft Power Automate.
  • Simplify Your Git Workflow: Introducing Git-ChatGPT, a Command Line Tool Empowered by ChatGPTMay 08, 2023. AI, ChatGPT, OpenAI API, git, git bash, C#, dotnet core