Click here to Skip to main content
15,886,729 members

Dominic Burford - Professional Profile



Summary

Follow on Twitter LinkedIn      Blog RSS
6,554
Author
2,053
Authority
9,852
Debator
8
Editor
100
Enquirer
212
Organiser
2,954
Participant
I am a professional software engineer and technical architect with over twenty years commercial development experience with a strong focus on the design and development of web and mobile applications.

I have experience of architecting scalable, distributed, high volume web applications that are accessible from multiple devices due to their responsive web design, including architecting enterprise service-oriented solutions. I have also developed enterprise mobile applications using Xamarin and Telerik Platform.

I have extensive experience using .NET, ASP.NET, Windows and Web Services, WCF, SQL Server, LINQ and other Microsoft technologies. I am also familiar with HTML, Bootstrap, Javascript (inc. JQuery and Node.js), CSS, XML, JSON, Apache Cordova, KendoUI and many other web and mobile related technologies.

I am enthusiastic about Continuous Integration, Continuous Delivery and Application Life-cycle Management having configured such environments using CruiseControl.NET, TeamCity and Team Foundation Services. I enjoy working in Agile and Test Driven Development (TDD) environments.

Outside of work I have two beautiful daughters. I am also an avid cyclist who enjoys reading, listening to music and travelling.

 

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralRe: Bankrupt software development at Volkswagen Pin
Rage25-Sep-15 4:34
professionalRage25-Sep-15 4:34 
GeneralRe: Bankrupt software development at Volkswagen Pin
Dominic Burford25-Sep-15 5:46
professionalDominic Burford25-Sep-15 5:46 
GeneralNativeScript for .NET Developers Pin
Dominic Burford17-Sep-15 2:50
professionalDominic Burford17-Sep-15 2:50 
GeneralFunctional Programming in Javascript Pin
Dominic Burford15-Sep-15 21:06
professionalDominic Burford15-Sep-15 21:06 
GeneralThe future Software Configuration Management Pin
Dominic Burford10-Sep-15 2:39
professionalDominic Burford10-Sep-15 2:39 
I have long been involved in Software Configuration Management (SCM). Since 2000 I have been involved in SCM at various companies I have worked for. I find this an interesting and challenging part of the software development process. It doesn't matter how clever, impressive or jaw droppingly awesome the code we write might be, if it isn't versioned, built and deployed correctly then all that hard work is for nothing.

In software engineering, SCM is concerned with tracking and controlling changes to the software. As such it is concerned with the following goals:
- Configuration control - impementing a controlled change process
- Version control - managing changes to the source code and programs comprising the application(s)
- Build management - managing the process and tools for building the software

When I initially became involved in SCM the tools I used were quite rudimentary. They consisted of command-line tools and scripts that connected to version-control-systems (VCS) such as Source-Safe to fetch the code, build the application and then deploy this to a file share on the network. They were triggered manually (usually by a member of the testing team). Whilst this all may sound very basic (and it was all very basic) the underpinning fundamentals of today's Continuous Integration (CI) and Continuous Delivery (CD) platforms are not much different. The key differences I have seen are the levels of automation, flexibility and integration in SCM tooling nowadays. It is now possible to do far more with less effort in less time.

My first steps into CI and CD came in the form of Cruisecontrol.NET in conjunction with Nant build scripts using Subversion as the VCS. This brought whole new levels of sophistication to SCM. Now whenever a developer checked in their code to the VCS, it would automatically trigger a build, which in turn which in turn could be deployed to a staging server. The build process could run unit tests against the code to ensure code coverage and that the latest check-in had not inadvertently broken something. The power and flexibility of build specific scripting tools such as Nant are staggering. There is almost no limit to what it can't do. On the CD side, these can be manually triggered by testers on an ad hoc basis. However, with the rise of Infrastructure-as-a-Service (IaaS) and Platform-as-a-Service (PaaS) cloud environments, it is also entirely possible to deploy your newly built application to the cloud (for example Azure) for testing. You are only required to pay for what you actually use, so you only pay for the testing environment when it is actually in use by the testing team.

