Skip to main content

MS Society Official Charity of NorDevCon 2015

The MS Society proudly sponsoring NorDevCon 2015. 

Multiple Sclerosis (MS) affects more than 100,000 people in the UK. The MS Society is a national registered charity committed to improving treatment and care for people with MS and funds vital research to help beat the disease for good.

We spoke to Anita O’Hara Corporate Partnerships Manager and passionate campaigner for  people affected by MS about what attracted the charity to NorDevCon 2015. Anita explains “this conference presents a fantastic opportunity for us to raise awareness of MS and share with the conference the vital work that MS Society does and why it’s so important. The conference attracts people from all over the county and further afield so it’s a great way to generate interest about getting involved with the MS Society to a large group of people.”

The conference is ripe with small to medium sized tech companies, both established and up-and-coming and as Anita points out the technology industry “is an area that is growing rapidly so we’d look to get involved with this industry in particular.”

As well as providing a fantastic fundraising opportunity Anita also reveals that they hope to gain and exchange knowledge from the 2015 conference. “NorDevCon will give us an insight into what’s happening in the tech worlds and the issues they’re facing, in particular looking at what Corporate Social Responsibility (CSR) policies they have in place as there may be ways that we can help them develop them.”

“We’ve got branches of the MS Society local to Norwich so there may be an opportunity to get in directly  on the ground and link up our volunteers with local companies who have issues in-house” adds Anita.

As a disease that affects the nervous system, MS brings a unique range of disabilities and can have a different effect on different people. Anita explains how “we’re uniquely placed to help employers with information on accessibility and raise awareness of people affected by MS in the workplace. Research shows that 70-80% of people with MS will be unemployed within 10 years so we can educate employers and help them to understand and tackle the issue. We can help people stay in work longer so that they’re contributing to the economy longer and everyone benefits.”

From speaking with Anita not only is her passion for helping  people with MS clear but so is her appreciation of being part of NorDevCon 2015. “We’re a smaller charity and less well known than some of the bigger names out there so any opportunity to spread the word about the MS Society is brilliant and we’re just so grateful to Paul and the NorDevCon team for giving us this opportunity.”

The NorDevCon team approached the MS society after considering a list of worth-while causes, but with MS close to the heart of members of the NorDevCon team, this is a fantastic opportunity for both parties to do well by doing good.

You can buy your tickets for NorDevCon and see the full programme here.

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