Resources  
  • .NET core MAUI with SQLite Database Login Page example May 24, 2025. Learn to build a basic MAUI app with SQLite integration, featuring login and registration pages. This article includes creating a SQLiteHelper class and implementing database logic in Visual Studio 2022.
  • Prompt Security in AI: Why a Validation Layer is Necessary for Every CompanyMay 23, 2025. Prompt Validation Layers (PVLs) secure AI systems by filtering sensitive data, enforcing compliance, and mitigating risks in prompts, making them essential infrastructure for safe, scalable, and responsible enterprise AI deployment.
  • How to Make Power Pages Form Fields Mandatory or Optional Using jQueryMay 22, 2025. In this article, we will learn how to use jQuery to dynamically set Power Pages form fields as mandatory or optional.
  • C# 13: Partial Properties and Indexers SimplifiedMay 05, 2025. C# 13 introduces partial properties and indexers, enabling cleaner separation of logic in partial classes. This boosts maintainability, avoids hacks, and simplifies working with generated code and tools like EF Core.
  • Validations with DataAnnotations and User Creation [GamesCatalog] 19Apr 29, 2025. We aim to create a mobile app and its backend using C# and .NET. We will use the IGDB game review API: https://api-docs.igdb.com/#examplesWith it, we can build a mobile game catalog app and store our reviews.
  • RDP to Azure VM: Easy Setup and ConfigurationApr 25, 2025. Learn how to easily set up and configure RDP (Remote Desktop Protocol) to connect to your Azure Virtual Machine.
  • Implementing Discord Social Login in PythonApr 24, 2025. Implement Discord social login in a Flask app using OAuth2. Authenticate users, fetch profile data, and manage tokens securely with Python, requests-oauthlib, and environment variables. Includes Swagger API docs and avatar URL support.
  • Time Based OTP - Setup and ValidationApr 14, 2025. A Time-Based One-Time Password (TOTP) is a two-factor authentication (2FA) method that generates a password that is valid only for a short period, typically 30 seconds. It is commonly used in conjunction with other forms of authentication, such as a username and password, to provide an extra layer of security.
  • Building Your First API with FlaskApr 02, 2025. Learn how to build a simple student management API using Flask in Python. This guide covers CRUD operations (GET, POST, PUT, DELETE), API endpoints, JSON responses, and testing with Postman for a hands-on learning experience.
  • Build Responsible AI with Amazon Bedrock Guardrails and .NETMar 18, 2025. In this article, you will learn to implement the Amazon Bedrock ApplyGuardrail API in a .NET console application to validate content and ensure compliance with responsible AI policies.
  • Automating AI Model Testing & Validation with Azure ML PipelinesMar 14, 2025. Automating AI model testing and validation with Azure ML Pipelines streamlines the ML workflow, ensuring accuracy and reliability. This approach enables automated data preprocessing, model training, evaluation, and deployment.
  • How to Customize SharePoint Out-of-the-Box List FormsMar 14, 2025. Customizing SharePoint forms with Power Apps enhances user experience by adding headers, changing layouts, and applying branding. It improves functionality and flexibility but may require maintenance and a learning curve for users.
  • Setting Up SSH Login and Post-Login Banners in LinuxFeb 24, 2025. This article provides a step-by-step guide to setting up SSH banners in Linux, including pre-login and post-login banners. It covers configuration changes, testing, and troubleshooting to enhance security awareness and system communication.
  • Building a Number Guessing Game in JavaFeb 10, 2025. Learn how to create a number guessing game in Java. This beginner-friendly project covers random number generation, user input handling, loops, and conditionals, with enhancements like difficulty levels and input validation.
  • Learn Quantifier Operations in LINQ Jan 21, 2025. Quantifier operations in LINQ simplify logical evaluations of collections using methods like `Any`, `All`, and `Contains`. They enhance readability, reduce boilerplate, and support efficient data validation and filtering.
  • Implement FluentValidation in a .NET Web APIDec 20, 2024. Learn how to implement data validation in a .NET Web API using FluentValidation. Explore creating validation rules, handling nested objects, custom validations, and conditional logic. Customize error messages for user-friendly responses.
  • Customized Authentication Filters in ASP.MVC Core 6Dec 04, 2024. Custom authentication filters in ASP.NET Core 6 allow you to implement personalized authentication logic. You can create custom attributes, middleware, or policy-based authorization to manage user access based on roles, claims, or tokens.
  • How to perform CRUD Operations in Power AppsNov 10, 2024. Create a student management app in Power Apps with CRUD functionality—Create, Read, Update, and Delete—for efficient data handling. This app connects to a SharePoint list, allowing users to add, view, edit, and delete student records.
  • How to Resolve Error Code Caa50021 in Microsoft 365 App LoginOct 25, 2024. In this article, we will learn troubleshooting steps to restore login access, including checking network settings, clearing the cache, and verifying account permissions to resolve the issue quickly.
  • User Login page Example in android studio using java Oct 25, 2024. We’ll walk through setting up a simple login screen with input fields for username and password, integrating basic authentication, and handling login actions. Perfect for beginners in Android development.
  • Validation of Complex Objects in Multi-Lingual Environment Using DynamicVNET With ASP.NET CoreOct 14, 2024. DynamicVNET is a lightweight, rule-based validation library for .NET applications, designed to validate POCOs while adhering to the Single Responsibility Principle (SRP). It integrates seamlessly with ASP.NET Core, enabling flexible and dynamic validation for API requests with minimal configuration.
  • Node.js App with User Authentication and Docker DeploymentSep 22, 2024. Learn how to create a Node.js app with registration, login, and a dashboard. This guide covers MongoDB integration and Docker deployment for efficient web development.
  • Preventing XSS Attacks in ASP.NET Core Web APISep 08, 2024. Cross-site scripting (XSS) is a common web application vulnerability where malicious scripts are injected and executed in a user's browser. To prevent XSS in ASP.NET Core Web APIs, techniques like input validation, output encoding, and sanitizing user input can safeguard against potential attacks.
  • Working with Form Objects in JavaScriptAug 28, 2024. This HTML document features a user input form that collects first name, last name, email address, and comments. JavaScript functions validate these inputs to ensure fields aren't blank and the email is properly formatted. Valid data is displayed in a new window for user review before final submission.
  • Implement LDAP Login Authentication API in Java with Spring BootAug 28, 2024. This guide details creating an LDAP authentication API using Java and Spring Boot. It covers dependency setup, LDAP server configuration, and implementing a REST controller for user authentication. The solution includes secure credential handling and best practices for securing the API in production.
  • Centralizing String Utility Functions in JavaAug 27, 2024. This article explains how to consolidate common string utility functions in Java by creating a utility class like StringUtils. It covers methods for checking if a string contains only alphanumeric characters with underscores and if a string consists solely of letters, improving code organization and reusability.
  • Creating a Custom Date Picker in jQuery with ValidationAug 13, 2024. This article demonstrates how to create a custom date picker in jQuery with validation. It covers setting up HTML text boxes for date input, initializing jQuery Datepicker with date range constraints, and storing selected dates in hidden fields.
  • Implementing OAuth Authentication in Next.jsAug 07, 2024. OAuth allows users to log in via third-party providers like Google and GitHub. Here’s a streamlined guide to integrating OAuth with NextAuth.js in your Next.js application.
  • Detailed explanation of SQL Server Triggers and its AdvantagesAug 06, 2024. SQL Server triggers are automated stored procedures that execute in response to specific database events such as INSERT, UPDATE, or DELETE (DML) and CREATE, ALTER, or DROP (DDL). They enforce business rules, maintain referential integrity, and log changes, ensuring data consistency and centralized logic.
  • How to Handling File Uploads in Next.js?Aug 02, 2024. Handling file uploads in Next.js involves creating an API endpoint to receive and process the files and a client-side component to manage file selection and submission. This guide provides a comprehensive approach to implementing file uploads in a Next.js application.
  • Essential Regular Expressions for Web DevelopmentJul 31, 2024. Learn how to use regex for effective input filtering, text parsing, and string manipulation in both front-end and back-end environments. Master these techniques to build robust web applications.
  • Mask an Aadhar Number into Blocks of 4 Digits EachJul 30, 2024. This C# code demonstrates how to mask sensitive numbers, like Aadhar or account numbers. It validates input length, uses StringBuilder to format Aadhar numbers with spaces, and shows account number masking via substring, regex, and string formatting.
  • Implementing Form Validation with jQueryJul 30, 2024. Discover how to implement form validation using jQuery, a powerful JavaScript library. This guide covers essential techniques to ensure user input accuracy, enhance user experience, and prevent errors.
  • How to Use JWSHMAC in ASP.NET Web ApplicationJul 29, 2024. Learn how to implement JWSHMAC in an ASP.NET web application to secure JSON data using HMAC. This guide covers installing the JWT NuGet package, creating a JWT helper class for token generation and validation, and configuring authentication middleware.
  • 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.
  • Validating Input and Forms in AngularJSJul 23, 2024. Form validation is crucial for data integrity in web applications. This article demonstrates AngularJS form validation with a member registration example, covering HTML structure, controller logic, and service implementation.
  • A Fix to SQL Server Error 18456 - Login FailedJul 13, 2024. This article is to discuss A Fix to SQL Server Error 18456 - Login Failed.
  • Before Business Rules in ServiceNow: Scenarios, Scripts, and Best PracticesJul 12, 2024. Learn about ServiceNow business rules and their importance in data validation and integrity. Explore real-time use cases like incident priority determination, preventing unauthorized modifications, dynamic field calculation, and error handling. Enhance processes with efficient scripts, logging, and thorough testing..
  • PowerApps Rating Control Total and Average Ratings ValidationsJul 05, 2024. Rating is one of the most common features in the social sites and for any of the interactive requirements by users. While I was developing rating, I realized, there are lots of validation required in order to capture correct ratings.
  • Custom Annotations and Validation in Spring BootJul 04, 2024. Explore how to enhance Spring Boot applications by creating and using custom annotations for validation. Learn to implement robust validation logic using Hibernate Validator and integrate custom validators for precise data validation in forms and REST APIs.
  • AngularJS: Numbers Text Validation and cbTooltip in ASP.NETJul 04, 2024. "In AngularJs applications, custom directives like allowOnlyNumber and allowOnlyText ensure input validation for numeric and text data, enhancing user interaction. Implementing cbTooltip with Bootstrap enriches UX by providing tooltips.
  • Create Different Values in Same Dropdown Control in PowerAppsJul 03, 2024. Learn to customize dropdown values in PowerApps based on form requirements. Explore methods for different forms requestor and approver using single-line text or choice columns. Ensure data integrity and usability with dynamic dropdowns tailored to user roles and project phases.
  • Creating a User Login System with SQL Server Stored ProceduresJul 02, 2024. Implementing secure user authentication in SQL Server involves creating a UsersDetails table for storing credentials and developing a LoginUser stored procedure. This procedure validates user inputs against stored data, ensuring robust login functionality for applications.
  • Building a Basic Login Form with Angular and HttpClientJul 01, 2024. Learn to build a secure login form in Angular using HttpClient for HTTP requests. This tutorial covers creating a TypeScript component, handling HTTP POST requests to a backend API, and integrating with an HTML template.
  • Accessing Multiple Instances of the Same Field in Dynamics 365Jun 30, 2024. When working with forms in Dynamics 365, fields may appear in multiple places. By default, Xrm.Page.getControl("fieldname") returns the first instance of a field. To access other instances, use the control collection and specify the index.
  • 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.
  • Synchronizing Threads with AutoResetEvent in C# .NETJun 23, 2024. In multithreaded C# applications, synchronizing thread execution is crucial to avoid race conditions and ensure controlled access to shared resources. The AutoResetEvent class helps manage this by acting like a gate, blocking threads until signaled.
  • How To Create JWT Token Authentication In Node.js Using Mysql?Jun 04, 2024. Learn how to establish JWT authentication in a Node.js application using MySQL and Express. This tutorial covers database setup, creating authentication routes, and managing token creation and validation. Enhance your app's security and scalability by securing API endpoints and limiting access to authorized users.
  • Connect to SQL Server with SSMS Methods and Authentication TypesMay 31, 2024. Connecting to SQL Server using SQL Server Management Studio (SSMS) involves selecting a connection method and authentication type. Methods include specifying the server name and instance.
  • Creating a Multi-Step Form in ReactMay 20, 2024. Multi-step forms are a common requirement in web applications, allowing users to fill out complex forms in smaller, more manageable sections. This guide will walk you through the process of creating a multi-step form in React, from setting up the project to managing state and navigation between steps.
  • Unique Key in SQL: Syntax, Usages, and ExampleMay 16, 2024. Unique Key in SQL ensures each record in a database table is distinct. Syntax involves defining columns with UNIQUE constraints. It prevents duplicate values, enhancing data integrity and search efficiency.
  • Advanced Azure Bicep Techniques: Master Infrastructure CodeMay 13, 2024. This article is a comprehensive guide that takes you on a deep dive into the advanced topics of Azure Bicep. It starts with logging into Azure, then moves on to explain the advanced topics in Azure Bicep, complete with code samples and explanations.
  • Azure Bicep Best Practices UnveiledMay 10, 2024. This article is a comprehensive guide that takes you on a deep dive into the best practices for working with Azure Bicep. It explains the best practices in Azure Bicep, complete with code samples and explanations.
  • Azure Bicep: Modules for Flexible Resource ManagementMay 10, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep modules. It starts with logging into Azure, then moves on to explain the concept of modules in Azure Bicep, complete with code samples and explanations.
  • Azure Bicep: Deployment and Infrastructure as CodeMay 10, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep deployment. It starts with logging into Azure and then moves on to explain the concept of deployment in Azure Bicep, complete with code samples and explanations.
  • Azure Bicep: Wrapping Up and Looking AheadMay 10, 2024. As we conclude with Azure Bicep, reflect on its benefits, lessons learned, and future enhancements. Prepare for continued adoption, explore learning resources, and anticipate its evolving role in Azure infrastructure management.
  • Exploring Azure Bicep Functions: Syntax, Usage, and ExamplesMay 09, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep functions. It starts with logging into Azure and then moves on to explain the concept of functions in Azure Bicep, complete with code samples and explanations.
  • Exploring Azure Bicep Outputs: Retrieving Resource PropertiesMay 09, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep outputs. It starts with logging into Azure, then moves on to explain the concept of outputs in Azure Bicep, complete with code samples and explanations.
  • Azure Bicep: Power of Variables for Efficient DeploymentMay 08, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep variables. It starts with logging into Azure, then moves on to explain the concept of variables in Azure Bicep, complete with code samples and explanations.
  • Checksum Using the Verhoeff Algorithm May 08, 2024. In this article we will see how we can calculate Checksum Using the Verhoeff algorithm. This article introduces the Verhoeff algorithm, a method for ensuring data integrity, particularly in sensitive applications like financial transactions.
  • Mastering Azure Bicep ParametersMay 07, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep parameters. It starts with logging into Azure, then moves on to explain the concept of parameters in Azure Bicep, complete with code samples and explanations.
  • Unraveling Azure Bicep ResourcesMay 07, 2024. This article is a comprehensive guide that takes you on a deep dive into Azure Bicep resources. It starts with logging into Azure, then moves on to explain the concept of resources in Azure Bicep, complete with code samples and explanations.
  • Checksum Using the Damm AlgorithmApr 30, 2024. Implementation of the Damm algorithm for calculating checksums in C#. Checksum algorithms are vital for data validation and error detection. This article explores its implementation and its significance in ensuring data integrity.
  • Keeping Your .NET Core API Safe and SoundApr 19, 2024. In today's digital landscape, where data is king and APIs (Application Programming Interfaces) reign supreme, ensuring the security of your API in .NET Core is paramount. In this article, we delve into the various aspects of API security in .NET Core and explore best practices to bolster your defenses.
  • Auth0 App Registration - JWT Generation & Validation with Public KeyApr 03, 2024. Auth0 offers robust solutions for app registration, JWT generation, and access token management. Developers configure settings, generate JWTs signed by Auth0's private key, and validate them using public keys. Access tokens grant permissions, and JWTs carry user info.
  • .NET API Login and Registration using IdentityApr 01, 2024. Secure your .NET web applications with Microsoft Identity for seamless authentication and authorization. Follow this guide to implement user registration and login functionalities effectively, enhancing your application's security and reliability.
  • Multilingual Application with single Resx file - Forms Validation StringsApr 01, 2024. Learn how to create multilingual applications using ASP.NET 8 in this third part of our series. Explore efficient techniques for managing form validation strings using a single Resx file, ensuring seamless user experience across different languages.
  • Options Pattern Named Options in .Net Core with examplesMar 29, 2024. 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 named options, and utilizing interfaces like IOptionsSnapshot and IConfigureNamedOptions.
  • Options Pattern Validation in .NET Core with ExamplesMar 28, 2024. .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 configuration reliability and maintenance.
  • Information Computation Mastery: Challenges, Concepts, ImplementationMar 28, 2024. To use computers to automate information processing we have to deal with bitstreams as the information representation. By design, bitstream management involves the organization, storage, retrieval, communication, and manipulation to ensure accuracy, security, and accessibility.
  • Best Practices for Designing APIs in .NETMar 26, 2024. This article provides a thorough overview of the fundamental principles, criteria, and concerns for creating APIs in.NET.
  • Understanding Sharing in Lists on SharePoint Communication SitesMar 05, 2024. This guide provides detailed instructions on utilizing the Share option in lists on SharePoint Communication Sites. It covers the login steps, navigating to lists, selecting items to share, opening the Share dialog, adding recipients, selecting permission levels, and sending the invitation.
  • Reactive Forms In Angular with Practical Example Mar 01, 2024. 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 forms. In this article, we'll delve into reactive forms in Angular, exploring their benefits, how to create them, and how to work with them effectively.
  • Angular URL/Site Validation using Regular Expression and Bootstrap with Reactive FormsFeb 26, 2024. 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 only accept the URL.
  • Mobile Number Validation Using Angular and BootstrapFeb 19, 2024. 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 setting up the reactive forms module
  • Android Responsive Login Screen Design using Constraint LayoutFeb 16, 2024. In this article, I going to explain how we can create a responsive Screen for different android Screens using Constraint Layout.
  • Validating an HTTP Endpoint to Receive Events from Azure Event GridFeb 07, 2024. This article elucidates the process of validating an HTTP endpoint for receiving events from Azure Event Grid. By creating an Azure Function App with an HTTP-triggered function, you can handle Microsoft.
  • 🔒 Azure Key Vault Certificate Validation with C#Jan 23, 2024. In this informative article, we will delve into the world of secure certificate validation in the Azure Key Vault environment using C#. By leveraging the power of the X509Certificate2 class, we can implement robust and secure certificate validation, ensuring the integrity and trustworthiness of digital communications. Through practical code examples, we will showcase best practices and seamlessly integrate Azure Key Vault for centralized and secure certificate management. By elevating our understanding of secure coding practices, we can fortify our applications against potential vulnerabilities by Ziggy Rafiq
  • Validation Rules in WPFJan 19, 2024. We need validation rules to play a crucial role in maintaining data accuracy and consistency within an application. Learn to enhance the WPF user experience by implementing email pattern-matching validation.
  • 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.
  • Building a Secure PHP MySQL Signup/Login Website with Email VerificationJan 15, 2024. Creating a secure signup/login system is essential for any web application that involves user authentication. In this article, I'll guide you through building a PHP MySQL login/signup website with email verification. I'll focus on security best practices, including password encryption using PHP's built-in functions.
  • 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.
  • How to Create Login page in PowerApps using SharePointDec 27, 2023. PowerApps with a secure login screen. Learn the step-by-step process, from designing the interface to connecting to data sources, validating user credentials, handling navigation, and ensuring application integrity.
  • ValidateAntiForgeryToken in ASP.NET CoreDec 13, 2023. In web development, security is a crucial aspect that demands meticulous attention. Cross-Site Request Forgery (CSRF) is a type of attack where unauthorized commands are transmitted from a user trusted by a web application. ASP.NET Core provides a built-in defense mechanism against CSRF attacks called ValidateAntiForgeryToken.
  • Using Date Function in Data Validation in ExcelDec 10, 2023. Learn how to use Excel's DATE function for effective data validation. Set criteria for a date column to ensure entries fall within a specific range, enhancing accuracy and data quality.
  • Securing Your .NET Core APIsNov 18, 2023. This article explains how you can secure your .NET Core APIs with essential practices. It covers JWT authentication, role-based authorization, HTTPS implementation, input validation, and rate limiting. By leveraging these techniques, you can ensure data integrity and prevent unauthorized access.
  • Data Validation in ASP.NET Core with FluentValidationOct 19, 2023. FluentValidation in ASP.NET Core Data Validation is a title that encapsulates the concept of using the FluentValidation library within the ASP.NET Core framework for effective data validation. In this context, "FluentValidation" refers to a third-party library that simplifies and streamlines the validation process, allowing developers to define validation rules in a fluent, expressive manner. This title suggests that the article or content will explore how to leverage FluentValidation for robust and structured data validation in ASP.NET Core applications. It highlights the importance of ensuring data integrity and user input validation, which are fundamental aspects of building secure and reliable web applications.
  • Common Interface Architecture With SSOOct 18, 2023. How to consume common interface from multiple consumer with SSO mechanism. The Common Interface Architecture with Single Sign-On (SSO) integrates two essential concepts in the realm of digital identity and access management. In this architecture, a standardized framework, often referred to as the "Common Interface," is established. This interface provides a unified way for different applications, services, or modules to communicate and authenticate users.
  • How To validate Appsetting.json Configuration Values In .NETOct 16, 2023. In .NET applications, the appsettings.json file is commonly used to store configuration settings. It's essential to validate the values stored in this file to ensure that they meet the required format, data type, or specific constraints defined by the application. Validation of appsettings.json configuration values in .NET involves implementing checks and safeguards to confirm that the values are valid and usable by the application. This validation process helps prevent runtime errors and ensures the application behaves as intended, adhering to the specified configuration guidelines.
  • Solution: Login failed for user 'sa'. Microsoft SQL Server, Error 18456Oct 11, 2023. Login failed for user 'sa'. (Microsoft SQL Server, Error 18456)" is the most common error in SQL server login. There are multiple reasons for this error. One potential reason is you are trying to use SQL Server Authentication, but the SQL server instance is configured for Windows Authentication mode.
  • Data Annotation Validation in .NET CoreSep 20, 2023. This article explains how to create custom validation attributes in .NET, even though .NET provides built-in validation attributes. Custom validation attributes are useful when built-in attributes are insufficient for real-time application requirements. The advantages include code centralization and improved code readability and maintainability.
  • Best Practices for Maintaining Security and Preventing Vulnerabilities in C#Sep 01, 2023. Explore essential security practices in C# programming with Ziggy Rafiq, covering password hashing, input validation, SQL injection prevention, cryptography, HTTPS, secret management, and staying updated on security patches
  • C# Security: Best Practices for Secure CodingAug 31, 2023. In this article, we will discuss some of the best practices for writing secure code in C#. These practices include using secure password hashing algorithms to store passwords, validating user input to prevent injection attacks, using parameterized SQL queries, using cryptography to protect sensitive data, using HTTPS to protect data in transit, avoiding hardcoding secrets in code, and keeping code up to date with the latest security patches and updates.
  • Data Validation with Annotations, Custom Attributes, and Fluent ValidationAug 30, 2023. Data Annotations are attributes provided by the System.ComponentModel.DataAnnotations namespace in C#. They allow you to declaratively specify validation rules and constraints directly within your model classes.
  • How to Build a Login Screen in SwiftUI?Aug 24, 2023. Learn how to create a login screen in SwiftUI. Know how you can leverage Apple's feature-rich UI framework in your iOS app development.
  • Capturing Phishing Email Using Custom Middleware in ASP.Net Core Web API Aug 02, 2023. To capture and detect phishing emails using custom middleware in an ASP.NET Core Web API, you can follow these general steps:Create Custom Middleware: Create a custom middleware that will intercept incoming HTTP requests and inspect the email content for potential phishing indicators. Middleware in ASP.NET Core can be used to perform custom processing on incoming requests and outgoing responses.
  • Feature Selection with RFECV in PythonAug 02, 2023. Clarifying the functionality and steps involved in the Recursive Feature Elimination with Cross-Validation (RFECV) process in Python, and addresses common queries regarding the difference between the initial and final number of features selected and the length of `cv_results_['mean_test_score']`.
  • Salesforce REST API: The Login Request (Authentication Step)Aug 02, 2023. In this article, we will discuss the detailed steps on how to authenticate REST-based requests against Salesforce Org. We will explore the REST payloads for the Request & Response cycle for the request.
  • What are Functional Requirements? Jul 31, 2023. Functional Requirements of the system are a very critical part of the system in which we defined the overall functionality of the system. Functional Requirements define the behavior of the system means what the system should do Like, and Code Compiler should complete the Machine Code.
  • Fluent Validation ASP.NET Core Web API 6.0Jul 31, 2023. Powerful .NET validation library with clean, extendable rules and lambda expressions for easy data validation.