Tuesday 6 October 2015

Send me a picture, so I can remember

Retrospectives

Sprint retrospectives are important. This may sound like I'm stating the obvious but please make sure that you have concise retrospectives.

The big benefits of a good retrospective include
  • Getting honest feedback on the progress of your project. 
  • Gauging the teams mental state. 
  • Strengthening relationships between the team members (after all, we are in this together).
If you are organising the retrospective, your biggest job is to help people to give open feedback. You can do this by creating an environment in which they are comfortable and giving them tasks that help elicit the information as opposed to directly asking for feedback on the sprint.

The following exercise describes one of the methods for garnering feedback.

Postcards from the Sprint

  • Before the retrospective
    1. Get (or make*) some postcards. Try to use a wide selection of destinations, 10 postcards of the east coast is not a good selection. 
    2. Get (or make**) some tokens. Make sure that these are easily identifiable (eg. Monopoly pieces).
  • In the Retrospective
    1. Ask all member of the retrospective to choose a token.
    2. Spread out the post cards on a flat surface.
    3. Ask the members of the retrospective to place their token onto the postcard that they 'feel' represents the sprint that we have just completed.
          - Wait for everyone to place their token - 
    4. Choose a token (not a person***) and ask who that token belongs to. Ask that person to describe in what way they feel that that postcard represented the sprint.
    5. Remember to say thank you. 

Why is this a good exercise

  • The postcards act as a starting point, whether that it is an association to the place, geography or a metaphor, the person is grounded by the selected image and merely needs describe a context.
  • Everyone gets to express an uninterrupted opinion and comment on the sprint.
  • The tokens are ambiguous, and therefore the running order is random.
  • Members choices are 'locked in' so there is no playing follow the leader when they are expressing their feeling.

Retrospectives should not feel like a chore and it is not a cull-able step in the process. So keeping people engaged at this stage is important. we've managed it all sprint and by Jove we'll keep them engaged in the retrospectives too!!



* How to make a postcard: Find a royalty free picture, resize it, print it, cut it out, laminate it.
** How to make a token: (see 'How to make a postcard' above).
*** Not a person: We want to disassociate any feeling of singling out, identifying or alienating individuals when eliciting unbiased feedback, hence the tokens.

Saturday 27 June 2015

When is a valid win32 application, not a valid win32 application

What happened

Recently I've needed to upgrade an application to use 4.0.3 of the .Net Framework. The upshot of this was that the application was no longer XP compatible.

Not a valid win32 application

This was un-expected, there isn't a compatibility issue with XP and this version of the framework. However, upon inspection, the compiler had marked the application as being for Vista OS onwards. Explicitly set this to XP and the application is once more a valid win32 application.

SUCCESS!!

This is how it was done.

  1. We inspected the application.exe header using dumpbin. This is a Visual Studio command line utility.
  2. Here we could see that it was targeting /subsystemversion 6.00 which is Vista, considering the change we made, this is neither desired or required. Ideally we would ask the compiler to mark this correctly for us, but msBuild doesn't expose this switch. So instead we would need to change this post compilation.
  3. So we added a build step to adjust this flag after compilation. For this we used editbin. Another Visual Studio command line utility. To set the

    editbin.exe "$(TargetPath)" /SUBSYSTEM:WINDOWS,5.01 /OSVERSION:5.1

DumpBin
You can use DUMPBIN to examine COFF object files, standard libraries of COFF objects, executable files, and dynamic-link libraries (DLLs). You can start this tool only from the Visual Studio command prompt. You cannot start it from a system command prompt or from File Explorer.
https://msdn.microsoft.com/en-us/library/c1h23y6c.aspx

EditBin
You can use EDITBIN to modify object files, executable files, and dynamic-link libraries (DLL). You can start this tool only from the Visual Studio command prompt. You cannot start it from a system command prompt or from File Explorer.
https://msdn.microsoft.com/en-us/library/xd3shwhf.aspx

