Skip to content

Instantly share code, notes, and snippets.

View jmervine's full-sized avatar

Joshua Mervine jmervine

View GitHub Profile

Druid Bear Macros

Bear Weaving - 1

This is the generic macro that is from the Druid Discord. It switches you to bear, if you're not already in bear, then casts Mangle and then switches you back to cat.

NOTE: This needs to be spammed or it will reset and you'll be suck in bear, you have 4.5 seconds before that occurs.

#showtooltip
/startattack
/run if GetSpellCooldown(768)>0 then SetCVar("autoUnshift",0) end;

Keybase proof

I hereby claim:

  • I am jmervine on github.
  • I am jmervine (https://keybase.io/jmervine) on keybase.
  • I have a public key ASDOuYiK6ravSKukxmkirax9szSKJOQyrS0XIfFrEqPYugo

To claim this, I am signing this object:

@jmervine
jmervine / splunk.sh
Last active March 29, 2021 19:46
Simple script to start and seed a local splunk instances using Docker
#!/usr/bin/env bash
# Simple script to start and seed a local splunk instances using Docker
# Usage:
# $ bash splunk.sh [USERNAME] [HEC TOKEN]
PASSWORD="$1"
TOKEN="$2"
test -z "$PASSWORD" && PASSWORD=password
test -z "$TOKEN" && TOKEN=token
@jmervine
jmervine / general.md
Last active July 21, 2021 23:42
WoW Macros

General Macros and Commands

Commands

Change Cursor Size

Options:

  • -1 is auto
  • 0 is smallest
  • 2 is biggest
/console cursorsizepreferred 2
@jmervine
jmervine / test-external-secrets.yaml
Last active April 18, 2019 18:17
godaddy external-secrets test
---
apiVersion: 'kubernetes-client.io/v1'
kind: ExternalSecret
metadata:
name: test-external-secrets
namespace: default
secretDescriptor:
backendType: secretsManager
data:
- key: /splunk/license
UPDATE_TYPE ?= sts
STS ?=
indexers: ## Select indexer as actionable StatefultSet
indexers:
$(eval STS := indexer)
@echo "Set indexer as actionable StatefulSet"
indexer: indexers
@jmervine
jmervine / Makefile
Last active November 28, 2018 18:53
# Override github.com/splunk/docker-splunk build args
# ---
# SPLUNK_ANSIBLE_BRANCH ?= master
# SPLUNK_VERSION ?= 7.2.0
# SPLUNK_BUILD ?= 8c86330ac18
# Choose a github.com/splunk/docker-splunk branch to deploy
DOCKER_SPLUNK_BRANCH ?= master
IMAGE ?= splunk-edge
@jmervine
jmervine / foo.tf
Last active November 1, 2018 16:36
provider "helm" {
kubernetes {
config_path = "${local_file.kubeconfig.filename}"
}
}
provider "helm" {
kubernetes {
host = "${aws_eks_cluster.eks_master.endpoint}"
cluster_ca_certificate = "${base64decode(aws_eks_cluster.eks_master.certificate_authority.0.data)}"