Skip to content

Instantly share code, notes, and snippets.

View ronaknnathani's full-sized avatar

Ronak Nathani ronaknnathani

View GitHub Profile
INSERT INTO users (name, age) VALUES ('john', 26);
INSERT INTO users (name, age) VALUES ('jane', 24);
INSERT INTO users (name, age) VALUES ('julia', 25);
INSERT INTO users (name, age) VALUES ('jamie', 22);
INSERT INTO users (name, age) VALUES ('jenny', 27);
CREATE TABLE users
(
id SERIAL NOT NULL,
name VARCHAR(100) NOT NULL,
age INTEGER,
updated_at TIMESTAMP NOT NULL DEFAULT NOW(),
PRIMARY KEY(id)
);
---
key_pair: ronak-nathani
instance_type: t2.medium
region: us-west-2
security_group_id: sg-19127861
num_instances: 2
subnet_id: subnet-3a78835f
tag_key_vals:
Name: ronak-ec2-role
class: kafka
#!/usr/bin/env python
# Using new TCP connection for each HTTP request
import os
import json
import time
import logging
import requests
from requests.auth import HTTPBasicAuth
#!/usr/bin/env python
import requests
import logging
import time
import os
import json
from requests.auth import HTTPBasicAuth
logging.basicConfig(level=logging.DEBUG)
start_time = time.time()
#!/usr/bin/env python
import requests
import logging
import time
import os
import json
from requests.auth import HTTPBasicAuth
logging.basicConfig(level=logging.DEBUG)
start_time = time.time()