<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>UXM</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/" />
    <link rel="self" type="application/atom+xml" href="http://www.ux-media.co.uk/atom.xml" />
    <id>tag:www.ux-media.co.uk,2008-04-30://5</id>
    <updated>2008-10-27T18:03:28Z</updated>
    
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Personal 4.1</generator>

<entry>
    <title>Say hello to Sam</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/say-hello-to-sam.html" />
    <id>tag:www.ux-media.co.uk,2008://5.138</id>

    <published>2008-10-27T17:35:50Z</published>
    <updated>2008-10-27T18:03:28Z</updated>

    <summary>Samuel Serra joins forces with UX Media this week as our new Sales and Marketing Director.</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<img src="http://www.ux-media.co.uk/images/sam.jpg" alt="sam.jpg" width="167" height="212" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" />Samuel Serra joins forces with UX Media this week as our new Sales and Marketing Director.<div><br /><div>Sam has extensive experience marketing digital products through his time as Director of innovative marketing company, Ukare4, and shares our enthusiasm for providing great value, customer-led products and services.</div><div><br /></div><div>We're expecting Sam to shake things up around here and bring some fresh ideas and perspective to the company, and we've got a feeling it's going to be quite a lot of fun...</div><div><br /></div><div>If you'd like to talk about any of the services we offer and how they can benefit your business, give Sam a call on 023 8022 2254 or email <a href="mailto:sam.serra@ux-media.co.uk">sam.serra@ux-media.co.uk</a>. </div></div>]]>
        
    </content>
</entry>

<entry>
    <title>Bettering Better Bankside</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/bettering-better-bankside.html" />
    <id>tag:www.ux-media.co.uk,2008://5.137</id>

    <published>2008-10-23T10:46:09Z</published>
    <updated>2008-10-23T10:58:39Z</updated>

    <summary>UX Media are pleased to announce our latest collaboration with the Better Bankside BID...</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<img src="http://www.ux-media.co.uk/images/Better.Bankside_logo.gif" alt="Better.Bankside_logo.gif" width="111" height="41" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" />UX Media are pleased to announce our latest collaboration with Southwark-based Business Improvement District (BID), <a href="http://www.betterbankside.co.uk">Better Bankside</a>.<div><br /></div><div>We'll be working with the BB team to look at how the website and the eBrief support the BID's goal to improve the Bankside location for commercial activities, through a series of usability reviews and user involvement exercises.</div><div><br /></div><div>Ultimately we hope to prove the worth of this fantastic and dedicated organisation to the 300 businesses that support it, in the run-up to next year's re-election campaign.</div><div><br /></div><div>Visit <a href="http://www.betterbankside.co.uk">Better Bankside</a> to find out more about what's going on in this vibrant and busy part of London.</div>]]>
        
    </content>
</entry>

<entry>
    <title>Progressive Enhancement - Overlays with asp.net MVC and jQuery</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/progressive-enhancement-overla.html" />
    <id>tag:www.ux-media.co.uk,2008://5.136</id>

    <published>2008-10-19T12:12:56Z</published>
    <updated>2008-10-19T15:24:58Z</updated>

    <summary>Progressive enhancement with asp.net MVC and jQuery - Creating dynamical overlay&apos;s that degrade.</summary>
    <author>
        <name>Matt Goddard</name>
        
    </author>
    
        <category term="blog" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<p>Over the past few months I have been discussing progressive enhancement with some of my clients. For some reason there seem to be real friction about how to safely integrated JavaScript to provide web 2.0 style web design but to ensure that the site provide a similar experience for users with older browsers or with JavaScript disabled.</p>

<p>While this is a bit of a mute point as pretty much consistently over the past <a href="http://www.w3schools.com/browsers/browsers_stats.asp">5 years 90% of browsers have JavaScript enabled</a>, it is essential to be aware of progressive enhancement for accessibility reasons.</p>

<p>So here is a quick example using asp.net MVC and jQuery to provide overlay style popups which degrade to a post back model if JavaScript is disabled.</p>

<h2>View Code HTML</h2>

<pre><code>&lt;!-- Create a link labeled 'show overlay' which uses the 'ShowOverlay' action of the
'home' controller--&gt;
&lt;p&gt;&lt;%= Html.ActionLink("Show overlay", "ShowOverlay", "Home")%&gt;&lt;/p&gt;

&lt;!-- Above the closing body tag include the following code --&gt;

