Azure
Filter by Set
...see more
A topic can be visualized as a queue and when using multiple subscriptions, it becomes a richer messaging model; essentially a one-to-many communication tool. This publish/subscribe model (or pub/sub) enables an application that sends a message to a topic with multiple subscriptions to have that message received by multiple applications.
...see more
A Service Bus queue is an entity in which messages are stored. Queues are useful when you have multiple applications or multiple parts of a distributed application that need to communicate with each other. The queue is similar to a distribution center in that multiple products (messages) are received and then sent from that location.
...see more
A namespace provides a scoping container for addressing Service Bus resources within your application. Creating a namespace is necessary to use Service Bus and is one of the first steps in getting started.
...see more
Azure Service Bus is an asynchronous messaging cloud platform that enables you to send data between decoupled systems. Microsoft offers this feature as a service, which means that you don't need to host your own hardware to use it.
...see more

What is Azure Sentinel?

Azure Sentinel is a security information event management (SIEM) and security orchestration automation response (SOAR) solution.

Sentinel is a cloud-native solution.


How it works

Sentinel sits on top of Log Analytics.


Features and benefits

What it provides, features and benefits:

  • It provides intelligent analytics about different threats in IT solutions.
  • It provides threat detection and response.


Use Cases

Architecture

Security, monitoring, and compliance

Availability and costs

Differences to other products

...see more

What is Azure Security Center?

Azure Security Center is an infrastructure security hygiene tool. It has a lot of recommendations around security hygiene.


Features and Benefits

Azure Security Center Standard has threat protection built-in for the resources that it monitors.

...see more

What is Azure Defender?

Azure Defender is an infrastructure security thread alert solution.

...see more

What is Azure Kubernetes Service (AKS)?

Azure Kubernetes Service is a fully managed container orchestration service based on the open-source Kubernetes system, available on the Microsoft Azure public cloud.


What is Azure Kubernetes Service (AKS)? (techtarget.com)

...see more

Log Analytics is part of the larger Azure Monitor platform.

...see more
  • Simplifies deployment, management, and operations of Kubernetes
  • Kubernetes Objects
  • Azure Kubernetes Services or AKS
  • It makes it quick and easy to deploy and manage containerized applications without container orchestration expertise.
  • Eliminates the burden of ongoing operations and maintenance by provisioning, upgrading, and scaling resources on demand
  • Master node(s) managed by Microsoft
  • Access to enterprise-grade features of Micorosft Azure
  • Reduces the complexity and operational overhead of managing a Kubernetes cluster by offloading much of that responsibility to Azure
  • Handles critical tasks like health monitoring and maintenance for you
...see more
  • Automated Kubernetes version upgrade and patching
  • Easy cluster scaling
  • Self-healing hosted control plane (masters)
  • Cost savings
...see more

List subscriptions

az account list

Change subscription

Set context to the desired subscription

az account set -s "{subscription}"

Show current subscription

az account show
...see more

Set default resource group for all Azure CLI commands

az configure --defaults group={resource-group-name}
...see more

Get AKS credentials

az aks get-credentials --name {aks-cluster-name}


Download and install kubectl

az aks install-cli
...see more

Get the deployments

kubectl get deployments

Delete deployments

kubectl delete deployment {deployment_name}

Samples

Sample to expose an endpoint

kubectl expose deployment {app_name} --type=LoadBalancer --port=80 --target-port=80
...see more

Azure Sentinel can only be enabled for a single Log Analytics Workspace. Therefore it is recommended to centralize all security logs to a dedicated central workspace. Use Azure Lighthouse if you have multiple workspaces.


To create Azure Sentinel, an active subscription and a Log Analytics workspace need to be available.

The permissions required

  • Contributor on Subscription level
  • Contributor or Reader on Resource Group or Resource level


Resource

...see more

Get the resource ID for the existing AKS cluster

Get the resource ID:

SP_ID=$(az aks show --resource-group aksrg --name pdtaks\
    --query servicePrincipalProfile.clientId -o tsv)
az ad sp credential list --id $SP_ID --query "[].endDate" -o tsv

From: AKS ErrImagePull and ImagePullBackOff on AKS after a year

...see more

What is Azure Resource Graph?

