Skip to content

Instantly share code, notes, and snippets.

View adallen-godaddy's full-sized avatar

Alvin D. Allen adallen-godaddy

View GitHub Profile
@apankrat
apankrat / check-certs-expiry.sh
Last active June 4, 2024 16:57
Bulk-check expiry dates and issuers of website SSL certificates
#! /bin/bash
#
# add your sites here, one per line
# prepend # to temporarily exclude an entry
#
sites="
reddit.com
google.com
microsoft.com
@sshymko
sshymko / install_pecl_imagick_amzn2.sh
Last active December 9, 2023 17:40
Install latest ImageMagick 7.x and imagick PHP extension from PECL on Amazon Linux 2
#!/bin/sh
# Uninstall ImageMagic library and imagick PHP extension using it (installed previously)
yum remove -y php-pecl-imagick ImageMagick
# Install libraries for JPG, PNG, GIF, WebP, and TIFF image formats
yum install -y libpng-devel libjpeg-devel openjpeg2-devel libtiff-devel libwebp-devel giflib-devel
# Install latest ImageMagick library compiled from downloaded sources
yum install -y gcc