.NetCore Adding Health Checks UI Adding Health Checks UIThis is the second article about Health Checks and application monitoring. 1. Adding Health Check endpoint [/adding-health-checks-to-net-core-application/] 2. Adding UI Health Check - this article 3. Endpoint
security SQL Injection na Prática - Executando o Ataque Primeiro, você sabe (ou lembra-se) o que é SQL Injection? (for english version) Segundo OWASP.org (https://www.owasp.org/index.php/SQL_Injection). A SQL injection attack consists of
machine-learning Começando com Machine Learning - Escrevendo um Perceptron Você sabe o que é um Perceptron? Perceptron é um dos building blocks (componentes) da rede neural feed foward. Uma rede neural é essencialmente baseada em N Perceptrons. Segundo wikipedia:
.net Asp.Net Core com MongoDb e Mongo Atlas - C# Este tutorial cria uma API Web que executa as operações CRUD (criar, ler, atualizar e excluir) em um banco de dados NoSQL do MongoDB. Baseado no artigo Microsoft Docs, criado
c# C# Conversions - Casting, implicit and explicit conversion Fist the data types available. int whole numbers long whole numbers (bigger range) float floating-point numbers double double precision decimal monetary values char single character bool boolean DateTime moments in time string sequence of characters Table of implicit conversion made by C#. From To
.NetCore Adding Health Checks to .Net Core Application In this series of post, we will talk about health check and monitor your web application/web API. Adding Health Check endpoint Adding UI Health Check Endpoint Monitoring with Azure
heroku Deploying .Net container App to Heroku cloud I'm tired of searching every time I need to deploy to heroku cloud. Being that said I'm finally writing down the steps do deploy a docker container app to Heroku
az-203 Azure Kubernets - az cli Steps to create Azure Kubernet Services (AKS) though azure cli tool. Demo 1 // Create resource group az group create --name kbgroup2 --location eastus // Create AKS cluster az aks create \ --resource-group
azure Demo - Azure Batch Creating the Resource Group az group create --name "az203_batch_demo001" --location CentralUS Creating the storage account az storage account create \ --name az203batchstoragexd \ --access-tier hot \ --https-only true \ --kind
azure az cli (bash) create resource though Resource File The resource file azuredeploy.json { "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters&
Conference API Sample This is a sample API hosted by Microsoft. https://conferenceapi.azurewebsites.net/?format=json
azure Enable Local Cache in Azure Web App What is Local Cache in Azure WebApp? Local cache in Azure Web is really a cache that caches the storage of your Web App. How to enable it? To enable
.net C# DateTime ToString Format Cheat sheet with C# DateTime formats. using System; using System.Globalization; public class Program { public static void Main(string[] args) { DateTime dt = DateTime.Now; string[] format = { "d", "
azure Demo WebJob Azure - CRON expressions CRON expressions Azure Functions uses the NCronTab library to interpret CRON expressions. A CRON expression includes six fields: {second} {minute} {hour} {day} {month} {day-of-week} Each field can have one of
azure Enable Azure Disk Encryption though az-cli Create Azure Key Vault service az keyvault create \ --name "kvDemo006" \ --resource-group "demo001" \ --location centralUS \ --enabled-for-disk-encryption True Enable disk encryption on VM az vm encryption enable \ --resource-group
azure Create Azure VM though PowerShell A right to the point guide of how to create Virtual Machines in Azure with Powershell
iis HSTS - What's it and how to enable it in IIS HSTS, what's it? Definition from wikipedia: HTTP Strict Transport Security (HSTS) is a web security policy mechanism which helps to protect websites against protocol downgrade attacks and cookie hijacking. It
tip Libraries.io - A Library of frameworks #tip Theses days I was trying to find the latest version of some framework I was using. Searching on web I finally found this website https://libraries.io/. This nice and complete website has informations about almost every library/framework you know. Take a look,
.NetCore How to migrate .Net Core 1.0 to 1.1 Hi guys! In this post I'll show how to migrate a .Net project from 1.0 to 1.1 (current the last version) using Visual Studio. Preparing the solution Let's starting by creating our starting project. In Visual Studio go to File ->