Skip to content

Instantly share code, notes, and snippets.

@tndavaloz
tndavaloz / daxReviews.tf
Created May 17, 2019 15:42
Dax Reviews
resource "aws_iam_role" "dax-reviews-role" {
name = "dax-reviews-cache"
assume_role_policy = "${data.aws_iam_policy_document.dax_role_policy_doc.json}"
}
data "aws_iam_policy_document" "dax_role_policy_doc" {
statement {
actions = [
"sts:AssumeRole",
]

Keybase proof

I hereby claim:

  • I am tndavaloz on github.
  • I am tloztwip (https://keybase.io/tloztwip) on keybase.
  • I have a public key whose fingerprint is 386D A662 CAA2 EE5E D86A 85C6 4112 2418 B33E 5C25

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am tndavaloz on github.
  • I am tloztwip (https://keybase.io/tloztwip) on keybase.
  • I have a public key ASA5vI3ab0fjYpvaK249WNm4MnkH_Y_DCXpUDo2Y6t1Hywo

To claim this, I am signing this object:

Effective Engineer - Notes

What's an Effective Engineer?

  • They are the people who get things done. Effective Engineers produce results.

Adopt the Right Mindsets

@tndavaloz
tndavaloz / vim-cheat-sheet.md
Created February 19, 2016 12:29 — forked from ummahusla/vim-cheat-sheet.md
Vim Cheat Sheet

Modes

Vim has two modes insertion mode and command mode. The editor begins in command mode, where the cursor movement and text deletion and pasting occur. Insertion mode begins upon entering an insertion or change command. [ESC] returns the editor to command mode (where you can quit, for example by typing :q!). Most commands execute as soon as you type them except for "colon" commands which execute when you press the ruturn key.

Quitting

  • :x Exit, saving changes
  • :q Exit as long as there have been no changes
  • ZZ Exit and save changes if any have been made
  • :q! Exit and ignore any changes

Inserting Text