<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <title type="text">Technology + Creativity at the BBC Feed</title>
  <subtitle type="text">Technology, innovation, engineering, design, development.
The home of the BBC's digital services.</subtitle>
  <updated>2020-11-10T11:26:55+00:00</updated>
  <generator uri="http://framework.zend.com" version="2">Zend_Feed_Writer</generator>
  <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet"/>
  <link rel="self" type="application/atom+xml" href="https://www.bbc.co.uk/blogs/internet/atom"/>
  <id>https://www.bbc.co.uk/blogs/internet</id>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[You don't know what you don't know]]></title>
    <summary type="html"><![CDATA[The story of how Bitesize team created a quiz feature from their bedrooms, kitchens and garages.]]></summary>
    <published>2020-11-10T11:26:55+00:00</published>
    <updated>2020-11-10T11:26:55+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/585c7800-5248-4201-939a-89d44213a418"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/585c7800-5248-4201-939a-89d44213a418</id>
    <author>
      <name>Lucia Mormocea</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;em&gt;The story of how the Bitesize team created a &lt;a href="https://www.bbc.co.uk/bitesize/quizzes"&gt;quiz feature&lt;/a&gt; from their bedrooms, kitchens and garages.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;It was the middle of summer 2020. After the whirldwind brought on by coronavirus, lockdown, working from home and not least &lt;a href="https://www.bbc.co.uk/blogs/internet/entries/51d7cc3b-0cb7-4de1-9347-0957744a7b99"&gt;Daily Lessons&lt;/a&gt; we were just settling into a comfortable routine.&lt;/p&gt;
&lt;p&gt;And when I say ‘we’, I mean the lovely bunch of people that make up the Bitesize team these days: developers, testers, UX designer, business analysts, project and product managers.&lt;/p&gt;
&lt;p&gt;Tickets were added in at a steady pace, features were coming along nicely. We even spent a couple of days in a hackathon devising new ideas for the website while shaking off some technical cobwebs.&lt;/p&gt;
&lt;p&gt;Overall life working from home was as peachy as it could get in a global pandemic.&lt;/p&gt;
&lt;h4&gt;Maths, Science, Magic&lt;/h4&gt;
&lt;p&gt;We started looking ahead at what we could do to support our audiences in the new autumn term. Students faced interrupted lessons and a potential mix of in-school and at-home learning. We came up with a number of things we could offer to help. One of them was using quizzes to diagnose gaps in their knowledge and recommend where they should focus.&lt;/p&gt;
&lt;p&gt;Quizzes are nothing new to Bitesize, we have two types of them already. One is the old favourite version made up of ten questions at the end of the revision chapters andother was a more elaborate learning experience powered by machine learning which aimed to help the user retain information.&lt;/p&gt;
&lt;p&gt;This quiz was different!&lt;/p&gt;
&lt;p&gt;The data science team had a prototype that used existing questions from test chapters and computed the user’s mastery level across each study guide with a certain level of confidence.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p08xzsq9.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p08xzsq9.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p08xzsq9.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p08xzsq9.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p08xzsq9.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p08xzsq9.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p08xzsq9.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p08xzsq9.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p08xzsq9.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;The more questions the user was asked, the higher the confidence level, and the more accurate the mastery level.&lt;/p&gt;
&lt;p&gt;Based on those mastery levels we could suggest different topics or guides that the user should revise, effectively allowing us to diagnose a user’s gaps in knowledge.&lt;/p&gt;
&lt;h4&gt;“Trusssst in me…”(Kaa, the python — Jungle Book)&lt;/h4&gt;
&lt;p&gt;The data science team had written their prototype in Python. Within the Bitesize team we had never touched that particular gem of a programming language so we were very apprehensive at first.&lt;/p&gt;
&lt;p&gt;However, Python is “The” language of choice for machine learning and data science in general, not least because two of the most powerful libraries for mathematical operations are using it: numpy and scipy.&lt;/p&gt;
&lt;p&gt;Those two libraries featured heavily in the prototype presented to us, so it made perfect sense for us to try and use Python for the actual implementation. However it did mean we had to produce a whole new CI/CD pipeline for it to work.&lt;/p&gt;
&lt;h4&gt;It’s a long way to Live if you wanna rock ’n roll&lt;/h4&gt;
&lt;p&gt;Having a fantastically clever algorithm that can provide mastery and confidence scores is great!&lt;/p&gt;
&lt;p&gt;Shaping it into a product that provides value to our users is a whole different proposition.&lt;/p&gt;
&lt;p&gt;Some of the initial questions we had to answer were:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;How should we package algorithm in order to be hosted in our AWS VPC?&lt;/li&gt;
&lt;li&gt;What’s the algorithm’s domain and data contract?&lt;/li&gt;
&lt;li&gt;How do we explain the algorithm to our audiences? Understandibly, these days people can be very suspicious of software that uses data to provide information.&lt;/li&gt;
&lt;li&gt;And last but not least, what happens when there is a Live bug? Contrary to popular belief software will always have bugs. Our job is to ensure they are few and far between.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;A few shaping and discovery sessions with the data services team led to refactoring the prototype to a new working model.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p08xzsrr.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p08xzsrr.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p08xzsrr.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p08xzsrr.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p08xzsrr.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p08xzsrr.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p08xzsrr.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p08xzsrr.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p08xzsrr.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;We started calling it the Efficient Learning algorithm or just “the algorithm”.&lt;/p&gt;
&lt;p&gt;Its domain seemed to be made up of questions and answers. It required knowledge of Bitesize curriculum domain made up of subjects, topics and study guides. For example it needed to know that the topic &lt;a href="https://www.bbc.co.uk/bitesize/examspecs/zpgcbk7"&gt;Cell Biology&lt;/a&gt; contains guides like &lt;a href="https://www.bbc.co.uk/bitesize/guides/z84jtv4/revision/1"&gt;Cell Structure&lt;/a&gt;, &lt;a href="https://www.bbc.co.uk/bitesize/guides/zs8y4qt/revision/1"&gt;Cell Division&lt;/a&gt; etc.&lt;/p&gt;
&lt;p&gt;The results returned would be an array of guides with mastery and confidence scores for each one.&lt;/p&gt;
&lt;p&gt;While our understanding of the Maths behind the scenes was not that great, hence the “Mystery Box”, we knew enough in order to get started on building the infrastructure for this and the UI.&lt;/p&gt;
&lt;h4&gt;To Lambda or not to Lambda&lt;/h4&gt;
&lt;p&gt;One of the early decisions made about the this new quiz was to host the algorithm as a lambda.&lt;/p&gt;
&lt;p&gt;Some very good reasons for that were that the algorithm looked to be a data in/out function which did not need to store the results or any user data. Therefore, we did not need a permanent running EC2 for this. It could be packaged in a lambda that spun up, computed results, then shut down.&lt;/p&gt;
&lt;p&gt;In addition, the “algorithm” did not need access to any of our systems except perhaps the curriculum data. Since the data required about subjects, topics, study guides was static we could just add it to one of our S3 buckets.&lt;/p&gt;
&lt;p&gt;Lambdas are a lot easier to develop, wonderfully encapsulated, easy to spin up and tear down. Plus we already had a few kicking about our estate and we felt confident we could do this fast.&lt;/p&gt;
&lt;h4&gt;A Matter of State&lt;/h4&gt;
&lt;p&gt;Choosing to create a lambda implied that something else would have to handle the state. The “state” in our case consisted of a list of questions sent to the algorithm with a flag for whether the answer was right or wrong.&lt;/p&gt;
&lt;p&gt;Initial UI drafts suggested that the quiz would run one question at a time and required the ability to store the user’s progress. We did not need any personal user data for this which suited us just fine because we wanted the quiz to be available to non-signed in users.&lt;/p&gt;
&lt;p&gt;This is where User Store was the right solution for us. It is currently a client side module which handles CRUD operations for key-value data using the local storage API. The ambition for the future is to update the component to use a more permanent cloud storage solution whilst hiding the complexities away from the UI.&lt;/p&gt;
&lt;p&gt;For the quizzes MVP we use it to store the questions which have already been answered. We could later extend this to securely store achievements and progress for signed in users.&lt;/p&gt;
&lt;h4&gt;UI and the MVP approach&lt;/h4&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p08xzt6m.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p08xzt6m.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p08xzt6m.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p08xzt6m.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p08xzt6m.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p08xzt6m.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p08xzt6m.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p08xzt6m.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p08xzt6m.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;The MVP planning sessions with the teams are always fun!&lt;/p&gt;
&lt;p&gt;They involve creative discussions about what the core functionality should be. Then we look at the time we have to build it and start trimming the edges.&lt;/p&gt;
&lt;p&gt;The MVP approach allows the whole team to build this product as fast as possible, then learn what works for the audience, and what doesn’t.&lt;br /&gt;UX designers also changed their approach. Instead of carrying on a big discovery phase with lots of user studies, they switched to a ‘build, measure, learn’ one.&lt;/p&gt;
&lt;p&gt;The UI focused on getting the user to results as fast possible with minimal onboarding. It had to cater for questions and answers with very different text sizes.&lt;/p&gt;
&lt;p&gt;It needed to be friendly to smaller devices since it was estimated that most students will be doing their studying on tablets or phones.&lt;/p&gt;
&lt;p&gt;The UI also challenged us to think of the way we can display results meaningful to a user.&lt;/p&gt;
&lt;p&gt;Mastery scores are not extremely useful. We needed a system that can explain how well a student has done for each topic they chose.&lt;br /&gt;In order to help with this, the data science team expanded the algorithm to return band 1, 2 or 3 for each study guide with band 3 being the highest mastery level.&lt;/p&gt;
&lt;p&gt;To simplify results even further, we created band 1, 2 and 3 for the whole topic based on the scores of each study guide.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p08xztbv.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p08xztbv.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p08xztbv.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p08xztbv.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p08xztbv.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p08xztbv.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p08xztbv.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p08xztbv.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p08xztbv.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;The bands map to a colour system of Red, Orange, Green:&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p08y021c.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p08y021c.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p08y021c.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p08y021c.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p08y021c.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p08y021c.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p08y021c.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p08y021c.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p08y021c.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;The most useful part for the user is the study suggestions provided for each topic. For Red and Orange bands we display links to the study guides with the lowest mastery scores. This should direct our users to content that is highly relevant to their revision goals.&lt;/p&gt;
&lt;h4&gt;Infrastructure&lt;/h4&gt;
&lt;p&gt;Getting a Python lambda off the ground was not trivial!&lt;/p&gt;
&lt;p&gt;At first we had to setup a local development environment to run the function locally. We used Python 3 virtualenv and AWS SAM which enabled us to test the function with different types of events.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p08y00y2.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p08y00y2.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p08y00y2.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p08y00y2.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p08y00y2.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p08y00y2.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p08y00y2.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p08y00y2.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p08y00y2.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;Our CI/CD pipelines are mostly done via Jenkins and Cosmos. Cosmos is an internal tool that provides a GUI for managing CloudFormation stacks. We created a pipeline that spun up a Docker container from a Python 3 image. The pipeline copied the code, ran the unit tests and packaged the build and dependencies into a zip file. From there it was a simple step to publish it to our AWS VPC.&lt;/p&gt;
&lt;p&gt;Cosmos uses AWS CLI behind the scenes, so the size of the package when uploading a lambda is set to no more than 50 MB. However, when creating the package we quickly discovered that numpy and scipy libraries in the dependencies pushed the size of the package over that threshold.&lt;/p&gt;
&lt;p&gt;This is where AWS Layers were helpful. The Layers functionality in AWS allowed us to move these two runtime dependencies outside the function. AWS offers an out of the box layer for the two libraries so we did not need to create one ourselves.&lt;/p&gt;
&lt;h4&gt;Automate all the things!&lt;/h4&gt;
&lt;p&gt;Between our development teams, our testers are spread thinner than marmite on toast. So our plans to secretly make them GCSE experts by getting them to manually test the quiz over and over again seemed unlikely.&lt;/p&gt;
&lt;p&gt;We came to the conclusion that we had created a very challenging system to test.&lt;/p&gt;
&lt;p&gt;The algorithm was not deterministic. It would not be possible to force it to provide the same questions with the same input. Luckily it provided the same mastery results if the same questions were used.&lt;/p&gt;
&lt;p&gt;The UI was intricate, worked fully client side and the quiz was 20 questions long. So manual testing would be long, boring and repetitive. Exactly the opposite of what we want our testers to do!&lt;/p&gt;
&lt;p&gt;The test team built two sets of automated tests in Cypress. One set runs contract tests against the responses coming from the API Gateway. The other runs an end to end test of the UI and can run through the whole quiz interface as many times as it is needed.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p08y0642.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p08y0642.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p08y0642.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p08y0642.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p08y0642.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p08y0642.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p08y0642.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p08y0642.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p08y0642.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;Creating and updating automated tests has become part of the regular development process and as a result it has given us a lot of confidence in our features over the past year. Automated tests run across the whole estate on an hourly basis and flag breaking changes.&lt;/p&gt;
&lt;p&gt;This means we can deploy to Live faster, catch problems early and we are not restricted by the number of testers in our team.&lt;/p&gt;
&lt;h4&gt;You Don’t Know What You Don’t Know … Until you know it!&lt;/h4&gt;
&lt;p&gt;Hopefully Bitesize quizzes will help you figure out what you don’t know. Well, at least as far as GCSE’s go.&lt;/p&gt;
&lt;p&gt;We had a great time making this and look forward to adding more subjects and introducing new types of questions.&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[Delivering daily lessons during lockdown]]></title>
    <summary type="html"><![CDATA[Ali Craigmile explains the plan for BBC Bitesize to offer daily lessons in core subjects.]]></summary>
    <published>2020-04-17T08:43:00+00:00</published>
    <updated>2020-04-17T08:43:00+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/51d7cc3b-0cb7-4de1-9347-0957744a7b99"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/51d7cc3b-0cb7-4de1-9347-0957744a7b99</id>
    <author>
      <name>Ali Craigmile</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;A little over a week ago, Tony Hall announced the “&lt;a href="https://www.bbc.co.uk/mediacentre/latestnews/2020/coronavirus-education"&gt;biggest push on education in the BBC’s history&lt;/a&gt;” including a plan to enhance our free online study support service &lt;strong&gt;BBC Bitesize&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;In the space of a few short weeks, Covid-19 has had a major impact on the way we all live our lives. Entering this period of national lockdown has inevitably changed the way we work, communicate, shop and exercise. People across the country are turning to digital technologies like never before; the ultimate digital disruptor.&lt;/p&gt;