SCM is now an integral part of the software development process, and not something that runs alongside external to it. SCM is integral to today's software development process. With the rise of Agile and Agile based methodologies such as SCRUM and LEAN, SCM has seen many developments, particuarly where Continuous Integration and Continuous Delivery are concerned. Agile based methodologies rely on this level of SCM sophistication. With the right tools and infrastructure in place, there is almost nothing your SCM cannot do.

I have setup and configured entire CI and CD environments from scratch. This has included the already mentioned CruiseControl.NET and Nant (using Subversion), and more recently with TeamCity and MSBUILD (using Team Foundation Server). All of these are a far cry from the tools that got me started.

Althought the tooling that surrounds SCM may have changed, bringing whole new levels of sophistication to the software development process, it is reassuring to know that beneath all of this tooling the same core principles still hold true. Version control and build management are fundamentally unchanged in their core outcomes and processes.
"There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult." - C.A.R. Hoare

Home | LinkedIn | Google+ | Twitter

GeneralJavascript Browser Pin
Dominic Burford7-Sep-15 21:07
professionalDominic Burford7-Sep-15 21:07 
GeneralThat's me upgraded to Windows 10 Pin
Dominic Burford31-Aug-15 19:09
professionalDominic Burford31-Aug-15 19:09 
GeneralHow good developers deal with bad code Pin
Dominic Burford12-Aug-15 21:08
professionalDominic Burford12-Aug-15 21:08 
GeneralJavaScript: The Good Parts Pin
Dominic Burford3-Aug-15 19:23
professionalDominic Burford3-Aug-15 19:23 
GeneralThoughts on Resharper Pin
Dominic Burford23-Jul-15 20:52
professionalDominic Burford23-Jul-15 20:52 
GeneralThe 2015 Top Ten Programming Languages Pin
Dominic Burford21-Jul-15 21:06
professionalDominic Burford21-Jul-15 21:06 
GeneralMicrosoft Launches Visual Studio 2015 Pin
Dominic Burford20-Jul-15 20:51
professionalDominic Burford20-Jul-15 20:51 
GeneralGoogle is fixing the world's problems one at a time Pin
Dominic Burford16-Jul-15 2:17
professionalDominic Burford16-Jul-15 2:17 
GeneralMaking a stand for quality Pin
Dominic Burford12-Jul-15 18:47
professionalDominic Burford12-Jul-15 18:47 
GeneralFive truths about software development Part II Pin
Dominic Burford8-Jul-15 18:22
professionalDominic Burford8-Jul-15 18:22 
GeneralFull stack developers. Do they really exist? Pin
Dominic Burford6-Jul-15 18:48
professionalDominic Burford6-Jul-15 18:48 
GeneralHas C# peaked? Pin
Dominic Burford24-Jun-15 19:19
professionalDominic Burford24-Jun-15 19:19 
GeneralFive truths about software development Pin
Dominic Burford24-Jun-15 1:00
professionalDominic Burford24-Jun-15 1:00 
GeneralA Programmer's Life Pin
Dominic Burford21-Jun-15 18:17
professionalDominic Burford21-Jun-15 18:17 
GeneralWhy software developers get into 'religious wars' Pin
Dominic Burford17-Jun-15 1:17
professionalDominic Burford17-Jun-15 1:17 
GeneralSoftware developers - please stop moaning Pin
Dominic Burford14-Jun-15 18:36
professionalDominic Burford14-Jun-15 18:36 
GeneralRe: Software developers - please stop moaning Pin
Carl_Sharman22-Jun-15 10:08
Carl_Sharman22-Jun-15 10:08 
GeneralRe: Software developers - please stop moaning Pin
Dominic Burford22-Jun-15 20:46
professionalDominic Burford22-Jun-15 20:46 
GeneralCODE Magazine turns 15 years old Pin
Dominic Burford11-Jun-15 19:13
professionalDominic Burford11-Jun-15 19:13 
GeneralÀgile Purism Pin
Dominic Burford11-Jun-15 9:34
professionalDominic Burford11-Jun-15 9:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.