http://drive.google.com/uc?export=download&id=XXXXXXXXXXXXXXXXXXXXXXXX
https://drive.google.com/uc?export=view&id=XXXXXXXXXXXXX
http://drive.google.com/uc?export=download&id=XXXXXXXXXXXXXXXXXXXXXXXX
https://drive.google.com/uc?export=view&id=XXXXXXXXXXXXX
| { | |
| "basics": { | |
| "name": "Angel Cruz", | |
| "label": "Frontend Developer", | |
| "picture": "http://2.gravatar.com/avatar/b5a93f6390e4bdb85a484d15b549d467", | |
| "email": "[email protected]", | |
| "phone": "(000) 000-0000", | |
| "website": "http://abr4xas.org", | |
| "summary": "Front End Web Developer, ágil y pro-activo con amplía experiencia en creación de sitios web óptimos. Entusiasta HTML5 y CSS3, actualmente en los caminos JavaScript (Angular JS, Node.JS). Estoy en continua formación para mejorar y ampliar los conocimientos que he obtenido durante tantos años en este medio. ", | |
| "location": { |
| [{ "Note": "The first two digits (ranging from 10–43) correspond to the province, while the last two digits correspond either to the city/delivery zone (range 01–50) or to the district/delivery zone (range 51–99). Afghanistan Postal code lookup", "Country": "Afghanistan", "ISO": "AF", "Format": "NNNN", "Regex": "^\\d{4}$"}, { "Note": "With Finland, first two numbers are 22.", "Country": "Åland Islands", "ISO": "AX", "Format": "NNNNN", "Regex": "^\\d{5}$"}, { "Note": "Introduced in 2006, gradually implemented throughout 2007.", "Country": "Albania", "ISO": "AL", "Format": "NNNN", "Regex": "^\\d{4}$"}, { "Note": "First two as in ISO 3166-2:DZ", "Country": "Algeria", "ISO": "DZ", "Format": "NNNNN", "Regex": "^\\d{5}$"}, { "Note": "U.S. ZIP codes (range 96799)", "Country": "American Samoa", "ISO": "AS", "Format": "NNNNN (optionally NNNNN-NNNN or NNNNN-NNNNNN)", "Regex": "^\\d{5}(-{1}\\d{4,6})$"}, { "Note": |
| { | |
| "rules": { | |
| ".read": "auth != null", | |
| ".write": "auth != null" | |
| } | |
| } |
| function ddMMYYYYValidator (date) { | |
| let _date = date.replace(/[/]/g,'-'); | |
| let formatedDate = new Date( _date.replace( /(\d{2})-(\d{2})-(\d{4})/, "$2/$1/$3")); | |
| return (isNaN(Date.parse(formatedDate)) ? false : true); | |
| } |
In order to clarify the intellectual property license granted with Contributions from any person or entity, HeroDevs LLC ("HeroDevs") must have a Contributor License Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of HeroDevs; it does not change your rights to use your own Contributions for any other purpose.
You accept and agree to the following terms and conditions for Your present and future Contributions submitted to HeroDevs. Except for the license granted herein to HeroDevs and recipients of software distributed by HeroDevs, You reserve all right, title, and interest in and to Your Contributions.
In order to clarify the intellectual property license granted with Contributions from any person or entity, HeroDevs LLC ("HeroDevs") must have a Contributor License Agreement (CLA) on file that has been signed by each Contributor, indicating agreement to the license terms below. This license is for your protection as a Contributor as well as the protection of HeroDevs and its users; it does not change your rights to use your own Contributions for any other purpose.
This version of the Agreement allows an entity (the "Corporation") to submit Contributions to HeroDevs, to authorize Contributions submitted by its designated employees to HeroDevs, and to grant copyright and patent licenses thereto.
You accept and agree to the following terms and conditions for Your present and future Contributions submitted to HeroDevs. Except for the license granted herein to HeroDevs and recipients of software distributed by HeroDevs, You reserve all right, title, and interest in and to Your Contributions.
| import { Component } from '@angular/core'; | |
| import { FormBuilder, FormGroup, Validators } from '@angular/forms'; | |
| @Component({ | |
| selector: 'form', | |
| templateUrl: './form.component.html', | |
| styleUrls: ['./form.component.scss'] | |
| }) | |
| export class Form { | |