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.
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); |
JUANMA NAVARRO
Llíria, Valencia
613086944
[email protected]
https://juanmanavar.ro
JUANMA NAVARRO
Llíria, Valencia
613086944
[email protected]
https://juanmanavar.ro
https://skills-viewer-i0zpn.kinsta.page/?{your github username}/{the forked gist id}
(notice the "?" in the url)[ | |
{ | |
"country_code": "ES", | |
"zipcode": "04001", | |
"place": "Almeria", | |
"state": "Andalucia", | |
"state_code": "AN", | |
"province": "Almería", | |
"province_code": "AL", | |
"community": "Almería", |
{ | |
"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", |
[ | |
{ | |
"name":"Ababuj", | |
"INE":"44001" | |
}, | |
{ | |
"name":"Abades", | |
"INE":"40001" | |
}, | |
{ |
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 |