- "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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ids = $('.thumbs').map(function(){ | |
var $thumb = $(this); | |
return $thumb.data('release_id'); | |
}); | |
$.ajax(yourOptionsIncludingIds) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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) <[email protected]> | |
openssl s_client -connect tuner.pandora.com:443 < /dev/null 2> /dev/null | \ | |
openssl x509 -noout -fingerprint | tr -d ':' | cut -d'=' -f2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
todo () { | |
if [ "$1" = "-g" ]; then | |
path=$HOME | |
else | |
path=$(pwd) | |
while [[ "$path" != "" && ! -e "$path/TODO" ]]; do | |
path=${path%/*} | |
done | |
[ -z "$path" ] && path=$HOME | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
! 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 |
NewerOlder