Skip to main content

SyncNorwich Really Starting To Pay Off


When the SyncNorwich co-founders and I set up the group in the summer, we had no idea of the amazing response we’d get: over 400 members and a series of fantastic packed events before we even made it to Christmas. But what’s even more satisfying for us that we’re now starting to hear about the real, tangible benefits that the group is having in the local tech community.

We know several people have already found new jobs because of contacts made between companies and recruiters at SyncNorwich events (more on that in a future blog post) and local tech start-ups are also reporting great progress towards success thanks to the feedback and advice they’ve received from fellow members.

Take the young founders of Incredibli, for example. Lauren Hine and Andy Parker launched the first version of their new online group-funding service in the autumn, just months after graduating from UEA’s Norwich Business School. They’d looked at the graduate jobs market with a growing sense of doom and decided that in the current economic climate they’d be better off going it alone with their idea for a tech start-up. But with little experience beyond their business degrees and no technical background at all, the pair had an uphill struggle.

The SyncNorwich November event was just days after the launch of their alpha site and when they stood up to present it to a packed house at the Blurtit offices, it was the first time they’d shown the fledgling service to a technical audience. Lauren and Andy had built the site themselves after a little self-taught coding practice and admit they were pretty daunted by the prospect of showing their handywork to such an expert audience.

The concept of Incredibli is (like most of the best business ideas) simple but brilliant. It’s a group-funding internet service that makes it easy to collect money from the people you know. It builds on the familiar models of www.justgiving.com and www.kickstarter.com to help users organise the finances for anything from a mates weekend away or office outing to a collection for a colleague’s leaving present. By tracking who has paid and how much they’ve contributed, Incredibli takes the hassle out of organising a collection, allowing its users to focus on making great things happen.

After explaining the concept behind the site, Lauren and Andy made a very honest appeal for feedback and technical advice. Lauren was bowled-over by the feedback they received at the event, including lots of tips and heated discussions about the website’s target market. The experienced developers in the room gave plenty of advice about how the fully-functional version of the site could be improved with more thinking about gamification.

But they’d also made a particular plea for help with marketing. Within minutes, they’d been approached by Joseph Spear, a marketing manager from SyncNorwich sponsor Smart421, show was so impressed with their savvy and their passion for the project that he volunteered his own time to help them. The very next morning the three got together at UEA for a brainstorming session: “They were explaining to me some of the ways in which they had already positioned their offering and I was challenging them to refine it. They succeeded in transferring their enthusiasm and their passion to me” says Joseph.

Lauren says Joseph’s advice has been invaluable: “It’s made a significant difference. We were floundering in terms of our marketing strategy and Joseph’s really given us some direction in terms of what we need to be doing and what’s the best way to push this kind of project forward. So he brought forward quite a few ideas that we’re planning to implement in the New Year”.

Joseph has no doubt other would-be entrepreneurs could also benefit: “I think SyncNorwich is a brilliant platform. There’s a lot of technical expertise here, there’s a lot of good business sense here as well. Those two things are often not found in any one person so it’s a team effort and SyncNorwich is all about team efforts”. His advice to other local people who are working on start-ups is pretty simple: “I recommend them to get along here at the earliest opportunity and find out how other people are doing it. Maybe they can learn some shortcuts, learn some lessons and pitfalls that they don’t have to fall into themselves.”

You can find out more about the Incredibli project here. A fully-functioning version of the site is planned for release in early 2013.

Thank you to Beccy Johnson for writing this piece.

Comments

  1. Congrats Paul. Looks like this is turning into something really big

    ReplyDelete

Post a Comment

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 resources