💾 Archived View for oppen.digital › memex › commands captured on 2021-12-17 at 13:26:06. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-03)

-=-=-=-=-=-=-

Commands

A growing collection of tools and commands to aid my fragmented memeory.

Exit stale SSH Session

type enter ~.

Image Resize

ImageMagick:

# Resize based on width, maintaining aspect ratio
convert image.jpg -resize 1280 image.jpg

# Convert from one format to another:
convert image.jpg image.png

# Rotate:
convert image.png -rotate 90 image.png

Generate Gemini Server Cert

openssl req -x509 -newkey rsa:4096 -keyout od_key.pem -out od_cert.pem -days 365 -nodes -subj '/CN=oppen.digital'

PM2

Process Manager 2:

pm2 list - lists current managed processes
pm2 monit - nice dashboard including logs
pm2 restart id - restart a process
pm2 logs - display logs
pm2 flush - delete all logs