2011/12/15

I'll most likely kill you in the morning

Well, now that's a good life lesson.

I left a good company and team that was taking a turn that no good will come from. This post isn't about them though so let's not get hung up there.

Anyway, I joined this small company at the end of October, I knew there was going to be legacy code base and some very old ways of doing things. But they were "doing agile" so that was a big plus. I was being brought on board though to make with the new hotness; begin migration to MVC; do a bit of jQuery; work out what middleware/backend/SOA stuff needs changed or created to enable the mobile platform initiatives... pretty hot shit, right?

So I make it through the last week of October and am learning the architecture, "their way" of doing things and how much tech debt I have to work around. Now I'm looking forward to getting into an iteration/sprint to really show the value-add of bringing me on board to tackle a good bit of refactor and optimization while adding new features.

But the iteration never comes... I ask about it and get "We're waiting on a contract from XYZ. We'll start the iteration (next week, Monday, tomorrow, soon)." Until then, I get to work on an InstallShield project (which I used to do as a primary task and HATE!!!).

So a month goes by... still no iteration. No value add. No refactor. No job satisfaction. Worst of all, I realize I really have no team. Instead, there is a group of people that get paid by the same corporation and touch the same source code (sometimes) but don't communicate. I'm pretty much in a complete vacuum working in installation hell.

All the while, I continue getting recruiter calls even though my resume has been taken off Monster. Then it happens. As I'm telling a recruiter that I just started with the company and I am not one the market, he asks, "but are you happy there?" This question haunts me through Thanksgiving and through the end of November.

Then we have the company meeting where the recurring theme was "we're going to build this company so that someone will buy it and we can retire". So I stop ignoring the calls. I meet a few teams (real teams, mind you). I talk with more folks that enjoy tech... And I get a couple job offers. I make my decision to accept one and will be starting Jan 3rd.

Then, in an attempt to be respectful of the people I am about leave, I give them a full 2 week notice this morning. There's my next big mistake. Apparently, I shouldn't have more respect for others than they do for me. Lesson learned. My boss tells me that he doesn't think they'll have much use for me since they still aren't going to start an iteration and he might just have me GTFO today. But he's all vague about it until past my normal end of day.

And there's an outstanding issue on the installer crap. I'm the only one that's worked in that kind of tech. Her's where it gets funny... "maybe we do need you to come back in tomorrow to see if you can get that fixed".

Yeah, sure Dread Pirate Roberts... Good night, Paul. Good work. Sleep well. I'll most likely fire you in the morning. I don't think so. You've shown your hand on what you plan to do when I am done with a task beyond your skill set.

So now I need to figure out what to do to bring in some income for the next two weeks. Going to call my upcoming employer in the morning and see if they can handle me starting earlier. If that doesn't pan, I'll see if I can score some quickie data/TFS/coding goo on 1099. Maybe try to crank out some ideas I've had for Windows Phone apps.

Otherwise, I'm going to have to brush up my "Welcome to WalMart" or "Would you like fries with that"... God I wish I was kidding there.

2011/11/29

Open letter to Pat Tiberi, Sherrod Brown, and Rob Portman

Below is the letter I have written to support the immediate killing of S.968, Protect IP, SOPA, whatever. Have you written your Senators/Representatives?

I am writing to you as a voter in your district. I urge you to oppose the House version of S. 968, the PROTECT IP Act. The PROTECT IP Act is dangerous, ineffective, and short-sighted. The House version -- just introduced by Rep. Goodlatte -- is far worse.

This bill brings with it the very high possibility of permanently damaging the internet or setting it's progress back some 30+ years. The internet is my livelihood. Don't take away my ability to earn an income during an already unstable economic recovery.

Imagine going back to a time without Facebook, Twitter, YouTube, Google, Microsoft, Apple, Netflix, Hulu, Amazon, and all web content. Imagine the ramifications to commerce, education, entertainment, and society as a whole.

Yes the internet *can* be used to break IP laws much like handguns, automobiles, and pastries *can* be used in violent crimes. Society, in general, shouldn't be penalized and treated as scum due to the actions of the few.

2011/01/28

Gated builds living in Harmony. How NO_CI kicked my ass.

It should come as no surprise that I love me some TFS 2010. Microsoft's ALM package is so good. It takes the place of a slew other tools (SCM, build server, bug tracking, document repository, work assignments, and more). Really, TFS is like bacon wrapped bacon for your development team.

We've implemented rolling deployments that stage for up to an hour before pushing out to our dev web servers. The templates have some pretty heavy WF hacks to version assemblies, cycle IIS app pools and websites, push the web code, and execute some console apps that are part of the compilation. They've been working great but they don't keep broken code from getting in to the source control repository.

On a new branch of the code tree, I've mirrored the rolling builds from the trunk. I also added a Gated build to avoid bad code ever being checked in. Hit the Googles if you don't know what a gated build is as there is a wealth of info out there about setting up basic Gated builds.

