Skip to content

Instantly share code, notes, and snippets.

View justinobb's full-sized avatar

Justin Patchett justinobb

View GitHub Profile
@justinobb
justinobb / Nginx 1.11.6 OpenSSL 1.1 Centos 7
Created November 16, 2016 12:16
Nginx 1.11.6 OpenSSL 1.1 Centos 7
# Based on CentOS7 fork of @smartmadsoft: https://gist.github.com/moneytoo/ab3f34e4fddc2110675952f8280f49c5
# "6" for CentOS6 or Amazon Linux, "7" for CentOS7
CENTVER="7"
OPENSSL="openssl-1.1.0c"
NGINX="nginx-1.11.6-1"
yum clean all
# Install epel packages (required for GeoIP-devel)
@DiegoSalazar
DiegoSalazar / validate_credit_card.js
Last active February 21, 2025 13:22
Luhn algorithm in Javascript. Check valid credit card numbers
// Takes a credit card string value and returns true on valid number
function valid_credit_card(value) {
// Accept only digits, dashes or spaces
if (/[^0-9-\s]+/.test(value)) return false;
// The Luhn Algorithm. It's so pretty.
let nCheck = 0, bEven = false;
value = value.replace(/\D/g, "");
for (var n = value.length - 1; n >= 0; n--) {