Click here to Skip to main content
15,889,992 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: One code-base for all mobile platforms is a pipe dream Pin
Dominic Burford19-Oct-16 21:26
professionalDominic Burford19-Oct-16 21:26 
GeneralOur apps have gone live Pin
Dominic Burford11-Oct-16 18:54
professionalDominic Burford11-Oct-16 18:54 
GeneralFive truths about software development Part IV Pin
Dominic Burford13-Sep-16 2:44
professionalDominic Burford13-Sep-16 2:44 
GeneralIsolating unit tests using Dependency Injection Pin
Dominic Burford11-Aug-16 22:01
professionalDominic Burford11-Aug-16 22:01 
GeneralCould this function be unit tested without modifying it? Pin
Dominic Burford4-Aug-16 1:41
professionalDominic Burford4-Aug-16 1:41 
GeneralRe: Could this function be unit tested without modifying it? Pin
Dominic Burford5-Aug-16 0:24
professionalDominic Burford5-Aug-16 0:24 
GeneralTeam Foundation Services 2015 build tools Pin
Dominic Burford12-Jul-16 9:27
professionalDominic Burford12-Jul-16 9:27 
GeneralMy first app using Telerik Platform Pin
Dominic Burford8-Jul-16 2:23
professionalDominic Burford8-Jul-16 2:23 
I've recently been using Telerik Platform for mobile development, so I thought it may be useful to give an overview of my experiences, especially as I've previously used Xamarin for mobile development.

For those that don't know, Telerik Platform is a complete mobile development ecosystem consisting of a suite of Telerik technologies rolled into a single unified platform. There are tools for development, testing as well as backend services such as data services, email / SMS services and business logic services, analytics and user management. All of these are accessed from your Telerik Platform account (depending on your subscription level of course).

The backend services may be implemented in your app using any combination of the folling APIs and SDKs.

- Javascript SDK
- .NET SDK
- iOS SDK
- Android SDK
- RESTful API

As can be seen, all mobile platform development environments are available to the developer.

All the tools you need across the entire lifecycle of your mobile app are all accessed from a single location. Unlike other development platforms, Telerik Platform is more than just a development tool, it contains the full complement of tools to manage the entire lifecycle of your app.

There are two key options to choose from when deciding how to build your app. You can choose either a hybrid app or a native app. I won't go into the pros and cons of the different approaches as this is beyond the scope of this article. Suffice to say that if you opt for a hybrid app you are using Apache Cordova. If you opt for a native app you are using Telerik NativeScript. In my case I was building a hybrid app. The reasons were as follows:

- We wanted to target all mobile platforms (at the time of writing NativeScript does not support Windows Phone)
- The app was fairly straight-forward with limited access the device's capabilities
- The learning curve was less steep due to the fact that a hybrid app employs web skills such as HTML, CSS and Javascript, all of which are familiar to me. The areas where I was less familiar was with using Telerik's Kendo UI components and the underlying MVVM architecture. Thankfully there are numerous examples and documentation, and being a competent web developer I picked these up fairly quickly.

The backend services are really a powerful addition to the development experience. The option of using these from the cloud reduces the reliance on local infrastructure, such as data and email servers. You can build your entire app from their cloud portal. There is a Visual Studio plugin you can download, which is useful, but I predominantly used their cloud portal.

One of the best things I enjoyed about Telerik Portal is their AppBuilder technology. This allows you to test your app in a simulator with varying combinations of platform (Apple, Android, Windows) and screen resolutions. And best of all, you can download the app to your own device using the Telerik development apps. Building your app generates a QR code. This QR code is then scanned using your device using the Telerik development app, which then copies the app to the device. No pesky USB cables or installing/configuring emulators are required. This is a genius piece of technology. Your code changes are reflected immediately in the simulator, and can be tested on the physical device by simply swiping the Telerik development app. From coding to testing on a physical device has never been simpler.

All in all I have been very impressed with Telerik Platform, and would certainly recommend that it be included on your list of candidate development platforms if looking at going into mobile.
"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


modified 8-Jul-16 15:42pm.

GeneralHaving a Mobile Strategy Pin
Dominic Burford5-Jul-16 1:23
professionalDominic Burford5-Jul-16 1:23 
GeneralExciting times ahead Pin
Dominic Burford31-May-16 6:00
professionalDominic Burford31-May-16 6:00 
GeneralRe: Exciting times ahead Pin
Sander Rossel31-May-16 9:43
professionalSander Rossel31-May-16 9:43 
GeneralRe: Exciting times ahead Pin
Dominic Burford31-May-16 20:47
professionalDominic Burford31-May-16 20:47 
GeneralBootcamps vs. College Pin
Dominic Burford23-May-16 2:41
professionalDominic Burford23-May-16 2:41 
GeneralWhen to use best practices Pin
Dominic Burford8-Apr-16 5:53
professionalDominic Burford8-Apr-16 5:53 
GeneralWhat's wrong with just being a solid programmer? Pin
Dominic Burford5-Apr-16 1:59
professionalDominic Burford5-Apr-16 1:59 
GeneralRe: What's wrong with just being a solid programmer? Pin
Slacker0075-Apr-16 2:19
professionalSlacker0075-Apr-16 2:19 
GeneralRe: What's wrong with just being a solid programmer? Pin
Dominic Burford5-Apr-16 2:28
professionalDominic Burford5-Apr-16 2:28 
GeneralWhen Interviews Fail Pin
Dominic Burford29-Mar-16 20:44
professionalDominic Burford29-Mar-16 20:44 
GeneralRe: When Interviews Fail Pin
Slacker00730-Mar-16 2:26
professionalSlacker00730-Mar-16 2:26 
GeneralStackoverflow Developer Survey Results 2016 Pin
Dominic Burford17-Mar-16 22:01
professionalDominic Burford17-Mar-16 22:01 
GeneralRe: Stackoverflow Developer Survey Results 2016 Pin
Slacker00718-Mar-16 0:14
professionalSlacker00718-Mar-16 0:14 
GeneralRe: Stackoverflow Developer Survey Results 2016 Pin
Dominic Burford18-Mar-16 6:15
professionalDominic Burford18-Mar-16 6:15 
GeneralGetting creative and staying in the zone Pin
Dominic Burford16-Mar-16 1:56
professionalDominic Burford16-Mar-16 1:56 
GeneralLet's stop talking about quality Pin
Dominic Burford25-Feb-16 21:02
professionalDominic Burford25-Feb-16 21:02 
GeneralWhat makes a good programming language? Pin
Dominic Burford3-Feb-16 1:53
professionalDominic Burford3-Feb-16 1:53 

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.