/subsystemversion
Specifies the minimum version of the subsystem on which the generated executable file can run, thereby determining the versions of Windows on which the executable file can run.
Specifies the execution environment that's required by the executable image.

 

Monday 18 May 2015

Setting up

Whether you are setting up a development workstation or swapping jobs, you probably want to make sure that you have all of the gadgets and utilities that make your work life easier which may not be on the default machine image supplied to you.

That is where posts like this come in. You'll find that most development blogs will have a post of this nature, where the author lists some of the cheap or free productivity tools that they have found useful.

Here is my list.

Notepad++

www.notepad-plus-plus.org
It's like notepad but better; tabs, tab persistence between sessions, find in all tabs, and that's just the tabs!! You can even define your own language syntax to create custom document highlighting (if you want).

Unlocker

http://filehippo.com
Resolve sharing violations by removing a troublesome lock that another process has on that file. For example: "Hmm, I can't delete this folder, and even though nothing and no-one should be using it." - Unlocker to the rescue, albeit a dangerous and crude one. If this sounds abhorrent, try investigating the issue using ProcessExplorer (mentioned later in this post).

F12

Okay so you'll have this one already, but non-web-devs often forget about it. Press F12 when you are using your web browser and you'll find a whole range of tools here for the web developer. From performance monitoring to browser emulation, JavaScript debugging and CSS editing. There are so many useful items in here that people often neglect.

ORCA

https://msdn.microsoft.com/en-us/library/aa370557(v=vs.85).aspx
Provides a GUI for Windows Installer packages. Not only does this tool highlight validation issues, it also allows you to edit and save the new package.

WILogUtl

https://msdn.microsoft.com/en-us/library/aa372811(v=vs.85).aspx
This tool will parse your Windows Installer log files to help you identify issues with the installation and suggest solutions. It beats the hell out of searching for 'Return Value 3'

Kaxaml

www.kaxaml.com
A lightweight XAML WYSIWYG editor. Keep things simple.

7Zip

www.7-zip.org
Compresses to 7z, TAR, ZIP and more, Extracts from 7z, TAR, ZIPm RAR and many more. If you've never tried it, run a comparison between the compression ratio of 7z compared to ZIP, you'll be pleasantly surprised,

ReSharper

www.jetbrains.com/resharper
This is a great productivity tool. It'll be interesting to see how quickly the new .net compiler helps the Visual Studio community close the gap, but at the moment you'll want to be using this plugin.

DotNetPeek

www.jetbrains.com/decompiler/download
Decompile dot Net assemblies to C#. Sometimes we all get a little bit nosey.

BareGrep

www.baremetalsoft.com/baregrep
Historically the Microsoft Windows search isn't very good, but this flexible tool will quickly search for files matching your search pattern.

BareTail

www.baremetalsoft.com/baretail
Another from BareMetal Software, this time a log file parser. This tool will show log entries in real time, highlighting different types of entries based on keywords.

ASoft - DotNetVersion

http://www.asoft.be/prod_netver.html
An easy way to find out what versions of .net are being used on a client machine. The beauty of this tool is that the clean interface means that any tom, dick or harry can use it and even download missing versions directly.

KDiff3

kdiff3.sourceforge.net
An easy to use file and folder differencing tool. Run a comparison against up to three directories for differences or missing artefacts. Drill into files to analyse the differences.

ProcessExplorer

https://technet.microsoft.com/en-gb/sysinternals
Find out about a process currently running on your system. Target processes with the cross-hair or search the running processes to find out the ID of your target process, and what resources they are using on you current system. If you didn't like the Unlocker utility, mentioned above, you may prefer this tool as a means for finding what process has a lock on your file.

PowerGUI

en.community.dell.com/techcenter/powergui/m/bits/20439049
Create and manage powershell scripts

And if that list has whet your appetite; checkout Scott Hanselman's list, it's much better than this one :)

