Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
openapi: 3.0.0 | |
info: | |
title: The Good Bank APIs | |
version: 1.0.0 | |
servers: | |
- url: http://security.postman-breakable.com | |
tags: | |
- name: Health | |
- name: Bank User | |
description: This folder contains APIs to manage users of The Good Bank. |
<?php | |
echo "Running Domain extraction script at ".date('Y-m-d H:i:s')."\n\n"; | |
if(empty($argv[1])){ | |
echo "please enter in below format \n php domain-from-subdomain.php http://<subdomain/domain name>/xyz/mypath/to/some/image/folder\n"; | |
exit; | |
}else{ | |
if(explode(":",$argv[1])[0] == "http" || explode(":",$argv[1])[0] == "https"){ | |
print get_domain($argv[1]); |
Country | Alpha-2 code | Alpha-3 code | Numeric code | Latitude (average) | Longitude (average) | |
---|---|---|---|---|---|---|
Afghanistan | AF | AFG | 4 | 33 | 65 | |
Albania | AL | ALB | 8 | 41 | 20 | |
Algeria | DZ | DZA | 12 | 28 | 3 | |
American Samoa | AS | ASM | 16 | -14.3333 | -170 | |
Andorra | AD | AND | 20 | 42.5 | 1.6 | |
Angola | AO | AGO | 24 | -12.5 | 18.5 | |
Anguilla | AI | AIA | 660 | 18.25 | -63.1667 | |
Antarctica | AQ | ATA | 10 | -90 | 0 | |
Antigua and Barbuda | AG | ATG | 28 | 17.05 | -61.8 |
# -*- encoding: utf-8 -*- | |
# requires a recent enough python with idna support in socket | |
# pyopenssl, cryptography and idna | |
from OpenSSL import SSL | |
from cryptography import x509 | |
from cryptography.x509.oid import NameOID | |
import idna | |
from socket import socket |
Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
– The Git website
Choose one of the following options.
<?php | |
$fh = fopen('domain-push-to-ehr.csv','r'); | |
while($line = fgets($fh)){ | |
$string = trim(preg_replace('/\s\s+/', '', $line)); | |
$file = $string."_data.txt"; | |
if (filter_var("$string", FILTER_VALIDATE_IP)) { | |
echo("$string is valid IP") | |
continue; | |
} else { | |
echo("$string is not a valid IP address"); |
sudo dnf install php* && \ | |
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" && \ | |
php composer-setup.php --install-dir=/usr/local/bin --filename=composer && \ | |
composer --version |
if ($request_uri = /) { | |
set $test A; | |
} | |
if ($host ~* teambox.com) { | |
set $test "${test}B"; | |
} | |
if ($http_cookie !~* "auth_token") { | |
set $test "${test}C"; |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of