Skip to content

Instantly share code, notes, and snippets.

@NerdEgghead
NerdEgghead / classic-bear-tank-bis.md
Last active February 24, 2021 19:04
NerdEgghead's Classic Bear gear sets

NerdEgghead's Classic Bear gear sets

  • "True" BiS does not exist for bear tanks, as a good tank should be swapping gear sets constantly depending on the required balance between threat and survivability that is needed for a given encounter and raid team. That being said, certain threat vs. survivability tradeoffs are substantially more efficient than others, so the goal of these lists is to provide the user with representative gear sets which balance these two axes as efficiently as possible.
  • Stat weights and EHP values are based on the integrated Classic Bear Tank Weights Calculator from the class Discord, and are calculated assuming full buffs, consumables, and boss debuffs unless otherwise specified.
  • Gear lists are based on their general effectiveness against all raid bosses as opposed to being tailored for specific bosses. For tank stats in particular, this means that magical resistance is not fa
@acburdine
acburdine / .travis.yml
Created January 17, 2017 01:43
Adding Yarn to Travis CI
addons:
apt:
sources:
- sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main'
key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg'
packages:
- yarn
install:
- yarn
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
var ids = $('.thumbs').map(function(){
var $thumb = $(this);
return $thumb.data('release_id');
});
$.ajax(yourOptionsIncludingIds)
@cburmeister
cburmeister / post-commit
Last active December 17, 2015 19:29
Simple git hook that snaps a photo every time a commit is made with http://iharder.sourceforge.net/current/macosx/imagesnap/
#!/usr/bin/env python
import os
import datetime
my_dir = os.path.expanduser('~/commit-captures')
if not os.path.exists(my_dir):
os.makedirs(my_dir)
filename = '%s/%s.jpeg' % (my_dir, datetime.datetime.now())
@wesrog
wesrog / .vimrc
Last active December 11, 2015 16:19
set nocompatible
call pathogen#infect('~/src/vim/bundle/{}')
call pathogen#helptags()
syntax on
filetype on
filetype plugin on
filetype indent on
set exrc " enable per-directory .vimrc files
@podhmo
podhmo / sqlalchemy_example.py
Created December 20, 2012 14:59
sqlalchemy query example.
import sqlalchemy as sa
import sqlalchemy.orm as orm
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.ext.declarative import declared_attr
from sqlalchemy.orm import scoped_session, sessionmaker
DBSession = scoped_session(sessionmaker())
class BaseMixin(object):
query = DBSession.query_property()
id = sa.Column(sa.Integer, primary_key=True)
@r35krag0th
r35krag0th / Get-TLS-Fingerprint.sh
Created November 30, 2012 02:10
Get Pandora TLS Fingerprint
#!/bin/bash
##
## A simple little shell script that will return the current
## fingerprint on the SSL certificate. It's crude but works :D
##
## Author: Bob Saska (r35krag0th) <git@r35.net>
openssl s_client -connect tuner.pandora.com:443 < /dev/null 2> /dev/null | \
openssl x509 -noout -fingerprint | tr -d ':' | cut -d'=' -f2
@vreon
vreon / .bashrc
Last active August 29, 2022 18:28
TODO syntax highlighting for vim
todo () {
if [ "$1" = "-g" ]; then
path=$HOME
else
path=$(pwd)
while [[ "$path" != "" && ! -e "$path/TODO" ]]; do
path=${path%/*}
done
[ -z "$path" ] && path=$HOME
fi
@vreon
vreon / .Xresources
Created February 27, 2011 03:26
molokai color theme for xterm
! Molokai theme
*xterm*background: #101010
*xterm*foreground: #d0d0d0
*xterm*cursorColor: #d0d0d0
*xterm*color0: #101010
*xterm*color1: #960050
*xterm*color2: #66aa11
*xterm*color3: #c47f2c
*xterm*color4: #30309b
*xterm*color5: #7e40a5