Skip to content

Instantly share code, notes, and snippets.

View leonardoandrade's full-sized avatar

Leonardo Andrade leonardoandrade

View GitHub Profile
@pstadler
pstadler / cert-expiration.sh
Last active June 6, 2018 13:23
Print SSL certificate end dates for a list of domains
#!/bin/sh
domains=(
"example.org"
"example.com:7443"
)
default_port=443
for domain in ${domains[@]}; do
@bkaradzic
bkaradzic / orthodoxc++.md
Last active April 23, 2024 13:59
Orthodox C++

Orthodox C++

What is Orthodox C++?

Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.

Why not Modern C++?