&lt;p&gt;With schools across the UK closed, the normal systems we all rely upon to educate our children day-in/day-out have been put under enormous strain too. Teachers are having to work at a distance — many for the first time, and without having had time to adapt lessons and strategies. Parents have become teaching assistants overnight, and are juggling lessons from the kitchen table, alongside caring responsibilities, and in many cases also now having to work from home.&lt;/p&gt;
&lt;h4&gt;Increased demand for home schooling&lt;/h4&gt;
&lt;p&gt;Since schools closed, we’ve been working to help parents and learners with the challenge of home schooling.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;BBC Bitesize&lt;/strong&gt; is designed to help students around the UK with learning, revision and homework.&lt;/p&gt;
&lt;p&gt;For &lt;a href="https://www.bbc.co.uk/blogs/aboutthebbc/entries/581b1a66-d96a-40cf-add6-90966904e2c6"&gt;over 20 years&lt;/a&gt; it has complemented what schools and teachers do by providing support for learners aged 5 to 16+, &lt;a href="http://www.bbc.co.uk/bitesize/subjects"&gt;across a wide range of school subjects&lt;/a&gt;. It also supports children and young people’s wellbeing and career choices.&lt;/p&gt;
&lt;p&gt;In the 2 weeks preceding the Easter holidays, we’ve seen a huge new demand for home schooling resources.&lt;/p&gt;
&lt;p&gt;We’re pleased to have been serving over 1 million unique visitors each weekday with content mainly from our existing Bitesize ‘Learn &amp; Revise’ offer.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p089rb2t.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p089rb2t.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p089rb2t.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p089rb2t.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p089rb2t.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p089rb2t.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p089rb2t.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p089rb2t.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p089rb2t.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;h4&gt;Daily online lessons&lt;/h4&gt;
&lt;p&gt;From 20th April 2020 we’ll begin adding new content to BBC Bitesize in the form of special daily lessons in English, Maths and other core subjects. Our brand new offer has been specially designed with home schooling in mind.&lt;/p&gt;
&lt;p&gt;Lessons will bring together videos, quizzes, games and activities from Bitesize, elsewhere around the BBC, and from selected educational partners too.&lt;/p&gt;
&lt;p&gt;While my editorial colleagues are (extremely) busy co-ordinating the delivery of ~150 lessons a week, the Bitesize product team have been working hard to make it easy for parents and students to navigate all of this new content.&lt;/p&gt;
&lt;p&gt;We know how important it is that our users can quickly find resources relevant to their age-range and ability-level. Moving to this daily cadence and having parents take a more active role means that we’ve had to come up with some new ways to navigate around. Luckily we have standard website components and UI patterns to speed us along the way.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p089rb3r.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p089rb3r.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p089rb3r.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p089rb3r.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p089rb3r.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p089rb3r.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p089rb3r.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p089rb3r.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p089rb3r.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;h4&gt;Elsewhere around the BBC&lt;/h4&gt;
&lt;p&gt;Meanwhile, sets are being designed, and scripts and schedules written for the various TV and Radio programmes which the BBC is planning to broadcast throughout the Summer Term too.&lt;/p&gt;
&lt;p&gt;It’s pretty exciting to know that Bitesize will be on Red Button, BBC FOUR, BBC Scotland, S4C, BBC iPlayer and BBC Sounds.&lt;/p&gt;
&lt;p&gt;We’re turning the Bitesize homepage into a destination where you can find information about all of these services.&lt;br /&gt;It’s quite a challenge to showcase this breath of offer simply — but one which our designers and engineers have accepted gladly.&lt;/p&gt;
&lt;h4&gt;Top team&lt;/h4&gt;
&lt;p&gt;Saying that delivering daily lessons during lockdown has been ‘ambitious’ — would be quite an understatement. 4 weeks ago, with the rest of the country, BBC Children’s and Education teams became remote workers overnight. Bitesize daily is being built in spare rooms, at kitchen tables and on the sofa (but only when we can convince our kids to take a break from the games console).&lt;/p&gt;
&lt;p&gt;We’re putting ‘lean’ product development through its paces. We’re remaining focussed, we’re talking a lot, and importantly, we’re trusting our brilliant people to do their thing.&lt;/p&gt;
&lt;p&gt;It really helps to have the support of management, colleagues around the BBC, our families, organisational partners and of course each other.&lt;/p&gt;
&lt;p&gt;We’ll continue to develop in the coming months to make sure there’s an even greater range of resources available to parents and kids, as we learn more about the best way to educate our kids as the UK responds to Coronavirus.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.bbc.co.uk/bitesize/"&gt;Visit the BBC Bitesize website to find the latest daily lessons&lt;/a&gt; (starts 20th Apr 2020).&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[20th anniversary of BBC Bitesize]]></title>
    <summary type="html"><![CDATA[Stuart Brown explains how Bitesize has been refreshed for its 20th anniversary.]]></summary>
    <published>2018-09-04T11:55:15+00:00</published>
    <updated>2018-09-04T11:55:15+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/9481cd82-348d-4f0d-b993-bd414cc3d935"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/9481cd82-348d-4f0d-b993-bd414cc3d935</id>
    <author>
      <name>Stuart Brown</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;Bitesize is the BBC’s Educational resource for school-age students across the whole of the UK, and turns 20 this month. We brought the site up-to-date with a new look and a suite of personalisation features.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p06k86yh.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p06k86yh.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p06k86yh.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p06k86yh.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p06k86yh.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p06k86yh.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p06k86yh.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p06k86yh.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p06k86yh.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;h4&gt;1998&lt;/h4&gt;
&lt;p&gt;1998 is a fascinating year from a technology point of view. It was in 1998 we saw great strides in Artificial Intelligence and Computer Vision with the launch of the scarily life-like &lt;a href="https://en.wikipedia.org/wiki/Furby"&gt;Furby&lt;/a&gt;. A company called Google was founded to help you find out more about your favourite Backstreet Boy or what time Lethal Weapon 4 was on at the cinema. Oh and the first pop-group with a wildcard in their name stormed the charts with a song called &lt;a href="https://www.youtube.com/watch?v=UvjLgjtJKsc"&gt;“C’est la Vie”&lt;/a&gt;. What a time to be alive!&lt;/p&gt;
&lt;p&gt;In order for the BBC to keep up with such revolutionary innovations, it also had to change, and did so by looking to the web, launching its very first online-first product — BBC Bitesize.&lt;/p&gt;
&lt;p&gt;This week sees the launch of a not only a brand-new look and feel for Bitesize, but a personalised resource for students of all ages. Getting here wasn’t &lt;a href="https://www.youtube.com/watch?v=IdaOo6OkP8E&amp;feature=youtu.be&amp;t=1m21s"&gt;just rebadging the Mini Metro&lt;/a&gt;, it was our biggest engineering undertaking to date.&lt;/p&gt;
&lt;h4&gt;Paint it orange&lt;/h4&gt;
&lt;p&gt;Our in-house UX team worked with creative agency &lt;a href="http://www.rufusleonard.com"&gt;Rufus Leonard&lt;/a&gt; to devise a system in which our brand could be consistent yet change with our users. We were extremely pleased with the result — consistent typography and structure across the site, but iconography and colours that change depending on the age of the user (brighter oranges and yellows for primary students, muted purples for those revising for their exams.&lt;/p&gt;
&lt;p&gt;This new unified front-end experience addressed a source of frustration with both our users and developers. Different parts of Bitesize looked dramatically different from each other. And that’s because technically they were — monolithic PHP applications serving different types of pages. The pages for Primary kids were served from one app, Secondary another.&lt;/p&gt;
&lt;h4&gt;Mighty Morphin Nanoservices&lt;/h4&gt;
&lt;p&gt;Our first step into breaking the monoliths came from the development of Morph, an internal project created by BBC Sport. You can read more about Morph in &lt;a href="http://www.bbc.co.uk/blogs/internet/entries/5bdabd53-090e-4611-a5d5-4faea05aeb35"&gt;this post by Matthew Clark&lt;/a&gt;, but the key idea is that Morph allows you to build sites around “nanoservices”. A nanoservice is an “independent component that does one job well”. So, for example, the navigation component on Bitesize is a nanoservice. This component is responsible for fetching only the data required to display the correct links to the user. This nanoservice’s data is accessible via a url in which in turn another service can use to construct the HTML/CSS/JS to use. We can easily put together an entire page this way.&lt;/p&gt;
&lt;p&gt;Being forced to develop to the principle of single responsibility is a great way to stop code bloat and make sure that all modules are reusable with minimal duplication. We follow this principle all the way from our front to back-end with a system we call “Blocks”. Blocks is a combination of iSite (our CMS), React, and Morph. Individual pieces of content are created in distinct chunks — a text block, a video block, etc. Each of these are nanoservices which are requested by the containing webpage and then curated into an article. This has the immense benefit of being able to develop and deploy individual pieces of the site independently of each other — a fantastic benefit when working in a large cross-location team.&lt;/p&gt;
&lt;h4&gt;Font&lt;/h4&gt;
&lt;p&gt;Typography-nerds will have heard about the &lt;a href="https://www.bbc.co.uk/gel/articles/introducing-bbc-reith"&gt;introduction of Reith&lt;/a&gt; — the BBC’s new typeface. The rebrand was the perfect opportunity to apply it to the whole of Bitesize, but in all honesty, the idea of not only releasing an entire new look and feel of the site in one go, but updating the font at the same time scared the bananas out of us.&lt;/p&gt;
&lt;h4&gt;Release what you can&lt;/h4&gt;
&lt;p&gt;Not wanting to be left with no bananas, we decided on a phased approach. One that could still allow the brand to be revealed with a bang instead of silently mutating the site slowly over time. Phase 1 would be aspects of the site we could release to the audience now without being considered unique to the brand. So we switched the font to Reith across the site without fuss. We also refactored our page header into a single reusable component as well as other small improvements. All things that were needed to be done for the rebrand, but instead were now live to the audience, and therefore shrinking the size of the “big reveal” down to a more manageable task. &lt;em&gt;Captain Risk is wounded -6 HP&lt;/em&gt;.&lt;/p&gt;
&lt;h4&gt;Flag it&lt;/h4&gt;
&lt;p&gt;“The best code is the code you have with you”. “If code’s not live then it doesn’t exist”. There’s probably a good saying in there somewhere. What I’m trying to say is that on launch day, how do you know everything is going to work? The answer is because it actually went live a week ago.&lt;br /&gt;Every single feature we developed for the new brand was hidden behind a feature flag. Our code would check whether a certain query string was passed via the page url and display the new brand to the user accordingly. This meant we could continue our practice of Continuous Deployment without disturbing users with flashes of odd colours or broken pages. It also meant that we could run our suite of automated tests with each release.&lt;/p&gt;
&lt;p&gt;Having our rebranded site live but hidden meant developers could work closely with the UX team to see how the new designs were shaping up on the live site with real content. This provided a tight feedback-loop, allowing us to continually tweak and deploy new versions.&lt;/p&gt;
&lt;h4&gt;Hello American Investors&lt;/h4&gt;
&lt;p&gt;Hover over the &lt;a href="https://www.bbc.com/bitesize"&gt;new Bitesize logo&lt;/a&gt; and you’ll see it come to life! (well, move around a bit). No, it’s not an animated gif or video. It’s actually one single png sprite animated like a flick-book. I first saw this effect being used for this &lt;a href="https://www.google.com/doodles/martha-grahams-117th-birthday"&gt;fantastic animated Google Doodle&lt;/a&gt;. This technique proved the best trade-off between file-size and performance while still looking great.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p06k8708.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p06k8708.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p06k8708.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p06k8708.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p06k8708.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p06k8708.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p06k8708.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p06k8708.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p06k8708.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;You also may have noticed what we call “sparks”, the little background shapes that float in the background. These are a collection of svgs randomly placed using a JavaScript module we created called &lt;a href="http://simpsons.wikia.com/wiki/Mr._Sparkle"&gt;Mr. Sparkle&lt;/a&gt;. Because we arrange these sparks client-side, it means every single page is different — a great way of confusing &lt;a href="https://garris.github.io/BackstopJS/"&gt;the screenshot comparison tool &lt;/a&gt; we use for testing.&lt;/p&gt;
&lt;p&gt;You can read more about the design process on the &lt;a href="https://medium.com/@DurableStretch/rebranding-bbc-bitesize-how-to-keep-your-cool-as-a-ux-designer-f73e895e226e"&gt;BBC’s GEL blog&lt;/a&gt;.&lt;/p&gt;
&lt;h4&gt;My Bitesize &lt;/h4&gt;
&lt;p&gt;Modernising the visual aspect of Bitesize would be frivolous if we didn’t also modernise the experience of our users. With the launch of &lt;a href="https://www.bbc.com/bitesize/my"&gt;My Bitesize&lt;/a&gt;, users can save Revision Guides for later and continue where they left-off. Powered by the BBC’s single login system, &lt;a href="https://www.bbc.co.uk/usingthebbc/account/"&gt;BBC Account&lt;/a&gt;, Bitesize will continue to become more personalised, tailoring its experience to the user whether they’re studying at home on the web, or wherever they are with our updated Android and iOS apps.&lt;/p&gt;
&lt;p&gt;We love the new design and features and hope you do too.&lt;br /&gt;To another 20 years 🥂.&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[BBC Ideas: Three months in]]></title>
    <summary type="html"><![CDATA[Executive editor Bethan Jinkinson reflects on what the team have learnt since the launch of the new BBC Ideas service.]]></summary>
    <published>2018-04-25T12:30:00+00:00</published>
    <updated>2018-04-25T12:30:00+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/ebc14121-0a9a-4ac6-adb4-d29bccaf39d4"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/ebc14121-0a9a-4ac6-adb4-d29bccaf39d4</id>
    <content type="html">&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p065b5td.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p065b5td.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p065b5td.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p065b5td.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p065b5td.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p065b5td.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p065b5td.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p065b5td.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p065b5td.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;It’s been just over three months since &lt;a href="https://www.bbc.com/ideas"&gt;BBC Ideas&lt;/a&gt; went live, and after the white heat of the launch period Executive Editor Bethan Jinkinson shares three things she has learnt over the past few weeks.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. There’s a clear audience appetite for informative short-form factual digital video&lt;/strong&gt;. Despite all the audience research and preparation we’d done, when we first launched we weren’t entirely sure there would be a market for our eclectic mix of short-form video spanning genres across philosophy, ethics, psychology, opinion, anthropology, archive etc. Would people be interested in the things we were interested in? Would they watch them, share them, engage with them? Thankfully the answer has been an emphatic yes. We’ve been blown away by the positive response from the audience to our content — whether it’s been our on our ‘In My Humble Opinion’ strand featuring people like palliative care specialist Kathryn Mannix (‘&lt;a href="https://www.bbc.com/ideas/videos/dying-is-not-as-bad-as-you-think/p062m0xt?playlist=imho"&gt;Dying is not as bad as you think&lt;/a&gt;’) to the amazing unsung heroine animator &lt;a href="https://www.bbc.com/ideas/videos/the-animation-genius-youve-probably-never-heard-of/p05t9bsn"&gt;Lotte Reiniger&lt;/a&gt; , to the quirky question we’ve all been wondering ‘&lt;a href="https://www.bbc.com/ideas/videos/does-your-name-match-your-face/p05z5l58"&gt;Does my name match my face&lt;/a&gt;?’. Of course not everything we do goes viral, but every day we learn more and more about what our audience likes and dislikes, and this definitely feeds into our production and commissioning thinking.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p065b5ys.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p065b5ys.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p065b5ys.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p065b5ys.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p065b5ys.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p065b5ys.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p065b5ys.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p065b5ys.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p065b5ys.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;strong&gt;2. Completion rates on our platform are high.&lt;/strong&gt; The second thing we’ve learnt is around completion rates. When we started we said we’d be    producing and commissioning videos that were between 90 secs and 15 mins. Most of our videos are between 3 and 4 mins, but we’ve also been experimenting with a longer length — eg &lt;a href="https://www.bbc.com/ideas/videos/house-techno-grime-did-they-start-with-these-women/p05tdppj"&gt;The women who pioneered electronic music &lt;/a&gt;(6:09 mins) and &lt;a href="https://www.bbc.com/ideas/videos/how-one-woman-transformed-alzheimers-research/p05wy4bw"&gt;The woman who transformed Alzheimer’s research&lt;/a&gt; (7:17 mins). Average completion rates for these on the BBC Ideas website are 63% and 67% — and overall our average is 65%. &lt;strong&gt;Some videos are as high as 80%&lt;/strong&gt;. In a world of endless choice and ever shorter attentions spans, this feels a good place to be.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p065b61v.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p065b61v.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p065b61v.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p065b61v.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p065b61v.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p065b61v.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p065b61v.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p065b61v.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p065b61v.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;strong&gt;3. There’s a load of fantastic indie talent out there.&lt;/strong&gt; And finally when we started we were keen to work with both internal and external suppliers. One of the big questions in my mind is there a short-form digital indie ecosystem that we could tap into? Would they ‘get’ what we wanted and be able to supply it within our budgets and to our specification? Thankfully the answer there is also an emphatic yes — we’ve had two commissioning rounds so far with a total of around 315 pitches and 45 commissions. Cordelia Hebblethwaite our commissioning editor is working with range of different companies, many from the smaller end of the industry, which is great, as well as several predominantly tv or radio indies who are moving into digital.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p065b626.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p065b626.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p065b626.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p065b626.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p065b626.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p065b626.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p065b626.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p065b626.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p065b626.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;I could go on about these learnings (or lessons, as the BBC Ideas product manager Lloyd Shepherd prefers to call them :-)), but three seems a good number to stop at for now.&lt;/p&gt;
