- Obtener el instalador para Windows del centro de descargas.
- Iniciar el instalador como administrador.
- Crear las carpeta de almacenamiento y configuracion de MongoDB.
- Dar permisos escritura y lectura a estas carpetas.
C:\data
C:\data\db
C:\data
C:\data\db
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server ipv6only=on; | |
| listen 443 ssl; | |
| root /var/www/lumen/public; | |
| index index.php index.html index.htm; | |
| server_name server_domain_or_IP; |
| function getSlopeAngle(s1,s2) { | |
| return Math.atan((s2[1] - s1[1]) / (s2[0] - s1[0])) * 180/Math.PI; | |
| } | |
| console.log(getSlopeAngle([0,0],[2,3]); // 56.309932474020215 |
| /** | |
| * Convert Excel file to Sheets | |
| * @param {Blob} excelFile The Excel file blob data; Required | |
| * @param {String} filename File name on uploading drive; Required | |
| * @param {Array} arrParents Array of folder ids to put converted file in; Optional, will default to Drive root folder | |
| * @return {Spreadsheet} Converted Google Spreadsheet instance | |
| **/ | |
| function convertExcel2Sheets(excelFile, filename, arrParents) { | |
| var parents = arrParents || []; // check if optional arrParents argument was provided, default to empty array if not |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8 /> | |
| <title>A Graph</title> | |
| <!--[if IE]> | |
| <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| <style> | |
| article, aside, figure, footer, header, hgroup, |