&lt;% if ((bool)ViewData["ShowOverlay"] == true)
   { %&gt;

        &lt;div id="panel"&gt;
            &lt;div id="Div1"&gt;
                &lt;%= Html.ActionLink("Close", "CloseOverlay", "Home")%&gt;
            &lt;/div&gt;
            &lt;div id="content"&gt;
                &lt;h2&gt;Overlay header&lt;/h2&gt;
                &lt;p&gt;Dulce et decorum est pro patria mori&lt;/p&gt;
            &lt;/div&gt;
        &lt;/div&gt;
        &lt;div id="mask"&gt;&lt;/div&gt;
&lt;% }%&gt;
</code></pre>

<h2>View Code - JavaScript</h2>

<pre><code>/*On page load bind the 'ShowOverlay' function to click events of the 'show overlay' 
link and close link. */

var PageReady = function() {

    var ShowOverlay = function(State) {
        if (State.data.show == true) {
            jQuery("body").append('[Panel HTML]);
            jQuery(".close").bind("click", { show: false }, ShowOverlay);
        } else {
            jQuery("#panel").remove();
            jQuery("#mask").remove();
        };
        return false;
    };

    jQuery(".overlay").bind("click", { show: true }, ShowOverlay);
};

jQuery(document).ready(PageReady);
</code></pre>

<p>Essentially this is all the code you need to degrade the user experience. If JavaScript isn&#8217;t available the click events will never be bound to the link and therefor the page. will degrade to use a post back model.</p>

<p>However we need to create some code in our &#8216;home&#8217; controller to show or hide the overlay on post back.</p>

<h2>Controller - Actions</h2>

<pre><code>public class HomeController : Controller
    {
        public ActionResult Index()
        {
            ViewData["ShowOverlay"] = TempData["ShowOverlay"] == null ? 
                false : TempData["ShowOverlay"];
            return View();
        }

        public ActionResult ShowOverlay()
        {
            TempData["ShowOverlay"] = true;
            return RedirectToAction("Index");
        }

        public ActionResult CloseOverlay()
        {
            TempData["ShowOverlay"] = false;
            return RedirectToAction("Index");
        }
    }
}
</code></pre>

<p>There are a couple of thing happening in this example i&#8217;d like to discuss.</p>

<p>When we click &#8216;ShowOverlay&#8217; the action ShowOverlay is invoked but i don&#8217;t want the URL to change to &#8216;home/showoverlay&#8217; to get round the automatic URL rewriting I set TempData[&#8220;ShowOverlay&#8221;] to true and return to the &#8216;index&#8217; action. </p>

<p>Currently the only way i know how to pass data between controller actions is to store the value in TempData, which i can then pass into ViewData in the target controller action to return to the view.</p>

<p>The second in the controller action is a lazy piece of code which sets ViewData[&#8220;ShowOverlay&#8221;] to false if TempData[&#8216;ShowOverlay&#8217;] is null i.e. we never clicked the show or close links.</p>

<p>And that&#8217;s it - all you need to know to degrade a web 2.0 style overlay using progressive enhancement.</p>

<p>Take a <a href="http://dev.ux-media.co.uk/ProgressiveEnhancement/">look at an example page</a>, where you can download the JavaScript and CSS. </p>
]]>
        

    </content>
</entry>

<entry>
    <title>Women in Business </title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/women-in-business.html" />
    <id>tag:www.ux-media.co.uk,2008://5.135</id>

    <published>2008-10-15T11:32:39Z</published>
    <updated>2008-10-15T12:39:11Z</updated>

    <summary>Ali talks to other women in business about growing a company from the ground up...</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<img src="http://www.ux-media.co.uk/images/ali.jpg" alt="ali.jpg" width="152" height="202" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" />UX Media's Client Services Direct, Ali Peppard, is pleased to have been invited to speak at Better Bankside's annual Women in Business event, held at the Menier Gallery, Southwark St, London on Thursday 16 October 2008.<div><br /></div><div>Ali will be talking about growing a business organically and creating a people-friendly environment for team members and clients alike.<br /><div><br /></div><div><div>Three other entrepreneurs will also be sharing the benefit of their experience and knowledge with talks about key issues facing women in business.</div><div><br /></div><div><ul><li><span class="Apple-style-span" style="font-weight: bold; ">Monika Slowikowska</span>, Co-founder &amp; Director of construction company Sunrise Corporation, will speak on 'Discovering who you are and manifesting that in your business'.</li></ul></div><div><ul><li><span class="Apple-style-span" style="font-weight: bold; ">Francine Currie</span>, Chief Operating Officer atBusiness Link London, will speak on 'How to grow and get what you want in a "man's world".</li></ul><ul><li><span class="Apple-style-span" style="font-weight: bold; ">Melanie Eusebe</span>, Managing Consultant of Global Business Services at IBM UK will speak on 'Too 'loud' for business? Making an asset of your personality."</li></ul></div><div>Women in Business is not a women-only event, although it's great to see as many women there as possible taking the opportunity to network and share experiences.</div><div><br /></div><div>To join in with this fantastic, free event, RSVP to <a href="mailto:info@betterbankside.co.uk">info@betterbankside.co.uk</a>.</div><div><br /></div><div>See you there!</div></div></div>]]>
        
    </content>