All items listed are downloaded and used at your own risk. I have not been involved in the creation or hosting of any of these utilities and cannot make any guarantees over there safety. Please review all terms and conditions on the named applications and licensing before installing.

Thursday 7 May 2015

Sorry about that...

I decided to change employers, which has kept me a little bit busy.
Now that is done, and I'm settled in, I'll continue blogging.

ps. If you're voting today, vote for the good guys.

Monday 6 April 2015

It's a wonderful life

Reflection is important in many aspects of life. When we complete a project, when a new year begins and when we unwind with friends and colleagues. We reflect on events as a means to make sense of them, learn from them and move on from them.

As software engineers we are conscious of reflection as part of the Application Lifecycle Management process, and I thought that I would take this opportunity to reflect on my life as a software engineer.

The advice that I received from my parents before I went to college and university was: "You'll be working for a long time, make sure that you do something that you enjoy". This advice stayed with me. There where times when it seemed like it was bad advice, but I can look back over the last 15 years and say that I enjoy what I do as much as ever.

I'm a practical and creative person, and I have at my finger tips the means to create anything that I could want, Applications, Games, Data Visualization. I share these interests with friends and colleagues that make me want to be more than I am. And although a lot of my friends don't actually understand what I do and don't see what could be enjoyable in it, that's okay, 'not everyone's like you'*.

I chose to do what I enjoy, and I enjoy what I do. And on reflection, It's a wonderful life.

At DDDNorth with some likeminded people.

* 'In the mood for love' - http://www.imdb.com/title/tt0118694/

Sunday 29 March 2015

From Meetings to Success

It can be all too easy for a projects user stories to be copied and pasted directly from the annotated minutes of a meeting where 'stuff' was discussed and declared. These stories tend towards suggested implementation. When this happens, the odds are that the structure (and requirements) will not be clear.
 

Pragmatic analysis and Clarity are key to Success.

 
When pulling stories from meeting minutes you'll end up with the flattening out of data producing spaghetti requirements, leading to spaghetti code. Based on the muddy stories, a hotch potch of testing will be produced, proving a risk to the  successful delivery of items buried (or missed) in the documentation.
 

Lets make the change.

 
Consider the following structre when writing user stories:
 
A User Story should be designed as follows:
As a …
I want …
So that …
This describes the need of the change.
 
These stories can then have Acceptance Tests in the form of:
Given …
When …
Then …
This describes the behaviour of the change.
 
Once we understand the behavioural change required, then we can work out what tasks are required to make the behavioural change. Once all of these tasks are completed then the Acceptance Tests should pass, the story will be resolved and importantly, all of that stuff that was declared in the meeting can be put to bed.
 

A successful meeting leading to a successful implementation.

Wednesday 18 March 2015

It’s not you, it’s me

Motivational quotes; we hate them

poster of a road going into the distance: "determination". 
A picture cat in a tree: "go get them".

We've seen them at training venues and on office walls. But not only can motivational messages fail to make a positive impact, they can actually make a negative one.

Maybe we see the long road “determination” motif and think; "well, that doesn't make sense... The straight road is designed as the shortest distance between two places, what's that got to do with 'determination'? Are they saying that I'm determined if I drive on what looks like a nice open road?...etc"

And regarding that cat in the tree; "I’m a dog person, so I don’t even want to see any meaning here. Stop showing me pictures of cats." *
 
A fun example of a motivational message backfiring is this post on The Poke.
 
We hate motivational quotes because they are not aimed at us, they are for someone to whom this phrase or representation resonates. For us however the message and representation may not resonate, it may seem ridiculous, we may hate it.

 

Motivational quotes; we love them

A lyric from your favourite song.
A line from a memorable film.
A quote from a book.

The motivational quotes that mean something to us aren't an outside voice telling us to be 'tenacious', 'confident' or 'bold', It's our voice. Someone else may have found the words or image for what we need, but this is our message, it means something to us and therefore can motivate us.
 