Azure Resource Graph is a service in Azure that is designed to extend Azure Resource Management by providing efficient and performant resource exploration with the ability to query at scale across a given set of subscriptions so that you can effectively govern your environment.


These queries provide the following features:

  • Ability to query resources with complex filtering, grouping, and sorting by resource properties.
  • Ability to iteratively explore resources based on governance requirements.
  • Ability to assess the impact of applying policies in a vast cloud environment.
  • Ability to detail changes made to resource properties (preview).


What is Azure Resource Graph?

...see more

By default, the kubectl command for Kubernetes uses parameters from the current context to communicate with the cluster.

Display the current context:

$ kubectl config current-context

List all contexts in a kubeconfig file:

$ kubectl config get-contexts

Switch context:

$ kubectl config use-context <context_name>
...see more

A Pod is a group of one or more containers with shared storage, network, and lifecycle and is the basic deployable unit in Kubernetes.

How to get detailed information about Pods using kubectl command.

List Pods in the default Namespace for the current context:

$ kubectl get pods
$ kubectl get pods -o wide


List all Pods from the all Namespace:

$ kubectl get pods --all-namespaces


Get Pods from a particular Namespace:

$ kubectl get pods --namespace <namespace-name>


Get detailed information about a Pod

$ kubectl describe pods <pod-name>
...see more

In general, I see two approaches

  • Start with App Services for all applications, and only if the complexity and orchestration needs exceed the limits, then go for AKS. This would be my approach as I don’t see either/or, but I would leverage their individual strengths.
  • Or if they already plan to introduce a sophisticated AKS infrastructure, then use leverage this (I have the feeling that some at Swiss Re try to go into this direction)


What do/would I consider

  • General: have simple applications with just a few Web Apps I would go with App Services, but for a more complex microservice architecture, I would consider AKS.
  • Is there a strategic decision already taken
  • Is there a Multi-Cloud strategy and need to leverage knowledge (infrastructure) across clouds, then it could make sense to go with AKS as this is more provider agnostic
  • If there is no Kubernetes knowledge available, App Services would be simpler to start with
  • If you have an Application with just a front-end (maybe SPA) and API backend, then App Services would be preferable
  • If it is a containerized application with a lot of containers that need orchestration, then AKS could help
  • What Customers need to understand is that there are much more management activities they need to take care of when using AKS compared to App Service. AKS is closer to an IaaS platform from that point of view. So as long as their needs can be met with App Service, I think it’s a much less painful choice compared to AKS.
...see more

Azure Purview is a unified data governance service that helps you manage and govern your on-premises, multi-cloud, and software-as-a-service (SaaS) data. Easily create a holistic, up-to-date map of your data landscape with automated data discovery, sensitive data classification, and end-to-end data lineage. Empower data consumers to find valuable, trustworthy data.

Azure Purview

...see more

Establish the foundation for effective data usage and governance with Purview Data Map.

  • Automate and manage metadata from hybrid sources.
  • Classify data using built-in and custom classifiers and Microsoft Information Protection sensitivity labels.
  • Label sensitive data consistently across SQL Server, Azure, Microsoft 365, and Power BI.
  • Easily integrate all your data systems using Apache Atlas APIs.

 

...see more

Azure Sentinel is a next-generation Security Information and Event Management (SIEM) and Security Operation Automation Response (SOAR) solution provided by Microsoft.

...see more
  • Data Collection
  • Threat Detection
  • Threat Investigation
  • Rapid Response
...see more
  • Automatically scaling to meet the data collection and storage requirements
  • Integrate directly with Microsoft Intelligent Security Graph
  • Include advanced anomaly detections using Microsoft machine learning
  • Leveraging automation capability for investigating and responding to alerts
  • Provide intuitive dashboard and querying capabilities
...see more

Types

  • Native or service to service integrates directly with resources across the Microsoft product range. This is the preferred method for ingestion
  • API
  • Agent-Based
  • Direct
...see more

Azure Sentinel

A cloud-based SIEM and SOAR solution that depends on various security solutions to provide threat detection, investigation, hunting, and automated response capabilities.


Azure Security Center

A Cloud Security Posture Management and Cloud Workload Platform Protection solution.