</entry>

<entry>
    <title>Who? VuYoo!</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/who-vuyoo.html" />
    <id>tag:www.ux-media.co.uk,2008://5.105</id>

    <published>2008-09-30T13:28:30Z</published>
    <updated>2008-09-30T13:50:12Z</updated>

    <summary>Welcome to VuYoo, a brand new search engine marketing company bought to you by the team that run UX Media.</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<div>VuYoo is a brand new search engine marketing company bought to you by the team that run UX Media.</div><div><br /></div><div><img src="http://www.ux-media.co.uk/images/paul.jpg" alt="paul.jpg" width="136" height="162" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></div><div>Director, Paul Stephenson, is looking forward to offering a range of SEO services through VuYoo.</div><div><br /></div><div><span class="Apple-style-span" style="font-style: italic;">"At VuYoo our goal is to make websites more attractive to search engines and users alike, while ensuring that the integrity and quality of the site and brand is not compromised."</span></div><div><span class="Apple-style-span" style="font-style: italic;"><br /></span></div><div>The VuYoo team prides themselves on being able to attract more relevant users to websites and ensuring they have a good experience when they get there, increasing the likelihood that they'll not only return themselves, but also tell other people about it. </div><div><br /></div><div>If you want to raise the profile of your online offering, attract more users and dramatically improve your visitor-to-customer conversion rate, give Paul a call on 023 8022 2254 to discuss:</div><div><br /></div><div><ul><li>Paid search</li><li>Keyword research</li><li>Keyword analysis, performance and implementation</li><li>Ranking performance</li><li>Keyword placement</li><li>Copy optimisation</li><li>Link building</li><li>Social media search optimisation</li><li>Mulitmedia SEO</li></ul></div>]]>
        
    </content>
</entry>

<entry>
    <title>Microsoft finally catch up with us....</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/microsoft-finally-catch-up-wit.html" />
    <id>tag:www.ux-media.co.uk,2008://5.104</id>

    <published>2008-09-29T08:57:35Z</published>
    <updated>2008-09-30T09:11:10Z</updated>

    <summary>Well at long last. Microsoft have finally caught up with UX Media</summary>
    <author>
        <name>Matt Goddard</name>
        
    </author>
    
        <category term="blog" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<p>Something truly remarkable has happened.</p>

<p><a href="http://weblogs.asp.net/scottgu/about.aspx">Scott Gu</a> has announced that <a href="http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx">jQuery is to be shipped with Visual Studio</a>.</p>

<p>"<em>I'm excited today to announce that Microsoft will be shipping jQuery with Visual Studio going forward.  We will distribute the jQuery JavaScript library as-is, and will not be forking or changing the source from the main jQuery branch.  The files will continue to use and ship under the existing jQuery MIT license.</em></p>

<p><em>We will also distribute intellisense-annotated versions that provide great Visual Studio intellisense and help-integration at design-time.</em></p>

<p><em>We will also extend Microsoft product support to jQuery beginning later this year, which will enable developers and enterprises to call and open jQuery support cases 24x7 with Microsoft PSS.</em>"</p>

<p>Well I'm glad to hear that Microsoft have finally caught up with us. At UX Media, we've been using jQuery as our JavaScript framework of choice since version 1.0.4. </p>

<p>For those of you who haven't heard of jQuery, it's a very lightweight cross-browser framework that easily allows you to manipulate the DOM to create JavaScript transitions etc.</p>

<p>For example, if you wanted to add some error text to a div you would write:</p>

