I hereby claim:
- I am unixsage on github.
- I am unixsage (https://keybase.io/unixsage) on keybase.
- I have a public key whose fingerprint is 8ED3 5054 68A8 86AF 537B AD5B 2CFD B395 BE67 3984
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
global | |
daemon | |
maxconn 1028 | |
tune.ssl.default-dh-param 1024 | |
user haproxy | |
group haproxy | |
log 127.0.0.1 local0 | |
defaults | |
timeout connect 5000ms |
#!/bin/perl | |
# mod-ead-calc | |
# By: John C. Place | |
# http://www.unixsage.com | |
print "<title>Maximim Operating Depth and Eqivlant Air Depth Table</title>\n"; | |
print "<table border cellpadding=\"3\">\n"; | |
print "<caption>Maximim Operating Depth and Eqivlant Air Depth Table (fsw)</caption>"; | |
for($x=20; $x <= 100; $x+=2) { |
#!/usr/bin/perl | |
# mod-ead-calc | |
# By: John C. Place | |
# http://www.unixsage.com | |
print <<EOT | |
Assumptions: | |
<ul> | |
<li>Stressed diver SAC rate 1cf/min | |
<li>1 min to sort out problem at depth |
#!/bin/bash | |
KEY="GoDaddyAuthKey" | |
SECRET="GoDaddySecret" | |
APISITE="api.godaddy.com" | |
BASEDOMAIN=`echo ${CERTBOT_DOMAIN} | awk -F. '{OFS="."; print $(NF-1),$(NF)}'` | |
SUBDOMAIN=`echo ${CERTBOT_DOMAIN} | sed -e 's/'${BASEDOMAIN}'//' -e 's/\.$//'` |
frontend localnodes | |
bind :::443 v4v6 | |
mode tcp | |
default_backend nodes | |
timeout client 1m | |
backend nodes | |
mode tcp | |
balance roundrobin | |
server W.X.Y.Z:443 |
#!/usr/bin/env python3 | |
from random import choice,shuffle | |
import string | |
password=[] | |
words=[] | |
shortwords=[] | |
wordfile=open("/usr/share/dict/words") |
#!/usr/bin/env python3 | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
#!/usr/bin/env python3 | |
import json | |
import requests | |
import os,sys,time,getopt | |
import configparser | |
helpinfo=""" | |
Usage: | |
-s IncludeList |
#!/usr/bin/env python3 | |
import socket | |
import datetime | |
domainlist = { | |
'home.mydomain.com': 'user.myisp.net', | |
'mydomain.com': 'account.myhosting.com' | |
} |