Complements Azure Sentinel

...see more

Types of Analytic Rules

  • Scheduled rules run on a set schedule to detect suspicious events
  • Microsoft Security rules are used to create Azure Sentinel incidents from alerts generated from other Microsoft Security solutions
  • Machine learning behavioral analytics rules can only be created from templates provided and use proprietary Microsoft machine learning algorithms
  • Fusion is a Microsoft machine learning technology to combine information from various sources to generate alerts
...see more

K9s provides a terminal UI to interact with your Kubernetes clusters. This project aims to make it easier to navigate, observe, and manage your applications in the wild. K9s continually watches Kubernetes for changes and offers subsequent commands to interact with your observed resources.

K9s - Manage Your Kubernetes Clusters In Style (k9scli.io)

 

...see more

Manging and Investigating Incidents

An incident

  • is created based on alerts
  • can be based on first-party analytics from Microsoft Security Solutions
  • can also be created via a bookmark
  • can include one or multiple alerts
  • contains evidence that can be used for further investigation
...see more

Azure Logic Apps is a cloud service that helps you schedule, automate, and orchestrate tasks, business processes, and workflows.

...see more

A security playbook is a collection of procedures that can be run from Azure Sentinel in response to an alert. Playbooks provide the ability to build flows that can automate investigations and respond to security alerts that happen in the environment.

...see more

Azure Monitor Private Link Scope (AMPLS) connects private endpoints (and the VNets contained in) to one or more Azure Monitor resources - Log Analytics workspaces and Application Insights components.

...see more

Azure Arc simplifies governance and management by delivering a consistent multi-cloud and on-premises management platform. Azure Arc enables you to:

  • Manage your entire environment, with a single pane of glass, by projecting your existing non-Azure, on-premises, or other cloud resources into Azure Resource Manager.
  • Manage virtual machines, Kubernetes clusters, and databases as if they are running in Azure.
  • Use familiar Azure services and management capabilities, regardless of where they live.
  • Continue using traditional ITOps, while introducing DevOps practices to support new cloud-native patterns in your environment.
  • Configure Custom Locations as an abstraction layer on top of Azure Arc enabled Kubernetes cluster, cluster connect, and cluster extensions.


Today, Azure Arc allows you to manage the following resource types hosted outside of Azure:

  • Servers - both physical and virtual machines running Windows or Linux.
  • Kubernetes clusters - supporting multiple Kubernetes distributions.
  • Azure data services - Azure SQL Managed Instance and PostgreSQL Hyperscale services.
  • SQL Server - enroll instances from any location.


For further information visit Azure Arc overview.

...see more

Azure Key Vault is a cloud service for securely storing and accessing secrets. A secret is anything you want to tightly control access to, such as API keys, passwords, certificates, or cryptographic keys. Key Vault service supports two types of containers: vaults and managed hardware security module(HSM) pools. Vaults support storing software and HSM-backed keys, secrets, and certificates. Managed HSM pools only support HSM-backed keys. See Azure Key Vault REST API overview for complete details.

...see more

Application Insights can monitor Azure cloud service apps for availability, performance, failures, and usage by combining data from Application Insights SDKs with Azure Diagnostics data from your cloud services. With the feedback you get about the performance and effectiveness of your app in the wild, you can make informed choices about the direction of the design in each development lifecycle.

Application Insights, a feature of Azure Monitor, is an extensible Application Performance Management (APM) service for developers and DevOps professionals. Use it to monitor your live applications. It will automatically detect performance anomalies and includes powerful analytics tools to help you diagnose issues and understand what users actually do with your app. It's designed to help you continuously improve performance and usability. It works for apps on various platforms, including .NET, Node.js, Java, and Python hosted on-premises, hybrid, or any public cloud. It integrates with your DevOps process and has connection points to a variety of development tools. It can monitor and analyze telemetry from mobile apps by integrating with Visual Studio App Center.

...see more

Log Analytics is a tool in the Azure portal used to edit and run log queries with data in Azure Monitor Logs. You may write a simple query that returns a set of records and then use features of Log Analytics to sort, filter, and analyze them. Or you may write a more advanced query to perform statistical analysis and visualize the results in a chart to identify a particular trend. Whether you work with the results of your queries interactively or use them with other Azure Monitor features such as log query alerts or workbooks, Log Analytics is the tool that you're going to use to write and test them.