So why this post? Well there is a funny thing that happens after the Gated build intercepts the check-in and verifies the build. When everything builds correctly, it will commit the changes you requested and add to your comment ***NO_CI***

No problem, right? It's just some extra text, right? Well... not really. You see, putting ***NO_CI*** anywhere in your check-in comment tells the build service (just an event subscriber) to not look at this changeset for any Continuous Integration bits. You may have guessed by now that Rolling builds are.... a form of Continuous Integration. At least, as far as the TFS build service is concerned.

With the gated builds trucking away, I never get a Rolling build to be dropped into the queue.

To the Googles... again.
http://social.msdn.microsoft.com/Forums/en-US/tfsbuild/thread/cff735c5-403a-48ed-bd5c-5cbb26a0c089

Here is where the goodness is. Open up the template being used for your Gated build. Navigate to

Process > Sequence > Run On Agent > Initialize Workspace > Get Workspace
This action has a property named NoCIOption that is set to True on the default template. What I'd suggest at this point is to create a new boolean argument and hook up the metadata so you can set it edits of the build.

Now, when the Gated build completes, it performs the check-in on your behalf without the ***NO_CI*** and then any  CI or Rolling builds function as desired.

2010/10/28

GetAssemblies missing dll's

I have a couple ASP.Net MVC web applications that allow additional functionality by dropping new class library dll's into the bin directory.  This causes new options, tools, products, workflows, etc to be enabled to the user with just a pushing out a new class library.  We've moved away from using an DI/IoC tool (StructureMap/Castle Windsor) because of seeing some memory leaks and having some maintenance issues of the xml files needed to use them.

Instead I decided to go the route of using existing functionality built into the .Net framework.  There is this nifty little static method AppDomain.CurrentDomain.GetAssemblies() which:
Gets the assemblies that have been loaded into the execution context of this application domain.
So, I figure this being ASP.Net, all the dll files in the bin directory would be loaded up, right?  I run the solution and a bunch Assemblies are returned (mscorlib, System.Web.Mvc, Stuff.I.want.dll, More.Stuff.I.Want.dll) page loads and I can see everything it there and happy. A bit more testing happens and then check-in so it gets put out on the web server.
I run through some testing there to make sure there is no real differences between IIS7 and Visual Studio development web server.  Everything looks great. I've removed some external dependencies, lowered the memory footprint, and eased readability. Fantastic! Time to turn it over to have others really kick the tires.

A couple hours go by and then it happens. "Hey Paul! I'm not seeing any of these options I had the last time I opened the page." So I look, the dll's are there.  There were no other code changes to remove them. Let's run local.  Everything looks fine.  I check that results from this particular call are being cached. Everything seems fine.  I change some methods from static to instance, just in case, and deploy.

Again, everything is going along just fine, until the next morning. "Paul. Seriously, are you messing with me? These options are gone again." Me: "%&$(*$%" Directory looks fine. Ok, going to move some stuff out of extension methods and directly into the main assembly for this backend assembly. Lather, rinse, repeat.

Time passes... "Paul, WTF?" Me: "Are you friggin kidding me?" Nothing, NOTHING, is static now in my code.  Nothing is in an extension method, I am very close to having all this functionality in one big DoThisCrap method.

To the Googles!!!

You remember that "Gets the assemblies that have been loaded into the execution context of this application domain." part earlier? Yeah me neither.

So what was happening, as best as I can tell, was the fresh code right after a deployment (or every time I opened in the VS dev server) ASP.Net loaded every dll in the bin as I hoped.  On subsequent page visits, ASP.Net learned that some files were not needed on the last load and no code was directly instanciating them so they weren't loaded. This means they didn't show up.

What to do? Well, we can get the current directory from AppDomain.CurrentDomain.BaseDirectory property.  From there it's a simple System.IO.Directory.GetFiles call to plow the directory with various search options.

/*
this can be pointed to specific sub folder using string.format
*/
var path = AppDomain.CurrentDomain.BaseDirectory;

/*
you can add file name matching criteria here if the assemblies you are looking for match a naming convention
*/
var files = Directory.GetFiles(path, "*.dll", SearchOption.AllDirectories);

and now we can perform logic on the files array.

Since we are looking directly at a folder path, there is no issue of whether previous runs loaded the assemblies into the AppDomain.  However, there is the additional cost of going to disk to get results.

2010/10/27

Congratulations! You just broke the team!

Infighting. Every team has it to some point. The testing team complains that the developers screwed up the application. The developers blame the business analysts for incomplete/incoherent requirements. The BA’s blame the testing/dev groups for misinterpreting the requirements or interpreting them instead of asking for clarification. The project manager blames everyone for slipping deadlines.

