Et l'application sur F-Droid https://f-droid.org/en/packages/com.inspiredandroid.linuxcommandbibliotheca
Énorme liste de ressources pour la programmation en plein de langages dans de nombreuses langues, des cours, des podcasts, des cheatsheets, ...
Unified access to the best community driven cheat sheets repositories of the world.
code. Et en ligne https://cheat.sh/
Listes d'outils, docs, cheatsheets,
Exhaustive, simple, beautiful and concise. A truly Pythonic cheat sheet about Python programming language.
Source sur github
In these tcpdump examples you will find 22 tactical commands to zero in on the key packets. Know your network with this powerful packet capture tool. Examples for http, icmp, dns, snmp and more.
Free Programming Books on Android development, C, C#, CSS, HTML5, iOS development, Java, JavaScript, PowerShell, PHP, Python, SQL Sever and more
Generating Certificates
Generate RSA Private Key + CSR
openssl req -out newkey.csr -new -newkey rsa:[bits] -nodes -keyout priv.key
Generate Self Signed Certificate + Priv Key
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:[bits] -keyout priv.key -out cert.crt
Generate CSR for existing Cert
openssl x509 -x509toreq -in cert.crt -out newreq.csr -signkey priv.key