I hereby claim:
- I am yashwant on github.
- I am yashwant (https://keybase.io/yashwant) on keybase.
- I have a public key ASD3_BaE9AZDBZ3aIZYgZhtrp05k0Nmw7PZVYYd_Jk18zgo
To claim this, I am signing this object:
| sudo yum install gcc python3 python3-devel postgresql-devel | |
| sudo curl https://bootstrap.pypa.io/ez_setup.py -o - | python3 | |
| pip3 install psycopg2 |
| #!/bin/bash -xe | |
| ## Create a VPC Peering connection between EKS and RDS Postgres | |
| echo """ run this script as: | |
| ./eks-rds-peering.sh | |
| + read -p 'Enter name of EKS Cluster: ' EKS_CLUSTER | |
| Enter name of EKS Cluster: xolv-dev-cluster | |
| + EKS_VPC=eksctl-xolv-dev-cluster-cluster/VPC | |
| + EKS_PUBLIC_ROUTING_TABLE=eksctl-xolv-dev-cluster-cluster/PublicRouteTable | |
| + read -p 'Enter name of RDS: ' RDS_DB_NAME | |
| Enter name of RDS: sfstackuat |
| [ | |
| { | |
| "location": "US East (Ohio)", | |
| "id": "us-east-2" | |
| }, | |
| { | |
| "location": "US East (N. Virginia)", | |
| "id": "us-east-1" | |
| }, | |
| { |
| US East (Ohio) | us-east-2 | |
|---|---|---|
| US East (N. Virginia) | us-east-1 | |
| US West (N. California) | us-west-1 | |
| US West (Oregon) | us-west-2 | |
| Africa (Cape Town) | af-south-1 | |
| Asia Pacific (Hong Kong) | ap-east-1 | |
| Asia Pacific (Jakarta) | ap-southeast-3 | |
| Asia Pacific (Mumbai) | ap-south-1 | |
| Asia Pacific (Osaka) | ap-northeast-3 | |
| Asia Pacific (Seoul) | ap-northeast-2 |
| ln -s /usr/local/opt/readline/lib/libreadline.8.0.dylib /usr/local/opt/readline/lib/libreadline.7.dylib |
| wget \ | |
| --recursive \ | |
| --no-clobber \ | |
| --page-requisites \ | |
| --html-extension \ | |
| --convert-links \ | |
| --restrict-file-names=windows \ | |
| --domains dev.mysql.com, www.mysql.com, mysql.com \ | |
| --no-parent \ | |
| dev.mysql.com |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script> | |
| window.MediaSource = window.MediaSource || window.WebKitMediaSource; | |
| function testTypes(types) { | |
| for (var i = 0; i < types.length; ++i) | |
| console.log("MediaSource.isTypeSupported(" + types[i] + ") : " + MediaSource.isTypeSupported(types[i])); | |
| } | |
| function onLoad() { |
I hereby claim:
To claim this, I am signing this object:
| CREATE TABLE `apps_countries` ( | |
| `id` int(11) NOT NULL auto_increment, | |
| `country_code` varchar(2) NOT NULL default '', | |
| `country_name` varchar(100) NOT NULL default '', | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8; | |
| -- | |
| -- Dumping data for table `apps_countries` | |
| -- | |
| INSERT INTO `apps_countries` VALUES (null, 'AF', 'Afghanistan'); |
| function dataURItoBlob(dataURI, callback) { | |
| // convert base64 to raw binary data held in a string | |
| // doesn't handle URLEncoded DataURIs | |
| var byteString = atob(dataURI.split(',')[1]); | |
| // separate out the mime component | |
| var mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0] | |
| // write the bytes of the string to an ArrayBuffer | |
| var ab = new ArrayBuffer(byteString.length); |