Skip to content

Instantly share code, notes, and snippets.

diff --git a/modules/ListingPersonalization/src/Eligibility.php b/modules/ListingPersonalization/src/Eligibility.php
index c4debef803d8..9e514b737008 100644
--- a/modules/ListingPersonalization/src/Eligibility.php
+++ b/modules/ListingPersonalization/src/Eligibility.php
@@ -76,21 +76,22 @@ public static function isBOEVersionTooOldForMultiPersoExperience(): bool
if ($request->isFromEtsyApp()) {
$etsy_apps_detector = $request->getEtsyAppDetector();
return !($etsy_apps_detector->etsyAndroidVersionMatches(self::MIN_ANDROID_APP_VERSION)
|| $etsy_apps_detector->etsyiOSVersionMatches(self::MIN_IOS_APP_VERSION));
}
@eklingen88
eklingen88 / r53-ns-lookup.sh
Created July 8, 2020 13:57
Look up nameservers for your Route53 Hosted Zones
aws route53 list-hosted-zones | jq -r '.HostedZones[].Name' | while read -r line; do echo "$line"; echo; echo; dig @8.8.8.8 +short ns "$line"; echo "-------------"; done
@eklingen88
eklingen88 / ssl-check.sh
Created June 11, 2020 15:34
Check for SSL via IP and hostname
#!/usr/bin/env bash
$IP_ADDRESS=
$DOMAIN_NAME=
openssl s_client -showcerts -connect $IP_ADDRESS:443 -servername $DOMAIN_NAME