&lt;p&gt;As ever all feedback or thoughts about BBC Ideas is very welcome, so do leave a comment or get in touch.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;You can follow more of the BBC Ideas team blogs over on their &lt;a href="https://medium.com/bbc-ideas"&gt;Medium channel&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[Digital Creativity team trains photojournalists for School Report]]></title>
    <summary type="html"><![CDATA[The Digital Creativity team trained children to be photojournalists for the day.]]></summary>
    <published>2018-03-20T12:57:48+00:00</published>
    <updated>2018-03-20T12:57:48+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/b391979d-52a4-4669-bf1d-115bcf8ab9f1"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/b391979d-52a4-4669-bf1d-115bcf8ab9f1</id>
    <author>
      <name>Martin Wilson</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;BBC D+E’s Digital Creativity team helped transform youngsters from four schools into photojournalists for the day last week.&lt;/p&gt;
&lt;p&gt;It was all part of the BBC’s School Report News Day that involves 30,000 school children and 900 schools around the country. Around 130 students and 30 teaching staff from schools across the north came into Media City for workshops to enhance their digital and journalistic skills.&lt;/p&gt;
&lt;p&gt;The D+E team collaborated with the BBC Academy to run a series of workshops that ended with the youngsters taking their own photographs around the Salford base and then publishing them on to the BBC’s creativity platform Mixital.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p061qkqy.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p061qkqy.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p061qkqy.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p061qkqy.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p061qkqy.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p061qkqy.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p061qkqy.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p061qkqy.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p061qkqy.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;The theme of the day was accuracy and authenticity in news reporting – two values that are crucial to the BBC. The purpose of the workshop was how to apply the same values to tell stories accurately and fairly with photos.&lt;/p&gt;
&lt;p&gt;Academy photographer Danielle Baguley explained some of the principles of photography by taking the groups through her portfolio that included photos from sporting events to Will.i.am. The youngsters were introduced to the principles of photojournalism and how to tell a story with pictures.&lt;/p&gt;
&lt;p&gt;At the end of the workshops the youngsters were set the challenge of gathering their own photos around Media City to tell a story of urban regeneration. Back in the newsroom, the youngsters edited their photos, selected the best and wrote captions. They then published them on Mixital and &lt;a href="https://www.mixital.co.uk/channel/school-report-images"&gt;you can see them here&lt;/a&gt;. &lt;a href="https://www.mixital.co.uk/channel/school-report-images"&gt;&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[Six degrees of separation: from Bitesize to Snapchat]]></title>
    <summary type="html"><![CDATA[Our research shows us that while Bitesize is well valued for that curriculum support, the 15 - 16 age group tend towards social media for emotional support. It seemed clear that if our content was to benefit these young people then we needed it to appear in their social media feeds.]]></summary>
    <published>2017-05-25T06:44:00+00:00</published>
    <updated>2017-05-25T06:44:00+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/d5dfa43a-969c-4cb7-a35d-23c4c3470f80"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/d5dfa43a-969c-4cb7-a35d-23c4c3470f80</id>
    <author>
      <name>Jenny Chapman</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;em&gt;Reaching out to younger audiences on the social platforms that are part of their everyday lives is an important objective for the BBC. Jenny Chapman, Digital Producer in BBC Learning, explains how The Mind Set Campaign created an initiative to target a specific age group on one such platform.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;We recently produced some BBC campaign content on Snapchat and it is performing well. And Snap told us it was 'stand out and cool'. I am ridiculously pleased. And here’s why.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p053vk7b.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p053vk7b.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p053vk7b.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p053vk7b.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p053vk7b.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p053vk7b.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p053vk7b.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p053vk7b.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p053vk7b.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;a href="http://www.bbc.co.uk/guides/z3hpgdm" target="_blank"&gt;The Mind Set&lt;/a&gt; is a new BBC Learning campaign, which offers wellbeing support to the 740,000 15-16 year olds in the UK who are currently enduring the exam season. We know this group value peer advice, so our core offering is a series of videos featuring practical advice from last year’s exam sitters. We are working alongside partners such as &lt;a href="https://www.childline.org.uk/" target="_blank"&gt;Childline&lt;/a&gt;, &lt;a href="https://youngminds.org.uk/" target="_blank"&gt;YoungMinds&lt;/a&gt; and the &lt;a href="http://www.ncsyes.co.uk/" target="_blank"&gt;National Citizen Service&lt;/a&gt; to offer as much support as possible.&lt;/p&gt;
&lt;p&gt;This new content forms part of our Bitesize site - a BBC Learning product that offers curriculum content to 3–16 year olds.&lt;/p&gt;
&lt;p&gt;Our research shows us that while Bitesize is well valued for that curriculum support, this age group tend towards social media for emotional support. It seemed clear that if our content was to benefit these young people then we needed it to appear in their social media feeds. We’re used to putting content on &lt;a href="https://www.youtube.com/watch?v=zV8A3LfdCHE" target="_blank"&gt;YouTube&lt;/a&gt; and driving to our BBC sites with &lt;a href="https://www.facebook.com/bbcbitesize/" target="_blank"&gt;Facebook&lt;/a&gt;, but you don’t need to study the data too much to see that this age group are massive Snapchat users.&lt;/p&gt;
&lt;p&gt;The MindSet team decided to take our content to those users and place it natively on Snapchat in the form of three ten second videos inviting users feeling the pressure of exams to swipe up for our longer form content.&lt;/p&gt;
&lt;p&gt;The BBC may embrace new media but when it is too ‘new’ for internal protocols, it can require some tenacity...&lt;/p&gt;
&lt;p&gt;1. Our content is TV shaped. Snapchat users hold their phones upright. So our first challenge was to see if we could create high quality, on point, vertical video content (9:16) from our existing (16:9) campaign content. This format issue is actually quite a big deal for the BBC in giving younger audiences access to our archive. We got lucky on The Mind Set with our main campaign content having been shot widely with the young contributors physically in the centre. It was hard work finding other BBC content which allowed us to crop the sides mercilessly without losing impact or parts of the image itself.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p0538y1x.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p0538y1x.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p0538y1x.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p0538y1x.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p0538y1x.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p0538y1x.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p0538y1x.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p0538y1x.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p0538y1x.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;p&gt;&lt;em&gt;9:16 ratio may be great for tall images, but cropping can still be an issue!&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;2. Our campaign content is suited for BBC sites. It needed reappraising for Snapchatters’ expectations. Successful content on Snapchat is eclectic but what is clear is that it is fast, loud (sound on), colourful and very efficient in delivering a short message. (Not for Snapchat the ‘authentic’ ramblings of the YouTube vlogger)&lt;/p&gt;
&lt;p&gt;We know the rules - content on social media needs to be made for social media. However, we had no budget to commission new content (and this was an experiment) so we ruthlessly chopped, edited, paced up, annotated and turned up the sound with what we had. &lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p053vk14.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p053vk14.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p053vk14.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p053vk14.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p053vk14.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p053vk14.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p053vk14.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p053vk14.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p053vk14.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;Creating this content was actually great fun and a salutary reminder while immersed in PROCESS that content is what we do here.&lt;/p&gt;
&lt;p&gt;3. Content on a non BBC site is nick-able. More seriously and less interestingly, there are legal agreements with the people who made and performed in it. I expect paperwork will change in the future but for now we had to approach the makers, writers and actors (apart from the bats) and negotiate new permissions.&lt;/p&gt;
&lt;p&gt;4. We like people to come to the BBC. They’ve paid for it. Our social media protocols assume it. Placing content natively on social media doesn’t necessarily push users to the BBC sites and we have to weigh this up against the benefit of reaching new audiences where they are.&lt;/p&gt;
&lt;p&gt;5. We like data. We’re public service and like to show we can spend the licence fee efficiently. Snapchat’s entire USP is based around privacy. After all, their core offering is to delete your snap as soon as it is seen and that is a key part of the fun of the app. Placing BBC content on their app meant accepting that while a new audience might benefit from it, we would not have the luxury of the statistical analysis our own site offers.&lt;/p&gt;
&lt;p&gt;6. Have I mentioned the 9:16 thing?&lt;/p&gt;
&lt;p&gt;The stats are still coming in, but we already know the first of the ten-second Top Snaps got over a million views, with 12% of viewers swiping up for the longer-form content beneath. Snap consider 3 – 5% a good performer (smiley face emoji). Those who did swipe up watched the long form content way longer than average.&lt;/p&gt;
&lt;p&gt;So what did BBC Learning learn?&lt;/p&gt;
&lt;p&gt;In the end value for our audiences depends on what it always has - high quality content when and where they need it and here at the BBC we are exploring what that ‘where’ might mean.&lt;/p&gt;
&lt;p&gt;The Mindset audience are about to become licence fee payers. Increasingly this age group do not find content. It finds them.&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[Einstein & Newton: The brains behind the future of BBC Bitesize]]></title>
    <summary type="html"><![CDATA[In the past Bitesize has offered a one size fits all approach to accessing that content via its website, but in the App we sought to make it easier for students to find what they need by only showing the content that is relevant to their studies.]]></summary>
    <published>2016-10-06T13:58:00+00:00</published>
    <updated>2016-10-06T13:58:00+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/297e89b3-9709-420c-8577-6e1498f33d4a"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/297e89b3-9709-420c-8577-6e1498f33d4a</id>
    <author>
      <name>James Constable</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;em&gt;Over the last year, the Bitesize teams in Glasgow and Salford have been hard at work designing and shaping the &lt;a href="http://www.bbc.co.uk/guides/zgd682p" target="_blank"&gt;Bitesize Mobile App&lt;/a&gt; for iOS and Android. Acting Engineering Manager James Constable outlines the aims behind the app and the challenges faced by his team.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;Bitesize reaches 78% of GCSE-aged students in the UK, with 4 in 5 saying that it helped them to feel more prepared for their exams &lt;em&gt;(1)&lt;/em&gt;. It provides easy access to thousands of study guides and revision materials. In the past Bitesize has offered a one size fits all approach to accessing that content via its website, but when designing the Bitesize App we sought to make it easier for students to find what they need by only showing the content that is relevant to their studies.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p04b1c9j.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p04b1c9j.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p04b1c9j.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p04b1c9j.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p04b1c9j.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p04b1c9j.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p04b1c9j.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p04b1c9j.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p04b1c9j.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;h4&gt;The Challenges&lt;/h4&gt;
