Friday, March 20, 2009

Fury Warrior Resources


Strength

Strength is the single most important stat: increases DPS and scales with buffs.

Expertise
  • Lvl 70: 2/2 Weapon Master + 4.5% (4.5 x 15.77) = 71 Expertise
  • Lvl 80: 2/2 Weapon Master + 4.5% (4.5 x 32.79) = 148 Expertise
The goal for Expertise is to remove dodge chance from the table, which is 6.5%. Weapon Master grants up to -2% Dodge.

Hit: 
  • Lvl 70: 3/3 Precision + 5% (5 x 15.77) = 78.85 Hit Rating
  • Lvl 80: 3/3 Precision + 5% (5 x 32.79) = 164 Hit Rating

The goal for Hit is to elimiate the base chance to miss, which is (apparently) 8%. Precision grants up to +3% Hit.

Stat Priority
  1. Yellow hit cap and Expertise cap
  2. Strength
  3. Attack Power
  4. Crit

Note: This information pertains to version 3.0.9.

Monday, May 26, 2008

Inked

I got my first ink today, the World of Warcraft Horde insignia on my lower right abdomen. I got only got the insignia done, considering the diamond shield as well, but it would be large, thought it a bit much for my first tatt, and the artist said it could be added later with good results.

First Ink

I had the work done at Psycho Clown Tattoo in Fort Worth, TX. I had no idea how to choose a tattoo artist, but PCT had a favorable writeup in a recent Fort Worth Weekly. The seemed like talented and reputable artists, so I chose them.

If you've never gotten a tattoo before, you probably don't know what searing pain feels like. I'm not talking about burning your finger on the stove, I'm talking hot needles piercing the skin for 45+ minutes of agony. I took no pain meds of any kind, no alcohol, aspirin; nothing. It's definitely a rite of passage of sorts and I have new respect for people that have elaborate tattoos on their bodies.

And when I left, there were only two cars in the parking lot, my Prius and, well, someone else's Prius! At the tattoo studio! Evidence that not all Prius owners are uncool?

Related photos

Tuesday, November 27, 2007

My Cool Tools

Being a software development consultant, I usually work onsite using the client's computer equipment. This means that every year or so, I have to personalize a new development machine and spend the day installing my own box of tools, assuming that I remember what all they were and where I got them. This time, however, I wrote them down as I installed them so that I could list them here, as well as have them available next time (a form of self-Googling).

Scott Hanselman has compiled a platinum, nay Elementium, list of sweet developer tools, from which most of these tools can be found, but a few are not on Scott's list.
Candidates
These are tools I'm/'ve evaluated that have not been oficially blessed.
  • MagicDisc - Virtual CDROM utility. Mount various image formats rather than burn them to disc first. It can also create an image from an existing CD/DVD.
  • Easy BCD - Manage Windows Vista (and later?) boot loader entries to boot all your fave OSes.
Colophon: Velvet Acid Christ - Hex Angel, DJ Brad Miller

Monday, November 19, 2007

NUnit GUI and project config files

I've used NUnit as the unit test framework on a number of projects and all used their own config files to hold connection string settings, etc. On several occasions, I've also used TestDriven.net, which is an awesome Visual Studio addin for running unit tests. On my current project, however, I create an NUnit project for my unit test project and store the .nunit file in the same folder as the unit test project's .vbproj file (I'm not using VB by choice ;-) ).


And since I'm using Visual Studio 2005, I don't need to modify the unit test project's Post-Build Event script text to copy/rename the app.config in the output folder because VS does that now.


The problem I ran into was that the config file wasn't getting picked up. I double-checked to make sure the configuration was correct and that the config file was being copied/renamed properly, but it still didn't work. After futzing around with it a bit more, I determined that app.config needs to be copied/renamed the same as the .nunit file name and location.


And to make the arrangement portable across projects, I name the .nunit file the same as the VS project nams. So now my Post-build Event script now looks like this:

:: This script copies and renames app.config to .config
:: so that the NUnit GUI application will consume it.
:: Example:
:: MyTestProject.nunit
:: MyTestProject.config
copy /Y "$(ProjectDir)app.config" "$(ProjectDir)$(ProjectName).config"


Solved!

Sunday, October 14, 2007

Rainwalk Therapy

I went for a walk in the neighborhood this evening because it was a beautiful day here in North Texas. Along the way rain began to fall, a few drops at first, escalating to a brisk shower. My first reaction was to scamper out of the rain because that's what we generally do when rain starts to fall on us. But since there was no shelter anywhere nearby and I was already in clothes that were supposed to get wet and dirty (gym clothes), I decided to just let myself get soaked. The rain subsided after 10 minutes or so and it was then that I realized what a communal experience it was to have the Earth's rain fall on me. I felt more grounded at that moment than I have in some time now. So I hereby resolve to walk in the rain at least twice per year, weather permitting! ;-)

Disclaimer: Should you decide to join me in this experience, please be sensible and stay indoors if there is any thunder or lightning. Better yet, go to a window or covered patio and witness the magnificence of lightning first hand.