Providing high quality services for both desktop and mobile applications
2012 Commemorative Badge
Posted on Friday, January, 20th, 2012 at 9:37 pm by Gemma McLean | MD and Lead Developer (No comments)We were awarded a special London 2012 badge this week, for our work on the official London 2012 in Coventry mobile app.

The badges are awarded to individuals or organisations that have made a significant contribution to the Games in Coventry so I will be wearing it with pride!
Merry Christmas!
Posted on Friday, December, 23rd, 2011 at 8:43 pm by Gemma McLean | MD and Lead Developer (No comments)Just a quick blog post to wish you a very merry Christmas from everyone here at Gemixin.
We are looking forward to 2012 and lots of new projects and products and wish everyone a fanstatic new year!
Mobile Web App
Posted on Thursday, December, 8th, 2011 at 8:24 pm by Gemma McLean | MD and Lead Developer (No comments)Our new mobile web app is now live and can be found at http://m.gemixin.co.uk
It is the best way to find out about Gemixin on your mobile device, with all the relevant content in a mobile-friendly format.
If you would like a mobile web app for your company, then why not contact us? Prices start from only a few hundred pounds.

Einstein Avatar Wins Third Prize
Posted on Monday, November, 7th, 2011 at 4:54 pm by Gemma McLean | MD and Lead Developer (No comments)Several weeks ago we entered a competition to create a Second Life avatar of ‘Albert Einstein in the 21st Century’.
Today we have been informed that we won third prize!
We only found out about the competition a few days before it closed, so instead of focusing on an intensely accurate replication, we decided to go for a fun approach and play on the ‘how he might look in the present day’ criteria of the competition. We created a custom, original skin (based on photographs of the real Einstein) and added various touches, including ‘night sky’ trousers, badges, an ‘atom’ ring, and a working QR code to complete the avatar.
![]()
![]()
![]()
Coventry 2012 Games Mobile App Update
Posted on Thursday, November, 3rd, 2011 at 1:23 pm by Gemma McLean | MD and Lead Developer (No comments)We have been working hard on the official London 2012 in Coventry mobile app recently (now called Coventry – 2012 Games) and thought it would be worthwhile to blog about some of the technical issues we have overcome so far.
We are using PhoneGap for the project (allowing us to reach 7 platforms) and for 5 of those platforms, we are also using the jQueryMobile framework.
The first issue was implementing a fixed header and footer for the app. We wanted a fixed title bar and navigation panels, with only the middle content being scrollable. After much experimentation, the solution we found was using iScroll4 with some modifications for jQueryMobile (creating a new iScroll object for every page with a unique name).
Another tricky topic included integrating a fully interactive GoogleMap within the app that shows custom markers, the user’s location and routes from A to B. We used the jQuery map plugin for this.
We also wanted to implement a method that checked the state of the user’s Internet connection before attempting to retrieve RSS data and/or map data. We found that checking for the connection state of the device could be misleading as it was unable to differentiate between WiFi connections that were accessible and those that weren’t (i.e. when you are connected to a WiFi network but haven’t logged in…such as BT OpenZone…and therefore can’t access the web). Also we didn’t want to block data requests for 2G connections, as if these are speedy enough, they can be acceptable. The solution was to do a quick call to our events feed RSS using Ajax, and if there was an error, or no response within 3 seconds, then we assume there is no valid connection:
$.ajax({
url: "http://london2012.cswp.org.uk/rssfeed-mobile",
type: "GET",
dataType: "xml",
timeout: 3000,
success: function(response)
{
//do whatever we wanted
},
error: function(x, t, m)
{
navigator.notification.alert(
'Unable to connect to the Internet',
alertDismissed,
'Connection Error',
'OK'
);
}
});
We will also be creating an editable web system to allow the Coventry City Council Olympics team to edit the content of the app dynamically, to make sure all the latest news, fixtures and info is kept up to date.
Overall the app is coming along nicely and the iOS version is nearly completed. The final stage is porting the iOS app to the other 6 platforms, which even though we are using PhoneGap, will still be a fiddly task as each platform has it’s own unique charms! Stay tuned to the portfolio page for screenshots nearer the launch.






