
Category: VIRTUALIZATION
node.js – Node JS TypeError: Cannot read properties of undefined (reading ‘sort’) at Customvision
I make a Tutorial for Azure with customvision and Node.js. Link to tutorial: github.com/Azure-Samples/rock-paper-scissors-customvision I have gone through the tutorial several times and always get the same error. Also I…
asp.net core – View application logs in azure
I have asp.net core 3.1 application. These are my settings for logging: public static IWebHostBuilder CreateWebHostBuilder(string[] args) => WebHost.CreateDefaultBuilder(args) .ConfigureLogging(logging => { logging.AddAzureWebAppDiagnostics(); logging.AddConsole(); logging.AddDebug(); }) .UseStartup<Startup>(); And in code…
python – I have a KeyError: ‘location’ in API Azure Speech
I am using the cognitives services from Azure. I need long audios (more than 10 minutes) and that is why I am following the guide “Long Audio API ” (docs.microsoft.com/en-us/azure/cognitive-services/speech-service/long-audio-api).…
Code that will query the meta data of an instance within AWS and provide a json formatted output on Go
Code that will query the meta data of an instance within AWS and provide a json formatted output on Go. # setup Go wget -P /tmp go.googlecode.com/files/go1.0.3.linux-amd64.tar.gz sudo tar -C…
kubernetes – My app is not accessible, is my service definition wrong?
I’m trying to set up nodered (nodered.org/) locally in minikube. Nodered is a web service, exposing its service on 1880 by default. I seem to have everything up and running,…
kubernetes – Im running my first deployment, now what?
I’ve downloaded minikube on my dev machine and got it up and running with docker. To test it out I wanted it to run node-red (web tool, hub.docker.com/r/nodered/node-red), just to…
Where is the source of AWS services?
dabase.com → Kai’s Tech Tips → Cloud → Where is the source of AWS services? What is the source from which APIs and language bindings? Published: Saturday, Nov 27, 2021…
How platform sensitive is Kubernetes with Docker?
How platform sensitive is Kubernetes and Docker? That is, can I build a cluster on disparate hardware? Suppose, for example, I have a REST api I’ve written in ASP.NET Core.…
Visual Studio 2017 build – Community
Trying to build a software using VS2017 but cannot get past the following unresolved externals at the linking: link @C:UsersAlAppDataLocalTemp34tmpp7ye5kme.lnkCreating library buildWindows32DebugbinintelC3070030_License.lib and object buildWindows32DebugbinintelC3070030_License.explibpwcflexlm.lib(cfflex.obj) : error LNK2001: unresolved…
azure api management – I want to convert xml to json using apim policies
Sample xml request : <env:Body xmlns:xsd=”http://www.w3.org/2001/XMLSchema” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” <ns5:CreateCustomerProfileRequest> <ns5:SourceApplication> <ns3:ApplicationID>HYBRIS_01</ns3:ApplicationID> <ns3:ApplicationName>Hybris</ns3:ApplicationName> </ns5:SourceApplication> <ns5:CustomerProfile> <ns5:CustomerIdentification> <ns5:CustomerIDType>bill-to</ns5:CustomerIDType> <ns5:CustomerID>618a18b3f33fa4007f2e76be</ns5:CustomerID> <ns5:CustomerNumber/> </ns5:CustomerIdentification> <ns5:UserId>franlopue@icloud.com</ns5:UserId> <ns5:CustomerType>Customer</ns5:CustomerType> <ns5:CustomerAddressBook> <ns3:Email> <ns3:EmailAddress>franlopue@icloud.com</ns3:EmailAddress> </ns3:Email> </ns5:CustomerAddressBook> <ns5:CustomerName> <ns3:FirstName>Francisco</ns3:FirstName> <ns3:LastName>Lopez-puente</ns3:LastName> </ns5:CustomerName> <ns5:CustomerSleep>35</ns5:CustomerSleep>…
amazon web services – How do I write unit test with aws-sdk-go-v2?
aws-sdk-go-v1 clients.go play.golang.org/p/iZxKInQ1CyR eventHandler_test.go play.golang.org/p/uOaUxmcCHI0 With the old sdk there are enough example out there and was able to easily implement and test this but since we are migrating to…
javascript – Is there any way to upload multiple images to aws-sdk without using “for” loop or any other loop function?
Sharing a small snippet of current code using for loop; imageArr.forEach(async (file, index) => { let contentType = file.type || “image/jpeg”; let contentDeposition = ‘inline;filename=”‘ + file.name + ‘”‘; const…
Azure Application Insights Articles – Perficient Blogs
Azure Application Insights, a feature of Azure Monitor, is a platform as a service (PaaS) offering from Microsoft Azure. It’s a lightweight Application Performance Management (APM) service for web applications used to monitor the live application, automatically detect performance anomalies, and provide analytic tools…
Azure App Service – What modified my web.config?
I have an ASP.NET Core website running from Kestrel. It is deployed to Azure App Service in production and another as staging. I like to configure staging as “production-like” so…
amazon s3 – Can spring-cloud-aws using resourceLoader be used with S3 server-side-encryption using a kms key?
Using AWS SDK, it can be achieved easily like this: PutObjectRequest putRequest = new PutObjectRequest(bucket_name, bucket_name, new File(file_path)) .withSSEAwsKeyManagementParams(new SSEAwsKeyManagementParams(“KMS-KEY”)); s3.putObject(putRequest); However, can this is achieved using spring-cloud-aws with a…