Skip to main content

ACCU Cambridge: 'So you think you can lead a team?' and From Zero to Deployed - Double Header (December 2025)

When: Wednesday 3rd December 2025 @ 6pm

Where:  The Bradfield Centre, 184 Cambridge Science Park Milton Road, CB4 0GA

RSVP: https://www.meetup.com/accu-cambridge/events/311991390/

ACCU Cambridge are making the most of me in December and letting me do a double header - two of my presentations in one night! I'll also have some copies of my book, 'So you think you can lead a team?' to sign and sell. And if I'm not enough, there's free pizza and beer too!

 6.30pm - 'So you think you can lead a team?'

 Software engineering is hard, and leading a team as an engineer can be even harder. Many of us feel more comfortable writing code than working with people, and we often believe our value lies solely in our technical output. But when you step into team leading, the balance shifts: there are more people than code, and your value changes and, often, grows.

Over the last 25 years I was dropped into team leading several times without warning, but three and a half years ago I chose to do it deliberately. It still took more than a year before I realised I was only just beginning to understand what leading a software team really involves.

This revised and updated version of my talk - now expanded to better reflect the ideas in my book So You Think You Can Lead a Team? - shares the highs, lows, surprises, and lessons learned along the way. I can’t promise a magic formula (I’m still learning every day), but I hope to help you avoid some of the mistakes I made and find your own path to becoming a better team lead.


7.45pm - From Zero to Deployed

Building and Shipping an AWS Lambda with TypeScript, Terraform & GitHub Actions

Ever wanted to build a serverless function, but felt there was too much boilerplate to write before it gets interesting? In this talk, we’ll walk through creating an AWS Lambda from scratch, using TypeScript, and show just how clean, fast, and repeatable deployment can be when using Terraform for infrastructure and GitHub Actions for deployment.

This practical demonstration will cover:

  • Writing and packaging a simple TypeScript Lambda
  • Defining and provisioning AWS infrastructure with Terraform
  • Automating deployment with GitHub Actions
  • Things I’ve learnt using Lambdas

And all in the space of an hour.

Whether you’re new to AWS or just looking to try serverless, this talk will leave you knowing how to ship robust, serverless functions quickly and reliably, with everything under version control.  

About me

Husband, father, software engineer, metaller, I have been writing software for over 40 years and professionally for more than 25. In that time I have worked for, and in, all sorts of companies from two man startups to world famous investment banks and insurance companies. I have built and run three limited companies, none of which made me a millionaire and two of which threatened my sanity on more than one occasion.

I was a founding member of both SyncNorwich and Norfolk Developers, two of the most successful tech and startup community groups in the East of England. I created and chaired the hugely successful Norfolk Developers Conference (nor(DEV):con) for seven years bringing in speakers and delegates in the sphere of software engineering from around the globe.

I am currently a Software Engineering Team Lead at Bourne Leisure, the owners of Haven holiday parks. I loathe the word Entrepreneur, not least because I struggle to spell it and it reminds me of Del Boy from the 80s sitcom Only Fools and Horses. I see Entrepreneurship as a side effect of the creative process of problem solving, rather than a career path in its own right.

Despite having dealt with the world of business from directors of the board down, I have kept both feet firmly on the ground, even when my head has been in the clouds, with healthy doses of Heavy Metal, Science Fiction and Formula One and long hair until it started falling out in 2013.

Now I can add author to the mix, having written my first book, So You Think You Can Lead a Team?, based on 25 years of lessons, mistakes, and unexpected leadership journeys.

Oh, and I love good tea too!


 

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...

Remember to Delegate: The Triangle of Trust

So you think you can lead a team? I’ve been talking and writing a lot about leading a software engineering team in 2025. I started thinking about it more deeply the year before when I decided to give a colleague, who was moving into team leading, some advice: 'Doing the work' isn't the only way to add value Remember to delegate Pick your battles Talk to your team every day Out of this came a talk, “So you think you can lead a team?” which I gave at work, at meetups and at conferences in various different formats during the first quarter of 2025. Here I am looking at Remember to Delegate and an idea which came out of discussion around the talk, The Triangle of Trust, in more detail. Delegate Delegation is a crucial skill for any team lead, yet it is often one of the most challenging aspects of leadership to master. Many leaders, particularly those who have risen through the ranks as individual contributors, struggle to let go of tasks, fearing a loss of control or a dip in ...

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...