Epilogue

It would be remiss of me to create a post regarding quotes and not logging a few that I like. I'm aware that you may not like them, but that's okay, as someone once said "Not everyone is like you".   

The World is Yours Ours”
La Haine 

When life itself seems lunatic, who knows where madness lies? Perhaps to be too practical is madness. To surrender dreams - this may be madness. To seek treasure where there is only trash. Too much sanity may be madness - and maddest of all: to see life as it is, and not as it should be!”
Man of La Mancha

Not everyone is like you.”
In the mood for love
 

 
 
* Although I'm a dog person I actually have cats. 

Thursday 5 March 2015

Getting Started on Twitter

I love the casualness of twitter, where profundity and trivia have an equal footing. If you need a quick-start on your follow list, consider the following accounts.

@infosthetics Data visualizations that inform and/or intrigue.
  Edward Tufte has declared chartjunk as an enemy of clear, informative graphics of data. Chartjunk is everywhere, particularly in mainstream
@mtaulty I do some developer stuff for Microsoft in the UK. [[ pretentious job title goes here ]]. UK
@jonskeet Currently a software engineer at Google, London. Usually a Microsoft MVP
@thebeebs Microsoft technical evangelist. Currently working on mobile apps.
@YouAreCarrying A Twitter bot by Andrew Vestal that provides a fictional adventure game inventory. Users need only tweet the bot with “i”. (users have produced some lovely pictures in responce to 'what they are carrying')
Pretty Pictures
@shanselman Scott Hanselman is a programmer, teacher, speaker, technologist, podcaster, writer, diversity advocate and more.
@Jodie_Paterson Freelance illustrator and stationer. Owner & designer at Paper Pipit. Head of 'Charlie work'
@msdevUK Microsoft Developer UK
@RealBobMortimer I've just fell off my Honda .. My legs are in that tree..and yes I was wearing those shoes again.. The ones from Italy.
@codinghorror NET programming from a human factors perspective: thoughts on software usability and effective team development.
@Loki_Coki Design and illustration.
@boagworld Author of Digital Adaptation. Co-Founder of @headscapeltd. Host of the Boagworld Podcast. Over 20 years of helping organisations manage digital change.
@andybudd Andy started designing websites in 1998. He founded Clearleft with Richard Rutter and Jeremy Keith in 2005
@scottgu Scott Guthrie is an Executive Vice President of the Cloud and Enterprise group in Microsoft. He is best known for his work on ASP.NET
@IrisClasson .NET developer & Microsoft C# MVP
@kibooki Those are no actual toys, but some gorgeous and creative 3D dedicated to the allmighty glory of Edgar Wright, Simon Pegg and Nick Frost.
A community of passionate individuals whose purpose is to revolutionize software design, creation and delivery, while advocating for positive social change.
@DDDNorth Twitter account for THE premium developer event in the North of England.
@codefoster Developer Evangelist at Microsoft. Windows 8, HTML, JavaScript coder. Hiker. Sailor. Husband. Dad. Not in that order.
@ch9 Channel 9 keeps you up to date with videos from people behind the scenes building products at Microsoft.

Monday 23 February 2015

Managing Objectives

One of the things that I decided to improve this year is how I manage my personal development objectives. I outlined the following requirements.
  • I need to manage a backlog objectives.
  • I want these objectives to be broken down into tasks of a granularity that can be completed in my spare time.
  • I want a task board so that I can see the tasks remaining broken into monthly sprints.
  • I'll need to access to this data from any location.
  • I'll want to collaborate with zangl ltd for some gaming and mobile development tasks.
 
For me, the next step was straight forward. I logged on to Visual Studio Online and created a new Team Foundation Service Project called 'Development Objectives'.
 
The interface is intuitive, the task management is straightforward, the backlog can be easily groomed and it even has a burndown chart to keep me on track.
 