<pre><code> var ShowJqueryError = function() {
    $('#ErrorMessage ul')
        .append('&lt;li&gt;Please enter your login name&lt;/li&gt;')
            .parent()
                .show();
 };
</code></pre>

<p>This piece of jQuery will find the UL element which is a child of divErrorMessage and append the li error message to the list.</p>

<p>The quickest way to achieve the same effect with native JavaScript is:</p>

<pre><code>var showError = function() {
    var errorDiv = document.getElementById("ErrorMessage");
    if (errorDiv !== null) {
        var errorList = errorDiv.getElementsByTagName("ul")[0];
        errorList.innerHTML += '&lt;li&gt;Please eneter your login name&lt;/li&gt;'
        errorDiv.setAttribute("style","display:block");
    }        
 }
</code></pre>

<p>The two main reasons we chose to adopt jQuery as our JavaScript framework of choice were:</p>

<ol>
<li>It's cross-browser compatible out of the box, which means we don't have to write bucket loads of code to ensure a consistent browser spread.</li>
<li>The selector style language (ID and class named base) is so close to CSS that the overhead of adopting it as our framework was low. </li>
</ol>

<p>An added bonus is that it's quite fun to use too. Making it, for us, the best tool for the job.</p>

<p>Microsoft's support for jQuery is monumental, indicating a further shift in their attitude away from a command and conquer mind-set to creating the best development environment, whatever the tools.</p>
]]>
        

    </content>
</entry>

<entry>
    <title>Cross domain scripting</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/cross-domain-scripting.html" />
    <id>tag:www.ux-media.co.uk,2008://5.103</id>

    <published>2008-09-16T12:44:19Z</published>
    <updated>2008-09-26T14:37:51Z</updated>

    <summary>Adobe have tightened Flash&apos;s security model... what are the changes and what do they mean for us?</summary>
    <author>
        <name>Matt Goddard</name>
        
    </author>
    
        <category term="blog" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<p>Once upon a time the internet was quite a simple little place where every interaction required synchronous transaction between the client and the server. </p><p>You entered some information in to a form, pressed a button and the page was sent to a server somewhere for processing. The results were returned to you when the page reloaded.</p>

<p>Life was simple: Post - get response - reload page and move forward on your merry way.</p>

<p>Then <a href="http://www.jjg.net/about/">JJG</a> decided to blow the whole model apart by creating a cool name for XMLRPC (<a href="http://en.wikipedia.org/wiki/AJAX">AJAX</a>).This very simple act changed the 'transactional'  nature of the web. It was no longer cool to wait for a the whole page to refresh; people expected portions of web page to load asynchronously.</p>

<p>This new world of website has created a bit of a headache for the security bods because accompanying this new transaction model was a 'hailstorm' of new web services; little code islands a developer can contact to get information on everything from book reviews to weather forecasts to bank statements.</p>

<p>The thing that troubled the security bods now was how to ensure the credentials of the web sites connecting to a web service.</p>

<p>The answer was to enforce a sand box in the browser to prevent websites outside of the domain to connect to the web service. Very cool, except most web developers want to use web services from Amazon etc.</p>

<p>One easy way to get round this was to use Flash as a conduit for the AJAX request. However, Adobe have been very busy updating the Flash Plugin to enforce a tighter security model. This process started by requiring the presences of a crossdomain.xml file on the web service root.</p>

<p>At first, all you were required to do was include the following lines of code:</p>

<pre><code>&lt;cross-domain-policy&gt;
    &lt;allow-access-from domain="*" secure="true|false"&gt; 
&lt;/cross-domain-policy&gt;
</code></pre>

<p>So, OK, you can provide a domain name or IP address in the domain attribute to only allow access from a specific domain, for closed access.</p>

<p>With the introduction of Flash Player 9, Adobe have started to tighten the security model. Now you are required to specify accepted request headers:</p>

<pre><code>&lt;cross-domain-policy&gt;
    &lt;allow-access-from domain="*" secure="true|false" /&gt;
    &lt;allow-http-request-headers-from domain="*" headers="*" secure="true|false" /&gt;
&lt;/cross-domain-policy&gt;
</code></pre>

<p>And with the launch of Flash Player 10 the <a href="http://www.adobe.com/devnet/flashplayer/articles/fplayer10_security_changes.html">security is going to be even tighter</a>. The culmination of all these changes is that a lot of Flash applications have the potential to stop working if the crossdomain.xml file hasn't been updated in line with the changes to Flash's security model.</p>

