Skip to main content

MobDevCon is back by popular demand!

Tickets on sale now!

Following on from the huge success of last year’s sold out conference, MobDevCon is back by popular demand!

We’ve combined the successes of last year’s conference with the fantastic reviews and feedback we received to bring you an impressive programme that will take a look at what’s new in the ever changing world of mobile technology.

The programme is centred around the changes in the mobile market, trends innovations and keynote speaker, Mike Spradbery will be discussing everything from wearables to compossable apps and healthcare mobile innovations to hardware capabilities.

He will also be addressing the implications of new technologies on enterprise architecture and explore how organisations can build flexibility into their mobile strategies.

Ruth John from mobile giant O2 will also have the title of keynote speaker at the conference. Ruth will be talking about the browser, its emerging technologies and how much mobile technology has changed the direction of the web. She also addresses the battle of Web vs. Native.

We’ll then get to hear how Paul Lammertsma from Pixplicity, Holland’s leading Android-specific consulting and app-building company, used his knowledge of Java, Android and Linux in Pixplicity to develop high-quality apps for some of the most famous brands around.

Next up Stephen Charman from Proxama will take an insightful look at designing for Android with Android in the technical sense. Karl Krukow from Xamarin then goes on to introduce and demo Calabash,  an open-source technology for automated UI and acceptance testing of Android and iOS native and hybrid apps.

Other marvellous mobile minds include Frank Reding from NeonTribe who looks at how to use PhoneGap to package web apps built with HTML5 and Javascript as native mobile apps. Andrew Ferrier and Donal Spring from IBM address the best practices required to build applications rapidly and successfully with the IBM Worklight Platform, and Pure Creek’s Matteo Manferdini explores the iOS toolbox and must-know technologies for iOS development.

Matt Davey teaches us to ‘design between the lines’ and covers all things app-design on behalf of Nimble Studios. If that’s not all enough there’s an all day workshop with Microsoft Guru Shawn Wildermuth who will walk you through the basics of building HTML/JS-based projects for iOS, Android and other platforms.



The 2014 MobDevCon is a one day conference covering all the latest and greatest goings on in the world of mobile development from some of the brightest mobile minds around. From presentations to workshops this year’s conference will be held on the on the 9th July 2014 at The King’s Centre in Norwich. The King’s Centre is a popular and accessible conference venue right in the heart of the city, with excellent facilities and ample parking close by.

Thanks to the really positive exposure last year’s conference generated we already have some fantastic sponsors. MobDevCon is the perfect opportunity for those who want to get noticed by around 100 mobile developers and industry influencers in and around Norfolk and from further afield.

Even if your company operates outside the mobile development arena, sponsoring the 2014 MobDevCon is a fantastic way to show that your company is a progressive and innovative brand that likes to keep its finger on the pulse with new and emerging technologies. So, if you would like more information on sponsorship opportunities check out the website’s Sponsors page here.

We hope you’re as excited about the 2014 MobDevCon as conference hosts Naked Element, and, if our list of confirmed speakers and the success of last year’s conference is anything to go by. It’s sure to be a fantastic insight and insiders’ perspective into mobile technology.


Buy your tickets now.

Words: Lauren Yaxely

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

Bloodstock 2009

This year was one of the best Bloodstock s ever, which surprised me as the line up didn't look too strong. I haven't come away with a list of bands I want to buy all the albums of, but I did enjoy a lot of the performances. Insomnium[6] sound a lot like Swallow the Sun and Paradise Lost. They put on a very good show. I find a lot of old thrash bands quite boring, but Sodom[5] were quite good. They could have done with a second guitarist and the bass broke in the first song and it seemed to take ages to get it fixed. Saxon[8] gave us some some classic traditional heavy metal. Solid, as expected. The best bit was, following the guitarist standing on a monitor, Biff Bifford ripped off the sign saying "DO NOT STAND" and showed it to the audience. Once their sound was sorted, Arch Enemy[10] stole the show. They turned out not only to be the best band of the day, but of the festival, but then that's what you'd expect from Arch Enemy. Carcass[4] were very disappoin

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