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 local cache you should go to your Azure Subscription them navigate to your Web App that you wishs to enable
C# C# DateTime Cheat sheet - 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", "D", "f", "F", "g", "G", "m", "r"
Azure Featured 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 the following types of values: Type Example When triggered A specific value 0 5 * * * * at hh:05:00 where hh
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 "kvDemo006" \ --name "devUScWeb003" \ --disk-encryption-keyvault "demo006" \ --volume-type "all" Show disk encryption az vm
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 allows web servers to declare that web browsers (or other complying user agents) should only interact with 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, share https://libraries.io/
DotNet Core 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 -> New Project