Blogging this so I can remember it later: Successfully Adopting Pair Programming.
private void DisplayCoBrandedImages() { string imageUrl = "~/images/cobrand/" + ContractId + ".gif"; bool isCoBranded = File.Exists (Server.MapPath(imageUrl)); bool isGroup = (Page.Category & DisplayCategory.GroupLevel) == Page.Category; if (isGroup) { imageUrl = "~/images/cobrand/GroupOnlineLogo.gif"; } _brandedImage.Visible = isCoBranded || isGroup; _brandedImage.ImageUrl = imageUrl; }
- Determining if the page should be co-branded;
- Determining if the page is a group page;
- Determining which image to display; and,
- Setting the properties of the image control.
private void DisplayCoBrandedImages() { _brandedImage.Visisble = IsCoBranded || IsGroup; _brandedImage.ImageUrl = GetImageUrl(); } private bool IsCoBranded { get { return File.Exists(ImageUrl); } } private bool IsGroup { get { return (Page.Category & DisplayCategory.GroupLevel) == Page.Category; } } private string ImageUrl { get { if (IsGroup) return "~/images/cobrand/GroupOnlineLogo.gif"; else return "~/images/cobrand/" + ContractId + ".gif"; } }
A team working agreement is the set of rules that team members agree to follow while working on a project. The rules can be anything. But, the most productive rules setup the basic expectations that the team places on each of its members. Here are a couple of good links regarding working agreements:
I wish I could remember who told me this…
It does not matter which side of the road we drive on, as long as we all drive on the same side as everyone else.
I introduced the Marick Test Matrix in the previous post. As much as I like it and have come to rely on it. One thing has always bugged me about the matrix: The terms Brian used to describe his horizontal axis seem, IMHO, obtuse. Instead, I prefer these simpler terms:
- Support Programming = Define Requirements
- Critique Product = Identify Defects
Given those changes, here’s my updated matrix:
I prefer these axes because now I can refer to each quadrant by a simple name:
- Business/Requirements
- Business/Defects
- Technology/Requirements
- Technology/Defects