My Personal Task Board

 
So far it is proving the perfect solution, get started.

Wednesday 18 February 2015

Where shall I begin...

A colleague recently asked me how I start my personal coding projects. He'd love to do more projects out of work but doesn't know where to start. This post is a look back to how I first learnt how to overcome writer's block.

Where It Began

A little known fact about me is that I have a degree in fine art, specializing in oil painting.
In the first year of my degree all boundaries of what was valid were lifted. I was allowed to create anything. To do anything. What ever I wanted to do, to produce ART. But what was noble enough to be my subject? something profound? what? Before I gave any ideas a chance to formalise, I would find reasons why it wouldn't work. The product of this was that I spent the first 12 months studying the white cube, which was not only an analogy for the gallery space but also a blank canvas. 

One of my Paintings (post white cube era)

The Sketchbook 

In the end, what helped me to commit my ideas to canvas, and not to fear about them being exposed, was my sketchbook. A sketchbook is private, portable and disposable. An opportunity to draw anything, document and develop any idea quickly, without fear of critique, it enables a freedom of expression.

At the end of the week you can review the concepts, ideas and sketches in your sketchbook. If they still seem like they have merit, expand upon them, produce rivalling solutions and use heuristic techniques to find how far an idea can go.

In effect, I have just described how I was introduced to low-fidelity prototyping.

The Modern Sketchbook

We are very lucky these days in that we don't even need to carry a sketchbook and pens with us anymore. My smart phone allows me to take photos, sketch ideas and even draft this blog post.

Monday 16 February 2015

You are Responsible for Your Development

Recognise your Opportunities

When I realised that we had an issue at work regarding application user interfaces, I saw an opportunity. The company was keen on me learning about UX and how we could adapt to create solutions geared towards the customer, they didn't, however, want any time devoted to this during working hours.

This is not necessarily a stalemate; I want the skills, and the company wants to have these skills in-house, but they are not in a position to help me acquire these skills. The answer, go get the skills!! These new skills will open up opportunities for you to work on a wider range of projects, and as a bonus you'll get that lovely post learning bliss once your course or home project has been completed.

It Always Works

There are two scenarios that can come from this, and believe it or not, they are both positive.
  1. You help your company excel through your excellence - Everyone's happy.
  2. The company decide that it isn't interested in the new skills that you have acquired - It's possible that either you missread the signs, and they don't actually want those skills in house, or that the company is a bit self centred.
If it's the later, it doesn't matter, you haven't wasted your time. You have a new skill. By understanding the relationship that you have with your company, you can focus on what is right for you to be the best that you can be. Ultimately it is up to you to make this happen.

Our day-to-day job will throw up these opportunities all the time, all we need to do is pick one, gauge interest from our employer (they may wish to invest time or resource), learn something and produce something. I would always suggest that reading a book or attending a course is fine, but you should produce something to prove to your self that you have made tangible progress.

Monday 2 February 2015

Make Tasks Visible

As discussed previously, we have used VisualWIP on projects to enable the whole team to see a task board showing the current state of our features for delivery. This application pulls from our data in TFS and the layout can be configured via an XML file (supported by a visual design mode within the application).

What if...

This application has worked well for us, but what if there is a reason that stakeholders can't run this 3rd Party Software. Perhaps it's against IT policy, maybe it feels too foreign for some of the team to comfortably use. Well, as long as we have a browser we can access this data without the need for Visual WIP or even Visual Studio.

By entering the TFS Url (inc. port) into our browser, we can run reports on the data as easily as if we were in the Visual Studio's Team Explorer. We can view and edit tasks (dependent on our TFS project permissions) and view any reports that we have created against the repository data.



Later versions of TFS enable you to access the contained data with relative ease via the web portal. Allowing an immediately accessible dashboard from which you can view the task summary, burn-down data and user defined queries. We also directly manage the backlog and sprint tickets thanks to the inclusion of an interactive task board.

