Both things have been introduced recently, and let you access even private ec2 instances
- Without VPN
- No open SSH port
- Authentication / Authorization is fully delegated to IAM
# Assumes valid AWS Credentials in ENV
| ! XTerm resources | |
| ! | |
| ! Remember to run `xrdb < .Xresources` after changing anything. | |
| ! | |
| ! Tavis Ormandy <[email protected]> | |
| ! Set the default UI font (menus, toolbar, etc) | |
| XTerm*XftFont: Segoe UI:size=10:antialias=true:style=Regular | |
| ! Color of UI Components |
Both things have been introduced recently, and let you access even private ec2 instances
# Assumes valid AWS Credentials in ENV
| job_name=debug-`date +%Y%m%d%H%M%S` | |
| kubectl create job ${job_name} --from cj/myveeva-v118273-app-maint | |
| kubectl label pod -l job-name=${job_name} run=debug | |
| kubectl wait --for condition=Ready pod -l job-name=${job_name} | |
| pod_name=`kubectl get pods -l job-name=${job_name} -o jsonpath='{.items[0].metadata.name}'` | |
| echo "installing tools" | |
| kubectl exec ${pod_name} -- sh -c "apk -q update; apk -q add bash curl jq openssh rsync vim unzip postgresql-client; pip install -q ipython" |
| #coding:utf-8 | |
| import psutil | |
| from mpl_toolkits.mplot3d import Axes3D | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| import matplotlib.animation as animation | |
| TIME_NUM = 90 | |
| FRAMES = 360 |
This is a demo to show how simple it is to create UI tests with SeleniumHQ based on Zalenium.
To try it out you need Python3 and virtualenv and Docker. Download/clone this repo and run run-tests.sh.
The plan is to create a pair of executables (ngrok and ngrokd) that are connected with a self-signed SSL cert. Since the client and server executables are paired, you won't be able to use any other ngrok to connect to this ngrokd, and vice versa.
Add two DNS records: one for the base domain and one for the wildcard domain. For example, if your base domain is domain.com, you'll need a record for that and for *.domain.com.
git config user.name "Your Name"
git config user.email "[email protected]"
git submodule foreach --recursive 'git config user.name "Your Name" && git config user.email "[email protected]"'