Skip to content

Instantly share code, notes, and snippets.

View JerimyTate's full-sized avatar
🐍
boto infinity and beyond

Jerimy Tate JerimyTate

🐍
boto infinity and beyond
View GitHub Profile
@JerimyTate
JerimyTate / OracleEBS-Employee-Supervisor-Query.sql
Created November 16, 2015 16:50 — forked from jgilmour/OracleEBS-Employee-Supervisor-Query.sql
Oracle EBS SQL Query that will list all employees in the hr.per_all_assignments_f table and their supervisor, in readable format. Output is [employee full name, employee number, supervisor full name, supervisor employee number], and ordered by employee name.
# Oracle EBS SQL Query that will list all employees in the hr.per_all_assignments_f
# table and their supervisor, in readable format. Output is [employee full name,
# employee number, supervisor full name, supervisor employee number], and ordered
# by employee name.
SELECT DISTINCT papf1.full_name leve1_full_name
, papf1.employee_number level1_empno
, papf2.full_name leve2_full_name
, papf2.employee_number level2_empno
FROM hr.per_all_people_f papf1
@JerimyTate
JerimyTate / README.md
Created April 20, 2016 19:39 — forked from rmoff/README.md
A very simple OBIEE 11g JMeter script.

Save the JMX file to your local machine and open it in JMeter. Tested with OBIEE 11.1.1.7.1. Other versions may require modifications to the Assertion tests.

NB you need to change instanceconfig.xml so that the Loading... text doesn't disrupt the test. See here for more details, and additional information on using JMeter with OBIEE.

@JerimyTate
JerimyTate / .bash_profile
Created April 10, 2017 22:09 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@JerimyTate
JerimyTate / aws-certification.md
Created May 7, 2017 16:03 — forked from miglen/aws-certification.md
AWS Certification guide and notes on how to prepare for the aws associate certification architect, sysops and developer exams


AWS Certification notes

Those are my personal notes on AWS Solution Architect certification preparation. Hope you find them usefull.

To pass AWS certification, you should have:

  • Sound knowledge about most of the AWS services ( EC2, VPC, RDS, Cloudfront, S3, Route53 etc,)
  • Hands on experience with AWS services.
@JerimyTate
JerimyTate / ecs-cluster-userdata.sh
Created September 27, 2018 15:07 — forked from wolfeidau/ecs-cluster-userdata.sh
cloudwatchlogs setup userdata script
#!/bin/bash -e
yum update -y
yum install -y aws-cfn-bootstrap git aws-cli
# Install the files and packages from the metadata
/opt/aws/bin/cfn-init -v --stack "{{ aws_stack_name }}" \
--resource ECSInstanceLaunchConfiguration \
--configsets ConfigCluster \
--region "{{ ref('AWS::Region') }}"
@JerimyTate
JerimyTate / cidr.py
Created February 9, 2020 20:17 — forked from toringe/cidr.py
Merge CIDR blocks into super blocks if possible
#!/usr/bin/env python
#
# Example 1: All blocks in list.txt, one CIDR per line
# cat list.txt | cidr.py
#
# Example 2: Echo CIDR blocks to stdout
# echo 1.2.3.0/25 1.2.3.128/25 | cidr.py
import sys
from netaddr import *