Skip to main content

Uncle Bob Comes to Norwich

Ever since I started Agile East Anglia (one of the groups which merged to form SyncNorwich) I’ve had the ambition of bringing great speakers to Norwich. It started with Rachel Davies, Allan Kelly and Liz Keogh. Then I was able to fulfil another ambition by having Kevlin Henney open the first tech conference I ran in Norwich. Since then we’ve had a whole host of stars from the software world come to Norwich to speak, including Russel Winder, Jon Jagger and the fantastic Jon Skeet. Getting speakers who are based in the UK to come and speak is relatively easy. Getting international speakers relies mostly on timing.

There are a handful of software engineers who have changed the face of programming for the better for everyone. Robert ‘Uncle Bob’ Martin is one such software engineer. I first saw Uncle Bob speak at an ACCU conference many years ago and he was fantastically entertaining and informative. I was then lucky enough to see Bob again at Skills Matter one evening when I was being interviewed at a bank in London. Again, he was totally sensational and I’ve been working towards getting him to speak in Norwich ever since. After a few false starts, it finally all came together last night, in Norwich.

Bob was training at Skills Matter in London and agreed to come and see us in Norwich at the end of his final day there. So we put our faith in Abellio Greater Anglia to get him to Norwich in time for the later than usual kick off. Our faith was well placed as the 17:30 from London Liverpool street rolled into Norwich on time.

I was manning the door, as I often do, when one of the guys I used to work with at Aviva appeared, grinning from ear-to-ear, and asking me “Is he here? Is he really here?”. I wasn’t the only one who was excited!

Bob has a huge personality and this is enhanced by a commanding voice with a very entertaining tone. He started off by asking us how many biological parents and grandparents and great grandparents, etc. we all had. And this led into the topic on man’s evolution and migration from Africa to the rest of the world, clearly a topic of great interest to uncle Bob.

Then we got into architecture. Bob took us through how to design systems in a way which decouples them from frameworks used to deploy and interact with them. He explained the importance of interface boundaries, how they help make systems easier to write automated tests for and allow many of the architectural decisions to be delayed as long as possible. In one example, the decision on which database to use was deferred for so long that it was never needed.

Bob was as entertaining as he was informative. A strong message delivered with elegance and well timed humour. The hour flew by and after a couple of questions, Bob grabbed a beer, signed some books and spoke to everyone. We know he enjoyed his time with us and we loved having him here. We hope Bob will be back soon.

I’m not yet done with the speakers I want to bring to Norwich. Another speaker we’ve tried to get time and again is Michael Feathers and he’s coming to open NorDevCon in February. Also on my list are Dan North, Mike Cohn, Kent Beck,  Andrei Alexandrescu, Scott Meyers and James Coplien.

Comments

Popular posts from this blog

Write Your Own Load Balancer: A worked Example

I was out walking with a techie friend of mine I’d not seen for a while and he asked me if I’d written anything recently. I hadn’t, other than an article on data sharing a few months before and I realised I was missing it. Well, not the writing itself, but the end result. In the last few weeks, another friend of mine, John Cricket , has been setting weekly code challenges via linkedin and his new website, https://codingchallenges.fyi/ . They were all quite interesting, but one in particular on writing load balancers appealed, so I thought I’d kill two birds with one stone and write up a worked example. You’ll find my worked example below. The challenge itself is italics and voice is that of John Crickets. The Coding Challenge https://codingchallenges.fyi/challenges/challenge-load-balancer/ Write Your Own Load Balancer This challenge is to build your own application layer load balancer. A load balancer sits in front of a group of servers and routes client requests across all of the serv...

Catalina-Ant for Tomcat 7

I recently upgraded from Tomcat 6 to Tomcat 7 and all of my Ant deployment scripts stopped working. I eventually worked out why and made the necessary changes, but there doesn’t seem to be a complete description of how to use Catalina-Ant for Tomcat 7 on the web so I thought I'd write one. To start with, make sure Tomcat manager is configured for use by Catalina-Ant. Make sure that manager-script is included in the roles for one of the users in TOMCAT_HOME/conf/tomcat-users.xml . For example: <tomcat-users> <user name="admin" password="s3cr£t" roles="manager-gui, manager-script "/> </tomcat-users> Catalina-Ant for Tomcat 6 was encapsulated within a single JAR file. Catalina-Ant for Tomcat 7 requires four JAR files. One from TOMCAT_HOME/bin : tomcat-juli.jar and three from TOMCAT_HOME/lib: catalina-ant.jar tomcat-coyote.jar tomcat-util.jar There are at least three ways of making the JARs available to Ant: Copy the JARs into th...

RESTful Behaviour Guide

I’ve used a lot of existing Representational State Transfer (REST) APIs and have created several of my own. I see a lot of inconsistency, not just between REST APIs but often within a single REST API. I think most developers understand, at a high level, what a REST API is for and how it should work, but lack a detailed understanding. I think the first thing they forget to consider is that REST APIs allow you to identify and manipulate resources on the web. Here I want to look briefly at what a REST API is and offer some advice on how to structure one, how it should behave and what should be considered when building it. I know this isn’t emacs vs vi, but it can be quite contentious. So, as  Barbossa from Pirates of the Caribbean said, this “...is more what you’d call ‘guidelines’ than actual rules.” Resources & Identifiers In their book, Rest in Practice - Hypermedia and Systems Architecture (‎ISBN: 978-0596805821), Jim Webber, Savas Parastatidis and Ian Robinson describe resour...