Tag: local

Fecha UTC (Que recibimos, por ejemplo, desde base de datos) var receivedDate = "2016-09-25T10:00:00"; Convertir a fecha Local receivedDate = new Date(receivedDate); //receivedDate: "Thu Sep 25 2016 12:00:00 GMT+0200 (Central Europe Daylight […]
Fecha Local (Que obtenemos, por ejemplo, desde un date picker) var obtainedDate = "2016-09-25 12:00"; Convertir a fecha UTC obtainedDate = new Date(obtainedDate).toUTCString(); //obtainedDate : "Sun, 25 Sep 2016 10:00:00 GMT" Al crear una […]
Si tenemos nuestro código en Visual Studio utilizando TFS puede ocurrir lo siguiente: De repente he perdido el fichero “Package.package” de mi proyecto, pero si entro en el TFS sigue […]
You can start a local web server to try your web site with one single command. Open Terminal, navigate to the folder that you want to use as a local […]