intitle:"index of" inurl:ftp after:2018
allintext:password filetype:log after:2018
alias npmclean="rm -rf node_modules/ && rm -f package-lock.json && npm install" |
const youtubeParser = (url) => { | |
const regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#&?]*).*/; | |
const match = url.match(regExp); | |
return match && match[7].length === 11 ? match[7] : false; | |
}; |