<p>Download a copy of our <a href="/crossdomain.xml">crossdomain.xml</a> which works with Flash Player 9. We'll update it when Flash player 10 is out of beta.</p>
]]>
        

    </content>
</entry>

<entry>
    <title>Lightweight user testing has landed</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/lightweight-user-testing-has-l.html" />
    <id>tag:www.ux-media.co.uk,2008://5.102</id>

    <published>2008-09-11T15:30:05Z</published>
    <updated>2008-09-15T09:28:30Z</updated>

    <summary>UX Media has developed a lightweight usability testing service that allows us to run fully observable user tests from any location. </summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<p>For most companies the cost of a running a user test is cause for concern, so here at UX Media we have developed a lightweight usability testing service that allows us to run fully observable user tests from any location. </p><span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="Feather_300.jpg" src="http://www.ux-media.co.uk/images/Feather_300.jpg" class="mt-image-right" style="margin: 0pt 0pt 20px 20px; float: right;" width="190" height="111" /></span>
<p>This flexibility allows us to more accurately mimic the contextual setting of a target website, providing high quality results from quick user testing. <br /></p><p><b>It's lightweight user testing with heavyweight return on investment.</b></p>
<p>Without the expense of maintaining full bespoke facilities, we can run a complete user test at a fraction of the cost. This allows us to provide cost effective solutions for a wide range of customers, from small businesses to large companies looking for quick turnaround improvements, enabling anyone to receive the benefits of testing products with users at any point in the website development process.</p>
<p>UX Media works directly with businesses and alongside web and software developments agencies, so give us a call on 023 8022 2254 or email us on <a href="mailto:info@ux-media.co.uk">info@ux-media.co.uk</a> to find out more.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Bright Red launches live site</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/bright-red-launches-live-site.html" />
    <id>tag:www.ux-media.co.uk,2008://5.101</id>

    <published>2008-08-26T09:53:20Z</published>
    <updated>2008-08-26T10:19:31Z</updated>

    <summary>The Bright Red Publishing website launches in time for the new Scottish school term
</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<span class="Apple-style-span" style="color: rgb(32, 32, 32); font-family: Verdana; font-size: 12px; ">Scotland's brightest, freshest, easiest-to-use revision books for secondary students and <span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="brightred_logo.gif" src="http://www.ux-media.co.uk/images/brightred_logo.gif" width="281" height="108" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></span>teachers are now available online through the new <a href="http://www.brightredpublishing.co.uk">Bright Red Publishing website</a>.</span><div><span class="Apple-style-span" style="color: rgb(32, 32, 32); font-family: Verdana; font-size: 12px;"><br /></span></div><div><span class="Apple-style-span" style="color: rgb(32, 32, 32); font-family: Verdana; font-size: 12px; ">The site has been developed by UX Media and includes a full </span></div><div><span class="Apple-style-span" style="color: rgb(32, 32, 32); font-family: Verdana; font-size: 12px; ">e-commerce facility for easy shopping and an efficient content management system to allow books and authors to be kept up-to-date.</span><div><span class="Apple-style-span" style="color: rgb(32, 32, 32); font-family: Verdana; font-size: 12px;"><br /></span></div><div><span class="Apple-style-span" style="color: rgb(32, 32, 32); font-family: Verdana; font-size: 12px;"><a href="http://www.brightredpublishing.co.uk">Bright Red Publishing</a> is an innovative, forward-thinking company who appreciate all your views about the website, books, exams and revision material available. Take a look and <a href="http://www.brightredpublishing.co.uk/ContactUs.aspx">contact them now</a> to have your say.</span></div></div>]]>
        
    </content>
</entry>

<entry>
    <title>Pitter patter</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/pitter-patter.html" />
    <id>tag:www.ux-media.co.uk,2008://5.100</id>

    <published>2008-08-22T16:34:41Z</published>
    <updated>2008-08-22T17:00:10Z</updated>

    <summary>This week saw the arrival of the first office baby, little Amelie. Ahhhh.....</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<span class="mt-enclosure mt-enclosure-image" style="display: inline;"><img alt="Amelie.jpg" src="http://www.ux-media.co.uk/images/Amelie.jpg" width="188" height="141" class="mt-image-right" style="float: right; margin: 0 0 20px 20px;" /></span>UX Media got all broody this week as we welcomed little Amelie Serra into the world on Thursday 21 August at 9.42 am.<div><br /></div><div>Proud dad, Sam Serra, who is working closely with us on some exciting new projects (keep an ear out for more news on this later!), and new mum Karolina Lagoda will have their hands full over the next few months as they get into the swing of parenthood, and we wish the whole family all the luck in the world.</div><div><br /></div><div>Congratulations also to doting grandmother, Colette, who may not have time to keep our offices as shiny and clean as she usually does for a while!</div><div><br /></div><div><br /></div><div><br /></div>]]>
        
    </content>