Some conflict is expected within any group. There are, however, lines that need to not be crossed. We are all part of this thing for a reason. Let’s give each other a bit of respect and we can get through our day-to-day much easier. Mutual respect is required for all silos/individuals on the team.

Saying to external teams that you have no confidence in one of the internal teams to deliver on what they are paid to do is incomprehensible. Questioning a team members motives on how they spent a vacation day that was scheduled weeks in advance is ludicrous. Demanding that other teams work nights and weekends when you don’t do the same is selfish. Throwing a fit when an individual says “NO!” to working over a holiday weekend because you don’t celebrate the same holiday is appalling.

Below is a brief list of what is being halted whenever I have to deal with this infighting:

  • I investigate new methodologies and technologies
  • I scrutinize every line of code
  • I monitor data page utilization
  • I remove redundancy
  • I optimize methods and queries
  • I normalize datasets
  • I take long running processes down to a tenth their initial time
  • I plan for scale
  • I visualize data sets and workflows the way most people see pictures
  • I read countless blogs, tweets, message boards
  • I teach more junior developers how to use existing frameworks
  • I collaborate with my peers
  • I document the system
  • I design new features
  • I prioritize deliverables
  • I fix bugs
  • I update data
  • I spec hardware
  • I evaluate new software
  • I verify we are licensed properly
  • I write .Net
  • I read Java
  • I understand PHP, ForTran, COBOL and more
  • I relate the data
  • I connect the networks
  • I make the impossible possible
  • I tell you when the impossible really is impossible
  • I can *DD the hell out this shit
  • I can make fat objects light and anemic domains rich
  • I’ve came in early, stayed late, worked weekends and holidays

I am Paul Montgomery. I am good at what I do. I do this shit for a living because I am good at it. I am a pretty damned big deal. I do all I can to surround myself with highly capable people. I will not tolerate treating any member of my team without respect.

2010/02/02

Name That Caption Contest

Tom LaRock, yes THE Tom LaRock, is running a Name That Caption Contest over on DBASurvivor.com. The winner gets a copy of his book by the same name (catchy, eh?).

So I'll be posting my captions here starting with a rather obvious:
  • I felt a great disturbance in the data center... as if millions of SPIDs suddenly cried out in terror and were suddenly silenced

2010/01/18

Spitting out the KoolAid

85% code coverage
5000 unit test passing
Red. Green. Refactor.

We've all heard the TDD folks spewing comments like this on blogs, twitter, or facebook. Quite frankly, I've had enough. I've been on agile teams (little 'a' agile as there is a difference) and yes it works much better than the good 'ole waterfall methodology. However, TDD is NOT a requirement of being an agile team. Actually, I've seen where having your tests up front and coding to the tests can make you less able to make changes to your project.

If you're not driving your design from tests, what is driving your design?

How about the business requirements and chosen technologies? If you start limiting your design decisions by their testability, you can miss out on some great emerging technologies (try finding anything on unit testing app fabric (velocity/caching).

Making TDD your meal ticket.

I'd say learn new features available in your current language, learn a new language, refresh basic OOP design principles, learn about database design (or UI, or web service, or security, blah, blah, blah). There is always something new to learn methodologies are included but you really shouldn't limit yourself.

Write less code.

I call bull$#!%. So the red/green/refactor can potentially limit you to only writing exactly the methods you need but there is the rub. You have to continually make sure you are not future coding or you lose the "write less" mentality. For starters the "less" code has the addition of the test code. Also, I see many technologies, tools, and patterns being bundled to the project by the TDD evangelists. Mocks, Dependency Injection, Object/Relational Mapping, Inversion of Control all tend to added "bonuses" to the end product. So you take your desired functionality and you wrap all these layers of fluff around them. Each tech and tool requires bending your project to the way the tool needs and typically add new files/projects to be added to the end solution (interfaces, repositories, factories, .hbm.xml, .castle, and on and on). Sounds to me like the promise of "less" leads to more.

Assuming everything else works, does this do its job?

Sounds great doesn't it? We break down our code into these tiny bits and we put a loader over here, a translator over there, we dumb down the classes to base object so we can reuse them in other projects (which NEVER happens). We put the domain classes in one project, put the interfaces in another, have another project for the business logic (because our objects don't know how to do anything with itself). And since we have mocking set up, we stub out the calls of all the inter-connections so we don't actually have to see the parts work together.

Who cares if Billy plays nice when he's at the park? He gets along so well with his imaginary friends.

So I shouldn't test my code?

I'm not saying that. There are very good reasons to do testing. Items behind a service call is a good candidate for putting up some tests. By its nature, the service call is disconnected so slamming the call with numerous inputs is straight forward and easier than a testing UI. Additionally, items with a great deal of logic branching or computations do well. Also, anything that has surfaced as a bug more than once. More importantly, UI testing (automated or manually) covers more of what matters... what the user experiences. It doesn't matter if your Is_it_a_dog tests pass because it has 4 legs and barks. What happens when the user is looking for a cow? TDD evangelists whould say you would make tests for a cow as needed. What about a horse? A turtle? A lorikeet? We know that the test suite has now become the pig.

