Descargar estos archivos de GeekFactory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| var http = require('http'); | |
| if (!process.argv[2]) { | |
| console.error('Necesito un par谩metro para afinar mis resultados'); | |
| process.exit(1); | |
| } else { | |
| if (process.argv[2] !== "all" && | |
| process.argv[2] !== "1.0" && |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var imagenes = document.querySelectorAll('.article-home-figure img'); | |
| var imagenesLog = []; | |
| for(var i = 0; i < imagenes.length; i++){ | |
| var url = document.querySelectorAll('.article-home-figure img')[i].src; | |
| var ancho = document.querySelectorAll('.article-home-figure img')[i].width; | |
| var alto = document.querySelectorAll('.article-home-figure img')[i].height; | |
| var sustituto = "http://lorempixel.com/"+ancho+"/"+alto+"/cats"; | |
| var datos = [url, ancho, alto, sustituto] | |
| imagenesLog.push(datos); | |
| document.querySelectorAll('.article-home-figure img')[i].src = sustituto; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var t = Date.parse(endtime) - Date.parse(new Date()); | |
| var seconds = Math.floor((t / 1000) % 60); | |
| var minutes = Math.floor((t / 1000 / 60) % 60); | |
| var hours = Math.floor((t / (1000 * 60 * 60)) % 24); | |
| var days = Math.floor(t / (1000 * 60 * 60 * 24)); | |
1 - Instalar nmap
brew install nmap
2 - Buscar por eliminaci贸n
sudo nmap -sP 192.168.1.0/24 | awk '/^Nmap/{ip=$NF}/B8:27:EB/{print ip}'
3 - Conexi贸n SSH
- Reinicia la maquina y presiona CMD+R para entrar en Recovery Mode
- Abre la terminal
- Ejecuta este c贸digo para eliminar las restricciones sobre la firma de dispositivos USB.
csrutil enable --without kext
- Reinicia y arranca normalmente.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>T铆tulo</title> | |
| </head> | |
| <body> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="es"> | |
| <head> | |
| <title>Agenda Avanzada de Contactos en LocalStorage</title> | |
| <meta charset=utf-8> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous"> | |
| <style> | |
| #contenedor { | |
| width: 420px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> | |
| <meta charset="utf-8"> | |
| <title>Llegando a Fictizia desde tu posici贸n</title> | |
| <style> | |
| html, | |
| body { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="viewport" content="initial-scale=1.0, user-scalable=no"> | |
| <meta charset="utf-8"> | |
| <title>Llegando a Fictizia desde el Metro</title> | |
| <style> | |
| html, body { | |
| height: 100%; | |
| margin: 0; |