Skip to content

Instantly share code, notes, and snippets.

View p0bailey's full-sized avatar
😃
"A smooth sea never made a skilled sailor."

Phillip Bailey p0bailey

😃
"A smooth sea never made a skilled sailor."
  • Stack42
  • London (uk)
View GitHub Profile
#!/bin/sh
## Requirements: tmux curl watch.
tmux new-session -d
tmux split-window -d -t 0 -h
tmux split-window -d -t 0 -v
tmux split-window -d -t 2 -v
# Use Alt-arrow keys without prefix key to switch panes
@p0bailey
p0bailey / covid19-tmux-dashboard.md
Last active April 17, 2020 19:33
Covid19 Tmux Dashboard
@p0bailey
p0bailey / covid-19.md
Last active March 26, 2020 21:14
A curated list of resources to stay informed, healthy and productive during covid-19 (AKA coronavirus) pandemic.

Keybase proof

I hereby claim:

  • I am p0bailey on github.
  • I am pbailey (https://keybase.io/pbailey) on keybase.
  • I have a public key ASDSpj5zlX60WPiiEg200dB4W0x3_fwiwgFcOXIFwPmRlQo

To claim this, I am signing this object:

General

Q: Are Amazon EBS volume and snapshot ID lengths changing in 2018?

Yes, please visit the EC2 FAQ page for more details.

Q: What happens to my data when an Amazon EC2 instance terminates?

Unlike the data stored on a local instance store (which persists only as long as that instance is alive), data stored on an Amazon EBS volume can persist independently of the life of the instance. Therefore, we recommend that you use the local instance store only for temporary data. For data requiring a higher level of durability, we recommend using Amazon EBS volumes or backing up the data to Amazon S3. If you are using an Amazon EBS volume as a root partition, set the Delete on termination flag to "No" if you want your Amazon EBS volume to persist outside the life of the instance.

@p0bailey
p0bailey / Amazon-SQS-FAQs.md
Last active August 9, 2018 11:35
Amazon SQS FAQs

Amazon SQS FAQs

Overview

Q: What are the benefits of Amazon SQS over homegrown or packaged message queuing systems?

Amazon SQS provides several advantages over building your own software for managing message queues or using commercial or open-source message queuing systems that require significant up-front time for development and configuration.

These alternatives require ongoing hardware maintenance and system administration resources. The complexity of configuring and managing these systems is compounded by the need for redundant storage of messages that ensures messages are not lost if hardware fails.

@p0bailey
p0bailey / Amazon-S3-FAQs.md
Last active August 9, 2018 14:01
Amazon S3 FAQs

General S3 FAQs

Q: What is Amazon S3?

Amazon S3 is object storage built to store and retrieve any amount of data from anywhere on the Internet. It’s a simple storage service that offers an extremely durable, highly available, and infinitely scalable data storage infrastructure at very low costs.

Q: What can I do with Amazon S3?

@p0bailey
p0bailey / aws-vault-demo-s3.tf
Created October 29, 2017 21:44
s3 aws-vault demo
resource "aws_s3_bucket" "bucket" {
bucket = "somethingVaultTest"
acl = "private"
tags {
Name = "vault-demo"
Environment = "Demo"
}
}
@p0bailey
p0bailey / mfa_ip_lockdown.tf
Created October 27, 2017 15:51
terraform iam group aws api mfa protected plus ip lockdown
resource "aws_iam_group" "ec2Admins" {
name = "ec2Admins"
}
resource "aws_iam_group_policy" "force_MFA_on_apikeys_policy" {
name = "force_MFA_on_apikeys_policy"
group = "${aws_iam_group.ec2Admins.id}"
depends_on = ["aws_iam_group.ec2Admins"]
policy = <<EOF
@p0bailey
p0bailey / mfa.tf
Last active October 27, 2017 15:49
terraform iam group aws api mfa protected
resource "aws_iam_group" "ec2Admins" {
name = "ec2Admins"
}
resource "aws_iam_group_policy" "force_MFA_on_apikeys_policy" {
name = "force_MFA_on_apikeys_policy"
group = "${aws_iam_group.ec2Admins.id}"
depends_on = ["aws_iam_group.ec2Admins"]
policy = <<EOF