- https://mapisy.com: Create maps easily, mark spots instantly
- https://chromewebstore.google.com/detail/whatsapp-new-chat/nnajdgecgicbdfgepiifbpkffcjokgbh: Initiate new chats with unsaved phone numbers
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
| <?php | |
| // === DEBUG DURO: imprime cualquier fatal en pantalla === | |
| @ini_set('display_errors', '1'); | |
| @ini_set('display_startup_errors', '1'); | |
| @ini_set('log_errors', '0'); // desactiva logging si no se puede escribir | |
| @ini_set('zlib.output_compression', '0'); | |
| error_reporting(E_ALL); | |
| // Vacía buffers por si algo los está escondiendo |
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
| initnpm() { | |
| if [ -z "$1" ]; then | |
| echo "Usage: initnpm <project_name>" | |
| return 1 | |
| fi | |
| mkdir -p ~/projects/"$1" && cd ~/projects/"$1" || return 1 | |
| echo "// entry point" > index.js | |
| npm init -y > /dev/null |
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
| [ | |
| { | |
| "name":"Ababuj", | |
| "INE":"44001" | |
| }, | |
| { | |
| "name":"Abades", | |
| "INE":"40001" | |
| }, | |
| { |
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
| { | |
| "contact": { | |
| "linkedin": "https://www.linkedin.com/in/juanmanavarro", | |
| "telegram": "https://telegram.me/juanmanavarro", | |
| "whatsapp": "https://api.whatsapp.com/send?phone=34613086944", | |
| "phone": "34613086944" | |
| }, | |
| "jobs": [ | |
| { | |
| "title": "Primer titulo", |
This file has been truncated, but you can view the full file.
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
| [ | |
| { | |
| "country_code": "ES", | |
| "zipcode": "04001", | |
| "place": "Almeria", | |
| "state": "Andalucia", | |
| "state_code": "AN", | |
| "province": "Almería", | |
| "province_code": "AL", | |
| "community": "Almería", |
- Fork this gist https://gist.github.com/juanmanavarro/e76fc238a1a1af27a5e36beea55396d1
- Update it with your skills
- Visit
https://skills-viewer-i0zpn.kinsta.page/?{your github username}/{the forked gist id}(notice the "?" in the url)
JUANMA NAVARRO
Llíria, Valencia
613086944
[email protected]
https://juanmanavar.ro
- Since 10/2022, full-stack developer at TextPocket
- From 5/2020 to 10/2022, full-stack developer at Soysuper.
JUANMA NAVARRO
Llíria, Valencia
613086944
[email protected]
https://juanmanavar.ro
- Desde 10/2022, programador full-stack en TextPocket, Namingram, Alarma
- Desde 5/2020 hasta 10/2022, programador full-stack en Soysuper.
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
| const axios = require('axios'); | |
| async function findEmails(url) { | |
| try { | |
| const response = await axios.get(url); | |
| const html = response.data; | |
| const emailRegex = /[\w.-]+@[\w.-]+\.\w+/g; | |
| let emails = html.match(emailRegex); |
NewerOlder