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": { |
http://drive.google.com/uc?export=download&id=XXXXXXXXXXXXXXXXXXXXXXXX
https://drive.google.com/uc?export=view&id=XXXXXXXXXXXXX
| function hasClass(elem, className) { | |
| return new RegExp(' ' + className + ' ').test(' ' + elem.className + ' '); | |
| } | |
| function addClass(elem, className) { | |
| if (!hasClass(elem, className)) { | |
| elem.className += ' ' + className; | |
| } | |
| } |
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
| <snippet> | |
| <content><![CDATA[ | |
| <!doctype html> | |
| <html lang="es"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Angular Materia introducción</title> | |
| <meta name="description" content="Título de la página."> | |
| <meta name="author" content="Andrés Villanueva"> |
| /** | |
| * Instrucciones de USO. | |
| * - Ir a https://www.asobanca.com.ve/site/home.php. | |
| * - Presionar F12 para abrir DevTools. | |
| * - Abrir consola y pegar este script! | |
| * - Presionar ENTER. | |
| * - copiar resultado y utilizar para cosas geniales! | |
| */ | |
| var c = document.getElementsByClassName('awMenuComiteesLink'), |
| /** | |
| * Pequeño snippet para obtener direcciones de correo electrónico | |
| * de miembros en Google Groups, desde la vista "Todos los Miembros". | |
| */ | |
| var c = document.getElementsByClassName('gdf-tableRow'), | |
| members = []; | |
| for(var i = 0; i< c.length; i++){ | |
| var o = {}; | |
| o.name = c[i].childNodes[1].textContent; |
| /** | |
| * Pequeña funcion javascript para obtener un formato de fecha que comprenda el patrón: | |
| * día de la semana, día del mes, mes y año actual. | |
| * Ejemplo: Miercoles 28 de Mayo del 2014. | |
| * | |
| * This is a little javascript function to get the date with the follow pattern: | |
| * day of the week, day of the month, month and currently year. | |
| * Example: Wednsneday, May 28th of 2014. | |
| */ | |
| function evitarEnter(event) { | |
| var event = (event) ? event : ((event) ? event : null); | |
| var node = (event.target) ? event.target : ((event.srcElement) ? event.srcElement : null); | |
| if ((event.keyCode == 13) && (node.type == "text")) { | |
| alert('Enter Desactivado'); | |
| return false; | |
| } | |
| } |