├── .gitignore ├── LICENSE ├── On .NET Live └── Jun202022_Authentication │ ├── .gitignore │ ├── Documentation │ └── Images │ │ ├── Architecture.PNG │ │ ├── BuildPipelineSQLDacPac.PNG │ │ ├── DeploySQLToLocalDB.PNG │ │ ├── Information.PNG │ │ ├── PR_CI_CD.PNG │ │ ├── ReleasePipelineSQLDacPac.PNG │ │ ├── SeatBelt.PNG │ │ ├── ViswanathaSwamyPK.PNG │ │ └── WhyIdentityServer.PNG │ └── README.md ├── README.md ├── TechTalk.pptx ├── aws-learning ├── 25Dec2022_LambdaIntegration_S3_SQS_SNS │ ├── .gitignore │ ├── Infrastructure │ │ ├── A1_S3_Bucket_Object │ │ │ ├── .terraform.lock.hcl │ │ │ ├── A1-variables.tf │ │ │ ├── A2-main.tf │ │ │ ├── A3-outputs.tf │ │ │ └── content │ │ │ │ └── product-1.png │ │ ├── A2_S3_Static_Website │ │ │ ├── .terraform.lock.hcl │ │ │ ├── a1-variables.tf │ │ │ ├── a2-main.tf │ │ │ ├── a3-outputs.tf │ │ │ └── content │ │ │ │ ├── error.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── scripts │ │ │ │ └── index.js │ │ │ │ └── styles │ │ │ │ └── style.css │ │ └── A3_DynamoDB_Table │ │ │ ├── .terraform.lock.hcl │ │ │ ├── a1-variables.tf │ │ │ ├── a2-locals.tf │ │ │ ├── a2-main.tf │ │ │ ├── a3-outputs.tf │ │ │ └── data.json │ ├── LICENSE │ ├── README.md │ └── documentation │ │ └── images │ │ ├── APIG_Synchronous.PNG │ │ ├── Information.PNG │ │ ├── LambdaFunction_Triggers.PNG │ │ ├── S3_Asynchronous_1.PNG │ │ ├── S3_Asynchronous_2.PNG │ │ ├── SQS_Polling_1.PNG │ │ ├── SQS_Polling_2.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG ├── S3_15Jan2022_.NET6_In_AWS_EC2 │ ├── .gitignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── LICENSE │ ├── README.md │ ├── documentation │ │ └── images │ │ │ ├── .NET6WebAPIwithDynamoDB.PNG │ │ │ ├── AccessWebApiLocally_1.PNG │ │ │ ├── AccessWebApiLocally_2.PNG │ │ │ ├── BlazorWASMInEC2_WebAPIinEC2.PNG │ │ │ ├── BlazorWASMIntoEC2.PNG │ │ │ ├── ConfigureAWSCredentials.PNG │ │ │ ├── EC2_IIS_WebDeploy_.NET6_WebApp.PNG │ │ │ ├── Information.PNG │ │ │ ├── SeatBelt.PNG │ │ │ ├── Trust_Dev_Certs.PNG │ │ │ ├── Verify.NET6WebApiDynamoDbLocally.PNG │ │ │ ├── Verify.NET6WebApiDynamoDb_HostedEC2.PNG │ │ │ ├── Verify.NET6WebApi_WithBlazorWasm.PNG │ │ │ ├── Verifying_Products_Api_Inside_EC2.PNG │ │ │ └── ViswanathaSwamyPK.PNG │ └── source │ │ └── products-shop │ │ ├── api │ │ └── Products.Api │ │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ │ ├── Controllers │ │ │ ├── ProductsController.cs │ │ │ └── WeatherForecastController.cs │ │ │ ├── Products.Api.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ ├── common │ │ ├── Products.Core │ │ │ ├── Class1.cs │ │ │ └── Products.Core.csproj │ │ └── Products.Data │ │ │ ├── ProductDbModel.cs │ │ │ ├── Products.Data.csproj │ │ │ └── WeatherForecast.cs │ │ ├── products-shop.sln │ │ └── web │ │ ├── Products.DataServices │ │ ├── IProductsDataServices.cs │ │ ├── Products.DataServices.csproj │ │ └── ProductsDataServices.cs │ │ └── Products.Web │ │ ├── App.razor │ │ ├── Pages │ │ ├── Counter.razor │ │ ├── FetchData.razor │ │ ├── Index.razor │ │ └── Product │ │ │ ├── List.razor │ │ │ └── List.razor.cs │ │ ├── Products.Web.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ └── SurveyPrompt.razor │ │ ├── _Imports.razor │ │ └── wwwroot │ │ ├── appsettings.Production.json │ │ ├── appsettings.json │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ │ ├── favicon.ico │ │ ├── icon-192.png │ │ ├── images │ │ ├── books │ │ │ ├── Book1.jpg │ │ │ ├── Book10.jpg │ │ │ ├── Book2.jpg │ │ │ ├── Book3.jpg │ │ │ ├── Book4.jpg │ │ │ ├── Book5.jpg │ │ │ ├── Book6.jpg │ │ │ ├── Book7.jpg │ │ │ ├── Book8.jpg │ │ │ └── Book9.jpg │ │ └── loader.gif │ │ ├── index.html │ │ └── sample-data │ │ └── weather.json ├── S4_28Aug_.NET6_S3_Lambda │ ├── .gitignore │ ├── Infrastructure │ │ ├── A1_S3_Bucket_Object │ │ │ ├── .terraform.lock.hcl │ │ │ ├── A1-variables.tf │ │ │ ├── A2-main.tf │ │ │ ├── A3-outputs.tf │ │ │ └── content │ │ │ │ └── product-1.png │ │ └── A2_S3_Static_Website │ │ │ ├── .terraform.lock.hcl │ │ │ ├── a1-variables.tf │ │ │ ├── a2-main.tf │ │ │ ├── a3-outputs.tf │ │ │ └── content │ │ │ ├── error.html │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── scripts │ │ │ └── index.js │ │ │ └── styles │ │ │ └── style.css │ ├── LICENSE │ ├── README.md │ ├── Source │ │ └── AWSS3.BasicsDemo │ │ │ ├── AWSS3.BasicsDemo.sln │ │ │ └── AWSS3.BasicsDemo │ │ │ ├── AWSS3.BasicsDemo.csproj │ │ │ ├── Program.cs │ │ │ ├── S3BucketHelper.cs │ │ │ ├── S3BucketUtility.cs │ │ │ ├── Uploads │ │ │ └── Sample-26jun2022.txt │ │ │ └── appsettings.json │ └── documentation │ │ ├── StarterFiles │ │ └── S3Uploads │ │ │ ├── Sample.txt │ │ │ ├── Sample2.txt │ │ │ └── Sample3.txt │ │ └── images │ │ ├── ForMeetUp.png │ │ ├── Information.PNG │ │ ├── LambdaFunc_InConsole.PNG │ │ ├── LambdaFunc_InConsole_1.PNG │ │ ├── Lambda_InVS2022.PNG │ │ ├── Lambda_InVS2022_1.PNG │ │ ├── SeatBelt.PNG │ │ ├── TF_S3_Bucket_Object.PNG │ │ ├── TF_S3_Bucket_Object_1.PNG │ │ ├── TF_S3_Static_WebSite.PNG │ │ ├── TF_S3_Static_WebSite_1.PNG │ │ ├── TF_S3_Static_WebSite_2.PNG │ │ ├── TF_S3_Static_WebSite_BuildNg.PNG │ │ ├── TF_S3_Static_WebSite_Ng.PNG │ │ └── ViswanathaSwamyPK.PNG ├── S5_29Sep_.NET6_DynamoDB_Lambda │ ├── .gitignore │ ├── Infrastructure │ │ ├── A1_S3_Bucket_Object │ │ │ ├── .terraform.lock.hcl │ │ │ ├── A1-variables.tf │ │ │ ├── A2-main.tf │ │ │ ├── A3-outputs.tf │ │ │ └── content │ │ │ │ └── product-1.png │ │ ├── A2_S3_Static_Website │ │ │ ├── .terraform.lock.hcl │ │ │ ├── a1-variables.tf │ │ │ ├── a2-main.tf │ │ │ ├── a3-outputs.tf │ │ │ └── content │ │ │ │ ├── error.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── scripts │ │ │ │ └── index.js │ │ │ │ └── styles │ │ │ │ └── style.css │ │ └── A3_DynamoDB_Table │ │ │ ├── .terraform.lock.hcl │ │ │ ├── a1-variables.tf │ │ │ ├── a2-locals.tf │ │ │ ├── a2-main.tf │ │ │ ├── a3-outputs.tf │ │ │ └── data.json │ ├── LICENSE │ ├── README.md │ └── documentation │ │ └── images │ │ ├── AWSLambda_LocalVerification.PNG │ │ ├── CloudWatch_Log_1.PNG │ │ ├── CloudWatch_Log_2.PNG │ │ ├── DyanmoDB_Table.PNG │ │ ├── DyanmoDB_Terraform.PNG │ │ ├── Information.PNG │ │ ├── PublishAndValidateLambda.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG └── S6_15Oct_.NET6_DynamoDB_Lambda_Part2 │ ├── .gitignore │ ├── Infrastructure │ ├── A1_S3_Bucket_Object │ │ ├── .terraform.lock.hcl │ │ ├── A1-variables.tf │ │ ├── A2-main.tf │ │ ├── A3-outputs.tf │ │ └── content │ │ │ └── product-1.png │ ├── A2_S3_Static_Website │ │ ├── .terraform.lock.hcl │ │ ├── a1-variables.tf │ │ ├── a2-main.tf │ │ ├── a3-outputs.tf │ │ └── content │ │ │ ├── error.html │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── scripts │ │ │ └── index.js │ │ │ └── styles │ │ │ └── style.css │ └── A3_DynamoDB_Table │ │ ├── .terraform.lock.hcl │ │ ├── a1-variables.tf │ │ ├── a2-locals.tf │ │ ├── a2-main.tf │ │ ├── a3-outputs.tf │ │ └── data.json │ ├── LICENSE │ ├── README.md │ └── documentation │ └── images │ ├── AWSLambda_LocalVerification.PNG │ ├── CloudWatch_Log_1.PNG │ ├── CloudWatch_Log_2.PNG │ ├── DyanmoDB_Table.PNG │ ├── DyanmoDB_Terraform.PNG │ ├── Information.PNG │ ├── PublishAndValidateLambda.PNG │ ├── SeatBelt.PNG │ └── ViswanathaSwamyPK.PNG ├── csharp-corner ├── .gitignore ├── Az-204-Series-Sessions.txt ├── C#CornerAnnualConference2022_10Oct │ ├── .gitignore │ ├── Documentation │ │ └── Images │ │ │ ├── Information.PNG │ │ │ ├── Products.API.PNG │ │ │ ├── SeatBelt.PNG │ │ │ └── ViswanathaSwamyPK.PNG │ └── README.md ├── Infrastructure │ ├── A1-PSScripts │ │ ├── A1-SearchVms.ps1 │ │ ├── A2-CreateVmWindows.ps1 │ │ └── A3-CreateVmUbuntu.ps1 │ ├── A2-AzureCli │ │ ├── A1-CreateVmWindows.sh │ │ └── A2-CreateUbuntuVm.sh │ └── A3-ARMTemplates │ │ ├── A1-StorageAccount │ │ ├── deploy.sh │ │ ├── storage-deploy.json │ │ ├── storage-parameters.json │ │ └── validate.sh │ │ ├── A2-SqlServer │ │ ├── deploy.sh │ │ ├── sql-server.deploy.json │ │ ├── sql-server.parameters.json │ │ └── validate.sh │ │ ├── A3-WebApp │ │ ├── deploy.sh │ │ ├── validate.sh │ │ ├── webapp.deploy.json │ │ └── webapp.parameters.json │ │ ├── A4-KeyVault │ │ ├── deploy.sh │ │ ├── keyvault.deploy.json │ │ ├── keyvault.parameters.json │ │ └── validate.sh │ │ ├── A5-UbuntuVM │ │ ├── deploy.sh │ │ ├── ubuntuvm.deploy.json │ │ ├── ubuntuvm.parameters.json │ │ └── validate.sh │ │ └── A6-CosmosDb │ │ ├── cosmos-sql.deploy.json │ │ ├── cosmos-sql.parameters.json │ │ ├── deploy.sh │ │ └── validate.sh ├── MSLearnModules.xlsx ├── S1_Implement_IaaS_08aug2022 │ ├── .gitignore │ ├── Documentation │ │ └── Images │ │ │ ├── ARM_AppServicePlan_App.PNG │ │ │ ├── ARM_KeyVault.PNG │ │ │ ├── ARM_SqlServer_Database.PNG │ │ │ ├── ARM_StorageAccount.PNG │ │ │ ├── ARM_UbuntuVM.PNG │ │ │ ├── ARM_UbuntuVM_1.PNG │ │ │ ├── Information.PNG │ │ │ ├── SeatBelt.PNG │ │ │ ├── UbuntuVMUsingAzCli.PNG │ │ │ ├── UbuntuVMUsingAzCli_1.PNG │ │ │ ├── UbuntuVMUsingPowerShell.PNG │ │ │ ├── UbuntuVMUsingPowerShell_1.PNG │ │ │ ├── ViswanathaSwamyPK.PNG │ │ │ ├── WindowsVMUsingAzCli.PNG │ │ │ ├── WindowsVMUsingAzCli_1.PNG │ │ │ ├── WindowsVMUsingPowerShell.PNG │ │ │ └── WindowsVMUsingPowerShell_1.PNG │ └── README.md ├── S2_SqlCosmos_WebApiApp_12sep2022 │ ├── .gitignore │ ├── Documentation │ │ └── Images │ │ │ ├── ARM_CosmosDb_CoreSql.PNG │ │ │ ├── ARM_CosmosDb_CoreSql_1.PNG │ │ │ ├── ARM_SqlServer_Database.PNG │ │ │ ├── BlazorWASM_WithWebAPI.PNG │ │ │ ├── Information.PNG │ │ │ ├── SQLServer_Access.PNG │ │ │ ├── SeatBelt.PNG │ │ │ ├── VS2022_SQLServerConnection.PNG │ │ │ ├── VS2022_SQLServer_Deployment.PNG │ │ │ ├── ViswanathaSwamyPK.PNG │ │ │ └── WebAPI_Accessing_SQLServer.PNG │ └── README.md └── S3_Iaas_PaaS_WebApps_Deploy_03Oct2022 │ ├── .gitignore │ ├── Documentation │ └── Images │ │ ├── ARM_CosmosDb_CoreSql.PNG │ │ ├── ARM_CosmosDb_CoreSql_1.PNG │ │ ├── ARM_SqlServer_Database.PNG │ │ ├── ARM_WebApp.PNG │ │ ├── ARM_WindowsVM.PNG │ │ ├── BlazorWASM_WithWebAPI.PNG │ │ ├── BraveBrowser.PNG │ │ ├── DotNet6Hosting.PNG │ │ ├── Enable8172Port.PNG │ │ ├── IISManagementService.PNG │ │ ├── IISRole_1.PNG │ │ ├── Information.PNG │ │ ├── SQLServer_Access.PNG │ │ ├── SeatBelt.PNG │ │ ├── URLReWrite.PNG │ │ ├── VMCertificate.PNG │ │ ├── VMConnectionValidated.PNG │ │ ├── VMDNSName.PNG │ │ ├── VS2022_SQLServerConnection.PNG │ │ ├── VS2022_SQLServer_Deployment.PNG │ │ ├── ViswanathaSwamyPK.PNG │ │ ├── WebAPI_Accessing_SQLServer.PNG │ │ ├── WebAppUp_Html.PNG │ │ ├── WebDeploy.PNG │ │ └── Without8172Port.PNG │ └── README.md ├── dot-net-learners-house ├── 2022Feb12_CloudNativeAppsinAzure │ ├── .gitignore │ ├── Documentation │ │ └── Images │ │ │ ├── AddingAPIsToAPIM.PNG │ │ │ ├── AppSettings_AzureKeyVaultReference.PNG │ │ │ ├── BlazorWASMInAzure.PNG │ │ │ ├── BlazorWasmCreateDocker.PNG │ │ │ ├── ConnectingToSQLAzure.PNG │ │ │ ├── DataInAzureRedisCache.PNG │ │ │ ├── DeployingToSQLAzure.PNG │ │ │ ├── Information.PNG │ │ │ ├── PermissionToAzureKeyVault.PNG │ │ │ ├── PublishWebAPIToAzure.PNG │ │ │ ├── RunningTheBooksContainer.PNG │ │ │ ├── SeatBelt.PNG │ │ │ ├── SecretsInAzureKeyVault.PNG │ │ │ ├── SimpleCacheAsidePattern.PNG │ │ │ └── ViswanathaSwamyPK.PNG │ └── README.md └── 2022Mar12_Azure_DevOps_CICD │ ├── .gitignore │ ├── Documentation │ └── Images │ │ ├── Architecture.PNG │ │ ├── BuildPipelineSQLDacPac.PNG │ │ ├── DeploySQLToLocalDB.PNG │ │ ├── Information.PNG │ │ ├── PR_CI_CD.PNG │ │ ├── ReleasePipelineSQLDacPac.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG │ └── README.md └── microsoft-reactor ├── Az-204_Labs_1_2_3_24Sep2022 ├── .gitignore ├── Documentation │ └── Images │ │ ├── BraveBrowser.PNG │ │ ├── DotNet6Hosting.PNG │ │ ├── Enable8172Port.PNG │ │ ├── IISManagementService.PNG │ │ ├── IISRole_1.PNG │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ ├── URLReWrite.PNG │ │ ├── VMCertificate.PNG │ │ ├── VMConnectionValidated.PNG │ │ ├── VMDNSName.PNG │ │ ├── ViswanathaSwamyPK.PNG │ │ ├── WebDeploy.PNG │ │ └── Without8172Port.PNG └── README.md ├── Az-204_Labs_4_5_7_12Nov2022 ├── .gitignore ├── Documentation │ └── Images │ │ ├── CosmosDbQuery.PNG │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG ├── README.md └── Source │ ├── PolyglotDataLab │ ├── AdventureWorks.Context │ │ ├── AdventureWorks.Context.csproj │ │ ├── AdventureWorksCosmosContext.cs │ │ └── Interfaces │ │ │ └── IAdventureWorksProductContext.cs │ ├── AdventureWorks.Models │ │ ├── AdventureWorks.Models.csproj │ │ ├── Model.cs │ │ └── Product.cs │ ├── AdventureWorks.Upload │ │ ├── AdventureWorks.Upload.csproj │ │ ├── DataStore │ │ │ └── models.json │ │ ├── Models │ │ │ ├── Model.cs │ │ │ └── Product.cs │ │ ├── Program.cs │ │ └── appsettings.json │ ├── AdventureWorks.Web │ │ ├── AdventureWorks.Web.csproj │ │ ├── Configuration │ │ │ └── Settings.cs │ │ ├── Pages │ │ │ ├── Details.cshtml │ │ │ ├── Details.cshtml.cs │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ └── mountains.jpg │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ └── PolyglotDataLab.sln │ └── RetrieveIpAddress │ ├── RetrieveIpAddress.sln │ └── RetrieveIpAddress │ ├── Program.cs │ └── RetrieveIpAddress.csproj ├── Demo ├── Demo.sln ├── GreetingsLib │ ├── Greetings.cs │ └── GreetingsLib.csproj ├── UseGreetingsLibFW │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── UseGreetingsLibFW.csproj └── UseGreetingslibCore │ ├── Program.cs │ └── UseGreetingslibCore.csproj ├── Demos.pptx ├── Gettingstarted-Microservicein.NET6-SamosaChai.NET_21Oct ├── .gitignore ├── Documentation │ └── Images │ │ ├── Information.PNG │ │ ├── Products.API.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG └── README.md ├── S10_2022Feb02_Azure Web Apps Scaling ├── .gitignore ├── Documentation │ ├── Images │ │ ├── 1DatabaseDeployment.PNG │ │ ├── Github-Func-WebHook-Img1.PNG │ │ ├── Github-Func-WebHook-Img2.PNG │ │ ├── Github-Func-WebHook-Img3.PNG │ │ ├── Github-Func-WebHook-Img4.PNG │ │ ├── Github-Func-WebHook-Img5.PNG │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG │ └── StarterFiles │ │ ├── MiniProject1 │ │ ├── function.json │ │ ├── index.js │ │ └── package.json │ │ ├── MiniProject2 │ │ ├── 1WriteToSBQ │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── 2ReadFromSBQ │ │ │ ├── function.json │ │ │ └── index.js │ │ └── 3ReadFromBlob │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── MiniProject3 │ │ ├── 1TimerMsgToAQS │ │ │ ├── function.json │ │ │ └── index.js │ │ └── 2ReadFromAQS │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── MiniProject4 │ │ └── GitCodeChangeTracker │ │ │ └── ToBeDone.txt │ │ └── deletetxtfiles.bat ├── README.md └── Source │ ├── FuncApp.HealthCheckDemo │ ├── FuncApp.HealthCheckDemo.sln │ ├── FuncApp.HealthCheckDemo │ │ ├── .gitignore │ │ ├── FuncApp.HealthCheckDemo.csproj │ │ ├── Function1.cs │ │ ├── Properties │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ ├── SQLDb1HealthCheck.cs │ │ ├── SampleHealthCheck.cs │ │ ├── Startup.cs │ │ └── host.json │ ├── HealthCheck.BlazorWASMUI │ │ ├── Client │ │ │ ├── App.razor │ │ │ ├── HealthCheck.BlazorWASMUI.Client.csproj │ │ │ ├── Pages │ │ │ │ ├── Counter.razor │ │ │ │ ├── FetchData.razor │ │ │ │ └── Index.razor │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Shared │ │ │ │ ├── MainLayout.razor │ │ │ │ ├── MainLayout.razor.css │ │ │ │ ├── NavMenu.razor │ │ │ │ ├── NavMenu.razor.css │ │ │ │ └── SurveyPrompt.razor │ │ │ ├── _Imports.razor │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ ├── app.css │ │ │ │ ├── bootstrap │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── open-iconic │ │ │ │ │ ├── FONT-LICENSE │ │ │ │ │ ├── ICON-LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── font │ │ │ │ │ ├── css │ │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ │ └── fonts │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ ├── open-iconic.svg │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ └── open-iconic.woff │ │ │ │ ├── favicon.ico │ │ │ │ ├── icon-192.png │ │ │ │ └── index.html │ │ ├── Server │ │ │ ├── Controllers │ │ │ │ └── WeatherForecastController.cs │ │ │ ├── HealthCheck.BlazorWASMUI.Server.csproj │ │ │ ├── Pages │ │ │ │ ├── Error.cshtml │ │ │ │ └── Error.cshtml.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ └── Shared │ │ │ ├── HealthCheck.BlazorWASMUI.Shared.csproj │ │ │ └── WeatherForecast.cs │ └── HealthCheckUIDemo │ │ ├── HealthCheckUIDemo.csproj │ │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Services │ │ ├── ISQLDbHealthCheckService.cs │ │ └── SQLDbHealthCheckService.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ ├── WebAPIApp.BenchmarkDemo │ ├── WebAPIApp.BenchmarkDemo.sln │ └── WebAPIApp.BenchmarkDemo │ │ ├── BenchmarkWebAPIAndApp.cs │ │ ├── BooksStoreApp.cs │ │ ├── ProductsAPIClient.cs │ │ ├── ProfessorsAPIClient.cs │ │ ├── Program.cs │ │ └── WebAPIApp.BenchmarkDemo.csproj │ └── a.txt ├── S11_2022Feb09_Azure_Web_Apis_and_Apps ├── .gitignore ├── Documentation │ └── Images │ │ ├── 1DatabaseDeployment.PNG │ │ ├── Angular13_MEAN.PNG │ │ ├── AppServiceDockerContainer.PNG │ │ ├── AzureContainerInstance.PNG │ │ ├── AzureContainerRegistry.PNG │ │ ├── Information.PNG │ │ ├── InsideDockerRegistry.PNG │ │ ├── NodeJS_Linux_Docker_Container.PNG │ │ ├── PushingToDocker.PNG │ │ ├── ReactJS_MERN.PNG │ │ ├── SeatBelt.PNG │ │ ├── ViswanathaSwamyPK.PNG │ │ └── WebAppFromDocker.PNG ├── README.md └── Source │ ├── booksstore-api │ ├── .deployment │ ├── .gitignore │ ├── .vscode │ │ └── settings.json │ ├── ReadMe.md │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── app.js │ │ ├── config │ │ └── example.env │ │ ├── controllers │ │ └── booksController.js │ │ ├── middleware │ │ ├── errorMiddleware.js │ │ └── loggerMiddleware.js │ │ ├── models │ │ ├── bookModel.js │ │ └── bookSchemaValidator.js │ │ ├── persistence │ │ └── mongoDbHelper.js │ │ ├── routes │ │ └── bookRouter.js │ │ └── server.js │ ├── booksstore-ngapp │ ├── .browserslistrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── components │ │ │ │ ├── home │ │ │ │ │ ├── aboutus │ │ │ │ │ │ ├── aboutus.component.html │ │ │ │ │ │ ├── aboutus.component.scss │ │ │ │ │ │ ├── aboutus.component.spec.ts │ │ │ │ │ │ └── aboutus.component.ts │ │ │ │ │ ├── contactus │ │ │ │ │ │ ├── contactus.component.html │ │ │ │ │ │ ├── contactus.component.scss │ │ │ │ │ │ ├── contactus.component.spec.ts │ │ │ │ │ │ └── contactus.component.ts │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard.component.html │ │ │ │ │ │ ├── dashboard.component.scss │ │ │ │ │ │ ├── dashboard.component.spec.ts │ │ │ │ │ │ └── dashboard.component.ts │ │ │ │ │ ├── home-routing.module.ts │ │ │ │ │ ├── home.module.ts │ │ │ │ │ └── page-notfound │ │ │ │ │ │ ├── page-notfound.component.html │ │ │ │ │ │ ├── page-notfound.component.scss │ │ │ │ │ │ ├── page-notfound.component.spec.ts │ │ │ │ │ │ └── page-notfound.component.ts │ │ │ │ ├── products │ │ │ │ │ ├── list-books │ │ │ │ │ │ ├── list-books.component.html │ │ │ │ │ │ ├── list-books.component.scss │ │ │ │ │ │ ├── list-books.component.spec.ts │ │ │ │ │ │ └── list-books.component.ts │ │ │ │ │ ├── list-products │ │ │ │ │ │ ├── list-products.component.html │ │ │ │ │ │ ├── list-products.component.scss │ │ │ │ │ │ ├── list-products.component.spec.ts │ │ │ │ │ │ └── list-products.component.ts │ │ │ │ │ ├── products-routing.module.ts │ │ │ │ │ └── products.module.ts │ │ │ │ └── shared │ │ │ │ │ ├── footer │ │ │ │ │ ├── footer.component.html │ │ │ │ │ ├── footer.component.scss │ │ │ │ │ ├── footer.component.spec.ts │ │ │ │ │ └── footer.component.ts │ │ │ │ │ ├── notifications-button │ │ │ │ │ ├── notifications-button.component.html │ │ │ │ │ ├── notifications-button.component.scss │ │ │ │ │ ├── notifications-button.component.spec.ts │ │ │ │ │ └── notifications-button.component.ts │ │ │ │ │ ├── shared.module.ts │ │ │ │ │ ├── star-raiting │ │ │ │ │ ├── star-raiting.component.html │ │ │ │ │ ├── star-raiting.component.scss │ │ │ │ │ ├── star-raiting.component.spec.ts │ │ │ │ │ └── star-raiting.component.ts │ │ │ │ │ └── top-navbar │ │ │ │ │ ├── top-navbar.component.html │ │ │ │ │ ├── top-navbar.component.scss │ │ │ │ │ ├── top-navbar.component.spec.ts │ │ │ │ │ └── top-navbar.component.ts │ │ │ └── core │ │ │ │ ├── components │ │ │ │ ├── alerts │ │ │ │ │ └── error-alert │ │ │ │ │ │ ├── error-alert.component.html │ │ │ │ │ │ ├── error-alert.component.scss │ │ │ │ │ │ ├── error-alert.component.spec.ts │ │ │ │ │ │ └── error-alert.component.ts │ │ │ │ ├── core-components.module.ts │ │ │ │ └── loader │ │ │ │ │ ├── loader.component.html │ │ │ │ │ ├── loader.component.scss │ │ │ │ │ ├── loader.component.spec.ts │ │ │ │ │ └── loader.component.ts │ │ │ │ └── products │ │ │ │ ├── interfaces │ │ │ │ ├── ibook.dto.ts │ │ │ │ └── iproduct.dto.ts │ │ │ │ ├── pipes │ │ │ │ └── converttospaces.pipe.ts │ │ │ │ └── services │ │ │ │ ├── books.service.spec.ts │ │ │ │ ├── books.service.ts │ │ │ │ ├── products.service.spec.ts │ │ │ │ └── products.service.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── images │ │ │ │ ├── 404PageNotFound.png │ │ │ │ ├── employees │ │ │ │ ├── Employee1.png │ │ │ │ ├── Employee2.png │ │ │ │ └── Employee3.png │ │ │ │ └── products │ │ │ │ ├── garden_cart.png │ │ │ │ ├── hammer.png │ │ │ │ ├── leaf_rake.png │ │ │ │ ├── logo.jpg │ │ │ │ ├── saw.png │ │ │ │ └── xbox-controller.png │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.scss │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json │ └── booksstore-rjapp │ ├── .babelrc │ ├── .gitignore │ ├── .vscode │ └── settings.json │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.js │ ├── components │ ├── books │ │ ├── AddBookPage.js │ │ ├── DeleteBookPage.js │ │ ├── EditBookPage.js │ │ └── ListBooksPage.js │ ├── layout │ │ ├── Footer.js │ │ ├── SideNavBar.js │ │ └── TopNavbar.js │ ├── pages │ │ ├── AboutPage.js │ │ └── HomePage.js │ └── shared │ │ ├── 404PageNotFound.png │ │ └── PageNotFound.js │ ├── index.css │ ├── index.js │ └── services │ └── booksService.js ├── S12_2022Feb23_Azure_Durable_Functions ├── .gitignore ├── Documentation │ └── Images │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ ├── SolutionMap.PNG │ │ ├── Storage_TaskHubs.PNG │ │ ├── ViswanathaSwamyPK.PNG │ │ └── ViswanathaSwamyPK_20Mar2022.PNG ├── README.md ├── Readme_20Mar2022.md └── Source │ ├── WeatherUtility.Core │ ├── DTOs │ │ ├── WeatherRequestDto.cs │ │ └── WeatherResponseDto.cs │ ├── Entities │ │ └── WeatherData.cs │ ├── Interfaces │ │ ├── ITemperatureConvertor.cs │ │ ├── ITemperatureUtility.cs │ │ ├── IWeatherDataService.cs │ │ └── IWeatherReport.cs │ └── WeatherUtility.Core.csproj │ ├── WeatherUtility.DurableFunctions.sln │ ├── WeatherUtility.DurableFunctions │ ├── .gitignore │ ├── ActivityFunctions.cs │ ├── HttpFunctions.cs │ ├── OrchestratorFunctions.cs │ ├── Properties │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.local.json │ ├── Startup.cs │ ├── WeatherUtility.DurableFunctions.csproj │ └── host.json │ ├── WeatherUtility.Lib │ ├── Services │ │ └── WeatherDataService.cs │ ├── TemperatureConvertor.cs │ ├── TemperatureUtility.cs │ ├── WeatherReport.cs │ └── WeatherUtility.Lib.csproj │ └── WeatherUtilitySolution.dgml ├── S13_2022Mar16_Azure_ACR_RunInACI ├── .gitignore ├── Documentation │ ├── Images │ │ ├── AzAcrBuild.PNG │ │ ├── AzAcrBuild_Image2.PNG │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG │ └── StarterFiles │ │ └── Dockerfile ├── README.md └── Source │ └── TheNewBookStore │ ├── .dockerignore │ ├── TheNewBookStore.sln │ └── TheNewBookStore │ ├── Dockerfile │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── TheNewBookStore.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── S14_2022Apr27_SecureCloudSolutions_MonitoringLogging ├── .gitignore ├── Documentation │ └── Images │ │ ├── Information.PNG │ │ ├── SQLDatabase_Encryption.PNG │ │ ├── SQLServer_Encryption.PNG │ │ ├── SeatBelt.PNG │ │ ├── Storage_Encryption.PNG │ │ ├── Storage_SecureTransfer.PNG │ │ └── ViswanathaSwamyPK.PNG └── README.md ├── S15_2022May11_Caching_and_CDN ├── .gitignore ├── Documentation │ └── Images │ │ ├── AzureCacheRedis_1.PNG │ │ ├── AzureCacheRedis_2.PNG │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG └── README.md ├── S17_2022Jun22_AzureCosmosDB ├── .gitignore ├── Documentation │ └── Images │ │ ├── AzureCacheRedis_1.PNG │ │ ├── AzureCacheRedis_2.PNG │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG ├── README.md └── Source │ └── CosmosDb.FamilyDemo │ ├── CosmosDb.FamilyDemo.sln │ └── CosmosDb.FamilyDemo │ ├── Address.cs │ ├── Child.cs │ ├── CosmosDb.FamilyDemo.csproj │ ├── Family.cs │ ├── Parent.cs │ ├── Pet.cs │ ├── Program.cs │ └── appsettings.json ├── S18_2022Jul06_AzureBlobStorage ├── .gitignore ├── Documentation │ └── Images │ │ ├── AzCopy_Copy_ToContainer.PNG │ │ ├── ContainerAndBlobMetadata_CURL.PNG │ │ ├── ContainerAndBlobMetadata_Postman.PNG │ │ ├── Information.PNG │ │ ├── SAS_For_AzCopy.PNG │ │ ├── SeatBelt.PNG │ │ ├── StorageBrowser.PNG │ │ ├── StorageExplorer.PNG │ │ └── ViswanathaSwamyPK.PNG ├── README.md └── Source │ └── AzBlobStorage.GettingStarted │ ├── AzBlobStorage.GettingStarted.sln │ └── AzBlobStorage.GettingStarted │ ├── AzBlobStorage.GettingStarted.csproj │ ├── BlobGettingStartedHelper.cs │ ├── Downloads │ ├── A.txt │ └── CopyOfimages │ │ └── B.txt │ ├── Program.cs │ ├── Uploads │ ├── ContainerAndBlobMetadata_CURL.PNG │ ├── Deleteme.txt │ ├── Sample.txt │ └── Simple06Jul2022.txt │ └── appsettings.json ├── S19_2022Jul20_MessageBasedSolutions ├── .gitignore ├── Documentation │ └── Images │ │ ├── ARMTemplate_StorageQueue.PNG │ │ ├── Az_ServiceBus_And_Queue.PNG │ │ ├── AzureStorageGettingStarted.PNG │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ ├── ServiceBusExplorer.PNG │ │ ├── ServiceBus_Send_Receive.PNG │ │ ├── StorageBrowser_Queue.PNG │ │ └── ViswanathaSwamyPK.PNG ├── README.md └── Source │ ├── ARMTemplates │ └── Storage │ │ ├── deploystorage.sh │ │ ├── parameters.json │ │ └── template.json │ ├── Az-204-MessageBasedDemos │ └── Az-204-MessageBasedDemos.sln │ ├── AzServiceBusQueue.GettingStarted │ ├── AzServiceBusQueue.MsgSender.csproj │ ├── Data │ │ └── Order.cs │ ├── Program.cs │ └── appsettings.json │ ├── AzServiceBusQueue.MsgReceiver │ ├── AzServiceBusQueue.MsgReceiver.csproj │ ├── Program.cs │ └── appsettings.json │ └── AzStorageQueue.GettingStarted │ ├── AzStorageQueue.GettingStarted.csproj │ ├── AzStorageQueueHelper.cs │ ├── Program.cs │ └── appsettings.json ├── S20_2022Aug10_EventBasedSolutions ├── .gitignore ├── Documentation │ └── Images │ │ ├── AzResources_Storage_EventGrid_WebHook.PNG │ │ ├── Azure_Func_Logs.PNG │ │ ├── Event_DeliveryDurability.PNG │ │ ├── Event_Schema.PNG │ │ ├── Event_Schema_1.PNG │ │ ├── Event_T0_AzureFunc.PNG │ │ ├── Filter_Demo.PNG │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ ├── Storage_EventGrid_WebHook.PNG │ │ ├── SubscriptionValidation.PNG │ │ └── ViswanathaSwamyPK.PNG └── README.md ├── S21_2022Aug24_Authentication_Authorization ├── .gitignore ├── Documentation │ └── Images │ │ ├── ADAppWithRBACInConsoleApp.PNG │ │ ├── AppRegistration_And_Permissions.PNG │ │ ├── CreateNewTenant.PNG │ │ ├── CreateNewUser.PNG │ │ ├── CreateNewUser_1.PNG │ │ ├── ExternalUserInvitation.PNG │ │ ├── GraphAPI_ConsoleApp.PNG │ │ ├── GraphAPI_Postman.PNG │ │ ├── GraphExplorer.PNG │ │ ├── Information.PNG │ │ ├── NewUser_WithoutSubscription.PNG │ │ ├── RABCForNewUser.PNG │ │ ├── SeatBelt.PNG │ │ ├── ViswanathaSwamyPK.PNG │ │ ├── WebAPIProtected.PNG │ │ └── WebAppWithAAD.PNG └── README.md ├── S24_2022Dec07_EventBased_EventHubs ├── .gitignore ├── Az204-Event-Hubs-Demos.sln ├── Documentation │ └── Images │ │ ├── Information.PNG │ │ ├── SeatBelt.PNG │ │ └── ViswanathaSwamyPK.PNG ├── README.md └── Source │ ├── Hospital.Core │ ├── DataHelper.cs │ ├── Device.cs │ └── Hospital.Core.csproj │ ├── Patient-ReceiveData │ ├── Patient-ReceiveData.csproj │ └── Program.cs │ └── Patient-SendData │ ├── Patient-SendData.csproj │ └── Program.cs └── S9_2022Jan12_WebAppsDeploymentSlots ├── .gitignore ├── Documentation ├── Images │ ├── Github-Func-WebHook-Img1.PNG │ ├── Github-Func-WebHook-Img2.PNG │ ├── Github-Func-WebHook-Img3.PNG │ ├── Github-Func-WebHook-Img4.PNG │ ├── Github-Func-WebHook-Img5.PNG │ ├── Information.PNG │ ├── SeatBelt.PNG │ └── ViswanathaSwamyPK.PNG └── StarterFiles │ ├── MiniProject1 │ ├── function.json │ ├── index.js │ └── package.json │ ├── MiniProject2 │ ├── 1WriteToSBQ │ │ ├── function.json │ │ └── index.js │ ├── 2ReadFromSBQ │ │ ├── function.json │ │ └── index.js │ └── 3ReadFromBlob │ │ ├── function.json │ │ └── index.js │ ├── MiniProject3 │ ├── 1TimerMsgToAQS │ │ ├── function.json │ │ └── index.js │ └── 2ReadFromAQS │ │ ├── function.json │ │ └── index.js │ ├── MiniProject4 │ └── GitCodeChangeTracker │ │ └── ToBeDone.txt │ └── deletetxtfiles.bat ├── README.md └── Source ├── College.Web ├── College.App │ ├── App.razor │ ├── College.App.csproj │ ├── Pages │ │ ├── Counter.razor │ │ ├── FetchData.razor │ │ └── Index.razor │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Shared │ │ ├── MainLayout.razor │ │ ├── MainLayout.razor.css │ │ ├── NavMenu.razor │ │ ├── NavMenu.razor.css │ │ └── SurveyPrompt.razor │ ├── _Imports.razor │ └── wwwroot │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── open-iconic │ │ │ ├── FONT-LICENSE │ │ │ ├── ICON-LICENSE │ │ │ ├── README.md │ │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ │ ├── favicon.ico │ │ ├── icon-192.png │ │ ├── index.html │ │ └── sample-data │ │ └── weather.json ├── College.RazorApp │ ├── .config │ │ └── dotnet-tools.json │ ├── College.RazorApp.csproj │ ├── Pages │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Privacy.cshtml │ │ ├── Privacy.cshtml.cs │ │ ├── Shared │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map ├── College.Web.sln └── WebJob1 │ ├── Functions.cs │ ├── Program.cs │ ├── Settings.job │ ├── WebJob1.csproj │ └── app.config └── FunctionApp1 ├── FunctionApp1.sln └── FunctionApp1 ├── .gitignore ├── Function1.cs ├── FunctionApp1.csproj ├── Properties ├── serviceDependencies.json └── serviceDependencies.local.json ├── appsettings.json └── host.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/LICENSE -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/.gitignore -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/Documentation/Images/Architecture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/Documentation/Images/Architecture.PNG -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/Documentation/Images/BuildPipelineSQLDacPac.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/Documentation/Images/BuildPipelineSQLDacPac.PNG -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/Documentation/Images/DeploySQLToLocalDB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/Documentation/Images/DeploySQLToLocalDB.PNG -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/Documentation/Images/PR_CI_CD.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/Documentation/Images/PR_CI_CD.PNG -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/Documentation/Images/ReleasePipelineSQLDacPac.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/Documentation/Images/ReleasePipelineSQLDacPac.PNG -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/Documentation/Images/WhyIdentityServer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/Documentation/Images/WhyIdentityServer.PNG -------------------------------------------------------------------------------- /On .NET Live/Jun202022_Authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/On .NET Live/Jun202022_Authentication/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/README.md -------------------------------------------------------------------------------- /TechTalk.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/TechTalk.pptx -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/.gitignore -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A1_S3_Bucket_Object/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A1_S3_Bucket_Object/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A1_S3_Bucket_Object/A1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A1_S3_Bucket_Object/A1-variables.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A1_S3_Bucket_Object/A2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A1_S3_Bucket_Object/A2-main.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A1_S3_Bucket_Object/A3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A1_S3_Bucket_Object/A3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/a1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/a1-variables.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/a2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/a2-main.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/a3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/a3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/content/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/content/error.html -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A2_S3_Static_Website/content/index.html -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/a1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/a1-variables.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/a2-locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/a2-locals.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/a2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/a2-main.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/a3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/a3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/Infrastructure/A3_DynamoDB_Table/data.json -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/LICENSE -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/README.md -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/APIG_Synchronous.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/APIG_Synchronous.PNG -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/Information.PNG -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/LambdaFunction_Triggers.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/LambdaFunction_Triggers.PNG -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/S3_Asynchronous_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/S3_Asynchronous_1.PNG -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/S3_Asynchronous_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/S3_Asynchronous_2.PNG -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/SQS_Polling_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/SQS_Polling_1.PNG -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/SQS_Polling_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/SQS_Polling_2.PNG -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/SeatBelt.PNG -------------------------------------------------------------------------------- /aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/25Dec2022_LambdaIntegration_S3_SQS_SNS/documentation/images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/.gitignore -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/.vscode/launch.json -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/.vscode/tasks.json -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/LICENSE -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/README.md -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/.NET6WebAPIwithDynamoDB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/.NET6WebAPIwithDynamoDB.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/AccessWebApiLocally_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/AccessWebApiLocally_1.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/AccessWebApiLocally_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/AccessWebApiLocally_2.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/BlazorWASMInEC2_WebAPIinEC2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/BlazorWASMInEC2_WebAPIinEC2.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/BlazorWASMIntoEC2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/BlazorWASMIntoEC2.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/ConfigureAWSCredentials.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/ConfigureAWSCredentials.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/EC2_IIS_WebDeploy_.NET6_WebApp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/EC2_IIS_WebDeploy_.NET6_WebApp.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Information.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/SeatBelt.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Trust_Dev_Certs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Trust_Dev_Certs.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Verify.NET6WebApiDynamoDbLocally.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Verify.NET6WebApiDynamoDbLocally.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Verify.NET6WebApiDynamoDb_HostedEC2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Verify.NET6WebApiDynamoDb_HostedEC2.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Verify.NET6WebApi_WithBlazorWasm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Verify.NET6WebApi_WithBlazorWasm.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Verifying_Products_Api_Inside_EC2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/Verifying_Products_Api_Inside_EC2.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/documentation/images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/api/Products.Api/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/api/Products.Api/.config/dotnet-tools.json -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/api/Products.Api/Products.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/api/Products.Api/Products.Api.csproj -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/api/Products.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/api/Products.Api/Program.cs -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/api/Products.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/api/Products.Api/appsettings.json -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Core/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Core/Class1.cs -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Core/Products.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Core/Products.Core.csproj -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Data/ProductDbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Data/ProductDbModel.cs -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Data/Products.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Data/Products.Data.csproj -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Data/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/common/Products.Data/WeatherForecast.cs -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/products-shop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/products-shop.sln -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/App.razor -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Pages/Counter.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Pages/Counter.razor -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Pages/FetchData.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Pages/FetchData.razor -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Pages/Index.razor -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Pages/Product/List.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Pages/Product/List.razor -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Products.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Products.Web.csproj -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Program.cs -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Shared/MainLayout.razor -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Shared/NavMenu.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Shared/NavMenu.razor -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Shared/NavMenu.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Shared/NavMenu.razor.css -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/_Imports.razor -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/appsettings.json -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/css/app.css -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/icon-192.png -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/images/loader.gif -------------------------------------------------------------------------------- /aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S3_15Jan2022_.NET6_In_AWS_EC2/source/products-shop/web/Products.Web/wwwroot/index.html -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/.gitignore -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/A1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/A1-variables.tf -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/A2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/A2-main.tf -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/A3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/A3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/content/product-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A1_S3_Bucket_Object/content/product-1.png -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/a1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/a1-variables.tf -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/a2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/a2-main.tf -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/a3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/a3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/error.html -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/favicon.ico -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/index.html -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/scripts/index.js -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Infrastructure/A2_S3_Static_Website/content/styles/style.css -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/LICENSE -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/README.md -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo.sln -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/AWSS3.BasicsDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/AWSS3.BasicsDemo.csproj -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/Program.cs -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/S3BucketHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/S3BucketHelper.cs -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/S3BucketUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/S3BucketUtility.cs -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/Source/AWSS3.BasicsDemo/AWSS3.BasicsDemo/appsettings.json -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/StarterFiles/S3Uploads/Sample.txt: -------------------------------------------------------------------------------- 1 | Hello World !! 2 | This is 1st File. -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/StarterFiles/S3Uploads/Sample2.txt: -------------------------------------------------------------------------------- 1 | Hello World !! 2 | This is 2nd File. -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/StarterFiles/S3Uploads/Sample3.txt: -------------------------------------------------------------------------------- 1 | Hello World !! 2 | This is 3rd File. -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/ForMeetUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/ForMeetUp.png -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/Information.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/LambdaFunc_InConsole.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/LambdaFunc_InConsole.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/LambdaFunc_InConsole_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/LambdaFunc_InConsole_1.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/Lambda_InVS2022.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/Lambda_InVS2022.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/Lambda_InVS2022_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/Lambda_InVS2022_1.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/SeatBelt.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Bucket_Object.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Bucket_Object.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Bucket_Object_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Bucket_Object_1.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite_1.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite_2.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite_BuildNg.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite_BuildNg.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite_Ng.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/TF_S3_Static_WebSite_Ng.PNG -------------------------------------------------------------------------------- /aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S4_28Aug_.NET6_S3_Lambda/documentation/images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/.gitignore -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/A1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/A1-variables.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/A2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/A2-main.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/A3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/A3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/content/product-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A1_S3_Bucket_Object/content/product-1.png -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/a1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/a1-variables.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/a2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/a2-main.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/a3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/a3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/error.html -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/favicon.ico -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/index.html -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/scripts/index.js -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A2_S3_Static_Website/content/styles/style.css -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/a1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/a1-variables.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/a2-locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/a2-locals.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/a2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/a2-main.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/a3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/a3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/Infrastructure/A3_DynamoDB_Table/data.json -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/LICENSE -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/README.md -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/AWSLambda_LocalVerification.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/AWSLambda_LocalVerification.PNG -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/CloudWatch_Log_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/CloudWatch_Log_1.PNG -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/CloudWatch_Log_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/CloudWatch_Log_2.PNG -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/DyanmoDB_Table.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/DyanmoDB_Table.PNG -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/DyanmoDB_Terraform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/DyanmoDB_Terraform.PNG -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/Information.PNG -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/PublishAndValidateLambda.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/PublishAndValidateLambda.PNG -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/SeatBelt.PNG -------------------------------------------------------------------------------- /aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S5_29Sep_.NET6_DynamoDB_Lambda/documentation/images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/.gitignore -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/A1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/A1-variables.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/A2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/A2-main.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/A3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/A3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/content/product-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A1_S3_Bucket_Object/content/product-1.png -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/a1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/a1-variables.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/a2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/a2-main.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/a3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/a3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/content/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/content/error.html -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/content/favicon.ico -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A2_S3_Static_Website/content/index.html -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/.terraform.lock.hcl -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/a1-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/a1-variables.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/a2-locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/a2-locals.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/a2-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/a2-main.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/a3-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/a3-outputs.tf -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/Infrastructure/A3_DynamoDB_Table/data.json -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/LICENSE -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/README.md -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/AWSLambda_LocalVerification.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/AWSLambda_LocalVerification.PNG -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/CloudWatch_Log_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/CloudWatch_Log_1.PNG -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/CloudWatch_Log_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/CloudWatch_Log_2.PNG -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/DyanmoDB_Table.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/DyanmoDB_Table.PNG -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/DyanmoDB_Terraform.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/DyanmoDB_Terraform.PNG -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/Information.PNG -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/PublishAndValidateLambda.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/PublishAndValidateLambda.PNG -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/SeatBelt.PNG -------------------------------------------------------------------------------- /aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/aws-learning/S6_15Oct_.NET6_DynamoDB_Lambda_Part2/documentation/images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /csharp-corner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/.gitignore -------------------------------------------------------------------------------- /csharp-corner/Az-204-Series-Sessions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Az-204-Series-Sessions.txt -------------------------------------------------------------------------------- /csharp-corner/C#CornerAnnualConference2022_10Oct/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/C#CornerAnnualConference2022_10Oct/.gitignore -------------------------------------------------------------------------------- /csharp-corner/C#CornerAnnualConference2022_10Oct/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/C#CornerAnnualConference2022_10Oct/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /csharp-corner/C#CornerAnnualConference2022_10Oct/Documentation/Images/Products.API.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/C#CornerAnnualConference2022_10Oct/Documentation/Images/Products.API.PNG -------------------------------------------------------------------------------- /csharp-corner/C#CornerAnnualConference2022_10Oct/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/C#CornerAnnualConference2022_10Oct/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /csharp-corner/C#CornerAnnualConference2022_10Oct/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/C#CornerAnnualConference2022_10Oct/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /csharp-corner/C#CornerAnnualConference2022_10Oct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/C#CornerAnnualConference2022_10Oct/README.md -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A1-PSScripts/A1-SearchVms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A1-PSScripts/A1-SearchVms.ps1 -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A1-PSScripts/A2-CreateVmWindows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A1-PSScripts/A2-CreateVmWindows.ps1 -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A1-PSScripts/A3-CreateVmUbuntu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A1-PSScripts/A3-CreateVmUbuntu.ps1 -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A2-AzureCli/A1-CreateVmWindows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A2-AzureCli/A1-CreateVmWindows.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A2-AzureCli/A2-CreateUbuntuVm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A2-AzureCli/A2-CreateUbuntuVm.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A1-StorageAccount/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A1-StorageAccount/deploy.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A1-StorageAccount/storage-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A1-StorageAccount/storage-deploy.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A1-StorageAccount/storage-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A1-StorageAccount/storage-parameters.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A1-StorageAccount/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A1-StorageAccount/validate.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A2-SqlServer/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A2-SqlServer/deploy.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A2-SqlServer/sql-server.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A2-SqlServer/sql-server.deploy.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A2-SqlServer/sql-server.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A2-SqlServer/sql-server.parameters.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A2-SqlServer/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A2-SqlServer/validate.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A3-WebApp/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A3-WebApp/deploy.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A3-WebApp/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A3-WebApp/validate.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A3-WebApp/webapp.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A3-WebApp/webapp.deploy.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A3-WebApp/webapp.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A3-WebApp/webapp.parameters.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A4-KeyVault/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A4-KeyVault/deploy.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A4-KeyVault/keyvault.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A4-KeyVault/keyvault.deploy.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A4-KeyVault/keyvault.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A4-KeyVault/keyvault.parameters.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A4-KeyVault/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A4-KeyVault/validate.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A5-UbuntuVM/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A5-UbuntuVM/deploy.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A5-UbuntuVM/ubuntuvm.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A5-UbuntuVM/ubuntuvm.deploy.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A5-UbuntuVM/ubuntuvm.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A5-UbuntuVM/ubuntuvm.parameters.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A5-UbuntuVM/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A5-UbuntuVM/validate.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A6-CosmosDb/cosmos-sql.deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A6-CosmosDb/cosmos-sql.deploy.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A6-CosmosDb/cosmos-sql.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A6-CosmosDb/cosmos-sql.parameters.json -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A6-CosmosDb/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A6-CosmosDb/deploy.sh -------------------------------------------------------------------------------- /csharp-corner/Infrastructure/A3-ARMTemplates/A6-CosmosDb/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/Infrastructure/A3-ARMTemplates/A6-CosmosDb/validate.sh -------------------------------------------------------------------------------- /csharp-corner/MSLearnModules.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/MSLearnModules.xlsx -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/.gitignore -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_AppServicePlan_App.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_AppServicePlan_App.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_KeyVault.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_KeyVault.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_SqlServer_Database.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_SqlServer_Database.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_StorageAccount.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_StorageAccount.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_UbuntuVM.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_UbuntuVM.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_UbuntuVM_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ARM_UbuntuVM_1.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/UbuntuVMUsingAzCli.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/UbuntuVMUsingAzCli.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/UbuntuVMUsingAzCli_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/UbuntuVMUsingAzCli_1.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/UbuntuVMUsingPowerShell.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/UbuntuVMUsingPowerShell.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/UbuntuVMUsingPowerShell_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/UbuntuVMUsingPowerShell_1.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/WindowsVMUsingAzCli.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/WindowsVMUsingAzCli.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/WindowsVMUsingAzCli_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/WindowsVMUsingAzCli_1.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/WindowsVMUsingPowerShell.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/WindowsVMUsingPowerShell.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/WindowsVMUsingPowerShell_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/Documentation/Images/WindowsVMUsingPowerShell_1.PNG -------------------------------------------------------------------------------- /csharp-corner/S1_Implement_IaaS_08aug2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S1_Implement_IaaS_08aug2022/README.md -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/.gitignore -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/ARM_CosmosDb_CoreSql.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/ARM_CosmosDb_CoreSql.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/ARM_CosmosDb_CoreSql_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/ARM_CosmosDb_CoreSql_1.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/ARM_SqlServer_Database.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/ARM_SqlServer_Database.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/BlazorWASM_WithWebAPI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/BlazorWASM_WithWebAPI.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/SQLServer_Access.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/SQLServer_Access.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/VS2022_SQLServerConnection.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/VS2022_SQLServerConnection.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/VS2022_SQLServer_Deployment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/VS2022_SQLServer_Deployment.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/WebAPI_Accessing_SQLServer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/Documentation/Images/WebAPI_Accessing_SQLServer.PNG -------------------------------------------------------------------------------- /csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S2_SqlCosmos_WebApiApp_12sep2022/README.md -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/.gitignore -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_CosmosDb_CoreSql.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_CosmosDb_CoreSql.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_CosmosDb_CoreSql_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_CosmosDb_CoreSql_1.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_SqlServer_Database.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_SqlServer_Database.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_WebApp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_WebApp.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_WindowsVM.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ARM_WindowsVM.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/BlazorWASM_WithWebAPI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/BlazorWASM_WithWebAPI.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/BraveBrowser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/BraveBrowser.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/DotNet6Hosting.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/DotNet6Hosting.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/Enable8172Port.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/Enable8172Port.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/IISManagementService.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/IISManagementService.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/IISRole_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/IISRole_1.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/SQLServer_Access.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/SQLServer_Access.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/URLReWrite.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/URLReWrite.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VMCertificate.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VMCertificate.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VMConnectionValidated.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VMConnectionValidated.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VMDNSName.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VMDNSName.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VS2022_SQLServerConnection.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VS2022_SQLServerConnection.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VS2022_SQLServer_Deployment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/VS2022_SQLServer_Deployment.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/WebAPI_Accessing_SQLServer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/WebAPI_Accessing_SQLServer.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/WebAppUp_Html.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/WebAppUp_Html.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/WebDeploy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/WebDeploy.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/Without8172Port.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/Documentation/Images/Without8172Port.PNG -------------------------------------------------------------------------------- /csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/csharp-corner/S3_Iaas_PaaS_WebApps_Deploy_03Oct2022/README.md -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/.gitignore -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/AddingAPIsToAPIM.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/AddingAPIsToAPIM.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/BlazorWASMInAzure.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/BlazorWASMInAzure.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/BlazorWasmCreateDocker.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/BlazorWasmCreateDocker.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/ConnectingToSQLAzure.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/ConnectingToSQLAzure.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/DataInAzureRedisCache.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/DataInAzureRedisCache.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/DeployingToSQLAzure.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/DeployingToSQLAzure.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/PermissionToAzureKeyVault.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/PermissionToAzureKeyVault.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/PublishWebAPIToAzure.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/PublishWebAPIToAzure.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/RunningTheBooksContainer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/RunningTheBooksContainer.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/SecretsInAzureKeyVault.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/SecretsInAzureKeyVault.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/SimpleCacheAsidePattern.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/SimpleCacheAsidePattern.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Feb12_CloudNativeAppsinAzure/README.md -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/.gitignore -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/Architecture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/Architecture.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/BuildPipelineSQLDacPac.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/BuildPipelineSQLDacPac.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/DeploySQLToLocalDB.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/DeploySQLToLocalDB.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/PR_CI_CD.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/PR_CI_CD.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/ReleasePipelineSQLDacPac.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/ReleasePipelineSQLDacPac.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/dot-net-learners-house/2022Mar12_Azure_DevOps_CICD/README.md -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/BraveBrowser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/BraveBrowser.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/DotNet6Hosting.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/DotNet6Hosting.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/Enable8172Port.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/Enable8172Port.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/IISManagementService.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/IISManagementService.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/IISRole_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/IISRole_1.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/URLReWrite.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/URLReWrite.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/VMCertificate.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/VMCertificate.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/VMConnectionValidated.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/VMConnectionValidated.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/VMDNSName.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/VMDNSName.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/WebDeploy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/WebDeploy.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/Without8172Port.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/Documentation/Images/Without8172Port.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_1_2_3_24Sep2022/README.md -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Documentation/Images/CosmosDbQuery.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Documentation/Images/CosmosDbQuery.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/README.md -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Models/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Models/Model.cs -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Models/Product.cs -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Upload/Models/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Upload/Models/Model.cs -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Upload/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Upload/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/Pages/Error.cshtml -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/Pages/Index.cshtml -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/appsettings.json -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/AdventureWorks.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/PolyglotDataLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/PolyglotDataLab/PolyglotDataLab.sln -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/RetrieveIpAddress/RetrieveIpAddress.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/RetrieveIpAddress/RetrieveIpAddress.sln -------------------------------------------------------------------------------- /microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/RetrieveIpAddress/RetrieveIpAddress/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Az-204_Labs_4_5_7_12Nov2022/Source/RetrieveIpAddress/RetrieveIpAddress/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/Demo/Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demo/Demo.sln -------------------------------------------------------------------------------- /microsoft-reactor/Demo/GreetingsLib/Greetings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demo/GreetingsLib/Greetings.cs -------------------------------------------------------------------------------- /microsoft-reactor/Demo/GreetingsLib/GreetingsLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demo/GreetingsLib/GreetingsLib.csproj -------------------------------------------------------------------------------- /microsoft-reactor/Demo/UseGreetingsLibFW/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demo/UseGreetingsLibFW/App.config -------------------------------------------------------------------------------- /microsoft-reactor/Demo/UseGreetingsLibFW/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demo/UseGreetingsLibFW/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/Demo/UseGreetingsLibFW/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demo/UseGreetingsLibFW/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /microsoft-reactor/Demo/UseGreetingsLibFW/UseGreetingsLibFW.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demo/UseGreetingsLibFW/UseGreetingsLibFW.csproj -------------------------------------------------------------------------------- /microsoft-reactor/Demo/UseGreetingslibCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demo/UseGreetingslibCore/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/Demo/UseGreetingslibCore/UseGreetingslibCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demo/UseGreetingslibCore/UseGreetingslibCore.csproj -------------------------------------------------------------------------------- /microsoft-reactor/Demos.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Demos.pptx -------------------------------------------------------------------------------- /microsoft-reactor/Gettingstarted-Microservicein.NET6-SamosaChai.NET_21Oct/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Gettingstarted-Microservicein.NET6-SamosaChai.NET_21Oct/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/Gettingstarted-Microservicein.NET6-SamosaChai.NET_21Oct/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/Gettingstarted-Microservicein.NET6-SamosaChai.NET_21Oct/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/1DatabaseDeployment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/1DatabaseDeployment.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img1.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img2.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img3.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img4.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Github-Func-WebHook-Img5.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/StarterFiles/MiniProject1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/StarterFiles/MiniProject1/index.js -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/StarterFiles/MiniProject4/GitCodeChangeTracker/ToBeDone.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Documentation/StarterFiles/deletetxtfiles.bat: -------------------------------------------------------------------------------- 1 | chdir /d %HOME%\LogFiles\Application 2 | 3 | del *.txt -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S10_2022Feb02_Azure Web Apps Scaling/Source/a.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/1DatabaseDeployment.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/1DatabaseDeployment.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/Angular13_MEAN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/Angular13_MEAN.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/AppServiceDockerContainer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/AppServiceDockerContainer.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/AzureContainerInstance.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/AzureContainerInstance.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/AzureContainerRegistry.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/AzureContainerRegistry.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/InsideDockerRegistry.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/InsideDockerRegistry.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/PushingToDocker.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/PushingToDocker.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/ReactJS_MERN.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/ReactJS_MERN.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/WebAppFromDocker.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Documentation/Images/WebAppFromDocker.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | SCM_DO_BUILD_DURING_DEPLOYMENT=true -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .env -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/.vscode/settings.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/ReadMe.md -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/package-lock.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/package.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/app.js -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/config/example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/config/example.env -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/models/bookModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/models/bookModel.js -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/routes/bookRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/routes/bookRouter.js -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-api/src/server.js -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/.browserslistrc -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/.editorconfig -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/angular.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/karma.conf.js -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/package-lock.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/package.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/app.component.html -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/app.component.ts -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/app.module.ts -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/components/home/page-notfound/page-notfound.component.scss: -------------------------------------------------------------------------------- 1 | i { 2 | color: navy; 3 | } 4 | -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/core/components/alerts/error-alert/error-alert.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/app/core/components/loader/loader.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/favicon.ico -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/index.html -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/main.ts -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/polyfills.ts -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/styles.scss -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/src/test.ts -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/tsconfig.app.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/tsconfig.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-ngapp/tsconfig.spec.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/.babelrc -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "appService.showBuildDuringDeployPrompt": false 3 | } -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/package-lock.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/package.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/favicon.ico -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/index.html -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/logo192.png -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/logo512.png -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/manifest.json -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/public/robots.txt -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/src/App.js -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/src/index.css -------------------------------------------------------------------------------- /microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S11_2022Feb09_Azure_Web_Apis_and_Apps/Source/booksstore-rjapp/src/index.js -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/SolutionMap.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/SolutionMap.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/Storage_TaskHubs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/Storage_TaskHubs.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Readme_20Mar2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Readme_20Mar2022.md -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.Core/Entities/WeatherData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.Core/Entities/WeatherData.cs -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.DurableFunctions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.DurableFunctions.sln -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.DurableFunctions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.DurableFunctions/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.DurableFunctions/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.DurableFunctions/Startup.cs -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.DurableFunctions/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.DurableFunctions/host.json -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.Lib/TemperatureConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.Lib/TemperatureConvertor.cs -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.Lib/TemperatureUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.Lib/TemperatureUtility.cs -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.Lib/WeatherReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtility.Lib/WeatherReport.cs -------------------------------------------------------------------------------- /microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtilitySolution.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S12_2022Feb23_Azure_Durable_Functions/Source/WeatherUtilitySolution.dgml -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/AzAcrBuild.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/AzAcrBuild.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/AzAcrBuild_Image2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/AzAcrBuild_Image2.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Documentation/StarterFiles/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mcr.microsoft.com/hello-world 2 | 3 | -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/.dockerignore -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/TheNewBookStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/TheNewBookStore.sln -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/TheNewBookStore/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/TheNewBookStore/Dockerfile -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/TheNewBookStore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/TheNewBookStore/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/TheNewBookStore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S13_2022Mar16_Azure_ACR_RunInACI/Source/TheNewBookStore/TheNewBookStore/appsettings.json -------------------------------------------------------------------------------- /microsoft-reactor/S14_2022Apr27_SecureCloudSolutions_MonitoringLogging/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S14_2022Apr27_SecureCloudSolutions_MonitoringLogging/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S14_2022Apr27_SecureCloudSolutions_MonitoringLogging/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S14_2022Apr27_SecureCloudSolutions_MonitoringLogging/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S14_2022Apr27_SecureCloudSolutions_MonitoringLogging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S14_2022Apr27_SecureCloudSolutions_MonitoringLogging/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S15_2022May11_Caching_and_CDN/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S15_2022May11_Caching_and_CDN/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/AzureCacheRedis_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/AzureCacheRedis_1.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/AzureCacheRedis_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/AzureCacheRedis_2.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S15_2022May11_Caching_and_CDN/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S15_2022May11_Caching_and_CDN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S15_2022May11_Caching_and_CDN/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/AzureCacheRedis_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/AzureCacheRedis_1.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/AzureCacheRedis_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/AzureCacheRedis_2.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo.sln -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Address.cs -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Child.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Child.cs -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Family.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Family.cs -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Parent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Parent.cs -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Pet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Pet.cs -------------------------------------------------------------------------------- /microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S17_2022Jun22_AzureCosmosDB/Source/CosmosDb.FamilyDemo/CosmosDb.FamilyDemo/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/AzCopy_Copy_ToContainer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/AzCopy_Copy_ToContainer.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/ContainerAndBlobMetadata_CURL.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/ContainerAndBlobMetadata_CURL.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/ContainerAndBlobMetadata_Postman.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/ContainerAndBlobMetadata_Postman.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/SAS_For_AzCopy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/SAS_For_AzCopy.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/StorageBrowser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/StorageBrowser.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/StorageExplorer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/StorageExplorer.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S18_2022Jul06_AzureBlobStorage/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Source/AzBlobStorage.GettingStarted/AzBlobStorage.GettingStarted/Downloads/A.txt: -------------------------------------------------------------------------------- 1 | This is the Sample File. -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Source/AzBlobStorage.GettingStarted/AzBlobStorage.GettingStarted/Downloads/CopyOfimages/B.txt: -------------------------------------------------------------------------------- 1 | This is the Sample File. -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Source/AzBlobStorage.GettingStarted/AzBlobStorage.GettingStarted/Uploads/Deleteme.txt: -------------------------------------------------------------------------------- 1 | This is the Sample File. -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Source/AzBlobStorage.GettingStarted/AzBlobStorage.GettingStarted/Uploads/Sample.txt: -------------------------------------------------------------------------------- 1 | This is the Sample File. -------------------------------------------------------------------------------- /microsoft-reactor/S18_2022Jul06_AzureBlobStorage/Source/AzBlobStorage.GettingStarted/AzBlobStorage.GettingStarted/Uploads/Simple06Jul2022.txt: -------------------------------------------------------------------------------- 1 | This is the Sample File. Created on 06 July 2022 -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/ARMTemplate_StorageQueue.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/ARMTemplate_StorageQueue.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/Az_ServiceBus_And_Queue.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/Az_ServiceBus_And_Queue.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/AzureStorageGettingStarted.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/AzureStorageGettingStarted.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/ServiceBusExplorer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/ServiceBusExplorer.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/ServiceBus_Send_Receive.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/ServiceBus_Send_Receive.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/StorageBrowser_Queue.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/StorageBrowser_Queue.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/ARMTemplates/Storage/deploystorage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/ARMTemplates/Storage/deploystorage.sh -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/ARMTemplates/Storage/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/ARMTemplates/Storage/parameters.json -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/ARMTemplates/Storage/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/ARMTemplates/Storage/template.json -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/AzServiceBusQueue.GettingStarted/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/AzServiceBusQueue.GettingStarted/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/AzServiceBusQueue.MsgReceiver/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/AzServiceBusQueue.MsgReceiver/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/AzStorageQueue.GettingStarted/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S19_2022Jul20_MessageBasedSolutions/Source/AzStorageQueue.GettingStarted/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Azure_Func_Logs.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Azure_Func_Logs.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Event_DeliveryDurability.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Event_DeliveryDurability.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Event_Schema.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Event_Schema.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Event_Schema_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Event_Schema_1.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Event_T0_AzureFunc.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Event_T0_AzureFunc.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Filter_Demo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Filter_Demo.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Storage_EventGrid_WebHook.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/Storage_EventGrid_WebHook.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/SubscriptionValidation.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/SubscriptionValidation.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S20_2022Aug10_EventBasedSolutions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S20_2022Aug10_EventBasedSolutions/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/CreateNewTenant.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/CreateNewTenant.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/CreateNewUser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/CreateNewUser.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/CreateNewUser_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/CreateNewUser_1.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/GraphAPI_ConsoleApp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/GraphAPI_ConsoleApp.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/GraphAPI_Postman.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/GraphAPI_Postman.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/GraphExplorer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/GraphExplorer.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/RABCForNewUser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/RABCForNewUser.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/WebAPIProtected.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/WebAPIProtected.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/WebAppWithAAD.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/Documentation/Images/WebAppWithAAD.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S21_2022Aug24_Authentication_Authorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S21_2022Aug24_Authentication_Authorization/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Az204-Event-Hubs-Demos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Az204-Event-Hubs-Demos.sln -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Hospital.Core/DataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Hospital.Core/DataHelper.cs -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Hospital.Core/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Hospital.Core/Device.cs -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Hospital.Core/Hospital.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Hospital.Core/Hospital.Core.csproj -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Patient-ReceiveData/Patient-ReceiveData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Patient-ReceiveData/Patient-ReceiveData.csproj -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Patient-ReceiveData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Patient-ReceiveData/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Patient-SendData/Patient-SendData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Patient-SendData/Patient-SendData.csproj -------------------------------------------------------------------------------- /microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Patient-SendData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S24_2022Dec07_EventBased_EventHubs/Source/Patient-SendData/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img1.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img2.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img3.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img4.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Github-Func-WebHook-Img5.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Information.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/Information.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/SeatBelt.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/SeatBelt.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/ViswanathaSwamyPK.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/Images/ViswanathaSwamyPK.PNG -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/StarterFiles/MiniProject1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/StarterFiles/MiniProject1/index.js -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/StarterFiles/MiniProject1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/StarterFiles/MiniProject1/package.json -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/StarterFiles/MiniProject4/GitCodeChangeTracker/ToBeDone.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Documentation/StarterFiles/deletetxtfiles.bat: -------------------------------------------------------------------------------- 1 | chdir /d %HOME%\LogFiles\Application 2 | 3 | del *.txt -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/README.md -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/App.razor -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/College.App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/College.App.csproj -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/Pages/Index.razor -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/_Imports.razor -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.App/wwwroot/index.html -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.RazorApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.RazorApp/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/College.Web.sln -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/Functions.cs -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/Program.cs -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/Settings.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/Settings.job -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/WebJob1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/WebJob1.csproj -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/College.Web/WebJob1/app.config -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1.sln -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1/.gitignore -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1/Function1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1/Function1.cs -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1/appsettings.json -------------------------------------------------------------------------------- /microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishipayyallore/speaker-series-2022/HEAD/microsoft-reactor/S9_2022Jan12_WebAppsDeploymentSlots/Source/FunctionApp1/FunctionApp1/host.json --------------------------------------------------------------------------------