&lt;p&gt;Implementing these requirements offered some particular challenges to the team. The &lt;a href="http://www.bbc.co.uk/bitesize" target="_blank"&gt;Bitesize Website&lt;/a&gt; talks to a &lt;a href="http://www.bbc.co.uk/blogs/internet/entries/31966f38-2164-31ac-bbce-59257bf97c79" target="_blank"&gt;varied collection of services&lt;/a&gt; to get information about the curriculum and the content associated with it. This includes our content management system, the BBC video metadata API, a triple-store that contains the &lt;a href="https://github.com/bbc/curriculum-data" target="_blank"&gt;curriculum ontology&lt;/a&gt;, the BBC Quiz engine ACME as well as our own propriety services that render equations and provide access to binary assets.&lt;/p&gt;
&lt;p&gt;Having the App talk directly to all of these services would have increased complexity massively, and require us to reimplement the business logic for Bitesize in not only PHP (which the Bitesize Website is built using) but also Objective-C (for iOS) and Java (for Android).&lt;/p&gt;
&lt;p&gt;With the additional desire to make this experience personalised for the user we knew it was time to build a service that would provide a solid foundation to build our Apps on and abstract those complications into a single place.&lt;/p&gt;
&lt;h4&gt;The Solution&lt;/h4&gt;
&lt;p&gt;Our solution was to build out a new data service layer for both versions of the App to talk to that would abstract away that complex business logic, or the need to talk to multiple different sources to retrieve and combine data.&lt;/p&gt;
&lt;p&gt;Following a microservice architecture, we elected to split the data service layer in two - one for all of the content needs, and another to provide the layer of personalisation - and we called those services Einstein and Newton. The Bitesize Web Services team in Glasgow then set about implementing this strategy.&lt;/p&gt;
&lt;p&gt;Each of the data services was designed as a &lt;a href="https://en.wikipedia.org/wiki/Representational_state_transfer" target="_blank"&gt;RESTful API&lt;/a&gt; that followed a set of API Design Principles we defined. We wanted them to be generic and extensible so we could build new features atop of them and ensure (as much as possible) that the effort to implement those features was minimised across our platforms.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p04b1qbh.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p04b1qbh.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p04b1qbh.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p04b1qbh.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p04b1qbh.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p04b1qbh.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p04b1qbh.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p04b1qbh.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p04b1qbh.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;h4&gt;Technical Details&lt;/h4&gt;
&lt;p&gt;Over the last 18 months we’ve been moving our application and data services away from the BBC’s &lt;a href="http://www.bbc.co.uk/developer/theplatform.html" target="_blank"&gt;Forge infrastructure&lt;/a&gt; and towards cloud hosting services. Cloud hosting provides us with the flexibility to use modern technologies that we can develop quicker, deploy quicker and - most importantly - get value to BBC audiences quicker.&lt;/p&gt;
&lt;p&gt;Our team had previous experience of transitioning applications to cloud hosting, using a relatively new platform - Node.JS. We elected to do that again for Einstein and Newton. Node.JS allowed us to lean on the JavaScript expertise that was already abundant in our team and the asynchronous, non-blocking paradigms it provides were perfect for a service that had to be in contact with many other BBC services for each request.&lt;/p&gt;
&lt;p&gt;The traffic patterns around the Bitesize app are such that it isn’t always under heavy load. There are distinct peaks around exam time, and troughs around the summer holidays. Hosting the service on the AWS cloud means that we can reduce the infrastructure to save money during these quiet periods, but quickly scale up as demand increases.&lt;/p&gt;
&lt;h4&gt;A little help from our friends&lt;/h4&gt;
&lt;p&gt;While building Einstein and Newton we leant on a number of services provided by other teams in the BBC to help provide some of the infrastructure we needed.&lt;/p&gt;
&lt;p&gt;The &lt;a href="http://www.bbc.co.uk/blogs/aboutthebbc/entries/46a896ea-e587-4c63-ae7e-9781bca58dd3" target="_blank"&gt;MyBBC&lt;/a&gt; platform provided us with an easy to integrate way of handling user authentication and storing user preferences in their ID and UAS services.&lt;/p&gt;
&lt;p&gt;Our colleagues in Sport provide a system called Morph that provides us with a simple and effective way of pulling data from our database services, combining it and effectively caching that data.&lt;/p&gt;
&lt;p&gt;The &lt;a href="http://www.bbc.co.uk/blogs/internet/entries/73c4f082-095f-3bf3-b4f0-53900e34a72b" target="_blank"&gt;Platform Services&lt;/a&gt; team provide a ready to use API management tool that allowed us to implement key based profiling of our data services, allowing us to effectively monitor their use and understand the their performance.&lt;/p&gt;
&lt;p&gt;Effectively combining these existing services meant that we were able to build out our service layer quickly - combining a lot of great work the BBC has already done, with our own team’s expertise in the UK curriculum and educational data models.&lt;/p&gt;
&lt;h4&gt;Ensuring quality&lt;/h4&gt;
&lt;p&gt;Right at the start of the project our Engineering team got together to discuss how we would go about testing these services. Traditionally the Bitesize team follows &lt;a href="https://en.wikipedia.org/wiki/%20Test-driven_development" target="_blank"&gt;TDD&lt;/a&gt; and &lt;a href="https://en.wikipedia.org/wiki/Behavior-drive%20n_development" target="_blank"&gt;BDD&lt;/a&gt; principles when writing new features. This is backed up by a manual QA process where those features are double-checked to ensure that they implement the required functionality and meet the agreed specification.&lt;/p&gt;
&lt;p&gt;APIs offer a unique challenge for testing. There isn’t a nice, visible interface to compare to a UX specification - the data is exposed as JSON structures that are primarily strings of text.&lt;/p&gt;
&lt;p&gt;We decided that we didn’t want to submit our Test team to manually inspecting JSON structures and instead elected to have our developers and testers pair together to write integration tests for each feature that get run whenever we deploy a new version of the API.&lt;/p&gt;
&lt;p&gt;We coupled this with an API spec written in &lt;a href="https://apiblueprint.org/" target="_blank"&gt;API Blueprint&lt;/a&gt;. This open standard allowed us to communicate the API requirements and quickly provide mock services to the team building the native clients.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p04b1sjg.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p04b1sjg.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p04b1sjg.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p04b1sjg.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p04b1sjg.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p04b1sjg.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p04b1sjg.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p04b1sjg.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p04b1sjg.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;h4&gt;Automation all the way&lt;/h4&gt;
&lt;p&gt;One of the big changes we made was to go from manually releasing our code between integration, test and live environments to a fully automated deployment process.&lt;/p&gt;
&lt;p&gt;Using &lt;a href="https://jenkins.io/" target="_blank"&gt;Jenkins&lt;/a&gt;, an open source Continuous Integration platform, we were able to set up a pipeline that runs our &lt;a href="https://en.wikipedia.org/wiki/Unit_testing" target="_blank"&gt;unit tests&lt;/a&gt;, and performs &lt;a href="https://en.wikipedia.org/wiki/Static_program_analysis" target="_blank"&gt;static analysis&lt;/a&gt; on any changes to the code. If these checks pass then we automatically promote the code to the next environment and run a suite of integration tests. This ensures that what is deployed continues to meet the requirements of clients interacting with the API.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p04b1sw1.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p04b1sw1.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p04b1sw1.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p04b1sw1.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p04b1sw1.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p04b1sw1.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p04b1sw1.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p04b1sw1.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p04b1sw1.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;We also run the integration tests every night against each environment. Notifications of these appear in our Slack channel, allowing us to see immediately every morning whether any problems have occurred since the last deployment.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p04b1t7t.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p04b1t7t.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p04b1t7t.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p04b1t7t.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p04b1t7t.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p04b1t7t.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p04b1t7t.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p04b1t7t.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p04b1t7t.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;h4&gt;The Next Steps&lt;/h4&gt;
&lt;p&gt;As the App evolves we’ll add more features and expand the capabilities of these APIs. We’ll also be updating the Bitesize Website to bring the new features that the App provides to our web users - reusing the platform provided by Einstein and Newton to simplify that process.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;(1) Based on research conducted by EdComs Research who specialise in research with teachers, learners of all ages, parents and education stakeholders.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[BBC Online Briefing Winter 2014: Interacting, with BBC Knowledge and Learning]]></title>
    <summary type="html"><![CDATA[it was great to return to the BBC Online Briefing to talk to digital suppliers about the Our World War interactive video project.]]></summary>
    <published>2014-12-09T11:11:32+00:00</published>
    <updated>2014-12-09T11:11:32+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/213936b2-748d-32d1-bd37-dc317a04bd49"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/213936b2-748d-32d1-bd37-dc317a04bd49</id>
    <author>
      <name>Tim Plyming</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;it was great to return to the &lt;a href="http://www.bbc.co.uk/blogs/internet/posts/BBC-Online-Briefing-November-2014"&gt;BBC Online Briefing &lt;/a&gt;to talk to digital suppliers about the Our World War interactive video project.&lt;/p&gt;&lt;p&gt;To create this interactive episode we merged broadcast quality film footage with the visual grammar of gaming and animation in the form of digital “motion-comics”. By using techniques found in modern gaming experiences we set out to create something very new, a hybrid between a TV programme and a game experience – an interactive drama.&lt;/p&gt;&lt;p&gt;This innovative project was a BBC North based partnership between BBC Learning and Open Games teams working with MI, an interactive games agency based in Salford. You can read more about how that team developed this in &lt;a href="http://www.bbc.co.uk/blogs/internet/posts/The-making-of-Our-World-War-One-interactive-guide"&gt;Will Storer’s blog post&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;You can also try out our latest Interactive video &lt;a href="http://www.footballersunited.co.uk/"&gt;Footballers United &lt;/a&gt;&lt;/p&gt;&lt;p&gt;My colleague &lt;a href="http://www.bbc.co.uk/blogs/internet/authors/Chris_Sizemore"&gt;Chris Sizemore &lt;/a&gt;takes over the baton in the video below to talk about the motivations and ethos behind the &lt;a href="http://www.bbc.co.uk/iwonder"&gt;BBC iWonder &lt;/a&gt;interactive guides and what plans he has for them over the next 6-12 months.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;div id="smp-0" class="smp"&gt;
        &lt;div class="smp__overlay"&gt;
            &lt;div class="smp__message js-loading-message delta"&gt;
                &lt;noscript&gt;You must enable javascript to play content&lt;/noscript&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;&lt;p&gt;
            &lt;em&gt;Tim Plyming and Chris Sizemore discuss the Our World War interactive video and iWonder&lt;/em&gt;
        &lt;/p&gt;&lt;/div&gt;&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;em&gt;Tim Plyming, Executive Producer, BBC Knowledge &amp; Learning&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[Connected Studio for Research and Education Space: Improving access to online educational resources]]></title>
    <summary type="html"><![CDATA[A team of developers and data architects have been building a new system that will bring together linked open data catalogues from a wide range of online educational resources, improving access for teaching, learning and research.]]></summary>
    <published>2014-08-04T08:46:37+00:00</published>
    <updated>2014-08-04T08:46:37+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/8c22baf7-d3ab-3b48-8818-04fe4fbd993e"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/8c22baf7-d3ab-3b48-8818-04fe4fbd993e</id>
    <author>
      <name>Mo McRoberts</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;Since my last post I've become Chief Technical Architect - Archives &amp; Digital Public Space, at the BBC. &lt;/p&gt;&lt;p&gt;For the past few months I’ve been working with a team of developers and data architects to build a new system that will bring together &lt;a href="http://en.wikipedia.org/wiki/Linked_Open_Data"&gt;linked open data &lt;/a&gt;catalogues from a wide range of online educational resources, improving access for teaching, learning and research.&lt;/p&gt;&lt;p&gt;Called &lt;a href="https://bbcarchdev.github.io/inside-acropolis/"&gt;Acropolis&lt;/a&gt;, it is the main technical component of an initiative called the &lt;a href="http://bbcarchdev.github.io/res/"&gt;Research and Education Space &lt;/a&gt;(RES) which the BBC is working on in partnership with&lt;a href="http://www.jisc.ac.uk/"&gt; Jisc &lt;/a&gt;and the &lt;a href="http://bufvc.ac.uk/"&gt;British Universities Film and Video Council&lt;/a&gt;. It will bring together material relevant to education and research at all levels, from primary schools to post-doctoral research, indexing documents, images, sound and video from collections of material that are freely available or licensed for use in education.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p0245t46.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p0245t46.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p0245t46.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p0245t46.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p0245t46.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p0245t46.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p0245t46.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p0245t46.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p0245t46.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;p&gt;&lt;em&gt;The Acropolis platform will collect and index linked data describing a range of assets&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;RES provides an open, accessible catalogue of online educational resources that can be used in teaching, either directly within classroom materials and on electronic whiteboards or in materials developed by educational publishers and software providers.&lt;/p&gt;&lt;p&gt;But having great materials and a comprehensive catalogue is only the start: the real value of RES will come when there are products and tools built on top of the platform that can be used by teachers, students, researchers and learners of all ages to enhance activity in the classroom, laboratory and library. &lt;/p&gt;&lt;p&gt;We want to be led by developer’s expertise in how the data and the digital media can be presented, creating online experiences that will inspire learners, teachers and researchers by using applications built on the RES platform, and we want to encourage developers to build new products and services.&lt;/p&gt;&lt;p&gt;So I’m pleased to tell you that today we’re announcing a BBC Connected Studio focused on RES, inviting developers to find out more about our ambitions and pitch ideas for products that can be built on top of the RES platform. We have issued a &lt;a href="http://downloads.bbc.co.uk/connectedstudio/res_connected_studio_brief.pdf"&gt;Creative Brief &lt;/a&gt;that gives more detail about what we’re looking for, and I’d encourage you to read this and &lt;a href="https://www.eventbrite.co.uk/e/bbc-connected-studio-research-and-education-space-tickets-12395807193%20"&gt;register&lt;/a&gt; for our &lt;a href="http://www.bbc.co.uk/partnersandsuppliers/connectedstudio/events/res.html"&gt;Connected Studio Briefing&lt;/a&gt;, which is happening at &lt;a href="http://shoreditchworks.com/villagehall/"&gt;Shoreditch Village Hall &lt;/a&gt;at 5.30pm on September 4th and will explain the process in detail—although if you can’t make it, all of the information will be posted online on September 5th.&lt;/p&gt;&lt;p&gt;The main event—a Development Studio—happens on September 29th and 30th, also at Shoreditch Village Hall. During the two days you’ll be given the opportunity to develop an idea and pitch it to a team of judges, and we’ll choose which of the ideas will be funded to take forward as audience-facing pilots. To be considered for a place at the Development Studio, you’ll need to &lt;a href="https://bbc.bravosolution.co.uk/web/login.shtml"&gt;register as a supplier to the BBC on our portal &lt;/a&gt;and complete a Pre-Qualification Questionnaire (PQQ) which will be published towards the end of August.&lt;/p&gt;&lt;p&gt;In the past a number of products have made it through the Connected Studio process, including &lt;a href="https://twitter.com/BBCWeatherBot"&gt;BBC Weather Bot &lt;/a&gt;and &lt;a href="http://www.bbc.co.uk/blogs/internet/posts/Connected-Studio-Referend-erm-A-mobile-first-platform-for-young-indyref-voters"&gt;Referend-erm?&lt;/a&gt;, and I hope that we’ll find some RES-shaped ideas that can inspire others to build on top of our new platform as it rolls out during 2015.&lt;/p&gt;&lt;p&gt;The RES partners all believe that there’s unlocked potential for online material to be used in teaching and research, and I'm looking forward seeing some great ideas for how teaching, research and learning can benefit from improved access to online resources.&lt;/p&gt;&lt;p&gt;&lt;em&gt;Mo McRoberts is Chief Technical Architect, Archive and Digital Public Space, BBC&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[Connected Studio: Coding for Teenagers Build Studio]]></title>
    <summary type="html"><![CDATA[Another had a young woman programmer, fingertips seemingly glued to her device, churning out code as if she was typing a well-rehearsed story.]]></summary>
    <published>2014-07-24T09:58:15+00:00</published>
    <updated>2014-07-24T09:58:15+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/78465ea5-d9dc-3284-a91b-f4d1bbc2784f"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/78465ea5-d9dc-3284-a91b-f4d1bbc2784f</id>
    <author>
      <name>Kerensa Jennings</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;I don’t know who was more excited - the seven shortlisted teams who had beaten thirty other fantastic projects to be selected for the Build Studio event. Or us – the BBC &lt;a href="http://www.bbc.co.uk/partnersandsuppliers/connectedstudio/events/coding.html"&gt;Coding for Teenagers &lt;/a&gt;project team. Either way, the energy and anticipation in the room were palpable.&lt;/p&gt;&lt;p&gt;For anyone unaware of what we’re up to – we are in the middle of a &lt;a href="http://www.bbc.co.uk/partnersandsuppliers/connectedstudio/"&gt;Connected Studio&lt;/a&gt; &lt;a href="http://www.bbc.co.uk/blogs/internet/posts/Connected-Studio-inspiring-the-next-generation-coding-for-teenagers"&gt;challenge&lt;/a&gt;. We set &lt;a href="http://downloads.bbc.co.uk/connectedstudio/connected_studio_coding_project_brief.pdf"&gt;a brief &lt;/a&gt;which asked: what’s the best digital solution we could create to inspire younger teenagers – and especially girls - to discover coding in an appealing and entertaining way?&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p023h5c9.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p023h5c9.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p023h5c9.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p023h5c9.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p023h5c9.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p023h5c9.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p023h5c9.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p023h5c9.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p023h5c9.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;The &lt;a href="http://www.bbc.co.uk/partnersandsuppliers/connectedstudio/howitworks/build_studio.html"&gt;Build Studio &lt;/a&gt;bit was a two-day prototype-building extravaganza. As Day One unfolded, each of the teams set up camp on the top floor of a sun-filled upper floor in a building at BBC MediaCity UK. Outside, views of Salford stretched for miles and miles. Inside, flipcharts were being set up, notebooks laid out – and in one case – a tailor’s dummy put in place.&lt;/p&gt;&lt;p&gt;The air began to hum with activity as each team started to think through how best to bring their ideas to life in a prototype of some sort. The countdown began. By the end of the next day, the teams would be pitching their prototypes and strategies in just ten minutes to win the chance to go through to the development stage.&lt;/p&gt;&lt;p&gt;So. Day One. The judging teams got together and re-evaluated the shortlisted projects, agreeing key pieces of guidance and direction we should give each of the groups. We then began a slow rotation around the room, stopping off at each project zone. Inevitably, we’d gathered into what our planner had called a ‘huddle’. One by one, we chatted to each group, answered any questions they had and tried to give them steers on what we thought would be useful to focus on.&lt;/p&gt;&lt;p&gt;The first time I went to BBC North, I was dazzled by the buildings and the vibrancy of the place. It’s one of the most creative places in the BBC – and with its jazzy monochrome carpets and liquorice allsorts colour scheme, how could anyone fail to be inspired? It certainly seemed to be working on the teams. Fuelled by coffee and cookies, there was a festive spirit in the air as the pace picked up through the afternoon.&lt;/p&gt;&lt;p&gt;One group - of awe-inspiring teenage developers, as it happens – was busy tearing up bits of paper and moving them around a makeshift grid as they plotted moves and mechanics.&lt;/p&gt;&lt;p&gt;Another had a young woman programmer, fingertips seemingly glued to her device, churning out code as if she was typing a well-rehearsed story.&lt;/p&gt;&lt;p&gt;Perched on the edge of a sofa in another of the teams was a chap with a warm cup of water and a handful of white, melting stuff that he was mysteriously dipping into the liquid. To soften, apparently. He didn’t give away much at that point so for the rest of us it seemed either cool and enigmatic or slightly bonkers.&lt;/p&gt;&lt;p&gt;Part way through the afternoon, the teams got to meet target audience groups to test theories and get some early feedback. The idea was to give them the chance to hone their projects with real, live audience insight.&lt;/p&gt;&lt;p&gt;The hours whizzed by and before we knew it, the July sun began to set. Somewhat fittingly, a rather lovely rainbow arced across the sky. We gathered around in a circle and gave each other an update on progress so far. Tired but enthused, we packed everyone off for a well-deserved rest and arranged to meet up bright and early the next day.&lt;/p&gt;&lt;p&gt;Day Two had a frenetic yet excited edge to it. The judging huddle circled around again and reminded everyone to focus on two key things – how was their proposition going to appeal to our target audience? And what was it about their idea that would be somehow enhanced by working with the BBC?&lt;/p&gt;&lt;p&gt;As four o’clock loomed large, the teams practiced their pitches and reached for one last gulp of coffee. It was time to present the prototypes.&lt;/p&gt;&lt;p&gt;Dragon’s Den style, we judges lined up on the front row. Needless to say, we weren’t disappointed. It was quite extraordinary what the teams had managed to accomplish in just two days. And I loved the different ways they showcased their ideas. &lt;/p&gt;&lt;p&gt;One group used eye-catchingly creative pictures they had taken of themselves to illustrate one application of their work; another gave us a nail-biting live demo using the co-ordinates of the Quay House building. There was the group that had managed to get access to Radio 1 DJ Greg James to make a polished video as part of their presentation. Another team cleverly manipulated BBC assets to brilliant effect. One project gave us a really smart insight into their thinking into what might appeal to teenage girls by showing the link between their idea and the popularity of loom bands. Then there was the project that lit up the stage with some twinkly lights; and the team who showcased how their idea could be skinned for different applications with different audience groups across BBC channels and services. All in all a roll call of coding creativity.&lt;/p&gt;&lt;p&gt;Us judges are getting together soon to review the pitches and make our bets. I can assure you of one thing – it isn’t going to be easy.&lt;/p&gt;&lt;p&gt;As I said to the teams at the end of the sessions – they’ve given us such a challenging task, choosing who goes through to the next stage is a rather nice problem to have. I’ll be back soon to let you know how we get on. Watch this space…&lt;/p&gt;&lt;p&gt;&lt;em&gt;Kerensa Jennings is Head of Strategic Delivery, BBC&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[BBC iWonder: why did we start with a question?]]></title>
    <summary type="html"><![CDATA[This is a blog post about the development of the recently launched BBC iWonder brand. It’s about how we took user centred designs, a strong editorial proposition and product leadership and created a brand.]]></summary>
    <published>2014-07-14T06:56:26+00:00</published>
    <updated>2014-07-14T06:56:26+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/c5eda671-e801-343e-b7f4-03b4c80d7d34"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/c5eda671-e801-343e-b7f4-03b4c80d7d34</id>
    <author>
      <name>Paul Crowley</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;My name is Paul Crowley. Until recently, I headed up the User Experience &amp; Design team on BBC Knowledge &amp; Learning. &lt;/p&gt;&lt;p&gt;And this is a blog post about the development of the &lt;a href="http://www.bbc.co.uk/iwonder"&gt;BBC iWonder&lt;/a&gt; brand which was &lt;a href="http://www.bbc.co.uk/blogs/internet/posts/BBC-iWonder-home-page-launched"&gt;launched in March of this year&lt;/a&gt;. It’s about how we took user centred designs, a strong editorial proposition and product leadership and created a brand.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022kcy2.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022kcy2.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022kcy2.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022kcy2.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022kcy2.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022kcy2.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022kcy2.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022kcy2.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022kcy2.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;Half-way through 2013, the editorial, product and technical work for the new K&amp;L product had been in development for some time. We had a good idea of how things would work. We mostly understood the content ambitions. We knew that the entire proposition would be fully responsive, and would work on all devices. We knew that the heart of the proposition was our new, interactive guides.&lt;/p&gt;&lt;p&gt;The User Experience &amp; Design team had been working on the user experience and design for some time. Knowing what we did, we’d already come a long way. &lt;/p&gt;&lt;p&gt;But, we were starting to struggle. &lt;/p&gt;&lt;p&gt;We knew what the new product did. We knew who we wanted to use it. But we couldn’t articulate what our audience should be saying about our new product when they experienced it. We didn’t know how it was supposed to make you feel.&lt;/p&gt;&lt;p&gt;A good deal of investigative and speculative work had already been done to bring concepts to life. But without a definitive personality or attitude for the new brand we couldn’t assess the effectiveness of it. We knew we still had a way to go, but we needed to agree on where we were going.&lt;/p&gt;&lt;p&gt;Then the name for the new product was finalised: &lt;strong&gt;iWonder&lt;/strong&gt;. &lt;/p&gt;&lt;p&gt;With the name confirmed, some thought that the development of the brand and visual identity would be a straightforward thing to finalise. We already had detailed wireframes for the product. Surely we just needed to choose the best of our concepts from the previous exploration work and apply them to the new name, right?&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022k99y.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022k99y.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022k99y.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022k99y.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022k99y.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022k99y.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022k99y.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022k99y.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022k99y.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;Wrong. We knew we could do much better. &lt;/p&gt;&lt;p&gt;We’d already made progress on ideas for the visual identity with the agency Studio Output. However, without confidence in what the brand was, we’d generated lots of great concepts, but no consensus. &lt;/p&gt;&lt;p&gt;This was an important moment. When many expected us to charge ahead, we stopped. We questioned. We asked ‘what do we want the iWonder brand to be? What do we value? What is the essence of its personality? How will we make others feel when we get this right? &lt;/p&gt;&lt;p&gt;If we knew the answers to these questions, we’d know what ‘better’ meant in objective terms. We needed words that described the brand’s personality. Words that drove decisions. Words we could draw. Put simply, words that described the essence of the brand in a way that would align us all and take subjectivity out of the equation. If the true test of a brand is the way that the end user feels about their experience, these ‘words we could draw’ would be our blueprint. People relate to other people, so we needed to describe iWonder like we would a person. How would it behave, how would it appear, how would it make you feel? Getting this right wouldn’t just help with the visual design, it would help us set the tone for all our output – from the design of experiences right through to the tone of voice in our tweets and the way that we wrote our guides. We wouldn’t just have a visual identity, we’d have a rounded and descriptive personality that could be flexed to different contexts, and applied consistently to everything we do.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Brilliantly curious&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;With clarity on what was missing, I brought in Brand Strategy Consultants, Elmwood to help us shape the iWonder brand.&lt;/p&gt;&lt;p&gt;There was pressure to show progress, and we were short of time. This ‘reboot’ meant spending time on deliverables that appeared tangential to the ‘requirements’. In retrospect I’m delighted that I pushed for this.&lt;/p&gt;&lt;p&gt;Building on the original product vision of ‘keeping the UK curious’, we worked with Elmwood to develop a set of brand values (edited below for length) we could all agree on. &lt;/p&gt;&lt;p&gt;We wanted to describe iWonder like we would a person, so acting as the brand, we’d be:&lt;/p&gt;&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Hungry to discover more.&lt;/strong&gt; We, like our users, are boundlessly curious, we have an inquisitive nature which is at the heart of what we do.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Independent thinking.&lt;/strong&gt; We support our audience, giving them confidence to determine their own conclusions in the quickest, most effective and entertaining way possible.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Championing different perspectives&lt;/strong&gt;. We see the world differently. There are many ways to look at a subject and we like to provoke. Itʼs great to be curious.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;From here, we settled on words that described how iWonder should be perceived:&lt;/p&gt;&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Fascinating.&lt;/strong&gt; Weʼre charismatic to be around so we want to entertain as well as stimulate and delight our users..&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Brave.&lt;/strong&gt; We want people to have faith and trust in the information we give them so itʼs important for us to be bold in our service.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Conversational.&lt;/strong&gt; We donʼt want our audience to feel like theyʼre being lectured. We are friendly, accessible and above all great company.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;Our impact. iWonder should make audiences feel:&lt;/p&gt;&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Intrigued.&lt;/strong&gt; We want to stimulate our audienceʼs curiosity and create an experience that leaves them wanting to come back for more.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Enlightened&lt;/strong&gt;. We want our users to walk away from iWonder with a sense of wonderment, enriched and smarter than they were before. What great social currency.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Captivated.&lt;/strong&gt; We want to help our audience to enjoy an effortless, entertaining experience. Every aspect of our user engagement should be rewarding.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;And finally, iWonder’s cause: &lt;/p&gt;&lt;p&gt;&lt;strong&gt;On a journey&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;We see the world differently. Weʼre endlessly curious, questioning and provocative.&lt;/p&gt;&lt;p&gt;iWonder has a streak of child like wonderment running through the centre of it. Every experience should be something new, surprising and delighting as though experienced for the first time.&lt;/p&gt;&lt;p&gt;There are many ways to look at a subject and we represent all views. We like to share, we like to provoke, we like to challenge normative thinking. Itʼs good to be curious - we take people on a ride which helps them feel at ease with asking questions.&lt;/p&gt;&lt;p&gt;Weʼre a brand which believes in actions too. Interactivity is at the heart of what we do. We are exciting, enlightening and vibrant. Weʼre about doing not just viewing. &lt;strong&gt;We are Brilliantly Curious.&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Brilliantly Curious&lt;/em&gt;. This deceptively simple phrase became the pivotal and foundational element. It gave us the ‘words we could draw.’ &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Back to the drawing board&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;With the brand personality finalised, Tom Bradley and Bob Hamilton continued the work with Studio Output to finalise the user experience and visual design work. Starting with the iWonder logotype, they took time to review all of the previous research and concepts, and added in new ideas to create a number of concepts for a reboot. &lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022kczt.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022kczt.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022kczt.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022kczt.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022kczt.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022kczt.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022kczt.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022kczt.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022kczt.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;strong&gt;The front-runner&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;One of our success criteria for the logotype was that it contained something distinctive, recognisable and usable as a call-to-action when promoting content on other BBC sites; much like the play button inside the iPlayer marque.&lt;/p&gt;&lt;p&gt;The standout concept from the previous work integrated a question mark. This expressed the brand personality most clearly. After all a question is a direct expression of curiosity.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022kd0z.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022kd0z.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022kd0z.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022kd0z.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022kd0z.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022kd0z.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022kd0z.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022kd0z.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022kd0z.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;We liked this approach. The dot on the question mark had been plucked from the ‘o’ above – representing curiosity literally, with a slightly curious implementation. However, the typeface (Tondo) was too playful to be appropriate to the entire breadth and tone of iWonder content. There was the essence of an idea here, but that typeface needed to go.&lt;/p&gt;&lt;p&gt;We took the question mark approach and redrew it to better align with the &lt;a href="http://www.bbc.co.uk/gel"&gt;GEL&lt;/a&gt; aesthetic of our other online products. We started with Helvetica.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022k8x0.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022k8x0.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022k8x0.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022k8x0.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022k8x0.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022k8x0.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022k8x0.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022k8x0.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022k8x0.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;With a few modifications, we were pretty happy. We talked about whether the cut-away in the ‘W’ was one trick too many, but we liked the way it made the letter feel less dominant. It let the name flow, leading you to read it like the start of a question and not two separate sentences: ‘I wonder, not: I. Wonder’. It also added intricacy, or more specifically ‘curiosity’ to the overall marque. It wasn’t what you’d expect, yet it scanned well.&lt;/p&gt;&lt;p&gt;Still, we couldn’t help feeling that we needed a font with a little more personality. Referring again to the Elmwood work, Helvetica felt too clinical, too functional to support the fascinating, brave, conversational tone we were after.&lt;/p&gt;&lt;p&gt;Eventually we found a font named Sharp Sans (designed by Lucas Sharp) which hit the mark. It expressed the desired personality AND it sat well with the BBC’s GEL aesthetic.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022k8v9.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022k8v9.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022k8v9.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022k8v9.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022k8v9.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022k8v9.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022k8v9.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022k8v9.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022k8v9.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;With the decision made, we then commissioned some modifications to help the font sit even more firmly within the overall BBC GEL experience. The new font, Curious Sans, is now embedded inside all iWonder pages and used for titles. We’re the first BBC digital product to do this.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;More than just a marque&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Of course the brand is much more than a logotype. We needed to think about expressing the brand across the visual, editorial and functional aspects of the product.&lt;/p&gt;&lt;p&gt;We started with the core of the new product - the iWonder guide. We wanted to make sure the editorial proposition and the user experience around it was aligned to the brand personality. Visually and editorially, the experience needed to be ‘brilliantly curious.’&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Hook, narrative, reflection&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;We started with the use of photography. Tying image selection into the fabric of the guides, different types of imagery were to be specifically selected for each stage of the experience.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Hook&lt;/strong&gt; images are used for promotion, or at the start of the guide. They act as a means of picquing user curiosity. We want them to lean forwards and be seduced by the content. They are deliberately, provocatively selected and cropped so as to invite attention. What is this? What can’t I see? Show me more.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Narrative&lt;/strong&gt; images then help to tell the overall story. They draw the user through the content and help explain or illustrate information, ideas and concepts. &lt;/p&gt;&lt;p&gt;Finally, &lt;strong&gt;Reflection&lt;/strong&gt; images (literally) zoom out to show the bigger picture. They emphasise the new perspective that has been arrived at by working through a guide. &lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022k8zl.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022k8zl.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022k8zl.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022k8zl.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022k8zl.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022k8zl.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022k8zl.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022k8zl.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022k8zl.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;strong&gt;The colour journey&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Colour was also an essential step in bringing our brand to life. In the absence of a brand personality, earlier uses of colour had veered towards a neutral, de-saturated palette. This was largely due to lack of confidence in what we wished to convey. This changed completely with the development of the brand personality. ‘Brilliantly curious’ didn’t just describe a cerebral quality, but a visceral, visual, and vibrant one. To support the brand, colour needed to be bright, bold, saturated. Distinctive and sometime clashing colours would embody the brand’s personality.&lt;/p&gt;&lt;p&gt;We also decided that we would use colour to convey visually, the learning journey at the heart of guides. As the user works through the guide, the accent colours change subtly from dark to light. The experience is literally enlightening.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022kcw4.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022kcw4.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022kcw4.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022kcw4.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022kcw4.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022kcw4.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022kcw4.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022kcw4.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022kcw4.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;We didn’t choose just one gradient either. ‘Brilliantly curious’ suggested an explosion of colour. We created multiple, inter-changeable colourways. We could choose colours appropriate to the tone of the material. We could ensure that the iWonder homepage would be vibrant, bold, brilliant. Colour wasn’t to be tied to the iWonder logotype. In fact, this would be white – and deferential to the content. The colour in iWonder would be tied to the experience.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022k8y9.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022k8y9.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022k8y9.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022k8y9.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022k8y9.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022k8y9.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022k8y9.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022k8y9.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022k8y9.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;strong&gt;Steps on a journey&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;iWonder Guides are created as a series of distinct steps. Content can be consumed in a measured and productive way.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022kcx1.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022kcx1.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022kcx1.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022kcx1.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022kcx1.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022kcx1.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022kcx1.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022kcx1.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022kcx1.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;With this in mind, we developed a visual numerical system. It was derived from the iWonder marque to help the user understand where they are within an overarching journey. Because the final moment of reflection at the end of guide is an integrated and key part of the whole experience, the representation of the final step literally 'completes the circle’.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Putting it all together&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;With the design work mostly finalised, the final challenge was to take the visual system for the brand into the technical development of the Knowledge and Learning product. With the launch date ever closer, this meant balancing the brand specific elements with other editorial priorities that were being worked on.&lt;/p&gt;&lt;p&gt;We worked closely with development teams to agree upon the foundations of the brand that were vital, andthrough these discussions, further refined many of the visual design treatments.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p022mpyy.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p022mpyy.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p022mpyy.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p022mpyy.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p022mpyy.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p022mpyy.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p022mpyy.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p022mpyy.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p022mpyy.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;It’s an iterative process, and we still have plenty to work on. But we’re very pleased with the way our first few guides and the new iWonder homepage have brought the brand to life.&lt;/p&gt;&lt;p&gt;Looking back at the journey we’ve been on, I’m delighted with the outcome. I’m also delighted that like our brand, we took the opportunity to stop, to question.&lt;/p&gt;&lt;p&gt;The iWonder proposition is the result of the hard work of a great many BBC staff. The development of the iWonder brand itself was led by:&lt;/p&gt;&lt;ul&gt;
