October 30, 2008 | In Development | No Comments
This is a fun little promotional toy from CW Jobs. You can create your own ’skills cloud’ by emphasising different keywords.
http://www.myskillscloud.co.uk
Unfortunately there are no more t-shirts left :(
Here’s my cloud:

October 21, 2008 | In Development | No Comments
This is a good series of posts from mattgrommes’ blog about his experiences with his first Scrum project. I think the articles have some interesting lessons in them.
http://agilesoftwaredevelopment.com/blog/mattgrommes/matt-grommes-my-first-agile-project-part-1
October 15, 2008 | In Development | No Comments
Here’s a code snippet I was searching for the other day. It’s a straight forward header modification for a web page which I used to download a CSV file directly into the file type handler setup on the local computer for Microsoft Excel files. The user is prompted with the usual save/open dialog.
this.Response.Clear();
this.Response.ClearHeaders();
this.Response.ContentType = "application/vnd.ms-excel";
this.Response.AddHeader("Content-Disposition", "attachment; filename=<insert file name here>; size=<insert file size in bytes here>“);
this.Response.Write(<file>);
this.Response.End();