Skip to content

Instantly share code, notes, and snippets.

View ralcorta's full-sized avatar
🚀
Runtime

Rodrigo Alcorta ralcorta

🚀
Runtime
View GitHub Profile
@ralcorta
ralcorta / openssl.md
Created July 5, 2022 01:18 — forked from Nathaniel100/openssl.md
Generate PKCS10 request

Generate a new private key and Certificate Signing Request

openssl req -out CSR.csr -new -newkey rsa:2048 -nodes -keyout privateKey.key

Generate a certificate signing request (CSR) for an existing private key

openssl req -out CSR.csr -key privateKey.key -new
@ralcorta
ralcorta / postman-deb.sh
Created December 5, 2019 17:22 — forked from SanderTheDragon/postman-deb.sh
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
ls Postman*.tar.gz > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "Removing old Postman tarballs"
rm -f $(ls Postman*.tar.gz)
fi
curlExists=$(command -v curl)