For further details, visit Overview of Log Analytics in Azure Monitor.

...see more

What is App Service

Azure App Service is an HTTP-based service for hosting web applications, REST APIs, and mobile back ends. You can develop in your favorite language, be it .NET, .NET Core, Java, Ruby, Node.js, PHP, or Python. Applications run and scale with ease on both Windows and Linux-based environments.

App Service not only adds the power of Microsoft Azure to your application, such as security, load balancing, autoscaling, and automated management. You can also take advantage of its DevOps capabilities, such as continuous deployment from Azure DevOps, GitHub, Docker Hub, and other sources, package management, staging environments, custom domain, and TLS/SSL certificates.

With App Service, you pay for the Azure compute resources you use. The compute resources you use are determined by the App Service plan that you run your apps on. For more information, see Azure App Service plans overview.

For further information visit App Service overview

...see more

The message size limit for Service Bus is 1 MB (premium tier).

...see more

Octant is an open-source developer-centric web interface for Kubernetes that lets you inspect a Kubernetes cluster and its applications.

Website: Octant

...see more

In this overview video I cover the basics of containers, Kubernetes, the Azure Kubernetes Service (AKS) and how all the pieces fit together!


...see more

Private Azure Kubernetes Service Cluster

In a private cluster, the control plane or API server has internal IP addresses that are defined in the RFC1918 - Address Allocation for Private Internet document. Using a private cluster lets you ensure network traffic between your API server and your node pools remains on the private network only.

Create a private Azure Kubernetes Service cluster - Azure Kubernetes Service | Microsoft Docs

...see more

Provide the requirements of your AKS deployment to generate the assets to create a fully operational environment, incorporating best-practices guidance.

...see more

Sign in interactively

The Azure CLI's default authentication method for logins uses a web browser and access token to sign in.

az login

If the CLI can open your default browser, it will do so and load an Azure sign-in page. Otherwise, open a browser page at https://aka.ms/devicelogin and enter the authorization code displayed in your terminal. Sign in with your account credentials in the browser.

If no web browser is available or the web browser fails to open, use device code flow with az login --use-device-code.

Sign in with a different tenant

You can select a tenant to sign in under with the --tenant argument. The value of this argument can either be an .onmicrosoft.com domain or the Azure object ID for the tenant. Both interactive and command-line sign in methods work with --tenant.

az login --tenant {tenant}

Additional details can be found at Sign in with Azure CLI — Login and Authentication | Microsoft Docs

Log into Azure using a Service Principal

az login --service-principal --username {SPN_CLIENT_ID} --password {SPN_CLIENT_SECRET} --tenant {SPN_TENANT_ID}
...see more

PuTTY is a free implementation of SSH and Telnet for Windows and Unix platforms, along with an xterm terminal emulator. It is written and maintained primarily by Simon Tatham.

Download PuTTY: latest release (0.76) (greenend.org.uk)

...see more

Commands

az extension add --name connectedk8s
az extension add --name k8s-configuration
az extension update --name connectedk8s
az extension update --name k8s-configuration

Connect to cluster

az connectedk8s connect --name {kubernetes-name} --resource-group {resource-group-name}
...see more

Data duplication across your data landscape is a common challenge. You can now share data with your consumers (internal or external) from Azure Storage without physically copying it over. To ease your data management efforts, you can govern the whole process from Purview.

Further reading at Share data near real-time with Microsoft Purview in-place data sharing for Azure Storage

...see more

The cost of a typical application hack in today's modern world is high, and traditional WAFs don’t always work. This webinar details how you can better secure your Kubernetes apps with NGINX.

Watch it On Demand: Secure Your Kubernetes Apps from Attacks with NGINX - NGINX

...see more

KEDA (or, Kubernetes Event-Driven Autoscaling) is a Kubernetes-based event-driven auto-scaler for Pods. With KEDA, we can scale out our application easily and then scale back to 0 which is not possible when it comes to the default HPA (Horizontal Pod Autoscaler) of Kubernetes.

KEDA Architecture diagram