</entry>

<entry>
    <title>Clever clogs</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/clever-clogs.html" />
    <id>tag:www.ux-media.co.uk,2008://5.99</id>

    <published>2008-07-22T09:05:52Z</published>
    <updated>2008-07-22T09:08:53Z</updated>

    <summary>We&apos;re all bursting with pride this month as Account Manager, Marie, graduates with honours from Portsmouth University.</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<p><span style="FONT-SIZE: 10pt; COLOR: #333333; FONT-FAMILY: 'Arial','sans-serif'">We're all bursting with pride this month as Account Manager, Marie, graduates with honours from Portsmouth University.</span></p>
<p><span style="FONT-SIZE: 10pt; COLOR: #333333; FONT-FAMILY: 'Arial','sans-serif'">
<span class="mt-enclosure mt-enclosure-image" style="DISPLAY: inline"><img class="mt-image-right" style="FLOAT: right; MARGIN: 0px 0px 20px 20px" height="168" alt="P210708_12.14.JPG" src="http://www.ux-media.co.uk/images/P210708_12.14.JPG" width="224" /></span>It's been a long, hard slog but well worth the effort for Marie, who was formally presented with a BA (Hons) in Photography on Monday at Portsmouth Guildhall. The sun made a rare appearance just for the photos&nbsp;and we think you'll agree that she looks fantastic.<o:p></o:p></span></p>
<p><span style="FONT-SIZE: 10pt; COLOR: #333333; FONT-FAMILY: 'Arial','sans-serif'">As well as her degree, Marie has exhibited and sold pieces of her coursework recently, proving what a great creative talent she is.<o:p></o:p></span></p>
<p><span style="FONT-SIZE: 10pt; COLOR: #333333; FONT-FAMILY: 'Arial','sans-serif'">Congratulations Marie!</span></p>
<p><span style="FONT-SIZE: 10pt; COLOR: #333333; FONT-FAMILY: 'Arial','sans-serif'"><o:p></o:p></span>&nbsp;</p>]]>
        
    </content>
</entry>

<entry>
    <title>The novelty of having three bathrooms...</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/the-novelty-of-having-three-ba.html" />
    <id>tag:www.ux-media.co.uk,2008://5.98</id>

    <published>2008-07-17T11:33:15Z</published>
    <updated>2008-07-22T09:44:29Z</updated>

    <summary>UX Media has moved to bigger and better premises this month as we bring in more members of the team and facilities to improve our services further.</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<p>...a kitchen, meeting area and at least one desk each! </p>
<p>
<span class="mt-enclosure mt-enclosure-image" style="DISPLAY: inline">&nbsp;</span>
<span class="mt-enclosure mt-enclosure-image" style="DISPLAY: inline"><img class="mt-image-right" style="FLOAT: right; MARGIN: 0px 0px 20px 20px" height="202" alt="Lodge_One3.jpg" src="http://www.ux-media.co.uk/images/Lodge_One3.jpg" width="152" /></span>UX Media has moved to bigger and better premises this month as we bring in more members of the team and improved facilities to house the new services we'll be offering in the near future.</p>
<p>Don't worry, we're not far away so you won't get lost finding us. In fact we're still in the same street. Drop in for a coffee, biscuit and a chat when you get a moment. We'd love to see you.</p>
<p>You'll find us at Lodge One, Dolphin Lane, Southampton, SO14 2HN.</p>
<p><a href="http://www.ux-media.co.uk/contactus.html#location">Get directions to UX Media</a></p>
<p>&nbsp;</p>]]>
        
    </content>
</entry>