&lt;li&gt;Tom Bradley, Creative Director&lt;/li&gt;
&lt;li&gt;Bob Hamilton, Senior User Experience Designer&lt;/li&gt;
&lt;li&gt;Janine Horsfall and Steph Rowbottom, BBC Marketing and Audiences&lt;/li&gt;
&lt;li&gt;Ian Myatt, Head of Product for Knowledge &amp; Learning&lt;/li&gt;
&lt;li&gt;Andy Pipes, Executive Product Manager for Knowledge &amp; Learning&lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.studio-output.com/"&gt;Studio Output&lt;/a&gt;. User Experience and Visual Design Consultants &lt;/li&gt;
&lt;li&gt;
&lt;a href="http://www.elmwood.com/"&gt;Elmwood&lt;/a&gt;. Brand Strategy Consultants&lt;/li&gt;
&lt;li&gt;And myself.&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;em&gt;Paul Crowley is the Head of User Experience &amp; Design for myBBC, GEL, Homepage and Content Discovery.&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[Connected Studio: One Planet]]></title>
    <summary type="html"><![CDATA[Using digital technologies and experience to immerse audiences deeper into natural arenas, heightening our audience’s emotional connection to our planet & the ingenious animals we share it with.]]></summary>
    <published>2014-05-19T08:48:47+00:00</published>
    <updated>2014-05-19T08:48:47+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/3ee70f4a-c981-3aad-bd8b-8731e6de8529"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/3ee70f4a-c981-3aad-bd8b-8731e6de8529</id>
    <author>
      <name>Eva Appelbaum</name>
    </author>
    <content type="html">&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p01zcb8c.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p01zcb8c.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p01zcb8c.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p01zcb8c.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p01zcb8c.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p01zcb8c.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p01zcb8c.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p01zcb8c.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p01zcb8c.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;Last week I had knee surgery and as they were preparing the anaesthesia one of the medical team causally asked me what I do. Rather than get into a long-winded explanation about&lt;a href="http://en.wikipedia.org/wiki/Digital_transformation"&gt; digital transformation&lt;/a&gt;, I told them that I am currently working with the people who make BBC Natural History programmes, like &lt;a href="http://www.bbc.co.uk/programmes/b006mywy"&gt;Planet Earth&lt;/a&gt;, &lt;a href="http://www.bbc.co.uk/programmes/p010jc6p"&gt;Africa&lt;/a&gt;, &lt;a href="http://www.bbc.co.uk/programmes/b00mfl7n"&gt;Frozen Planet&lt;/a&gt;. They all stopped in their tracks… “Wow!” was the collective response. “Those shows are amazing…” “The best thing the BBC does…” Before I had a chance to explain that sadly I can take no credit for them whatsoever, they put me under the anaesthesia. The last thing I remembering hearing was "I am so impressed." This story encapsulates the sentiment that so many people share, in the UK and around the globe, that the BBC’s landmark Natural History productions are one of the jewels in its crown.&lt;/p&gt;&lt;p&gt;Natural History is a perfect candidate for exploring digital innovation. The genre transcends language, age, politics, geography. Wanting to feel connected to &amp; inspired by our planet something people yearn for. The BBC’s television programming has been satisfying this need for decades, but has yet to master how to do the same via digital media.&lt;/p&gt;&lt;p&gt;Can we take something like the next big landmark production (working title: ‘One Planet’) and weave an integrated and innovative digital idea within it? Filming for this programme has only just begun, and with 60+ shoots over the next few years, in countries all around the world, the opportunities for shaping content or experiences beyond television seem endless. &lt;/p&gt;&lt;p&gt;One Planet looks at the complex story of diversity and it is being filmed using an immersive approach – allowing viewers to experience the world through the eyes &amp; senses of its animal protagonists. Therefore the &lt;a href="http://www.bbc.co.uk/partnersandsuppliers/connectedstudio/events/nhu.html"&gt;Connected Studio challenge &lt;/a&gt;will be to use digital technologies to immerse audiences deeper into these natural arenas. This digitally powered experience should heighten our audience’s emotional connection to our planet &amp; the ingenious animals we share it with.&lt;/p&gt;&lt;p&gt;We are looking for exceptional ideas that can stand up to the established quality of these programmes, but that can also work in their own right. Because BBC nature landmarks are co-funded with BBC Worldwide, the audience is global. Planet Earth was broadcast in over 250 countries around the world, so the scale of this pilot is potentially huge. &lt;/p&gt;&lt;p&gt;If you are interested in being part of the reinvention of nature landmarks for the digital age, please do visit the Connected Studio website and&lt;a href="http://downloads.bbc.co.uk/connectedstudio/one_planet_nhu_brief.pdf"&gt; read the brief&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;We are looking for the best creative digital minds in the UK. People who are fascinated by the future of digital stories, creative technology, the evolution of television and interactive content. If you are working in a digital agency or as a freelancer, or at the BBC, please join us on the day!&lt;/p&gt;&lt;p&gt;&lt;em&gt;Eva Appelbaum is Head of Digital Strategy and Innovation, Landmarks, BBC Natural History Unit&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[Connected Studio: coding for teenagers]]></title>
    <summary type="html"><![CDATA[What’s the best digital solution we could create to inspire younger teenagers – and especially girls - to discover coding in an appealing and entertaining way?]]></summary>
    <published>2014-05-13T08:56:16+00:00</published>
    <updated>2014-05-13T08:56:16+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/0967e079-f14e-34a9-b425-f88bb3af7a89"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/0967e079-f14e-34a9-b425-f88bb3af7a89</id>
    <author>
      <name>Kerensa Jennings</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;The UK has a special place in the story of digital pioneering. Birthplace of the man who invented the &lt;a href="http://webfoundation.org/about/vision/history-of-the-web/"&gt;world wide web &lt;/a&gt;– it’s also the home of &lt;a href="http://www.newscientist.com/special/alan-turing"&gt;computer science&lt;/a&gt;, the world’s first &lt;a href="http://www.computerhistory.org/babbage/adalovelace/"&gt;algorithm&lt;/a&gt; and game-changing game-makers like &lt;a href="http://www.rockstarnorth.com/"&gt;Rockstar North &lt;/a&gt;and &lt;a href="http://mindcandy.com/about"&gt;Mind Candy&lt;/a&gt;. From Tim Berners-Lee, Alan Turing, and Lord Byron’s daughter, Ada Lovelace to Grand Theft Auto to Moshi Monsters – it’s an impressive roll-call.&lt;/p&gt;&lt;p&gt;But we have a growing digital skills deficit that threatens our future potential and impact on the global stage.&lt;/p&gt;&lt;p&gt;The BBC is uniquely placed to play its part as a catalyst for change. We want to work in partnership with others to shine a spotlight on the wonderful world of digital, and to help inspire people to see their own creative potential within it. The BBC wants to do its bit to ‘bring digital home’.&lt;/p&gt;&lt;p&gt;I'm involved in developing a number of plans to do this – and just one of the challenges we want to address is this: what’s the best digital solution we could create to inspire younger teenagers – and especially girls - to discover coding in an appealing and entertaining way? And how can we help ignite their creative potential?&lt;/p&gt;&lt;p&gt;If you’d like to help us meet this challenge, this is the plan. &lt;/p&gt;&lt;p&gt;The BBC&lt;a href="http://www.bbc.co.uk/partnersandsuppliers/connectedstudio/"&gt; Connected Studio &lt;/a&gt;team is offering digital agencies, tech start-ups and developers (including BBC staff) an exciting opportunity. Connected Studio invites partners like these (and maybe like you?), from inside and outside of the BBC to work together collaboratively on a &lt;a href="http://downloads.bbc.co.uk/connectedstudio/connected_studio_coding_project_brief.pdf"&gt;digital brief&lt;/a&gt;. The winning ideas could be selected for development into working prototypes and end up being commissioned using BBC investment. More information and the reasons for coming up with this challenge are outlined in the&lt;a href="http://downloads.bbc.co.uk/connectedstudio/connected_studio_coding_project_brief.pdf"&gt; development brief. &lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://downloads.bbc.co.uk/connectedstudio/connected_studio_coding_project_brief.pdf"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p01yzy34.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p01yzy34.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p01yzy34.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p01yzy34.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p01yzy34.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p01yzy34.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p01yzy34.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p01yzy34.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p01yzy34.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;Having been a teenager once (too long ago)… I know that whatever the answer is will be a subtle blend of ingredients. Unlike the one I grew up in, today’s digital world is such a collaborative, expressive and social place. The possibilities are endless. And there are some wonderful (and very, very cool) role models out there – too many to mention. People like Emma Mulqueeny from &lt;a href="https://youngrewiredstate.org/"&gt;Young Rewired State&lt;/a&gt;; like Avid Larizadeh from &lt;a href="http://code.org/"&gt;Code.org&lt;/a&gt;; like Joanna Shields from &lt;a href="http://techcitynews.com/directory/joanna-shields/"&gt;Tech City UK&lt;/a&gt;; like the entrepreneur &lt;a href="http://blog.founders4schools.org.uk/sherry-coutu/"&gt;Sherry Coutu&lt;/a&gt;; like the model &lt;a href="http://www.theguardian.com/technology/audio/2012/aug/07/tech-weekly-podcast-lily-coles-audio"&gt;Lily Cole &lt;/a&gt;– who loves coding; like Wendy Devolder from &lt;a href="https://skillsmatter.com/legacy_profile/wendy-devolder"&gt;Skills Matter&lt;/a&gt;; like Annika Small from &lt;a href="http://www.nominettrust.org.uk/who-we-are/profile/annika-small"&gt;Nominet Trust&lt;/a&gt;; like Helen Goulden from &lt;a href="http://www.nesta.org.uk/users/helen-goulden"&gt;Nesta&lt;/a&gt;; like Kathryn Parsons from &lt;a href="http://decoded.co/uk/"&gt;Decoded&lt;/a&gt;. All amazing people who are doing extraordinary things in this space.&lt;/p&gt;&lt;p&gt;When I was a little girl, my Mum had a punch card machine (an offshoot of Charles Babbage's&lt;a href="http://www.sciencemuseum.org.uk/onlinestuff/stories/babbage.aspx"&gt; invention&lt;/a&gt;) in our dining room - and worked as a software engineer. Mum told me what she was doing was giving instructions ‘to tell computers what to do’. My Dad – who had been an electrical engineering apprentice in Devonport Dockyard - built us a computer at home, and Mum taught my brother, sister and me how to do flow charts and write simple programs. I was a teenager in the eighties when the BBC joined forces with Acorn to create the &lt;a href="http://www.bbc.co.uk/news/technology-15969065"&gt;BBC Micro&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;Fast forward to today and the lines are completely blurred between the digital and non-digital worlds. Digital is everywhere. My eleven year old god-daughter Ella does her homework on a computer. My seven year old niece Anya could type her name (and mine) on a keyboard before she hit three. It’s not unusual to see a toddler try to ‘swipe’ a TV set; or get frustrated ‘double-clicking’ on an inanimate picture in a book. The younger generation expect digital experiences in everything they do. It’s second nature.&lt;/p&gt;&lt;p&gt;But somewhere along the way, we forgot about teaching our youngsters how to ‘tell computers what to do’. Our country is facing a digital skills shortage. In time, the new &lt;a href="http://www.computingatschool.org.uk/index.php?id=natcurr"&gt;computing curriculum &lt;/a&gt;which is coming into English schools this September will help pupils in England, but meanwhile as Microsoft discovered, there were more than&lt;a href="http://www.bbc.co.uk/news/education-21250567"&gt; 100,000 job vacancies in IT last year &lt;/a&gt;– and what about everyone else across the UK?&lt;/p&gt;&lt;p&gt;That’s not to say thousands of youngsters have found out anyway – and there are fantastic opportunities out there for anyone whose interest is piqued: &lt;a href="https://www.codeclub.org.uk/"&gt;Code Club&lt;/a&gt;, &lt;a href="http://www.codecademy.com/about"&gt;Code Academy&lt;/a&gt;, &lt;a href="http://coderdojo.com/about"&gt;CoderDojo&lt;/a&gt;, &lt;a href="http://makethingsdostuff.co.uk/"&gt;Make Things Do Stuff &lt;/a&gt;to name a few, as well as inspirational community offers like &lt;a href="http://minecraft.gamepedia.com/Minecraft_Wiki"&gt;Minecraft&lt;/a&gt; and &lt;a href="https://diy.org/featured"&gt;DIY&lt;/a&gt; and bodies like &lt;a href="http://www.computingatschool.org.uk/"&gt;Computing at School &lt;/a&gt;and&lt;a href="http://www.bcs.org/"&gt; BCS&lt;/a&gt;, the Chartered Institute for IT, as well as&lt;a href="http://www.appsforgood.org/"&gt; Apps for Good&lt;/a&gt; and&lt;a href="http://freeformers.com/"&gt; Free:Formers&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;But what about the other youngsters – who have yet to stumble upon the feeling of being ‘a genius’ (as one pupil put it to me) - when you can tell a computer what to do or express yourself in a creative, digital way. &lt;/p&gt;&lt;p&gt;I’m hoping we can channel the spirit of the BBC Micro to breathe life into the aspirations of teenagers today. Who knows, we may end up inspiring the digital pioneers of the future - the next Ada Lovelace or the next Tim Berners-Lee. The BBC wants to use its unique role to make a difference – and with your help, maybe we will.&lt;/p&gt;&lt;p&gt;You can apply to take part in the Creative Studio: Coding for Teenagers, or find out more about Connected Studio, via the&lt;a href="http://www.bbc.co.uk/partnersandsuppliers/connectedstudio/"&gt; Connected Studio website&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;em&gt;Kerensa Jennings is Head of Strategic Delivery, BBC&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[BBC iWonder home page launched]]></title>
    <summary type="html"><![CDATA[BBC iWonder provides thought-provoking answers to the questions sparked in your everyday life - questions sparked by BBC programmes, what's in the news, important anniversaries, or what's trending on social media.]]></summary>
    <published>2014-03-19T10:30:33+00:00</published>
    <updated>2014-03-19T10:30:33+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/925dfb65-5e5c-3b63-b133-e63afdfe7191"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/925dfb65-5e5c-3b63-b133-e63afdfe7191</id>
    <author>
      <name>Chris Sizemore</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;Hello again. I'm Chris Sizemore, Executive Editor for the BBC's Knowledge &amp; Learning product. &lt;/p&gt;&lt;p&gt;Today we're launching the &lt;a href="http://www.bbc.co.uk/iwonder"&gt;BBC iWonder homepage&lt;/a&gt;. BBC iWonder is a new factual and educational brand from the BBC, and it's all about feeding the UK's curiosity.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p01vm5kt.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p01vm5kt.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p01vm5kt.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p01vm5kt.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p01vm5kt.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p01vm5kt.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p01vm5kt.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p01vm5kt.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p01vm5kt.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;p&gt;&lt;em&gt;The BBC iWonder home page on three screens&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;BBC iWonder provides thought-provoking answers to the questions sparked in your everyday life - questions sparked by BBC programmes, what's in the news, important anniversaries, or what's trending on social media. The iWonder homepage will always feature plenty of examples of the Interactive Guide, our new flagship content format that makes learning feel effortless and entertaining. An Interactive Guide is more than just a webpage - it's a visually exciting experience that invites you to lean forward, "turn the page" and find out what happens next. The design is uncluttered, the learning is subtle, and within every exploration of iWonder content you'll find a moment to reflect: an opportunity for a deeper appreciation of a topic. I’m hoping that over time BBCiWonder will grow into a tool that helps people track, plan and discover the next steps in their learning.&lt;/p&gt;&lt;p&gt;You can check the BBC iWonder homepage regularly to see the latest Guides, top up your inspiration, and find something unexpected and thought-provoking to get curious about.&lt;/p&gt;&lt;p&gt;In time, the BBC iWonder homepage will introduce you to something surprising, provocative, exciting and challenging each day, hand-picking the most inspiring BBC content and blending it with the most wondrous stuff from around the Web and BBC Online. And, as you'd expect from the BBC and iWonder, the experience is fully responsive across different digital devices and screen sizes.&lt;/p&gt;&lt;p&gt;So far, BBC iWonder Interactive Guides have &lt;a href="http://www.bbc.co.uk/blogs/aboutthebbc/posts/Introducing-the-BBCs-first-World-War-One-iWonder-guides"&gt;explored themes from World War One&lt;/a&gt;, such as &lt;a href="http://www.bbc.co.uk/guides/zw6gq6f"&gt;"Pigeon vs telephone: which worked best in the trenches?", &lt;/a&gt;in support of the BBC's ongoing &lt;a href="http://www.bbc.co.uk/ww1"&gt;World War One Centenary season&lt;/a&gt;. Our next step is to begin publishing Guides about other topics, for example: &lt;a href="http://www.bbc.co.uk/guides/z9f8tfr"&gt;"Could you learn to sing Calon Lân in 30 minutes?" &lt;/a&gt;and from additional genres such as Science: &lt;a href="http://www.bbc.co.uk/guides/zgr7fg8"&gt;"How do we know the Big Bang actually happened?".&lt;/a&gt; So, keep an eye out over the next few weeks as we'll be adding new and exciting content to the homepage.&lt;/p&gt;&lt;p&gt;We're also launching a &lt;a href="https://twitter.com/BBCiWonder"&gt;BBC iWonder presence on the social network Twitter today&lt;/a&gt;. Twitter is a natural place to exhange knowledge, and is already used by many users who we know will appreciate iWonder and can help us get the word out to those who'll probably enjoy it, but haven't heard about iWonder yet. In addition to our Interactive Guides, we'll often highlight &lt;a href="http://www.newscientist.com/articleimages/dn25203/1-first-alien-rainbow-image-holds-clues-to-venus-mystery.html"&gt;something really wondrous from the Web &lt;/a&gt;- after all, the BBC doesn't, by any stretch of the imagination, have a monopoly on producing or publishing the kind of content that keeps your curiosity piqued! Over the course of the next months, of course, we'll expand onto other appropriate social networks where BBC iWonder can best serve licence fee payers.&lt;/p&gt;&lt;p&gt;My ambition is for BBC iWonder to combine world-class story-telling with cutting edge digital innovation. I hope you'll agree that iWonder feels fresh and looks amazing on tablets and smartphones. The new BBC iWonder homepage gives your curiosity a new jumping-off point - so if you are curious about iWonder, &lt;a href="http://www.bbc.co.uk/iwonder"&gt;bookmark it&lt;/a&gt; and follow &lt;a href="https://twitter.com/BBCiWonder"&gt;@BBCiWonder&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;I'd love to hear what you think about our new homepage - please do leave comments below.&lt;/p&gt;&lt;p&gt;&lt;em&gt;Chris Sizemore is Executive Editor, BBC iWonder&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
  <entry xmlns:xhtml="http://www.w3.org/1999/xhtml">
    <title type="html"><![CDATA[BBC iWonder: Introducing interactive guides]]></title>
    <summary type="html"><![CDATA[For pictures with a dense amount of information on them, such as infographics, it’s important not just to resize a smaller version of a big image, but to load in a completely different image that’s best for that screen.]]></summary>
    <published>2014-01-19T18:00:09+00:00</published>
    <updated>2014-01-19T18:00:09+00:00</updated>
    <link rel="alternate" type="text/html" href="https://www.bbc.co.uk/blogs/internet/entries/b22b7fba-436a-399c-afcc-90ce8ec536a5"/>
    <id>https://www.bbc.co.uk/blogs/internet/entries/b22b7fba-436a-399c-afcc-90ce8ec536a5</id>
    <author>
      <name>Andrew Pipes</name>
    </author>
    <content type="html">&lt;div class="component prose"&gt;
    &lt;p&gt;Today we’re announcing BBC iWonder, a bold new brand whose mission is to unlock the learning potential of all BBC content.&lt;/p&gt;&lt;p&gt;We know that people's curiosity is often sparked by BBC programmes, and also by the world around them. BBC iWonder is for these curious minds, and at its' heart is a new content format, interactive guides. Guides will invite people to lean forward, and actively explore a range of factual and education topics from Science and Natural History, Arts, History, Religion and Ethics, Food and more. In this blog post, I’ll outline the features of iWonder interactive guides, as well as what to expect from this new format in the near future.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="component"&gt;
    &lt;img class="image" src="https://ichef.bbci.co.uk/images/ic/320xn/p01q4jxy.jpg" srcset="https://ichef.bbci.co.uk/images/ic/80xn/p01q4jxy.jpg 80w, https://ichef.bbci.co.uk/images/ic/160xn/p01q4jxy.jpg 160w, https://ichef.bbci.co.uk/images/ic/320xn/p01q4jxy.jpg 320w, https://ichef.bbci.co.uk/images/ic/480xn/p01q4jxy.jpg 480w, https://ichef.bbci.co.uk/images/ic/640xn/p01q4jxy.jpg 640w, https://ichef.bbci.co.uk/images/ic/768xn/p01q4jxy.jpg 768w, https://ichef.bbci.co.uk/images/ic/896xn/p01q4jxy.jpg 896w, https://ichef.bbci.co.uk/images/ic/1008xn/p01q4jxy.jpg 1008w" sizes="(min-width: 63em) 613px, (min-width: 48.125em) 66.666666666667vw, 100vw" alt=""&gt;&lt;p&gt;&lt;em&gt;Interactive guides on three screens&lt;/em&gt;&lt;/p&gt;&lt;/div&gt;