Read more at Scale your Apps using KEDA in Kubernetes

...see more

Announcing Public Preview of Confidential VM on AKS.

Azure confidential VMs (DCav5/ECav5) are VM based Hardware Trusted Execution Environment (TEE) that leverage SEV-SNP security features to deny the hypervisor and other host management code access to VM memory and state, providing defense in depth protections against operator access.

Source: Confidential VM node pool support on AKS with AMD SEV-SNP VM in preview (microsoft.com)

...see more

How to stay up-to-date with Microsoft Azure
Microsoft Azure is huge and changes fast! At this point in time, there are more than 200 services in Azure, with many, many features. The rate at which services evolve is amazing. New services come out all the time, and services are constantly being improved with new features. Microsoft is able to do this because most services are owned by separate teams that develop functionality.


This high rate of change is great because it keeps providing new ways to solve problems. However, it is very hard to stay up-to-date. It is very hard to keep track of new services; and what their purpose is in the world of Azure.
So the question is how to stay up-to-date? Here are some important information sources:
- Azure Friday | Microsoft Docs
- Azure This Week - A Cloud Guru
- Azure updates | Microsoft Azure
- Announcements | Azure Blog and Updates | Microsoft Azure
- Azure Blog and Updates | Microsoft Azure
- Azure App Service Team Blog
And also, the Azure Developer's Cheat Sheet at GitHub - milanm/azure-cheat-sheet: Azure Cheat Sheet

...see more

Message Bus Queues and Topics provide

  • Temporal decoupling as message producers and consumers do not have to be online at the same time
  • Load leveling to smooth out peaks in load by allowing the consuming application to be provisioned for average load rather than peak load
  • Load balancing to have multiple consumers listening on a single subscription with each message being handed off to only one of the consumers, thereby balancing load
  • Loose coupling to evolve the messaging network without imcating existing endpoints, e.g. adding subscriptions or changing filters to a topic to accommodate new consumers
...see more

With Queues, you can have multiple senders, but only one message-consumer receives and process each message.

Using queues to intermediate between message producers and consumers provides an inherent loose coupling between the components.

With Queues, there are two different modes available to process messages.

Received & Delete

This mode is suitable where the system can tolerate not processing messages in case of failure. In this mode, once the consumer service reads the message, it will be deleted from the Queue irrespective of the status of the message process.

Peek

This mode is suitable where the system cannot tolerate ignoring messages in case of failure. So here, messages are processed in two stages, as below.

  • Finds the next message to be consumed, locks it to prevent other consumers from receiving it, and then return the message to the application.
  • After the application finishes processing the message, it requests the Service Bus service to complete the second stage of the receiving process. Then, the service marks the message as being consumed.
...see more

Senders send messages to a topic in the same way that they send messages to a queue, but it varies on a slight factor where 'Topics' can have multiple, independent 'Subscriptions'. Subscriptions are durable by default but can be configured to expire and then be automatically deleted.

We can define rules on a subscription. A subscription rule has a filter to define a condition for the message to be copied into the subscription and an optional action that can modify message metadata.

...see more

Azure offers a unique capability of mounting Blob Storage (or object storage) as a file system to a Kubernetes pod or application using BlobFuse or NFS 3.0 options. This allows you to use blob storage with a number of stateful Kubernetes applications including HPC, Analytics, image processing, and audio or video streaming. Not only that, if your application ingests data into Data Lake storage on Azure Blobs, you can now directly mount and use it with AKS. Previously, you had to manually install and manage the lifecycle of the open-source Azure Blob CSI driver including deployment, versioning, and upgrades. 

You can now use the Azure Blob CSI driver as a managed addon in AKS with built in storage classes for NFS and BlobFuse, reducing the operational overhead and maximizing time to value.

Source: Generally available: Azure Blob CSI driver support in AKS

...see more

Enable higher throughput levels for Azure Service Bus premium via two new features in public preview today.

First, we are releasing scaling partitions, allowing the use of partitioning for the premium messaging tier. Service Bus partitions enable messaging entities to be partitioned across multiple message brokers. This means that the overall throughput of a partitioned entity is no longer limited by the performance of a single message broker. Additionally, a temporary outage of a message broker, for example during an upgrade, does not render a partitioned queue or topic unavailable, as messages will be retried on a different partition.

