Resources  
  • Create Service Connections in Azure DevOpsMar 28, 2024. Learn how to set up service connections in Azure DevOps for seamless integration with Power Platform. Follow step-by-step instructions to configure essential details like Server URL, Tenant ID, Application ID, and Client Secret. Grant access permissions and save your service connection for successful integration.
  • ASP.NET 8 - Multilingual Application with Single Resx FileMar 27, 2024. Discover how to create a multilingual web application in ASP.NET 8 using a single Resx file. This tutorial explores efficient localization techniques, enabling your site to support multiple languages seamlessly.
  • How To Add Jetpack Compose In Existing Kotlin ProjectMar 27, 2024. This article guides you through the step-by-step process of integrating Jetpack Compose into your existing Kotlin Android project.
  • Single-Dimensional, Two-Dimensional, and Multidimensional Arrays in C#Mar 26, 2024. Arrays are fundamental data structures in programming languages, including C#. In this article, we'll explore single-dimensional, two-dimensional, and multidimensional arrays in C#, understand their differences, and learn how to work with them effectively.
  • Folder Structure of .NET ProjectsMar 20, 2024. The folder structure of a .NET project is fundamental for developers navigating the vast ecosystem of .NET development. Whether you're building a console application or a web application, having a clear understanding of the folder structure is organizing and managing your code effectively.
  • Dynamic Redirect URL/ Wildcard URL in Azure App RegistrationMar 15, 2024. Learn how to configure dynamic redirect URLs or wildcard URLs in Azure App Registration for enhanced flexibility and scalability. By leveraging this feature, you can dynamically handle various callback URLs, accommodating different environments or scenarios without manual intervention.
  • Implementing AI and ML in C# ProjectsMar 14, 2024. Explore the integration of AI and ML into C# projects with this beginner-friendly guide. Power of ML.NET, TensorFlow.NET, and Accord.NET to implement machine learning algorithms in your C# applications. From simple linear regression to sentiment analysis, discover the basics of AI and ML in C# programming.
  • Misconceptions About the Four LINQ methodsMar 09, 2024. Misconceptions about the four LINQ methods. Single(), SingleOrDefault(), First(), and FirstOrDefault(). This article addresses misconceptions surrounding four LINQ methods—Single(), SingleOrDefault(), First(), and FirstOrDefault(). Clarifying differences and potential pitfalls helps prevent null references and invalid operator exceptions in code.
  • Implement Global Exception Handling Middleware in .NET ProjectMar 07, 2024. Implementing custom global exception handling in your project involves setting up a system to manage errors across your application. By defining exception classes and configuring error logging, you can ensure smoother error handling and improve the reliability of your software.
  • MSAL for Vanilla JS SPA: Get JWT Access & ID TokensMar 01, 2024. This document provides an overview of Microsoft Authentication Library (MSAL) and its role in implementing secure authentication in Vanilla JavaScript Single Page Applications (SPAs). It discusses the significance of MSAL in obtaining JWT (JSON Web Token) Access Tokens and ID Tokens from Microsoft identity services.
  • How to Integrate Twilio in C# .NET MVC Project to Send SMS?Feb 26, 2024. In this article, we will learn how to integrate Twilio in a C# .NET MVC project to send SMS. Learn to enhance user engagement by integrating Twilio into a C# MVC project. Follow the steps from setting up a Twilio account to sending SMS, creating a seamless user interaction experience.
  • What Are Single File Components in Vue.jsFeb 22, 2024. Single File Components (SFCs) in Vue.js consolidate templates, scripts, and styles in one file, enhancing organization. The example demonstrates creating and using a TodoItem component for a clear structure and efficient development.
  • The MoSCoW Prioritisation Method for Software Development ProjectFeb 21, 2024. Explore the MoSCoW Prioritisation Method for Software Development Projects authored by Ziggy Rafiq. Learn how this technique categorizes requirements into Must-have, Should-have, Could-have, and Won't-have, optimizing decision-making and resource allocation for impactful product delivery
  • Azure DevOps: Create Organization, Project, Commit .NET SolutionFeb 20, 2024. Create Azure DevOps Organization & Azure DevOps Project, Commit .NET Solution Project into Azure DevOps. The article provides a detailed guide on establishing an Azure DevOps Organization, creating a project, and committing to a .NET Solution Project.
  • Securing Your .NET Projects: Simple Strategies and Real ExamplesFeb 18, 2024. In today's digital world, keeping our software safe from cyber threats is super important. For developers working with .NET projects, it's not just a good idea but really necessary to make sure our apps are strong against potential attacks. Luckily, there are lots of tools and tricks within the .NET world to help us do this.
  • Fortifying your .NET ProjectFeb 16, 2024. This article explores essential strategies to enhance the security of .NET projects, addressing common threats like SQL injection and XSS. It covers input validation, parameterized queries, authentication, secure communication, XSS prevention, and dependency management for robust application security.
  • 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.
  • Five ideas for building an AI startup as an engineer!Jan 27, 2024. Here I present 5 ideas to get you thinking about how to use AI to start your own business!
  • Top Things You Need to Consider When Starting a New Company Using AI in 2024Jan 20, 2024. As we enter 2024, the AI industry is brimming with potential for startups and entrepreneurs. In this article, I'll share the top things you need to consider when starting a new AI focused company.
  • Number Guessing Game in PythonJan 19, 2024. In this article, you will learn how to write a Guess-the-number game in Python using a Google Colab. You will learn three different ways to implement it.
  • ChatGPT and Startups: Leveraging Smart Strategies for SuccessJan 19, 2024. The startup landscape has been captivated by the emergence of Large Language Models (LLMs) such as ChatGPT. However, relying exclusively on AI for core startup functionalities presents significant technical and strategic challenges that could imperil its viability - read along to find out the fine balance you need to use to be successful!
  • Integrating Google Single Sign-On with AngularJan 17, 2024. Angular with Google SSO refers to the integration of Google Single Sign-On (SSO) authentication within an Angular web application. Single Sign-On is a method that allows users to log in to multiple applications or services with a single set of credentials, eliminating the need to remember separate usernames and passwords for each application.
  • Single Responsibility PrincipleJan 10, 2024. The Single Responsibility Principle emphasizes that a class should have a single reason to change, focusing on one task. This ensures cleaner, smaller classes with well-defined responsibilities and improved maintainability.
  • Creating Unit Test project for NodaTimeJan 09, 2024. Creating a NodaTime classlibrary project and adding Unit tests for that classlibrary. The creation of a NodaTime ClassLibrary project for .NET applications, emphasizing the importance of unit testing with xUnit. It provides step-by-step instructions, code snippets, and explanations for implementing and testing NodaTime functionalities, promoting robust and maintainable software development.
  • Create a Django Project Crash to BuildJan 07, 2024. Create a Django app in simple steps: Install Django, create a project and app, define models, apply migrations, set up views and templates, configure URLs, and run the development server.
  • How to Create a Vue Project?Jan 06, 2024. Creating your first Vue.js project doesn’t have to be daunting. This step-by-step guide walks you through the process, starting from setting up the development environment to running your Vue.js application. Learn how to initiate a Vue.js project using npm, make essential choices during project creation, install dependencies, and launch your project locally.
  • Implementing CORS in Your ASP.NET Core ProjectJan 04, 2024. Enable secure cross-origin communication in your ASP.NET Core app with this step-by-step guide on implementing Cross-Origin Resource Sharing (CORS) using middleware and policies. Enhance security and control access to your resources effectively.
  • A Guide for Building a .NET Project with Clean ArchitectureJan 02, 2024. In this article we will take a closer look at the foundational thoughts and factors influencing our project creation. Clean Architecture emphasizes the separation of concerns and dependency inversion to create a highly modular and testable codebase.
  • Blazor and .NET 8 QuickGrid Implementation with CSV Data ExportDec 22, 2023. Article for using QuickGrid in Blazor and .NET 8 and exporting data using CSV Helper as a supporting library. the simplicity and efficiency of QuickGrid, a razor component for displaying tabular data in Blazor Applications. Officially backed by .NET 8, QuickGrid supports in-memory and EF-Core IQueryable remote data and offers built-in column types. Explore its features, easy implementation, and styling options, ensuring a seamless user experience. Follow a comprehensive walkthrough and customization guide incorporating filtering, pagination, and virtualization.
  • Creating a Standalone Project Using NX With Module FederationDec 21, 2023. NX is a wonderful framework, of which not many Angular/React developers are aware. Today I want to write an introduction about NX and its capabilities
  • How to Create Sample Maven Project by Adding TestNG Nov 28, 2023. Learn how to create a Maven project and add TestNG dependencies in Eclipse. Follow steps like configuring Maven settings, specifying project coordinates, and adding dependencies for efficient project development and execution.
  • How to build a Sentiment Analysis Chatbot using Python?Nov 18, 2023. In this article, we will explore the creation of a simple Sentiment Analysis Chatbot using Python and the Tkinter GUI library. Sentiment analysis involves determining the sentiment (positive, negative, or neutral) expressed in a piece of text. Our chatbot will leverage the TextBlob library for sentiment analysis and Tkinter for the graphical user interface.
  • Identity API Endpoints based Authentication and Authorization in .NET 8Nov 15, 2023. The second step in adding token-based authentication to ASP.NET Core Identity is to introduce the Identity API endpoints. Basically, this is an API version of the actions that you can perform with ASP.NET Core Identity through the classic web UI. Once you enable the Identity API endpoints, you will get endpoints like /register, /login, /forgotPassword, confirmEmail, etc.
  • Different Types of Comments in C# and Their UsagesNov 06, 2023. This article will explain the different types of comments in C# and why should we use comments.
  • How To Use Notion Efficiently For Project Management?Nov 02, 2023. Notion is a digital workplace that helps you manage all of the chores and work for your business.
  • OpenID Connect and OAuth 2.0 CognizanceNov 01, 2023. An overview of OpenConnect and OAuth and its usage in the digital world. It introduces a standardized method for verifying user identities, allowing users to authenticate across different sites or applications without the need to create new credentials for each portal.
  • How We Can Add Setup Project in Window Service?Oct 27, 2023. In this article, we will see how we can add a Windows services installer. You can combine your service with any required files, registry entries, and configurations into a single installation package using this installer. The setup project makes it easier to deploy your Windows service.
  • Single Responsibility Principle (SRP) in .NET CoreOct 23, 2023. As a developer with one year of experience, you've likely come across the SOLID principles, a set of five principles that promote clean, maintainable, and scalable code. Among these principles, the Single Responsibility Principle (SRP) is fundamental and worth mastering. In this article, we'll explain SRP in a beginner-friendly manner and provide a straightforward .NET Core example to illustrate its significance.
  • ASP.NET DevOps Starter Project SetupOct 23, 2023. Setting up a sample ASP.NET project using DevOps Starter Project. Learn how to kickstart an ASP.NET project with DevOps Starter in Azure. Sign in, create a DevOps Starter project, configure settings, deploy to Azure, and set up continuous integration.
  • Effective QA Strategy for Software SuccessOct 19, 2023. Crafting a Kickass QA Strategy A Recipe for Software Success" is a title that suggests the development of a comprehensive and effective Quality Assurance (QA) strategy to ensure the success of software projects. In this approach, "kickass" implies a robust and highly efficient strategy. A well-structured QA strategy is vital for identifying and addressing issues, ensuring the quality of the software, and ultimately achieving success in terms of user satisfaction, reduced errors, and meeting project goals. This title highlights the importance of a well-crafted QA strategy as a key ingredient in the recipe for achieving software project success.
  • Real-Time Insights with Azure Stream Analytics in IoT ProjectsSep 25, 2023. Azure Stream Analytics is a Microsoft Azure service for real-time data stream processing. It enables the ingestion, processing, and analysis of streaming data from various sources, such as IoT devices, sensors, and social media. By continuously processing data as it arrives, Stream Analytics provides immediate insights, facilitating quick decision-making and actions.
  • Running Python Code Inside .NET with IronPythonSep 21, 2023. Learn how to integrate Python seamlessly with .NET applications using IronPython. This open-source implementation of Python is designed to run on the .NET framework, offering access to Python's libraries and modules within the .NET ecosystem.
  • GraphQL in Next.jsSep 15, 2023. Here we will give the description how to setup GraphQL with Next.js.
  • Azure Functions Proxies: URL Rewriting and API CompositionSep 12, 2023. Azure Functions Proxies are a powerful feature that allows you to define proxies to control the behavior of HTTP requests and responses to and from your Azure Functions. You can use them for URL rewriting, request/response transformation, and API composition. Here are the steps to use Azure Functions Proxies in an ASP.NET Core application:
  • Efficient PDF Generation in ASP.NET Core Web API Using DinkToPdfSep 09, 2023. Generating PDF files in an ASP.NET Core Web API is a common requirement, and there are several libraries available to help with this task. In this example, I'll show you how to generate PDF files using the popular library called DinkToPdf, which is a .NET wrapper for the C library DinkToPdf. We'll also follow best practices for structuring your ASP.NET Core Web API project.
  • Boosting IoT Projects with Cloud Storage and Azure IoTSep 01, 2023. In the era of IoT-driven digital transformation, efficient data storage is paramount. Cloud storage, particularly Microsoft Azure IoT's solution, empowers IoT projects with scalability, accessibility, reliability, analytics, and cost-efficiency.
  • Access .NET Projects via LANAug 30, 2023. How you can access .NET project through LAN. Unlock the potential of LAN access for your .NET project. Discover how to create a web application, configure endpoints, and seamlessly access it from any device on the same network.
  • Create and Run .Net project in UbuntuAug 27, 2023. In this article we will learn about creating and executing .Net Project in Ubuntu OS
  • How to use Telerik Private NuGet Package in Visual Studio 2022 and .NET 7 ProjectAug 25, 2023. NuGet is the most useful and essential tool for modern software development platforms via which developers can create, share and consume reusable code. NuGet is a package manager for the software development platform that simplifies the process of adding and managing libraries and dependencies in your projects. this article explains how we can use private NuGet package with Visual Studio 2022 and .NET 7 project.
  • Drawing the Indian Flag Using Python: A Creative Coding ProjectAug 25, 2023. This article discusses a creative coding project that involves programming the drawing of the Indian flag using Python. It provides a step-by-step guide and code explanation to help readers recreate the flag using Python's graphics capabilities.The article begins by introducing the concept of creative coding and its application in creating visual artworks with the help of programming languages like Python. It then dives into the step-by-step process of drawing the Indian flag.
  • What is Google Gemini, AI Project by Google?Aug 23, 2023. Google Gemini is an artificial intelligence e (AI) project from the Google AI team. It is a large language model (LLM) that is expected to be more powerful and versatile than previous LLMs.
  • Deploy Angular Project On DomainAug 22, 2023. In this article, I told you how to run a project on the domain. It appears you're requesting a description, but you haven't specified what you'd like a description of. Could you please provide more context or clarify the subject you're referring to? Whether it's a technology, concept, process, or something else, providing additional details will help me provide you with an accurate and relevant description.
  • Project Structure of .NET MAUI ApplicationAug 14, 2023. In this article, we will understand the project structure of a .Net MAUI Application.
  • Resolving CORS Origin Using Custom Middle ware in ASP.Net Web API Aug 01, 2023. In ASP.NET Core, middleware is a component or piece of software that sits in the request-response pipeline. Middleware is used to handle or modify incoming HTTP requests and outgoing HTTP responses. It provides a way to add custom logic and behaviors to the application's processing flow.
  • What is Non-Functional Requirements?Jul 31, 2023. A Non-Functional Requirement (NFR) is a type of requirement in software and system development that specifies criteria for the performance, behavior, and qualities of the system, rather than defining specific features or functionalities. Unlike Functional Requirements, which describe what the system should do, Non-Functional Requirements describe how the system should perform or behave.
  • Node.js RESTful API Project with Express, MongoDB, and PostmanJul 21, 2023. How to perform CRUD operations using Node-js, Express, Postman, and MongoDB
  • How to Create a Project in Node.js?Jul 12, 2023. In this article, we've created a basic login form and user authentication system using Node.js.
  • Exploring SVG, Canvas, and WebGL for Optimal Web Project GraphicsJul 12, 2023. Exploring SVG, Canvas, and WebGL: Choosing the Right Graphics Technology for Web Projects Discover the strengths of SVG, Canvas, and WebGL and learn how to select the ideal technology for your web projects based on graphic complexity, interactivity, performance, and accessibility.
  • How To Add Authentication In ASP.NET Core 6 MVC Project Using Identity?Jul 11, 2023. In this article, We will be learning how to add authentication in ASP.NET 6 Using Identity service.
  • Set Up The Node Environment and Run a Simple Node Server ProjectJul 03, 2023. Set Up The Node Environment and Run a Simple Node Server Project With Express framework Step by step
  • How to Select the Software Model for the Software projectJun 29, 2023. Every Software model provides the software development cycle that helps us to efficient and effective development. By using the Software development process model, we can get the requirements to form the customer very effectively. The software process model provides an effective way of requirement management. The software Process model defines the product business modeling. It provides the testing environment throughout the development cycle. It provides the complete details of the project by documenting all the processes during development. Selecting the software product is a challenging task in the software development process. Select the process model according to the nature of the software product given below we will discuss how can we select the right software process model in the right way.
  • Next Gen Computer Vision Capabilities with Project Florence Foundation ModelJun 28, 2023. This article describes about the Project Florence and Vision Studio capabilities.
  • How to Structure a CLI project in Go?Jun 19, 2023. The article talks about how one must structure their CLI projects in Go.
  • How to Send Data From Parent Component to Child Component in Vue.js May 29, 2023.
  • How to Generate a Standalone Executable File from C# Project in Visual Studio 2022May 29, 2023. In this article, we will explore the process of generating a standalone executable file from a C# project in Visual Studio 2022. A standalone executable file allows you to distribute your application to end users without the need for them to have the .NET Framework or any other dependencies installed on their machines.
  • WebAPI Unit Testing with MSTest Project in .Net 7May 03, 2023. Today I will create the ASP.Net Web API in .Net 7 and I will test module with MSTest Unit Testing Project.
  • What’s the Difference Between SCSS and Sass and How to Use it in Your ProjectMay 03, 2023. What’s the difference between SCSS and Sass and how to use it in your project to make it more faster than define css
  • How to Use C# 12's Source Generators to Improve Performance and EfficiencyApr 18, 2023. How to Use C# 12's Source Generators to Improve Performance and Efficiency
  • Azure AD Connect Single Sign OnApr 06, 2023. In this article, you will learn about Azure AD Connect Single Sign On.
  • Debug .NET Core Project In Mobile Or Tablet Using Dev TunnelsMar 10, 2023. In this article we will explore the new feature of Microsoft Visual Studio 2022 which allows you to test your Web Application on other PC, Mobile or Tablets while you are debugging your project. This feature is called Dev Tunnels.
  • Project Loom - A Preview Feature Of Java 19Mar 09, 2023. In this article, you will learn about preview feature of Java 19 i.e about Project Loom.
  • Create A New Console Project In Visual Studio CodeMar 06, 2023. In this article, you will learn how to create a new C# Console project using Visual Studio Code using command prompt.
  • How To Project Camera To Web Browser Using WebRTCFeb 27, 2023. In this tutorial, we'll understand how we can project Camera feed to your web browser using WebRTC.
  • Auto Testing .Net Core API ProjectFeb 22, 2023. To automate testing of a .NET Core API project, you can use a testing framework such as NUnit or xUnit, which are popular for .NET Core projects.
  • Learn Flutter In 15 Days - Day OneJan 23, 2023. In this article, you will learn what is flutter and how we can install flutter in android studio.
  • Setup Selenium Test Automation Project Using C#Jan 12, 2023. In this article, you will learn how to setup test automation Project using Selenium C#.
  • Project Structure Of Blazor WebAssembly Project In ASP.NET Core 7.0Jan 08, 2023. In this article, you will learn about Project Structure of Blazor WebAssembly Project in ASP.NET Core 7.0.
  • Project Structure Of Blazor In ASP.NET Core Jan 06, 2023. In this article, you will learn about project structure of Blazor in ASP.NET Core.
  • How To Setup A Express.js ProjectJan 05, 2023. In this step-by-step guide, you’ll learn to set up your Express.js development environment.
  • How To Integrate Signature Pad Into The Blazor ProjectDec 26, 2022. This article explains how to integrate the signature pad into the Blazor project.
  • How To Use ClickUp Efficiently For Project Management?Dec 17, 2022. ClickUp is a flexible project management application that can be used for a variety of tasks, including team management and goal monitoring.
  • How To Create Blazor WebAssembly Project In ASP.NET Core 7.0Dec 14, 2022. In this article, you will learn how to create Blazor WebAssembly project in ASP.NET Core 7.0.
  • Post Multiple File And Data With The Use Of Single Model API Call In .NET Core With AngularDec 07, 2022. In this article, you will learn how to post multiple file and data with the use of single model Api call in .Net Core with Angular Application.
  • Difference Between Single Vs SingleOrDefault And First Vs FirstOrDefaultNov 28, 2022. In this article, you will learn about the Difference Between Single Vs SingleOrDefault And First Vs FirstOrDefault.
  • How To Convert An MVC Project Into A Blazor Application ProjectNov 23, 2022. In this article, you will learn how to convert an MVC application into a Blazor application.
  • Single Sign-On Using ASP.NET MVC And ASP.NET CoreNov 17, 2022. What is single sign-on (SSO)? Users must authenticate themselves to access pages protected by a web application, and if a user accesses multiple web applications, they must be authenticated. You must log in to each application separately.
  • React And .NET Core 6.0 Web API Sample Project with DockerNov 11, 2022. This article will explain the CRUD (Create, Read, Update and Delete) operations in ASP.NET Core 6.0 WEP API using Entity Framework Core Code First approach.
  • Adding Blazor To Existing ASP.Net Core ProjectNov 10, 2022. Add blazor UI and components into any existing asp.net core or mvc project. Its very simple to use and enjoy rich layout with c# code mixed with html.
  • Setup Selenium Test Automation Project Using JavaNov 08, 2022. In this article, we will look at how to setup selenium test automation project using java.
  • Set Up Webdriver IO Test Automation ProjectOct 31, 2022. In this article, you will learn how to set up Webdriver IO Test Automation Project.
  • Set Up Cypress ProjectOct 26, 2022. In this article, you will learn how to Set Up Cypress Project.
  • Merge Multiple Word Files Into Single PDFOct 21, 2022. In this article, you will see how to merge multiple word files into a single pdf using Itextsharp in c#.
  • .NET Core API And React In A Single SolutionOct 18, 2022. In this article, you will learn about .NET Core API And React In A Single Solution.
  • Setup Playwright Automation ProjectOct 18, 2022. In this article, you will learn about the setup playwright automation project.
  • Writing Tests In Playwright Test Automation ProjectOct 18, 2022. In this article, you will learn how to write tests in playwright Test Automation Project.
  • Upload Single And Multiple Files Using The .NET Core 6 Web APIOct 03, 2022. In this article, you willl learn how to upload single and multiple files using the .NET Core 6 Web API.
  • Update Angular For Environment And ProjectOct 03, 2022. This article is to discuss how to update Angular for both environment or Project.
  • The Single Responsibility Principle You Don't KnowSep 02, 2022. In this article, you will learn about the single responsibility principle you don't know.
  • Git - Multiple Visual Studio Solutions In A Single Git RepositoryAug 16, 2022. This article will show how to create a single Git repository that contains multiple VS solutions.
  • First Flutter Project😁Aug 12, 2022. In this article, you will learn about the First Flutter Project.

About Single-startup-project

NA

OUR TRAINING