&lt;div class="component prose"&gt;
    &lt;p&gt;&lt;strong&gt;A new way to tell stories on the web&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Interactive guides take a different approach to presenting content compared to traditional web articles or TV and radio programmes online. They organise video and audio, rich infographics, written summaries, and activities into stories that make the most of our interactive medium. We know from plenty of research that people learn better by doing, and we’ve designed our guides to be “sit forward,” placing a user’s interactions with the content at the core of the experience. Interactive guides take the audience through a series of steps that ask them to look at multiple perspectives of intriguing questions, always with the chance to reflect on the significance of the story at the end.&lt;/p&gt;&lt;p&gt;The initial set of interactive guides mark the start of the &lt;a href="http://www.bbc.co.uk/ww1/"&gt;World War One season &lt;/a&gt;on the BBC and are presented by experts including &lt;a href="http://www.bbc.co.uk/guides/z3kgjxs"&gt;Dan Snow&lt;/a&gt;, Kate Adie, Ian McMillan and Neil Oliver. For more on these read Executive Producer Tim Plyming’s &lt;a href="http://www.bbc.co.uk/blogs/aboutthebbc/posts/Introducing-the-BBCs-first-World-War-One-iWonder-guides"&gt;blog post.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;A multi-screen modern media landscape&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;More and more of our audiences are accessing our content via mobile and tablet devices. In fact, for the first time this past Christmas, the proportion of people visiting the &lt;a href="http://www.bbc.co.uk/food/"&gt;BBC Food website &lt;/a&gt;from a tablet or smartphone was larger than those visiting from a PC. This trend is set to continue. With the look and feel of “native mobile applications” getting ever more immersive, our audience’s expectations of accessing content on their phones and tablets is high. Expecting our users to struggle to navigate a full “desktop” website on a tiny screen isn’t acceptable any longer.&lt;/p&gt;&lt;p&gt;We all instinctively know that learning is not something that happens at a single time or place only, sitting quietly at a desk or with a PC. Our guides display beautifully no matter what screen size you view them on, accompanying you as you move through your life - at school, home or work, while you're on the go, or while you wait for something else to happen. &lt;/p&gt;&lt;p&gt;To achieve this, our team has employed &lt;a href="http://en.wikipedia.org/wiki/Responsive_web_design"&gt;responsive web design &lt;/a&gt;from our first lines of code. With responsive web design, the devil is in the detail. On mobile especially, response times are absolutely crucial. If a web page takes longer than a couple of seconds to load, you’ve already lost a huge percentage of potential browsers. To keep response times down to a minimum, we’ve had to develop a system that loads in just the essential components of the page at the right times. Mobile-sized images download first, then when the page’s Javascript detects the browser’s capabilities, higher-resolution images get ‘loaded in dynamically.’ This can mean the difference of up to a mega-byte’s worth of content for a browser to download. At that &lt;a href="https://www.google.co.uk/search?q=define%3Apage+weight&amp;oq=define%3Apage+weight&amp;aqs=chrome..69i57j69i58.2894j0j4&amp;sourceid=chrome&amp;espv=210&amp;es_sm=91&amp;ie=UTF-8"&gt;page weight&lt;/a&gt;, a mobile browser can become agonisingly slow. &lt;/p&gt;&lt;p&gt;For pictures with a dense amount of information on them, such as &lt;a href="http://www.bbc.co.uk/guides/z3kgjxs#z2ftb9q"&gt;infographics&lt;/a&gt;, it’s important not just to resize a smaller version of a big image, but to load in a completely different image that’s best for that screen. Usually this means a more “zoomed in” view right for mobile. Our system elegantly handles all this image swapping without the user ever noticing. Try reducing the width of your browser window to see it in action &lt;a href="http://www.bbc.co.uk/guides/z3kgjxs"&gt;at the link above.&lt;/a&gt;&lt;/p&gt;&lt;p&gt;We’ve strived for this ‘invisible’ elegance in other places too. For instance, we load in the correct media player for any device behind the scenes, so that visitors on an iPhone don’t get served a Flash player, which won’t work on their Apple device. In this way, everyone should get exactly the same high-quality experience, all the time.&lt;/p&gt;&lt;p&gt;The BBC also has a firm commitment to both web accessibilityand backwards compatibility, making our experiences just as pleasing on older browsers such as Internet Explorer 8 as on newer, more capable web browsers. We’ve taken care to ensure that for users with Javascript turned off, or for those using screen readers, all the content is both available and understandable.&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Being able to repeatedly produce immersive experiences&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Over the past year or so, many highly engaging web experiences have delighted web audiences, such as the &lt;a href="http://www.nytimes.com/projects/2012/snow-fall/#/?part=tunnel-creek"&gt;New York Times’ Snowfall story&lt;/a&gt;. When our development team first set out to imagine what our interactive guides experience should be, we looked at those examples with a degree of envy. But we also noticed that most seemed to be “one-offs” and didn't work well on mobile devices. We were adamant that we wanted our new format to have all the qualities of this class of highly immersive story - but tailored for every device - whilst being straightforward for our editorial teams to reproduce quickly and repeatedly.&lt;/p&gt;&lt;p&gt;Those were the three main principles which guided our development, and are the reason the iWonder interactive guides represent such a giant leap forward in the BBC's ability to inspire and support learning. Our editorial colleagues now have a toolkit that lets them to put together and publish these rich stories in hours or days, rather than the weeks that it might have taken just a year or so ago. And whereas in the past, each rich story experience would require its own bespoke code and design, there's now just one codebase to maintain and add features to.&lt;/p&gt;&lt;p&gt;In the coming months, we’re adding a collection of activities that will sit within the guide format's sequence of ‘steps’. Look out for visual quizzes, clickable infographics, and plenty of other digital toys to play with, as the library of options available to our production team grows.&lt;/p&gt;&lt;p&gt;I'd love you to know what you think, so please do leave a comment.&lt;/p&gt;&lt;p&gt;&lt;em&gt;Andy Pipes is Executive Product Manager, Knowledge and Learning&lt;/em&gt;&lt;/p&gt;
&lt;/div&gt;

    </content>
  </entry>
</feed>
