Clear understanding of how to create an AWS account, enable MFA for added security, and manage MFA settings for your AWS resources.

OpenAI websitehttps://openai.com/   Sample code used in the demo pip install openai import openai import json import datetime d = datetime.datetime.now() f = '%Y%m%d%H%M%S' strdatetime = d.strftime(f) file_name = "history_" + strdatetime + ".json" model_engine = "gpt-3.5-turbo" openai.api_key = "******************************************" # Please replace with a secret key. messages = [] open(file_name, "w") while True: user_input […]

# Download website - https://www.anaconda.com/ - https://code.visualstudio.com/   # Confirmation of python version python --version   # List of virtual env conda info -e   # Creating virtual env conda create -n py3.10.9 --clone base   # Virtual env activation and deactivation activate py3.10.9 deactivate   # Initializing powershell conda init powershell   # Setting […]

Udemy course "Hands-On : Azure SQL Database Training for IT Architect" has been released. https://www.udemy.com/course/hands-on-azure-sql-database-training-for-it-architect/ Table of contents: Section1. Introduction 1. What is Azure SQL Database? 2. Preparation for using Microsoft Azure 3. Learning contents of the course 4. Service tiers and Availability models Section2. A. Performance and Scalability 5. Scale-up and Read scale-out 6. […]

"Hands-On Azure Tenant and SQL Database deployment" has been released. Scripts and codes can be downloaded in the Udemy course. https://www.udemy.com/course/hands-on-azure-tenant-and-sql-database-deployment/ Table of contents: 1.What is Azure SQL Database? 2.Preparation for using Microsoft Azure 3.Deployment of Azure SQL Database 4.Preparation of Database Client, Management Studio 5.Connecting to Azure SQL Database by using Management Studio 6.Creating […]