<entry>
    <title>E-commerce usability - good for users but watch the fraudsters</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/ecommerce-usability-good-for-u.html" />
    <id>tag:www.ux-media.co.uk,2008://5.97</id>

    <published>2008-07-15T08:54:23Z</published>
    <updated>2008-07-15T10:21:49Z</updated>

    <summary>98 percent of shoppers check for some kind of security before making an online purchase, almost four-fifths would trust a site which had simple, clear payment features regardless of its level of security.</summary>
    <author>
        <name>Matt Goddard</name>
        
    </author>
    
        <category term="blog" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<p>"98 percent of shoppers check for some kind of security before making an online purchase, almost four-fifths would trust a site which had simple, clear payment features regardless of its level of security."</p>
<p><a href="http://www.itpro.co.uk/604506/user-friendly-websites-catching-out-shoppers">IT Pro have highlight a survey conducted by paypoint.net</a> which suggests that four-fiths of user are more likely to trust a site with a simple, clear payment facility regardless of the level of security implemented on the site.</p>
<p>This is a big thumbs of for usability and the ROI gained by ensuring you have a usable checkout process but there needs to be an education process with users to help them recognise a secure shopping process. Mastercard and VISA are helping to ensure this with thier 'SecureCode' and 'Verified by VISA' schemes but with the overhead of making users remember yet another username and password.</p>
<p>Watch this space, with the integration of payment gateways such as google checkout we may be able to offer users a&nbsp;simple and secure website which increase ROI and keep customers safe. If only google would allow you to integrate thier service directly into a bespoke website.</p>]]>
        
    </content>
</entry>

<entry>
    <title>Technical direction takes off</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/technical-direction-takes-off.html" />
    <id>tag:www.ux-media.co.uk,2008://5.96</id>

    <published>2008-07-13T16:57:04Z</published>
    <updated>2008-07-22T10:09:56Z</updated>

    <summary>UX Media extends a warm welcome to a new member of the team this month, with the addition of Technical Director, Kieron Lanning.</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<p><font color="#000000"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'">UX Media extends a warm welcome to a new member of the team this month, with the addition of Technical Director, Kieron Lanning.</span></font></p>
<p>
<span class="mt-enclosure mt-enclosure-image" style="DISPLAY: inline"><img class="mt-image-right" style="FLOAT: right; MARGIN: 0px 0px 20px 20px" height="242" alt="Kieron.jpg" src="http://www.ux-media.co.uk/images/Kieron.jpg" width="161" /></span><font color="#000000"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'">Kieron will be working with us to create a sustainable technical infrastructure for UX Media, as well as&nbsp;taking on responsibility for&nbsp;solution architecture and technical resource within the company.</span></font></p>
<p><font color="#000000"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'">With a background in Microsoft .Net and other solutions, Kieron has worked closely with companies in the telecommunications, aerospace and IPTV industries, to provide maintainable and extensible business orientated solutions for a variety of business needs. </span></font></p>
<p><font color="#000000"><span style="FONT-SIZE: 10pt; FONT-FAMILY: 'Arial','sans-serif'">We'll be introducing all our clients to Kieron over the next few weeks so feel free to put him to the test with a few challenging questions when you meet him!</span></font></p>]]>
        
    </content>
</entry>

<entry>
    <title>The future&apos;s Bright Red</title>
    <link rel="alternate" type="text/html" href="http://www.ux-media.co.uk/articles/the-futures-bright-red.html" />
    <id>tag:www.ux-media.co.uk,2008://5.95</id>

    <published>2008-07-13T16:46:32Z</published>
    <updated>2008-07-13T16:56:05Z</updated>

    <summary>UX Media is delighted to begin development on Bright Red Publishing&apos;s new website for the Scottish educational market.</summary>
    <author>
        <name>Ali Peppard</name>
        <uri>http://www.ux-media.co.uk</uri>
    </author>
    
        <category term="company_updates" scheme="http://www.sixapart.com/ns/types#category" />
    
    
    <content type="html" xml:lang="en" xml:base="http://www.ux-media.co.uk/">
        <![CDATA[<p>UX Media is&nbsp;delighted to begin development on Bright Red Publishing's new website for the Scottish educational market.</p>
<p>The fully functional, accessible site has been designed by <a href="http://www.armadillojam.co.uk/">Armadillo Jam</a>, with technical direction and development by UX Media. The site aims to deliver tailored and engaging revision and exam material for students and teachers, promoting creative, independent thinking.</p>
<p>Bright Red Publishing works with the best authors, editors, designers and printers to provide a high-quality and reliable service, including a full ecommerce system.</p>]]>
        
    </content>
</entry>

</feed>