I manage my own personal development tasks using the Team Foundation Services exposed through the visualstudio.com portal.


 

Keep it Visible

There should never be a reason for the teams tasks to be obscured. The whole team should know (and be able to see the context of) what they are doing. Maintaining the transparency of tasks that produce feature completion enables the team to work efficiently and allows the outstanding effort (scale of work involved) to be measured and managed effectively.

Wednesday 28 January 2015

Versioning for a reason

Please do not push an un-versioned release to your test environment only to recompile and push a versioned dll to your Production environment. If the version numbers do not match then you should not presume that the application code will behave in the same way. If your QA and Testers have signed off version 0.0.0.0 of the application (which could be absolutely anything) How can your product manager confidently allow version 1.0.0.0 or 1.3.11.2 to be released.

So we know that version numbers important, but for whom?

Software version numbers are there for the management of the software through all of the processes that follow the code being written. We need to know what code is being tested, we need to know what code the user has signed off, and we need to know what features are being delivered to the end user. The only person that doesn't need to know about the version number is the user themselves.

How do we keep our version number unique?

The version number of a .Net assembly is made up of 4 sets of numbers (Primary, Secondary, Tertiary and Quaternary). We *could* just use four sets of random numbers, alternatively we could make this version number into something more meaningful.


We could use the Primary number to represent the primary functionality offered by the product. When there is a significant upgrade to the functionality, perhaps the number could increment based in the completion of an epic story. Given this, the product manager is able to understand what his product is offering based on this number.

We could use the Secondary number to represent incremental updates to the existing functionality. These would be enhancements to existing functions of the system, perhaps indicating project milestones or story completion.

We could use the Tertiary and Quaternary numbers as an incrementing 'unique' aspect to the full version number. I have previously used these to signify the time from the start of a Product's development. Currently I am using the Tertiary number to represent the days since development began and the Quaternary number to state the build number for that given day.


What have we got?

We've now got a version number that is not just unique, and therefore traceable through all stages of our development and deployment processes. But one that also contains meaning for everyone involved in the process of delivering the software to the end user.

Wednesday 21 January 2015

Festival of the Spoken Nerd


Last year I went to the theatre to see Festival of the Spoken Nerd. It was a really fun show, full of tweeting, geekery, Science, Music and Jokes. If you get the chance, try and watch one of their shows, they will be trying out new material in February and March.

Spoiler Alert
Last years 'Full Frontal Nerdity' tour described The Mould Effect by Steve Mould



There was also smoke ring William Tell moments and a nice talk about RGB.
Inspired by this, here is an RGB excel image of my project team. 
My TeamZoom in for the RGB values,  and out for the low resolution image to appear.

Sunday 18 January 2015

The Utility Belt

Every month I give a presentation to my company's development team. For Decembers presentation, I asked for the group to have a think about the tools and utilities that make their (development) life easier. I gave each developer up to 5 minutes (per tool) to present to the team, focussing on "what is it, where is it, why they have found it useful".

This session was aimed to help increase awareness of some of their great finds and to encourage their adoption. I presented two tools (orca and wilogutl) from the Windows Installer SDK and a one page stocking filler. The presentation went really well, achieved its objectives and received some great feedback. A nice by-product of this session was that it helps build confidence across the entire group.

Extract From Presentation

As long as your company policy and the product licence allows it. Please share your love of the utilities that make your life easier with your co-workers. If they are good for us, they may be good for them too and ultimately make your department more productive.

Remember, Batman doesn't need super powers, but he does rely on some great tools in his utility belt.

Wednesday 14 January 2015

Find of the Day

The other day I found this ALM book underneath a colleagues monitor.

Whilst it's a great way to raise the height of a monitor screen, it makes for an even better read. If you are keen to find out more information on ALM for VS 2010 I would highly recommend this book.