Seeing the forest through the trees.

So we have now bloated up our number of tests to cover all these scenarios while adding no real functionality. We've changed the tests and the real code to meet new business requirements or add functionality. And yet through it all, the TDD tribe will stick to the tests until one crucial point. When a development team is confronted with 200 development hours and only 150 available hours they will try to push the timeframe back or shrink the feature count. When neither of these are possible due to contractual or regulatory requirements, they say screw the testing and start slinging bits in every way possible. If TDD was so much of a time savings, why do you see teams abandon in what should be its golden hour?

TDD isn't coding with seatbelts. You're tests don't keep you from making mistakes. You'll still misinterpret requirements (and have to change it in at least one additional place). You'll never get enough fringe cases to match your users day-to-day interaction. Testing the individual units makes no guarantee that the system, as a whole, works together as needed. So in many cases, TDD is purely a mastorbatory exercise.

I am currently working to remove many of these practices out of my current project because they have done nothing but degrade system performance and added confusion to the project. I'll take a rich domain objects with a real inhertence model that know how to load, save, and translate themselves. Then I know that I can do more with less code and I can make changes to the objects when the requirements change without jumping through some 30 different base, controlling, and god classes after re-working dozens, hundreds, or thousands of tests.

If TDD is working for you, great. If not, don't feel bad. It's not the silver bullet that it has been touted as.

2009/11/05

SQL Server 2008 R2 Running on “Big Iron”

PASS Summit info on SQL 2008 running on my dream Server (192 cores). Summed up by Glenn Berry.

2009/08/17

With FAIL

If you've had the pleasure of working in VB.Net (kill self). If your lazy like me. You've probably used a WITH statement to shorthand calls to properties and methods.

For those who haven't, a WITH statement can be implemented as below:


With myObject = New SomeObject()
.Property1 = "foo"
.Property2 = "bar"
.Execute()
End With


Simple enough, right. Now enter Linq...

Linq queries (Linq2SQL, Linq2nHibernate, Linq2XML) add a great deal of functions to items derived from IEnumereable (Querayable objects, Lists, etc). The main method I was using on my project was the .Where() extension method.

I'll just mention that I prefer the Extension method/Lambda syntax in C# over that of vb. Primarily because I am lazy and "=>" is two keystrokes versus "Function(x)". Now here is where my laziness caught up with me.

I was implementing a simple search function that would take in a search criteria class. The class had a few properties and a list. The properties mapped to various fields on a customer class the list maps to a view that I've associated as a child class to the customer class in my dbml. All criteria are optional on the search to allow for insanely as hoc querying.

So as I enter the .Search(criteria As SearchCriteria) method I tossed in a With statement (due to the laziness). Basically as follows:


Public Function Search(criteria As SearchCriteria) As List(Of Customer)
With criteria
Dim results = Repository(Of Customer).GetTable()
If Not(String.IsNullOrEmpty(.Name)) Then
results = results.Where(Function(r) r.Name.Contains(.Name))
End If

If (.CustomerId IsNot Nothing) Then
results = results.Where(Function(r) r.Id = .CustomerId)
End If

...Continue a dozen more times ...

End With
Return results
End Sub



So I step through debugging on this method and I see that the .Where's are filtering down the results as I'd expect. However when I leave the sub, a NullReferenceException is thrown from the internals of Linq2SQL... FAIL.

Thinking I may have screwed up something with the .Where's, even though a watch shows that it's good, I switch up how I do the where to
results = From r In results Where r.Id = .CustomerId
I step through, expand the watch, and it looks good. Continue running to end of method... FAIL. Again a NRE from the internals of Linq2SQL.

After cursing at length, dumping all the objects out of my dbml and re-creating. Still FAIL. Then it dawns on me. Linq2SQL queries, like all Linq queries don't execute when most people would expect. This is a good thing. You can append numerous Where statements, Orders, etc and the you don't have a call to the database until you actually go to retrieve a value (a ToList() or ToArray() will cause this as will binding the list to a webform object). Of course when I expand the watch on results it executed the underlying queries. So where did the phantom NRE come from?

Apparently, using a With statement does some kind of voodoo with memory addressing. So my .CustomerId is not the same as criteria.CustomerID. When the results were returned, we were outside the With so the framework had no idea where these .Whatevers were coming from. *sigh* So much for being lazy.

I remove the With statement and everything just works... Kill Self. That is about a day of writing, cursing, rewriting, cursing, smoking, re-rewriting, cursing that I won't get back. So that is my tale of shame, I am not proud.

Comments