I hereby claim:
- I am brandonjank on github.
- I am bjank (https://keybase.io/bjank) on keybase.
- I have a public key ASDIShhV8sXs8jsifClEP53sie1jIRC4zVd3kKC8OM5OgQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
curse = { | |
-- Siege of Boralus | |
257168 = "Cursed Slash", -- Irontide Marauder Curse 10 No +15% Damage taken | |
-- Waycrest Manor | |
260703 = "Unstable Runic Mark", -- Sister Malady Curse 6 No Minor DoT, 6yd AoE on expiry | |
263905 = "Marking Cleave", -- Heartsbane Runeweaver Curse 6 Yes Moderate DoT | |
265880 = "Dread Mark", -- Matron Alma Curse 6 No Minor DoT, 6rd AoE on expiry | |
265882 = "Lingering Dread", -- Matron Alma Curse 5 No Minor DoT, follows Dread Mark | |
264105 = "Runic Mark", -- Marked Sister Curse 6 Yes Minor DoT, 6yrd AoE on expiry | |
-- Atal'Dazar |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Runtime.InteropServices; | |
using System.Text; | |
using System.Threading; | |
namespace ConsoleApplication1 { | |
public enum Expansion { |
I hereby claim:
To claim this, I am signing this object:
/* Lab Assignment #4 | |
* Name: Brandon Jank | |
* Due: February 19th, 2015 | |
* | |
* A basic Reverse Polish Notation (RPN) Calculator that implements basic | |
* math functions. | |
* | |
* Date Created: February 16th, 2015, 12:21 PM | |
* Date Modified: February 18th, 2015, 6:40 PM | |
*/ |
/* Calculator Assignment 5 | |
* | |
* A simple calculator program controlled program, controlled by a menu and | |
* divided into separate functions. | |
* | |
* Name: Brandon Jank | |
* Section: CS 120-05 | |
* Due Date: 10/06/2014 | |
* Assignment #5 | |
* |
-- Beast Mastery Hunter DPS Rotation | |
-- Legion 7.1 - 12/11/2016 | |
--- COMBAT ROTATION | |
local function combat() | |
-- PAUSES | |
if -player.buff(SB.FeignDeath) or target.is(player) or player.channeling or IsMounted() or IsAoEPending() or UnitControllingVehicle("player") then | |
return false | |
end |
-- Beast Mastery Hunter DPS Rotation | |
-- Legion 7.1 - 12/4/2016 | |
local function resting() | |
-- PET MANAGEMENT | |
if pet.exists then | |
if pet.dead and player.castable('Revive Pet') then | |
return player.cast('Revive Pet') | |
elseif pet.alive and pet.health.percent < 90 and player.castable('Mend Pet') then | |
return player.cast('Mend Pet') |
#!/bin/bash | |
echo "Configuring ALSA mixer for the DR-1X..." | |
sudo amixer -c udrc -s << EOF | |
# If you change your level settings, make a new script, save, and run it | |
# Set input and output levels to 0dB | |
sset 'ADC Level' -5.5dB | |
sset 'LO Driver Gain' 0.0dB | |
sset 'PCM' 0.0dB |
NDefines.NEconomy.START_ENERGY = 50.0; -- The amount of money each country starts with 50.0 | |
NDefines.NEconomy.START_INFLUENCE = 100.0; -- The amount of influence each country starts with 100.0 | |
NDefines.NEconomy.START_MINERALS = 200.0; -- The amount of minerals each country starts with 200.0 | |
NDefines.NGameplay.BASE_MONTHLY_INFLUENCE = 5; -- Base Influence gained per month (3) | |
NDefines.NGameplay.BASE_MONTHLY_MINERALS = 20; -- Base Minerals gained per month (0) | |
NDefines.NGameplay.BASE_MONTHLY_PHYSICS = 20; -- Base Physics gained per month (5) | |
NDefines.NGameplay.BASE_MONTHLY_SOCIETY = 20; -- Base Society gained per month (5) | |
NDefines.NGameplay.BASE_MONTHLY_ENGINEERING = 20; -- Base Engineering gained per month (5) | |
NDefines.NGameplay.BASE_MONTHLY_ENERGY = 20; -- Base Energy gained per month (0) |