May Tech Dump



Just a collection of news and tools i learned this month. Comment down below if you know any other tool

News

Photonic Neuromorphic Computing

source: https://phys.org/news/2021-01-photonics-artificial-intelligence-neuromorphic.html

Tools

Shazam

site: https://www.shazam.com

Pagodo - Passive Google Dork

source: https://www.youtube.com/watch?v=lESeJ3EViCo

Basics

Advanced Info

Docker as IDE

source: https://medium.com/@ls12styler/docker-as-an-integrated-development-environment-95bc9b01d2c1

PortMaster

source: https://github.com/Safing/portmaster

Proxychains and tor

Your computer -> Proxy -> Internet
Your computer -> Proxy1 -> Proxy2.. -> Proxy(N) -> Internet

Xargs usage

source: https://www.youtube.com/watch?v=5EFY5ztZb00

xargs -t
xargs -t -n 1
xargs -n 1
ls | xargs -I {} echo {}
echo "a b c d" | xargs -n 1 -P <How many parallel operation> bash -c 'sleep 1; echo $0'
echo "a b c d" | xargs -n 1 -P 1 bash -c 'sleep 1; echo $0'