Microsoft ha rilasciato di recente una piattaforma per l’e-learning: la Microsoft Virtual Academy (MVA). Ogni settimana sono disponibili nuovi corsi, ed è possibile iscriversi gratuitamente a numerosi corsi su prodotti e tecnologie Microsoft; una vera occasione per una formazione gratuita fornita da esperti Microsoft. Microsoft Virtual Academy fornisce (previa autenticazione con account Microsoft) una dashboard […]
DevOps and Application Lifecycle Management
Microsoft extended Visual Studio Online and Team Foundation Server 2015 (Update 2) on premises with Release Management tools. You can implement DevOps solution for delivering your software easily and more frequently. It enables you to: Automate your deployments Automate approval workflows Retain full traceability Apply security policies and manage users Easily deploy to on-premises and Azure […]
How to run Python program on Raspberry Pi LXTerminal
If you are new to using Python on the Raspberry Pi, this article may help you. First of all, let’s create a simple Python program directly from RPi module, using LeafPad text editor provisioned out of the box with Raspbian operating system. Therefore, let’s open LeafPad, past the following Python program code snippet: and save […]
HTML5 Chart JS on ASP.NET and jQuery with export canvas image
This post will show how to use the Chart.js library to build amazing HTML5 report with jQuery and ASP.NET and how to save the rendered report image. Chart.js uses the HTML5 <canvas> element, supported in all modern browsers, and visualize your data in 6 different ways, each of them animated, with a lot of customisation […]
TSQL – How to find missing or deleted table identity autoincrement values
As a database designer, I often create on database tables the primary key as identity autoincrement and sometimes I needed to find missing or deleted IDs thet interrupt the sequence of autoincrement number on the primary key. To do this you can create a sequence from 1 (or 0 based on setted RESEED) to MAX […]