Second, we are making a change to our infrastructure, which will result in more consistent low latency. This is accomplished by switching our storage to a different implementation called local store. During public preview we will create partitioned namespaces using this new feature, but in the future all new namespaces will be created on local store.

Public preview: Performance improving features for Azure Service Bus premium

Source: Public preview: Performance improving features for Azure Service Bus premium

...see more
  • Managed Identities
    • User Assigned Managed Identities (UAMI)
  • Service Principals
  • Service Connections

 

...see more

Azure Key Vault is a cloud-based secrets store for holding app secrets, including configuration values like passwords and connection strings that must always remain secure. It keeps secrets in a single central location and provides secure access, permissions control, and access logging.

Use Azure Key Vault to store secrets like Passwords, Shared Access Signature (SAS) tokens, Application Programming Interface (API) keys, and Personal Access Tokens (PAT).

...see more

Microsoft Azure Service Bus is a fully managed enterprise message broker with message queues and publish-subscribe topics.

Service Bus is used to decouple applications and services from each other, which help us to balance workload.

...see more

This set lists a couple of useful tools for Kubernetes.

...see more
Azure Purview

Azure Purview is a unified data governance service that helps you manage and govern your on-premises, multi-cloud, and software-as-a-service (SaaS) data. Easily create a holistic, up-to-date map of your data landscape with automated data discovery, sensitive data classification, and end-to-end data lineage. Empower data consumers to find valuable, trustworthy data.