Recently I attended one of Microsoft's one day ALM courses. It was encouraging to engage with other people at different stages of Maturity on the Continuous Delivery Matrix (more on this in a later post).

You can find these courses on the microsoft events site, book a day off work and attend one.

http://events.msdn.microsoft.com/

If you're quick then you might be able attend the event on the 28th January 2015 "ALM With Visual Studio & TFS 2013" at London Whitechapel.

Monday 12 January 2015

Why have a blog

I decided to have a little think about this when I saw the latest stats for my blog posts. I was a little concerned I was getting relatively few views on my content.

These stats made me think about why I was blogging, and I realised that for me the blog is a form of expression, it's a place where I can record some observations, share information with others and project an identity.

Observations

You should always reflect on your recently completed work. By understanding the pain points of recent projects, we have an opportunity to build on our successes and learn from any failings. The blog is a great way to document some of what you have observed through this process.

Sharing

You can't force people to be interested in the things that interest you. But the chances are, if they're reading your posts, then they are part of the same sphere of people and may have overlapping interests. So when you find a stash of online books or come across an interesting article, don't keep it to yourself, broadcast it.

Projection

In a global company, we can be seen more by our persona than our real self. Therefore, regardless of how great you may think you are in real life, the perception of you as an individual may be "one of the drones in sector 7G". Your blog allows people to understand who you are, and what interests you.

Wednesday 7 January 2015

Meetings: Where Work Goes to Die

For no reason at all, I was reminded of one of Jeff Atwood's blog posts the other day Meetings: Where Work Goes to Die


Basically it suggests that, although communication is what we need to succeed, we need to make sure that time spent in meetings is time well spent.

Here are a few of his methods to keep a meeting succinct.

  • No meeting should ever be more than an hour, under penalty of death.
  • Every meeting should have a clearly defined mission statement. (Agenda/Goals)
  • Do your homework before the meeting.
  • Make it optional.
  • Summarize to-dos at the end of the meeting.
If meetings are part of your life, please watch the following video, as recommended by @Toopots 





Sunday 4 January 2015

Implementing a KanBan board

Sometimes you find yourself in a situation where the ideal tool for doing a job is unavailable. If you are working with TFS 2010 in an Agile team, then you may find yourself in this situation; you want for the means to visualize the ALM progress of tasks, but there's no integrated KanBan board. Here are a few solutions you could take:

Post-It notes and Whiteboards

A cheap but viable option, the big downside is that it is not an integrated solution. Either you will have to declare that the post-its themselves represent the definitive 'scope of work' or you will need to create a manual step of updating the tasks in TFS with the progress of tickets on the board.

 

Upgrade to TFS 2012+

From the 2012 release onwards we saw some great new features in TFS's Application Lifecycle Management including the introduction of KanBan visualisation. Users (including the Project Manager) can access the TFS web task viewer, and even access stats and reports about the state of the project, including the points burn down, build success over time, number of bugs and items in the product and the sprint backlog. A big bonus here is that the task board can be directly updated by the user (as easily as moving a physical ticket).


 

VisualWIP

You could introduce a third Party TFS data visualisation tool (or roll your own). We've used VisualWIP [http://visualwip.codeplex.com/] to enable us to configure a report to pull from a set of TFS queries. At the start of our projects we created a set of TFS Work Item Queries to represent each column of data that we want the report to the display. As tickets get created and their state changes the tickets location on the report updates to reflect the current state of tickets in TFS.


We had previously used the Post-It note option, to help people get up to speed with the concepts of sprints and continuous delivery. Once people became engaged with the task boards (it is easier to get initial engagement with something more tactile than a monitor), we looked to migrate the ticket management to TFS. As we did not have the option of upgrading to TFS 2012+ we chose the most integrated solution possible to us. We now display our KanBan on a reporting monitor where our project team works, enabling everyone to be aware of the flow of tasks through the team from sprint backlog to feature completion. We also have a screen for build notifications but that's a whole new blog post.