Skip to content

Instantly share code, notes, and snippets.

View zhb127's full-sized avatar

zhb127 zhb127

View GitHub Profile
@zhb127
zhb127 / gist:999c570e15d00b026876a509bc3c8558
Created April 23, 2020 08:52 — forked from kitek/gist:1579117
NodeJS create md5 hash from string
var data = "do shash'owania";
var crypto = require('crypto');
crypto.createHash('md5').update(data).digest("hex");
@zhb127
zhb127 / sample.sh
Created March 25, 2020 06:40 — forked from e7d/sample.sh
Bash "try catch"
#!/bin/bash
export AnException=100
export AnotherException=101
# start with a try
try
( # open a subshell !!!
echo "do something"
[ someErrorCondition ] && throw $AnException
@zhb127
zhb127 / show_ssl_expire
Created November 20, 2019 03:51 — forked from bmatthewshea/show_ssl_expire
Retrieve/Check SSL certificate expiration date(s)
#!/bin/bash
# By B Shea Dec2018
# https://www.holylinux.net
# Test for OpenSSL - if not installed stop here.
if ! [[ -x $(which openssl) ]]; then
printf "\nOpenSSL not found or not executable.\nPlease install OpenSSL before proceeding.\n\n"
exit 1
fi
{
"alignment_chars" : ["=", ":"]
}