Add to Set
  • .NET
  • .NET
  • .NET 6.0 Migration
  • .NET Argument Exceptions
  • .NET Class Library
  • .NET Reflection
  • 5 Best websites to read books online free with no downloads
  • 5 surprising things that men find unattractive
  • 5 Ways To Take Control of Overthinking
  • 6 simple methods for a more productive workday
  • 6 Ways To Stop Stressing About Things You Can't Control
  • Add React to ASP.NET Core
  • Adding reCAPTCHA to a .NET Core Web Site
  • Admin Accounts
  • Adobe Acrobat
  • Afraid of the new job? 7 positive tips against negative feelings
  • Agile
  • AKS and Kubernetes Commands (kubectl)
  • API Lifecycle Management
  • Application Insights
  • arc42
  • Article Writing Tools
  • ASP.NET Core Code Snippets
  • ASP.NET Core Performance Best Practices
  • ASP.NET Core Razor Pages and Markup
  • ASP.NET Razor Syntax Cheat Sheet
  • Asynchronous programming
  • Atlassian
  • Authorization Code Grant
  • Avoiding List Reference Issues in .NET: Making Independent Copies
  • AWS vs Azure vs GCP: Which Is Better?
  • Axios Library
  • Azure
  • Azure API Management
  • Azure App Registration
  • Azure Application Gateway
  • Azure Arc
  • Azure Arc Commands
  • Azure Architectures
  • Azure Bastion
  • Azure Bicep
  • Azure CLI Commands
  • Azure Cloud Products
  • Azure Cognitive Services
  • Azure Container Apps
  • Azure Cosmos DB
  • Azure Cosmos DB Commands
  • Azure Costs
  • Azure Daily
  • Azure Daily 2022
  • Azure Daily 2023
  • Azure Data Factory
  • Azure Database for MySQL
  • Azure Databricks
  • Azure Diagram Samples
  • Azure Durable Functions
  • Azure Firewall
  • Azure Functions
  • Azure Kubernetes Service (AKS)
  • Azure Landing Zone
  • Azure Log Analytics
  • Azure Logic Apps
  • Azure Maps
  • Azure Monitor
  • Azure News
  • Azure PowerShell Cmdlets
  • Azure PowerShell Login
  • Azure Private Link
  • Azure Purview
  • Azure Redis Cache
  • Azure Security Groups
  • Azure Sentinel
  • Azure Service Bus
  • Azure Service Bus Questions (FAQ)
  • Azure Services Abstract
  • Azure SQL
  • Azure Storage Account
  • Azure Tips and Tricks
  • Backlog Items
  • BASH Programming
  • Best LinkedIn Tips (Demo Test)
  • Best Practices for RESTful API
  • Bing Maps
  • Birthday Gift Ideas for Wife
  • Birthday Poems
  • Black Backgrounds and Wallpapers
  • Bootstrap Templates
  • Brave New World
  • Break Out of a JavaScript Loop
  • Brian Tracy Quotes
  • Build Websites Resources
  • C# - Data Types
  • C# Code Samples
  • C# Design Patterns
  • C# Development Issues
  • C# Programming Guide
  • C# Retry Pattern
  • C# Strings
  • Caching
  • Caching Patterns
  • Camping Trip Checklist
  • Canary Deployment
  • Careers of the Future You Should Know About
  • Cheap Vacation Ideas
  • Cloud Computing
  • Cloud Migration Methods
  • Cloud Native Applications
  • Cloud Service Models
  • Cloudflare
  • Code Snippets
  • Compelling Reasons Why Money Can’t Buy Happiness
  • Conditional Access
  • Configurations for Application Insights
  • Const in JavaScript
  • Create a Routine
  • Create sitemap.xml in ASP.NET Core
  • Creative Writing: Exercises for creative texts
  • CSS Selectors Cheat Sheet
  • Cultivate a Growth Mindset
  • Cultivate a Growth Mindset by Stealing From Silicon Valley
  • Custom Script Extension for Windows
  • Daily Scrum (Meeting)
  • Dalai Lama Quotes
  • Data Generators
  • DataGridView
  • Decision Trees
  • Deployments in Azure
  • Dev Box
  • Develop ASP.NET Core with React
  • Development Flows
  • Docker
  • Don’t End a Meeting Without Doing These 3 Things
  • Drink More Water: This is How it Works
  • Dropdown Filter
  • Earl Nightingale Quotes
  • Easy Steps Towards Energy Efficiency
  • EF Core
  • EF Core Migrations
  • EF Core Save Data
  • Elon Musk
  • Elon Musk Companies
  • Employment
  • English
  • Escape Double Quotes in C#
  • Escaping characters in C#
  • Executing Raw SQL Queries using Entity Framework Core
  • Factors to Consider While Selecting the Best Earthmoving System
  • Feng Shui 101: How to Harmonize Your Home in the New Year
  • Filtering and Organizing Data with JavaScript
  • Flying Machines
  • Foods against cravings
  • Foods that cool you from the inside
  • Four Misconceptions About Drinking
  • Fox News
  • Free APIs
  • Funny Life Quotes
  • Generate Faces
  • Generate Random Numbers in C#
  • Genius Money Hacks for Massive Savings
  • Git Cheat Sheet
  • git config
  • Git for Beginners
  • Git Fork
  • GitHub
  • GitHub Concepts
  • Green Careers Set to Grow in the Next Decade
  • Grouping in EF Core
  • Habits Of Highly Stressed People and how to avoid them
  • Happy Birthday Wishes & Quotes
  • Helm Overview
  • How to Clean Floors – Tips & Tricks
  • How to invest during the 2021 pandemic
  • How To Make Money From Real Estate
  • How To Stop Drinking Coffee
  • HTML 'video' Tag
  • HTTP
  • HTTP PUT
  • Image for Websites
  • Implementing Efficient Search Functionality in React
  • Inspirational Quotes
  • Install PowerShell
  • Iqra Technology, IT Services provider Company
  • JavaScript
  • JavaScript Array Object
  • JavaScript Collection
  • JavaScript Functions
  • JavaScript Scope
  • JavaScript Snippets
  • JavaScript Tutorial
  • JavaScript Variables
  • Jobs Of 2050
  • jQuery
  • jQuery plugins
  • JS Async
  • JSON (JavaScript Object Notation)
  • JSON Deserialization in C#
  • JSON for Linking Data (JSON-LD)
  • Json to C# Converters
  • JSON Tree Viewer JavaScript Plugin
  • JSON Web Tokens, (JWT)
  • Karen Lamb Quotes
  • Kubernetes Objects
  • Kubernetes Tools
  • Kusto Query Language
  • Lack of time at work? 5 simple tricks to help you avoid stress
  • Lambda (C#)
  • Last Minute Travel Tips
  • Last-Minute-Reisetipps
  • Latest Robotics
  • LDAP
  • LDAP search filters
  • Leadership
  • Let in JavaScript
  • List Of Hobbies And Interests
  • Logitech BRIO Webcam
  • Management
  • Managing Services with PowerShell: A Quick Guide
  • Mark Twain Quotes
  • Markdown
  • Meet Sophia
  • Message-Oriented Architecture
  • Microservices
  • Microsoft Authenticator App
  • Microsoft Power Automate
  • Microsoft SQL Server
  • Microsoft Teams
  • Migrations VS Commands
  • Mobile UI Frameworks
  • Motivation
  • Multilingual Applications
  • NBC News
  • NuGet
  • Objectives and Key Results (OKR)
  • Objectives and Key Results (OKR) Samples
  • OKR Software
  • Online JSON Viewer and Parser
  • Operators
  • Outlook Automation
  • PCMag
  • Phases of any relationship
  • Playwright
  • Popular cars per decade
  • Popular Quotes
  • PowerShell
  • PowerShell Array Guide
  • PowerShell Cmdlets
  • PowerShell Coding Samples
  • PowerToys
  • Prism
  • Pros & Cons Of Alternative Energy
  • Quill Rich Text Editor
  • Quotes
  • RACI Matrix
  • Razor Syntax
  • React Click Event Handlers
  • React Conditional Rendering
  • React Context
  • React Hooks
  • React Router
  • Reasons why singletasking is better than multitasking
  • Regular Expression (RegEx)
  • Reorder List in JavaScript
  • Resize Images in C#
  • Response Caching in ASP.NET Core
  • RESTful APIs
  • Rich Text Editors
  • Rob Siltanen Quotes
  • Robots
  • Run sudo commands
  • Salesforce Offshore Support Services Provider
  • Salesforce Offshore Support Services Providers
  • Sample Data
  • Save Money On Food
  • Score with authenticity in the job interview
  • Scrum
  • Scrum Meetings
  • Security
  • Semantic Versioning
  • Serialization using Thread Synchronization
  • Service Worker
  • Snipps
  • Speak and Presentation
  • Sprint Backlog
  • SQL Functions
  • SQL References
  • SQL Server Full-Text Search
  • SQL UPDATE
  • Stress
  • Successful
  • Surface Lineup 2021
  • Surface Lineup 2021 Videos
  • SVG Online Editors
  • TanStack Query (FKA React Query)
  • Task Class
  • Team Manifesto
  • Technologies
  • Technology Abbreviations
  • Technology Glossary
  • TechSpot
  • That is why you should drink cucumber water every day
  • The Cache Tag Helper in ASP.NET Core
  • The Verge
  • Theodore Roosevelt Quotes
  • These 7 things make you unattractive
  • Things Successful People Do That Others Don’t
  • Things to Consider for a Great Birthday Party
  • Things to Consider When Designing A Website
  • Thoughts
  • Thread Class
  • TinyMCE Image Options
  • TinyMCE Toolbar Options
  • Tips for a Joyful Life
  • Tips for fewer emails at work
  • Tips for Making Better Decisions
  • Tips for Managing the Stress of Working at Home
  • Tips for Writing that Great Blog Post
  • Tips On Giving Flowers As Gifts
  • Tips you will listen better
  • Top Fitness Tips
  • Top Healthy Tips
  • Top Money Tips
  • Top Ten Jobs
  • Track Authenticated Users in Application Insights
  • Transactions in EF Core
  • Unicode Characters
  • Uri Class
  • useContext Hook in React
  • Var in JavaScript
  • Visual Studio 2022
  • Vital everyday work: tips for healthy work
  • Walking barefoot strengthens your immune system
  • Walt Disney Quotes
  • Ways for Kids to Make Money
  • Web Design Trends & Ideas
  • Web Icons
  • Web Scraping
  • Webhooks
  • Website Feature Development
  • What are my options for investing money?
  • What happens when you drink water in the morning
  • What Is Stressful About Working at Home
  • What To Eat For Lunch
  • Windows
  • Windows 11 Top Features You Should Know
  • Winston Churchill Quotes
  • XPath
  • You'll burn out your team with these 5 leadership mistakes
  • ZDNet
 
Sets