CINXE.COM

BBC Taster - Computer Literacy Project Archive

<!DOCTYPE html> <html class="no-js b-reith-sans-font" lang="en-GB"> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.bbc.co.uk/taster/pilots/computer-literacy-project","20211204082926","https://web.archive.org/","web","/_static/", "1638606566"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <script src="https://web.archive.org/web/20211204082926js_/https://fxt.files.bbci.co.uk/taster/1486-1/javascripts/lib/require.min.js"></script> <!-- Orbit: 3.0.0-1763.596b8caa --> <!-- Environment: live --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> :root { --bbc-font: ReithSans, Arial, Helvetica, freesans, sans-serif; --bbc-font-legacy: Arial, Helvetica, freesans, sans-serif; } </style> <script nomodule type="text/javascript" src="https://web.archive.org/web/20211204082926js_/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/polyfills.bundle.js" async></script> <link rel="stylesheet" href="https://web.archive.org/web/20211204082926cs_/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/css/orb-ltr.min.css"> <script src="https://web.archive.org/web/20211204082926js_/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/require.min.js"></script> <script> // nav-orbit-pollyfills // Promise polyfill from https://github.com/bramstein/promis (function(){'use strict';var f,g=[];function l(a){g.push(a);1==g.length&&f()}function m(){for(;g.length;)g[0](),g.shift()}f=function(){setTimeout(m)};function n(a){this.a=p;this.b=void 0;this.f=[];var b=this;try{a(function(a){q(b,a)},function(a){r(b,a)})}catch(c){r(b,c)}}var p=2;function t(a){return new n(function(b,c){c(a)})}function u(a){return new n(function(b){b(a)})}function q(a,b){if(a.a==p){if(b==a)throw new TypeError;var c=!1;try{var d=b&&b.then;if(null!=b&&"object"==typeof b&&"function"==typeof d){d.call(b,function(b){c||q(a,b);c=!0},function(b){c||r(a,b);c=!0});return}}catch(e){c||r(a,e);return}a.a=0;a.b=b;v(a)}} function r(a,b){if(a.a==p){if(b==a)throw new TypeError;a.a=1;a.b=b;v(a)}}function v(a){l(function(){if(a.a!=p)for(;a.f.length;){var b=a.f.shift(),c=b[0],d=b[1],e=b[2],b=b[3];try{0==a.a?"function"==typeof c?e(c.call(void 0,a.b)):e(a.b):1==a.a&&("function"==typeof d?e(d.call(void 0,a.b)):b(a.b))}catch(h){b(h)}}})}n.prototype.g=function(a){return this.c(void 0,a)};n.prototype.c=function(a,b){var c=this;return new n(function(d,e){c.f.push([a,b,d,e]);v(c)})}; function w(a){return new n(function(b,c){function d(c){return function(d){h[c]=d;e+=1;e==a.length&&b(h)}}var e=0,h=[];0==a.length&&b(h);for(var k=0;k<a.length;k+=1)u(a[k]).c(d(k),c)})}function x(a){return new n(function(b,c){for(var d=0;d<a.length;d+=1)u(a[d]).c(b,c)})};window.Promise||(window.Promise=n,window.Promise.resolve=u,window.Promise.reject=t,window.Promise.race=x,window.Promise.all=w,window.Promise.prototype.then=n.prototype.c,window.Promise.prototype["catch"]=n.prototype.g);}()); // Polyfill Event constructor for IE ref: ORBITEN-919 // see: https://stackoverflow.com/questions/26596123 (function () { if (typeof window.CustomEvent === "function") { return false; } function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.Event = CustomEvent; })(); //Element.prototype.matches polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; } //NodeList.forEach Polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Polyfill if (window.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = Array.prototype.forEach; } // Object.assign polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Polyfill if (typeof Object.assign != 'function') { // Must be writable: true, enumerable: false, configurable: true Object.defineProperty(Object, "assign", { value: function assign(target, varArgs) { // .length of function is 2 'use strict'; if (target == null) { // TypeError if undefined or null throw new TypeError('Cannot convert undefined or null to object'); } var to = Object(target); for (var index = 1; index < arguments.length; index++) { var nextSource = arguments[index]; if (nextSource != null) { // Skip over if undefined or null for (var nextKey in nextSource) { // Avoid bugs when hasOwnProperty is shadowed if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) { to[nextKey] = nextSource[nextKey]; } } } } return to; }, writable: true, configurable: true }); } // window.fetch polyfill https://github.com/github/fetch/blob/v0.11.0/fetch.js - chosen for IE9 compatibility if(typeof window.fetch !== 'function') { (function(self){"use strict";if(self.fetch){return}function normalizeName(name){if(typeof name!=="string"){name=String(name)}if(/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(name)){throw new TypeError("Invalid character in header field name")}return name.toLowerCase()}function normalizeValue(value){if(typeof value!=="string"){value=String(value)}return value}function Headers(headers){this.map={};if(headers instanceof Headers){headers.forEach(function(value,name){this.append(name,value)},this)}else if(headers){Object.getOwnPropertyNames(headers).forEach(function(name){this.append(name,headers[name])},this)}}Headers.prototype.append=function(name,value){name=normalizeName(name);value=normalizeValue(value);var list=this.map[name];if(!list){list=[];this.map[name]=list}list.push(value)};Headers.prototype["delete"]=function(name){delete this.map[normalizeName(name)]};Headers.prototype.get=function(name){var values=this.map[normalizeName(name)];return values?values[0]:null};Headers.prototype.getAll=function(name){return this.map[normalizeName(name)]||[]};Headers.prototype.has=function(name){return this.map.hasOwnProperty(normalizeName(name))};Headers.prototype.set=function(name,value){this.map[normalizeName(name)]=[normalizeValue(value)]};Headers.prototype.forEach=function(callback,thisArg){Object.getOwnPropertyNames(this.map).forEach(function(name){this.map[name].forEach(function(value){callback.call(thisArg,value,name,this)},this)},this)};function consumed(body){if(body.bodyUsed){return Promise.reject(new TypeError("Already read"))}body.bodyUsed=true}function fileReaderReady(reader){return new Promise(function(resolve,reject){reader.onload=function(){resolve(reader.result)};reader.onerror=function(){reject(reader.error)}})}function readBlobAsArrayBuffer(blob){var reader=new FileReader;reader.readAsArrayBuffer(blob);return fileReaderReady(reader)}function readBlobAsText(blob){var reader=new FileReader;reader.readAsText(blob);return fileReaderReady(reader)}var support={blob:"FileReader"in self&&"Blob"in self&&function(){try{new Blob;return true}catch(e){return false}}(),formData:"FormData"in self,arrayBuffer:"ArrayBuffer"in self};function Body(){this.bodyUsed=false;this._initBody=function(body){this._bodyInit=body;if(typeof body==="string"){this._bodyText=body}else if(support.blob&&Blob.prototype.isPrototypeOf(body)){this._bodyBlob=body}else if(support.formData&&FormData.prototype.isPrototypeOf(body)){this._bodyFormData=body}else if(!body){this._bodyText=""}else if(support.arrayBuffer&&ArrayBuffer.prototype.isPrototypeOf(body)){}else{throw new Error("unsupported BodyInit type")}if(!this.headers.get("content-type")){if(typeof body==="string"){this.headers.set("content-type","text/plain;charset=UTF-8")}else if(this._bodyBlob&&this._bodyBlob.type){this.headers.set("content-type",this._bodyBlob.type)}}};if(support.blob){this.blob=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return Promise.resolve(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as blob")}else{return Promise.resolve(new Blob([this._bodyText]))}};this.arrayBuffer=function(){return this.blob().then(readBlobAsArrayBuffer)};this.text=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return readBlobAsText(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as text")}else{return Promise.resolve(this._bodyText)}}}else{this.text=function(){var rejected=consumed(this);return rejected?rejected:Promise.resolve(this._bodyText)}}if(support.formData){this.formData=function(){return this.text().then(decode)}}this.json=function(){return this.text().then(JSON.parse)};return this}var methods=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function normalizeMethod(method){var upcased=method.toUpperCase();return methods.indexOf(upcased)>-1?upcased:method}function Request(input,options){options=options||{};var body=options.body;if(Request.prototype.isPrototypeOf(input)){if(input.bodyUsed){throw new TypeError("Already read")}this.url=input.url;this.credentials=input.credentials;if(!options.headers){this.headers=new Headers(input.headers)}this.method=input.method;this.mode=input.mode;if(!body){body=input._bodyInit;input.bodyUsed=true}}else{this.url=input}this.credentials=options.credentials||this.credentials||"omit";if(options.headers||!this.headers){this.headers=new Headers(options.headers)}this.method=normalizeMethod(options.method||this.method||"GET");this.mode=options.mode||this.mode||null;this.referrer=null;if((this.method==="GET"||this.method==="HEAD")&&body){throw new TypeError("Body not allowed for GET or HEAD requests")}this._initBody(body)}Request.prototype.clone=function(){return new Request(this)};function decode(body){var form=new FormData;body.trim().split("&").forEach(function(bytes){if(bytes){var split=bytes.split("=");var name=split.shift().replace(/\+/g," ");var value=split.join("=").replace(/\+/g," ");form.append(decodeURIComponent(name),decodeURIComponent(value))}});return form}function headers(xhr){var head=new Headers;var pairs=xhr.getAllResponseHeaders().trim().split("\n");pairs.forEach(function(header){var split=header.trim().split(":");var key=split.shift().trim();var value=split.join(":").trim();head.append(key,value)});return head}Body.call(Request.prototype);function Response(bodyInit,options){if(!options){options={}}this.type="default";this.status=options.status;this.ok=this.status>=200&&this.status<300;this.statusText=options.statusText;this.headers=options.headers instanceof Headers?options.headers:new Headers(options.headers);this.url=options.url||"";this._initBody(bodyInit)}Body.call(Response.prototype);Response.prototype.clone=function(){return new Response(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Headers(this.headers),url:this.url})};Response.error=function(){var response=new Response(null,{status:0,statusText:""});response.type="error";return response};var redirectStatuses=[301,302,303,307,308];Response.redirect=function(url,status){if(redirectStatuses.indexOf(status)===-1){throw new RangeError("Invalid status code")}return new Response(null,{status:status,headers:{location:url}})};self.Headers=Headers;self.Request=Request;self.Response=Response;self.fetch=function(input,init){return new Promise(function(resolve,reject){var request;if(Request.prototype.isPrototypeOf(input)&&!init){request=input}else{request=new Request(input,init)}var xhr=new XMLHttpRequest;function responseURL(){if("responseURL"in xhr){return xhr.responseURL}if(/^X-Request-URL:/m.test(xhr.getAllResponseHeaders())){return xhr.getResponseHeader("X-Request-URL")}return}xhr.onload=function(){var status=xhr.status===1223?204:xhr.status;if(status<100||status>599){reject(new TypeError("Network request failed"));return}var options={status:status,statusText:xhr.statusText,headers:headers(xhr),url:responseURL()};var body="response"in xhr?xhr.response:xhr.responseText;resolve(new Response(body,options))};xhr.onerror=function(){reject(new TypeError("Network request failed"))};xhr.open(request.method,request.url,true);if(request.credentials==="include"){xhr.withCredentials=true}if("responseType"in xhr&&support.blob){xhr.responseType="blob"}request.headers.forEach(function(value,name){xhr.setRequestHeader(name,value)});xhr.send(typeof request._bodyInit==="undefined"?null:request._bodyInit)})};self.fetch.polyfill=true})(typeof self!=="undefined"?self:this); } if (typeof window.CustomEvent !== 'function') { function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: null }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.CustomEvent = CustomEvent; } </script> <script> window.orbitData = {}; var additionalPageProperties = {}; window.orbitData.userProfileUrl = "https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/userprofile"; window.page = { name: 'taster.pilot.computer_literacy_project.info.page' || null, destination: 'TASTER' || null, producer: 'TASTER' || null, section: '' || null, site: '' || null, contentId: '' || null, contentType: 'article' || null, edition: '' || null, additionalProperties: additionalPageProperties }; window.page.language = 'en'; window.page.language = 'en'; window.page.modal = false; !function(){var t={53:function(t,e,r){function n(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function o(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?n(Object(r),!0).forEach((function(e){i(t,e,r[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):n(Object(r)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))}))}return t}function i(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}var c=r(391),u=r(135);window.bbcpage=c.init(o({},window.page)),window.page=void 0,window.bbcuser=u.init(window,o({},window.user))},391:function(t){function e(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function r(t){for(var r=1;r<arguments.length;r++){var o=null!=arguments[r]?arguments[r]:{};r%2?e(Object(o),!0).forEach((function(e){n(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):e(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}function n(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}t.exports={init:function(t){var e=r({},t);return document.addEventListener("bbc-page-reset",(function(t){var r;t.detail&&t.detail.page&&(r=t.detail.page,e=Object.assign(e,r)),document.dispatchEvent(new Event("bbc-page-updated"))})),{getName:function(){return Promise.resolve(e.name||function(){if("file:"===window.location.protocol)return"local.file";var t=window.location.pathname.replace(/\/$/,"").replace(/^\//,"").replace(/\//g,".");return"".concat(t,".page")}())},getLanguage:function(){return Promise.resolve(e.language)},getDestination:function(){return Promise.resolve(e.destination)},getProducer:function(){return Promise.resolve(e.producer)},getSection:function(){return Promise.resolve(e.section)},getContentType:function(){return Promise.resolve(e.contentType)},getContentId:function(){return Promise.resolve(e.contentId)},getReferrer:function(){return Promise.resolve(window.orb&&null!==window.orb.referrer&&void 0!==window.orb.referrer?window.orb.referrer:document.referrer)},getAdditionalProperties:function(){return Promise.resolve(r({},e.additionalProperties))},loadCSS:function(t){return new Promise((function(e,r){var n=document.createElement("link");n.type="text/css",n.rel="stylesheet",n.onload=function(){e()},n.href=t,document.getElementsByTagName("head")[0].appendChild(n)}))},isModal:function(){return Promise.resolve(e.modal)}}}}},135:function(t){function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function r(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),r.push.apply(r,n)}return r}function n(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?r(Object(n),!0).forEach((function(e){o(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):r(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function o(t,e,r){return e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function c(t,r){if(r&&("object"===e(r)||"function"==typeof r))return r;if(void 0!==r)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}function u(t){var e="function"==typeof Map?new Map:void 0;return(u=function(t){if(null===t||(r=t,-1===Function.toString.call(r).indexOf("[native code]")))return t;var r;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return a(t,arguments,l(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),s(n,t)})(t)}function a(t,e,r){return(a=f()?Reflect.construct:function(t,e,r){var n=[null];n.push.apply(n,e);var o=new(Function.bind.apply(t,n));return r&&s(o,r.prototype),o}).apply(null,arguments)}function f(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}function s(t,e){return(s=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function l(t){return(l=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var p=function(t){!function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&s(t,e)}(o,t);var e,r,n=(e=o,r=f(),function(){var t,n=l(e);if(r){var o=l(this).constructor;t=Reflect.construct(n,arguments,o)}else t=n.apply(this,arguments);return c(this,t)});function o(){return i(this,o),n.apply(this,arguments)}return o}(u(Error));function h(t){return new Promise((function(e,r){window.require(t,(function(){e.apply(this,arguments)}),(function(t){r(t)}))}))}t.exports={init:function(t,e){var r,o=n({},e),i=null;function c(){if(["X-Country","X-Ip_is_advertise_combined","X-Ip_is_uk_combined"].every((function(t){return!!o[t]})))return Promise.resolve(o);if(!i){var e=t.location.hostname.endsWith(".com")?"com":"co.uk";i=t.fetch("https://web.archive.org/web/20211204082926/https://www.bbc.".concat(e,"/userinfo")).then((function(t){return t.json()}))}return i}function u(t){if(t.status>=200&&t.status<300)return t;var e=new Error(t.statusText);throw e.response=t,e}function a(t){return t.json()}function f(){if(o.ageBand)return Promise.resolve(o);if(!r){if("undefined"==typeof XMLHttpRequest||!("withCredentials"in new XMLHttpRequest))return Promise.resolve(o);r=h(["idcta-v2/idcta-1"]).then((function(e){return e.initiateTokenRefresh().then((function(){return t.fetch(t.orbitData.userProfileUrl,{credentials:"include"}).then(u).then(a).then((function(t){return o=n(n({},o),t)}))}))}))}return r}var s={getHashedId:function(){return h(["idcta-v2/idcta-1"]).then((function(t){return t.getCookieInstance().getHidFromCookie()}))},isSignedIn:function(){return h(["idcta-v2/idcta-1"]).then((function(t){return t&&t.getCookieInstance().hasCookie()}))},getCountry:function(){return c().then((function(t){return t["X-Country"]||"gb"}))},isUKCombined:function(){return c().then((function(t){if(!t["X-Ip_is_uk_combined"])throw new p("missing isUKCombined from userinfo response");return"yes"===t["X-Ip_is_uk_combined"].toLowerCase()}))},canSeeAdverts:function(){return c().then((function(t){if(!t["X-Ip_is_advertise_combined"])throw new p("missing canSeeAdverts from userinfo response");return"yes"===t["X-Ip_is_advertise_combined"].toLowerCase()}))},getAgeBand:function(){return c().then((function(t){return t["X-Age-Band"]?Promise.resolve(t["X-Age-Band"]):s.isSignedIn().then((function(t){if(t)return f().then((function(t){return o["X-Age-Band"]=t["X-Age-Band"],o["X-Age-Band"]||void 0})).catch((function(){return o["X-Age-Band"]||void 0}))}))}))},allowsPerformanceCookies:function(){return h(["orb/cookies"]).then((function(t){return!!t.cookiesEnabled()&&!!t.readPolicy("performance")}))},allowsFunctionalCookies:function(){return h(["orb/cookies"]).then((function(t){return!!t.cookiesEnabled()&&!!t.readPolicy("personalisation")}))},getCookieValue:function(t){return h(["orb/cookies"]).then((function(e){return e.get(t)}))}};return s},BBCUserError:p}},666:function(t){var e=function(t){"use strict";var e,r=Object.prototype,n=r.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",c=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag";function a(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{a({},"")}catch(t){a=function(t,e,r){return t[e]=r}}function f(t,e,r,n){var o=e&&e.prototype instanceof v?e:v,i=Object.create(o.prototype),c=new k(n||[]);return i._invoke=function(t,e,r){var n=l;return function(o,i){if(n===h)throw new Error("Generator is already running");if(n===y){if("throw"===o)throw i;return C()}for(r.method=o,r.arg=i;;){var c=r.delegate;if(c){var u=_(c,r);if(u){if(u===d)continue;return u}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(n===l)throw n=y,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);n=h;var a=s(t,e,r);if("normal"===a.type){if(n=r.done?y:p,a.arg===d)continue;return{value:a.arg,done:r.done}}"throw"===a.type&&(n=y,r.method="throw",r.arg=a.arg)}}}(t,r,c),i}function s(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}t.wrap=f;var l="suspendedStart",p="suspendedYield",h="executing",y="completed",d={};function v(){}function g(){}function b(){}var w={};w[i]=function(){return this};var m=Object.getPrototypeOf,O=m&&m(m(S([])));O&&O!==r&&n.call(O,i)&&(w=O);var P=b.prototype=v.prototype=Object.create(w);function j(t){["next","throw","return"].forEach((function(e){a(t,e,(function(t){return this._invoke(e,t)}))}))}function E(t,e){function r(o,i,c,u){var a=s(t[o],t,i);if("throw"!==a.type){var f=a.arg,l=f.value;return l&&"object"==typeof l&&n.call(l,"__await")?e.resolve(l.__await).then((function(t){r("next",t,c,u)}),(function(t){r("throw",t,c,u)})):e.resolve(l).then((function(t){f.value=t,c(f)}),(function(t){return r("throw",t,c,u)}))}u(a.arg)}var o;this._invoke=function(t,n){function i(){return new e((function(e,o){r(t,n,e,o)}))}return o=o?o.then(i,i):i()}}function _(t,r){var n=t.iterator[r.method];if(n===e){if(r.delegate=null,"throw"===r.method){if(t.iterator.return&&(r.method="return",r.arg=e,_(t,r),"throw"===r.method))return d;r.method="throw",r.arg=new TypeError("The iterator does not provide a 'throw' method")}return d}var o=s(n,t.iterator,r.arg);if("throw"===o.type)return r.method="throw",r.arg=o.arg,r.delegate=null,d;var i=o.arg;return i?i.done?(r[t.resultName]=i.value,r.next=t.nextLoc,"return"!==r.method&&(r.method="next",r.arg=e),r.delegate=null,d):i:(r.method="throw",r.arg=new TypeError("iterator result is not an object"),r.delegate=null,d)}function x(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function L(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function k(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(x,this),this.reset(!0)}function S(t){if(t){var r=t[i];if(r)return r.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,c=function r(){for(;++o<t.length;)if(n.call(t,o))return r.value=t[o],r.done=!1,r;return r.value=e,r.done=!0,r};return c.next=c}}return{next:C}}function C(){return{value:e,done:!0}}return g.prototype=P.constructor=b,b.constructor=g,g.displayName=a(b,u,"GeneratorFunction"),t.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===g||"GeneratorFunction"===(e.displayName||e.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,a(t,u,"GeneratorFunction")),t.prototype=Object.create(P),t},t.awrap=function(t){return{__await:t}},j(E.prototype),E.prototype[c]=function(){return this},t.AsyncIterator=E,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var c=new E(f(e,r,n,o),i);return t.isGeneratorFunction(r)?c:c.next().then((function(t){return t.done?t.value:c.next()}))},j(P),a(P,u,"Generator"),P[i]=function(){return this},P.toString=function(){return"[object Generator]"},t.keys=function(t){var e=[];for(var r in t)e.push(r);return e.reverse(),function r(){for(;e.length;){var n=e.pop();if(n in t)return r.value=n,r.done=!1,r}return r.done=!0,r}},t.values=S,k.prototype={constructor:k,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=e,this.done=!1,this.delegate=null,this.method="next",this.arg=e,this.tryEntries.forEach(L),!t)for(var r in this)"t"===r.charAt(0)&&n.call(this,r)&&!isNaN(+r.slice(1))&&(this[r]=e)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var r=this;function o(n,o){return u.type="throw",u.arg=t,r.next=n,o&&(r.method="next",r.arg=e),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var c=this.tryEntries[i],u=c.completion;if("root"===c.tryLoc)return o("end");if(c.tryLoc<=this.prev){var a=n.call(c,"catchLoc"),f=n.call(c,"finallyLoc");if(a&&f){if(this.prev<c.catchLoc)return o(c.catchLoc,!0);if(this.prev<c.finallyLoc)return o(c.finallyLoc)}else if(a){if(this.prev<c.catchLoc)return o(c.catchLoc,!0)}else{if(!f)throw new Error("try statement without catch or finally");if(this.prev<c.finallyLoc)return o(c.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var c=i?i.completion:{};return c.type=t,c.arg=e,i?(this.method="next",this.next=i.finallyLoc,d):this.complete(c)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),d},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),L(r),d}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;L(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,r,n){return this.delegate={iterator:S(t),resultName:r,nextLoc:n},"next"===this.method&&(this.arg=e),d}},t}(t.exports);try{regeneratorRuntime=e}catch(t){Function("r","regeneratorRuntime = r")(e)}}},e={};function r(n){var o=e[n];if(void 0!==o)return o.exports;var i=e[n]={exports:{}};return t[n](i,i.exports,r),i.exports}r(666);r(53)}(); window.page = undefined; window.user = undefined; </script> <script> window.orb = { worldwideNavlinks: '<li class="orb-nav-homedotcom"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/">Home</a></li><li class="orb-nav-newsdotcom"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/news">News</a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/sport">Sport</a></li><li class="orb-nav-reeldotcom"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/reel">Reel</a></li><li class="orb-nav-worklife"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/worklife">Worklife</a></li><li class="orb-nav-traveldotcom"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/travel">Travel</a></li><li class="orb-nav-future"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/future">Future</a></li><li class="orb-nav-culture"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/culture">Culture</a></li><li class="orb-nav-music"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/culture/music">Music</a></li><li class="orb-nav-tv"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/schedules/p00fzl9m">TV</a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/weather">Weather</a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/sounds">Sounds</a></li>', } </script> <script src="https://web.archive.org/web/20211204082926js_/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/api-forge-free.min.js"></script> <link rel="preload" href="https://web.archive.org/web/20211204082926/https://static.files.bbci.co.uk/fonts/reith/2.512/BBCReithSans_W_Rg.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="https://web.archive.org/web/20211204082926/https://static.files.bbci.co.uk/fonts/reith/2.512/BBCReithSans_W_Bd.woff2" as="font" type="font/woff2" crossorigin> <!-- navid Web Module: 0.2.0-84.10b4a16 --> <!-- searchbox Web Module: 3.0.0-370.cc2b57b --> <!-- navpromo Web Module: 3.0.0-276.c4d3505 --> <!-- cookies Web Module: 0.0.3-684.b22216a --> <!-- useractivityhelper Web Module: 1.0.0-211.b7bce27 --> <!-- reverb Web Module: 3.3.0 --> <link rel="stylesheet" href="https://web.archive.org/web/20211204082926cs_/https://static.files.bbci.co.uk/account/id-cta/1.54.11/style/id-cta.css"/><!--[if IE 8]><link href="https://static.files.bbci.co.uk/account/id-cta/1.54.11/style/ie8.css" rel="stylesheet"/> <![endif]--><script type="text/javascript">(function () {if (!window.require) {throw new Error('idcta: could not find require module');}if (typeof (map) == 'undefined') {var map = {};}if (!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect) {document.documentElement.className += ' id-svg';}var ptrt = new RegExp("[\\?&]ptrt=([^&]*)").exec(document.location.href);var ENDPOINT_URL = 'https://web.archive.org/web/20211204082926/https://idcta.api.bbc.co.uk';var ENDPOINT_CONFIG = ('/idcta/config?callback=&ptrt=' + (ptrt ? ptrt[1] : encodeURIComponent(document.location.href))).replace(/\&amp;/g, '&');var ENDPOINT_TRANSLATIONS = '/idcta/translations?callback=';function hasPromise() {var P = window.Promise;var promiseToString = null;if (P) {try {promiseToString = Object.prototype.toString.call(P.resolve());} catch (e) {/*silently ignored*/}}return (promiseToString === '[object Promise]' && !P.cast);}if (hasPromise()) {define('idcta/es6-promise', function () {return window.Promise;});define('idcta-v2/es6-promise', function () {return window.Promise;});}map['idcta-v2'] = 'https://web.archive.org/web/20211204082926/https://static.files.bbci.co.uk/account/id-cta/1.54.11/modules/idcta-v2';map['idcta-v2/config'] = ENDPOINT_URL + ENDPOINT_CONFIG;map['idcta-v2/translations'] = ENDPOINT_URL + ENDPOINT_TRANSLATIONS;map['idcta'] = 'https://web.archive.org/web/20211204082926/https://static.files.bbci.co.uk/account/id-cta/1.8.2/modules/idcta';map['idcta-v2/idcta-1'] = 'https://web.archive.org/web/20211204082926/https://static.files.bbci.co.uk/account/id-cta/1.54.11/modules/idcta-v2/dist/idcta-1.min';map['idcta-v2/experiment-snippet'] = 'https://web.archive.org/web/20211204082926/https://cdn.optimizely.com/public/4621041136/s/idcta_live';const idctaShim = {deps: ['idcta-v2/idcta-1'],};require({shim: {'idcta-v2/statusbar': idctaShim,'idcta-v2/id-config': idctaShim},map: {'*': {'idcta/idcta-1': 'idcta-v2/idcta-1','idcta': 'idcta-v2',}},paths: map});window.idctaBaseUrl = ENDPOINT_URL;define('idcta/config', ['idcta-v2/config'], function (data) { return data; });define('idcta/translations', ['idcta-v2/translations'], function (data) { return data; });})();</script> <link rel="stylesheet" href="https://web.archive.org/web/20211204082926cs_/https://nav.files.bbci.co.uk/searchbox/763294d66de75efa15cd1c55e0e8dac1/css/box.css"> <script src="https://web.archive.org/web/20211204082926js_/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-library.bundle.js"></script><script type="text/javascript">void 0!==window.define&&define("orb/cookies",function(){return window.bbccookies})</script> <script type="text/javascript">window.__detectview={clickManagementEnabled:false};</script> <script type="text/javascript">"use strict";!function(){window.__reverbStaticLocation="https://web.archive.org/web/20211204082926/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/",window.__smarttagVersion="5.29.1",window.__reverb={},window.__reverb.__reverbLoadedPromise=new Promise(function(e,i){window.__reverb.__resolveReverbLoaded=e,window.__reverb.__rejectReverbLoaded=i}),window.__reverb.__reverbTimeout=setTimeout(function(){window.__reverb.__rejectReverbLoaded()},5e3);var i=function(d,a){window.__reverb.__reverbLoadedPromise.then(function(e){if(d&&d.detail){var i=!!d.detail.item,n=d.detail.label,t=i?"viewability":d.detail.type,o=d.detail.elem,r=d.detail.originalEvent;d.detail.isClick&&(a=d.detail.isClick),e.userActionEvent(t,n,d.detail,o,r,a)}},function(){console.log("Reverb failed to load. Event not sent")})},n=function(){window.__reverb.__reverbLoadedPromise.then(function(e){e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Reverb failed to load. Event not sent")})};document.addEventListener("bbc-user-event",function(e){i(e,!1)}),document.addEventListener("bbc-user-click",function(e){i(e,!0)}),document.addEventListener("bbc-page-updated",n),window.addEventListener("pageshow",function(e){e.persisted&&n()})}();</script><script type="text/javascript" src="https://web.archive.org/web/20211204082926js_/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/reverb-3.3.0.js" async></script> <script> require.config({ waitSeconds: 14, paths: { "jquery-1.9": "https://web.archive.org/web/20211204082926/https://static.bbci.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.9.1", "bump-3": "https://web.archive.org/web/20211204082926/https://emp.bbci.co.uk/emp/bump-3/bump-3" } }); </script> <meta charset="utf-8"> <title>BBC Taster - Computer Literacy Project Archive</title> <link rel="shortcut icon" href="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/favicon.ico"> <link rel="apple-touch-icon" href="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/Taster-256x256.png"> <link rel="alternate" href="/web/20211204082926/https://www.bbc.co.uk/taster/feed.atom" type="application/atom+xml"> <link rel="alternate" href="/web/20211204082926/https://www.bbc.co.uk/taster/feed.rss" type="application/rss+xml"> <link rel="stylesheet" media="screen" href="https://web.archive.org/web/20211204082926cs_/https://fxt.files.bbci.co.uk/taster/1486-1/stylesheets/main.css"/> <link rel="canonical" href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/taster/pilots/computer-literacy-project"/> <!-- init global object --> <script type="text/javascript"> window.taster = {}; </script> <script src="https://web.archive.org/web/20211204082926js_/https://fxt.files.bbci.co.uk/taster/1486-1/javascripts/lib/modernizr.js"></script> <script type="text/javascript"> Modernizr.addTest('mediasource', !!Modernizr.prefixed('MediaSource', window)); Modernizr.addTest('notiphone', function() { return navigator.userAgent.indexOf('iPhone') === -1 && navigator.userAgent.indexOf('iPod') === -1; }); </script> <meta name="description" content="In the 1980s the BBC explored the exploding world of computing, explained how to use the new home micros and chronicled a decade of Information Technology. Watch 2,692 clips and 150 full programmes from 14 TV series. Run BBC Micro studio software on a BBC Micro"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@BBCTaster"> <meta name="twitter:image" content="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1920x1080/p069vt3k.jpg"> <meta property="og:type" content="article"> <meta property="og:site_name" content="BBC Taster"> <meta property="og:title" content="Computer Literacy Project Archive"> <meta property="og:description" content="In the 1980s the BBC explored the exploding world of computing, explained how to use the new home micros and chronicled a decade of Information Technology. Watch 2,692 clips and 150 full programmes from 14 TV series. Run BBC Micro studio software on a BBC Micro"> <meta property="og:url" content="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/taster/pilots/computer-literacy-project"> <meta property="og:image" content="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1920x1080/p069vt3k.jpg"> <script type="application/ld+json"> { "@context": "https://web.archive.org/web/20211204082926/http://schema.org", "@type": "CreativeWork", "name": "Computer Literacy Project Archive", "url": "https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/taster/pilots/computer-literacy-project", "headline": "Remember the BBC Micro Computer &amp; 1980s programmes about computing? Watch 150 programmes, thousands of clips and run the original software", "description": "In the 1980s the BBC explored the exploding world of computing, explained how to use the new home micros and chronicled a decade of Information Technology. Watch 2,692 clips and 150 full programmes from 14 TV series. Run BBC Micro studio software on a BBC Micro", "isAccessibleForFree": true, "image": "https://web.archive.org/web/20211204082926/https://ichef.bbci.co.uk/images/ic/1920x1080/p069vt3k.jpg", "datePublished": "2018-06-26T00:00:00Z", "potentialAction": [ { "@type": "ConsumeAction", "name": "Try", "target": "/taster/pilots/computer-literacy-project/try" }, { "@type": "ReviewAction", "name": "Rate", "target": "/taster/pilots/computer-literacy-project/rate" }, { "@type": "ShareAction", "name": "Share", "target": "/taster/pilots/computer-literacy-project/share" } ], "aggregateRating": { "@type": "AggregateRating", "ratingCount": 694, "ratingValue": 4.35, "bestRating": 5, "worstRating": 1 } } </script> <script src="https://web.archive.org/web/20211204082926js_/https://fxt.files.bbci.co.uk/taster/1486-1/javascripts/polyfills.js"></script> </head> <body class="pilot-page"> <div class="sb-site-container site-container supported "> <script> (function(){ "use strict"; var requirements = [], failed = requirements.filter(function(req){return !Modernizr[req];}), container; if (failed.length) { console.error("This pilot uses technologies that aren't supported by this browser. Unmet requirements: " + failed.join(', ')); container = document.querySelector('.site-container'); container.classList.remove('supported'); container.classList.add('unsupported'); } }()); </script> <div id="cookiePrompt"></div> <noscript><p style="position: absolute; top: -999em"><img src="https://web.archive.org/web/20211204082926im_/https://a1.api.bbc.co.uk/hit.xiti?&amp;col=1&amp;from=p&amp;ptag=js&amp;s=598253&amp;p=taster.pilot.computer_literacy_project.info.page&amp;x2=[responsive]&amp;x3=[bbc_website]&amp;x4=[en]&amp;x7=[article]&amp;x8=[reverb-3.3.0-nojs]&amp;x11=[TASTER]&amp;x12=[TASTER]" height="1" width="1" alt=""></p></noscript> <header id="orb-banner" role="banner" aria-label="BBC"><div id="orb-header" class="orb-nav-pri orb-nav-pri-white orb-nav-empty" dir="ltr"><div class="orb-nav-pri-container b-r b-g-p"><div class="orb-nav-section orb-nav-blocks"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/" id="homepage-link">Homepage</a></div><section><div class="orb-skip-links"><h2>Accessibility links</h2><ul><li><a href="#orb-modules">Skip to content</a></li><li><a id="orb-accessibility-help" href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li></ul></div></section><div id="mybbc-wrapper" class="orb-nav-section orb-nav-id orb-nav-focus orb-nav-id-default"> <div id="idcta-statusbar" class="orb-nav-section orb-nav-focus" data-bbc-container="id-cta" data-bbc-event-type="click" data-bbc-ignore-views="1" data-bbc-metadata="{&quot;id-cta-type&quot;: &quot;statusbar-orb&quot;}" data-bbc-source="responsive_web" data-bbc-title="id-cta-sign-in"><a id="idcta-link" href="https://web.archive.org/web/20211204082926/https://account.bbc.com/account"><span id="idcta-username">BBC Account</span></a></div><script type="text/javascript">require(['idcta/statusbar'], function (statusbar) {new statusbar.Statusbar({id: 'idcta-statusbar', publiclyCacheable: true});});</script><!-- Because we are now loading the notification bell CSS asynchronously, we need this inline style hack to ensure that the notification div is hidden by default, and shown only if and when the bell code is loaded from notification-ui --><a id="notification-link" class="js-notification-link animated three" href="#" style="display: none"><span class="hidden-span">Notifications</span><div class="notification-link--triangle"></div><div class="notification-link--triangle"></div><span id="not-num"></span></a> </div><nav role="navigation" aria-label="BBC" class="orb-nav"><div class="orb-nav-section orb-nav-links orb-nav-focus" id="orb-nav-links"><ul><li class="orb-nav-home"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/">Home</a></li><li class="orb-nav-news"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/news">News</a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/sport">Sport</a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/weather">Weather</a></li><li class="orb-nav-iplayer"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/iplayer">iPlayer</a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/sounds">Sounds</a></li><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-food"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/food">Food</a></li><li class="orb-nav-bitesize"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-arts"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/arts">Arts</a></li><li class="orb-nav-taster"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/taster">Taster</a></li><li class="orb-nav-local"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/news/localnews">Local</a></li><li class="orb-nav-three"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/bbcthree">Three</a></li><li id="orb-nav-more" style="width: 88px" aria-controls="orb-panel-more"><a href="#orb-footer" data-alt="More" class="istats-notrack">Menu<span class="orb-icon orb-icon-arrow"></span></a></li></ul></div></nav><div class="orb-nav-section orb-nav-search"> <a class="orb-search__button" href="https://web.archive.org/web/20211204082926/https://search.bbc.co.uk/search?scope=all" title="Search the BBC">Search</a><form class="b-f" id="orb-search-form" role="search" method="get" action="https://web.archive.org/web/20211204082926/https://search.bbc.co.uk/search" accept-charset="utf-8"><div><input type="hidden" name="scope" value="all"><label for="orb-search-q">Search the BBC</label><input id="orb-search-q" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" maxlength="100" name="q" placeholder="Search"><button id="orb-search-button" class="orb-search__button">Search the BBC</button><input type="hidden" name="suggid" id="orb-search-suggid"></div></form><form id="orbit-search-form" role="search" method="get" action="https://web.archive.org/web/20211204082926/https://search.bbc.co.uk/search" accept-charset="utf-8"><div><input type="hidden" name="scope" value="all"><button id="orbit-search-button"><svg class="search-button-icon" width="1.75rem" height="1.8125rem" viewbox="0 0 28 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Search BBC</title><path d="M11,0 C17.0751322,0 22,4.92486775 22,11 C22,13.5277632 21.1473793,15.8563862 19.7140404,17.7139664 L28,26.0001 L25,29.0001 L16.518046,20.5179339 C14.8960209,21.4603385 13.0110328,22 11,22 C4.92486775,22 0,17.0751322 0,11 C0,4.92486775 4.92486775,0 11,0 Z M11,2.5001 C6.30557963,2.5001 2.5,6.30567963 2.5,11.0001 C2.5,15.6945204 6.30557963,19.5001 11,19.5001 C15.6944204,19.5001 19.5,15.6945204 19.5,11.0001 C19.5,6.30567963 15.6944204,2.5001 11,2.5001 Z" id="Shape"></path></svg><svg class="search-box-icon" width="1rem" height="1rem" viewbox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M4.31263591,11.9770508 C3.26116255,10.925 2.68223368,9.52721354 2.68223368,8.04036458 C2.68223368,6.55351563 3.26116255,5.15572917 4.31325442,4.10491536 C5.36410928,3.05286458 6.76133182,2.47395833 8.24823886,2.47395833 C9.7351459,2.47395833 11.1336055,3.05348307 12.1850788,4.10491536 C14.3548251,6.27457682 14.3554436,9.80615234 12.1850788,11.9770508 C11.1336055,13.0278646 9.7351459,13.6067708 8.24823886,13.6067708 C6.76195034,13.6067708 5.36410928,13.0278646 4.31263591,11.9770508 L4.31263591,11.9770508 Z M20,17.6059245 L14.9195281,12.525651 C17.0268044,9.39980469 16.7002292,5.12171224 13.9348542,2.35520833 C12.3644478,0.785481771 10.3066526,0 8.24823886,0 C6.19106215,0 4.13264841,0.785481771 2.56347904,2.35520833 C-0.576715236,5.49589844 -0.576715236,10.5860677 2.56347904,13.7255208 C4.13326692,15.2964844 6.19106215,16.0807292 8.24823886,16.0807292 C9.81555269,16.0807292 11.3816295,15.6230469 12.733082,14.7120117 L17.8129354,19.7916667 L20,17.6059245 Z"></path></svg><span>Search BBC</span></button></div></form> </div></div><div id="orb-panels"></div></div></header> <!-- Styling hook for shared modules only --> <div id="orb-modules"> <div class="container"> <div class="pilot-info__header pilot-tryable pilot-rateable"> <div class="pilot-info__header__container"> <div class="pilot-info__header__logo"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/"> <div class="dm__title__logo dm__title__logo--"> <img alt="" class="" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/logo-dark.svg"/> </div> <span class="screen-reader-text">BBC Taster</span> </a> </div> <div class="pilot-info__header__spacer"></div> <ol class="pilot-info__header__tabs"> <li class="pilot-info__header__tabs__tab pilot-info__header__tabs__tab--try try-trigger" data-try-id="tab" tabindex="0" role="button" aria-pressed="false"> <span class="pilot-info__header__tabs__tab__title"><i class="icon-pa_external"></i> Try</span> <span class="pilot-info__header__tabs__tab__meta"> 3 months left </li><!-- --><li class="pilot-info__header__tabs__tab pilot-info__header__tabs__tab--rate" tabindex="0" role="button" aria-pressed="false" aria-owns="pilot-info__header__rate-module"> <span class="pilot-info__header__tabs__tab__title"><i class="icon-pa_star-filled"></i> Rate</span> <span class="pilot-info__header__tabs__tab__meta">694 ratings</span> </li><!-- --><li class="pilot-info__header__tabs__tab pilot-info__header__tabs__tab--share" tabindex="0" role="button" aria-pressed="false" aria-owns="pilot-info__header__share-tray"> <span class="pilot-info__header__tabs__tab__title"><i class="icon-pa_share"></i> Share</span> <span class="pilot-info__header__tabs__tab__meta">49 shares</span> </li> </ol> </div> </div> </div> <div class="pilot-info__header__border"></div> <div class="pilot-info__header__rate-tray"> <div class="container container--gutters control-rate-module"> <div id="pilot-info__header__rate-module" class="pilot-info__header__rate-module" tabindex="-1" role="radiogroup" aria-labelledby="pilot-info__header__rate-tray__cta" aria-activedescendant="pilot-info__header__rate-tray__cta"> <div class="pilot-info__header__rate-tray__buttons"> <ol class="rate-module__rating"> <li><button id="rate-module__rating__button--1" class="rate-module__rating__button" data-rating="1" tabindex="-1" role="radio" aria-checked="false" aria-keyshortcuts="1"><i class="rate-module__rating__star"></i><span class="sr-only">1 star</span></button></li> <li><button id="rate-module__rating__button--2" class="rate-module__rating__button" data-rating="2" tabindex="-1" role="radio" aria-checked="false" aria-keyshortcuts="2"><i class="rate-module__rating__star"></i><span class="sr-only">2 stars</span></button></li> <li><button id="rate-module__rating__button--3" class="rate-module__rating__button" data-rating="3" tabindex="-1" role="radio" aria-checked="false" aria-keyshortcuts="3"><i class="rate-module__rating__star"></i><span class="sr-only">3 stars</span></button></li> <li><button id="rate-module__rating__button--4" class="rate-module__rating__button" data-rating="4" tabindex="-1" role="radio" aria-checked="false" aria-keyshortcuts="4"><i class="rate-module__rating__star"></i><span class="sr-only">4 stars</span></button></li> <li><button id="rate-module__rating__button--5" class="rate-module__rating__button" data-rating="5" tabindex="-1" role="radio" aria-checked="false" aria-keyshortcuts="5"><i class="rate-module__rating__star"></i><span class="sr-only">5 stars</span></button></li> </ol> </div> <h2 id="pilot-info__header__rate-tray__cta" class="pilot-info__header__rate-tray__cta">How did you rate this?</h2> </div> </div> <div class="pilot-info__header__questions-module questionscontrol"> <div id="questions-module" class="questions-module persistent" data-questions-count="3"> <div class="questions-module__questions"> <div class="carousel"> <input type="hidden" class="total_questions" value="4"/> <input type="hidden" class="show_try_more" value="3"/> <div class="question_set"> <input type="hidden" class="question_id" value="a77e9802b1bdd05b607c96c316f08c93"/> <input type="hidden" class="question_text" value="Did you learn anything from this site?"/> <input type="hidden" class="question_answer" value="Yes"/> <input type="hidden" class="question_answer" value="No"/> <input type="hidden" class="question_answer" value="Not sure"/> </div> <div class="question_set"> <input type="hidden" class="question_id" value="a24ff32f49bd9bbc27e9eb0627c90e30"/> <input type="hidden" class="question_text" value="Should the BBC put more archive online?"/> <input type="hidden" class="question_answer" value="Yes"/> <input type="hidden" class="question_answer" value="No"/> <input type="hidden" class="question_answer" value="Not sure"/> </div> <div class="question_set"> <input type="hidden" class="question_id" value="0b21906cb274017d39a1c34d2d2131df"/> <input type="hidden" class="question_text" value="What did you enjoy the most?"/> <input type="hidden" class="question_answer" value="Full programmes"/> <input type="hidden" class="question_answer" value="Clips"/> <input type="hidden" class="question_answer" value="Running the software"/> <input type="hidden" class="question_answer" value="The project history"/> <input type="hidden" class="question_answer" value="None of these"/> </div> <div class="injectable_contents"> </div> <div class="question_template" style="display:none;"> <div class="carousel__slide__container"> <div class="action-card clearfix"> <div class="action-card__title"> <span class="action-card__title__centre-right"> <button class="action-card__action button action-card__title__left btn_previous"> <i class="icon-pa_prev" aria-hidden="true"></i>&nbsp;Previous </button> <span class="action-card__title__centre txt_slide_count"> </span> </span> </div> <h3 class="action-card__body"> <span class="action-card__statement gel-trafalgar txt-question"></span> </h3> <div class="action-card__actions"> <ul class="action-card__actions__wrapper lst_answers"> </ul> </div> </div> </div> </div> </div> </div> <br> <button class="dm__body__module__button dm__body__module__button--secondary questions-module__maybe-later"> <i class="icon-pa_no" aria-hidden="true"></i>Maybe later </button> </div> </div> </div> <div id="pilot-info__header__share-tray" class="pilot-info__header__share-tray"> <div class="container container--gutters"> <h2 class="pilot-info__header__share-tray__cta">Liked it? Share it! We want to make things that you love</h2> <div class="pilot-info__header__share-tray__buttons"> <button class="pilot-info__header__share-tray__buttons__button pilot-info__header__share-tray__buttons__button--twitter"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 249.89999 203.2" class="twitter-icon"><path fill="#fff" d="M78.5 203.2c94.3 0 145.9-78.2 145.9-145.9 0-2.2 0-4.4-.1-6.6 10-7.2 18.7-16.3 25.6-26.6-9.2 4.1-19.1 6.8-29.5 8.1C231 25.9 239.1 15.8 243 3.8c-9.9 5.9-20.9 10.1-32.6 12.4C201 6.2 187.7 0 173 0c-28.3 0-51.3 23-51.3 51.3 0 4 .5 7.9 1.3 11.7C80.4 60.9 42.6 40.4 17.3 9.4c-4.4 7.6-6.9 16.4-6.9 25.8 0 17.8 9.1 33.5 22.8 42.7-8.4-.3-16.3-2.6-23.2-6.4v.7c0 24.8 17.7 45.6 41.1 50.3-4.3 1.2-8.8 1.8-13.5 1.8-3.3 0-6.5-.3-9.6-.9 6.5 20.4 25.5 35.2 47.9 35.6-17.6 13.8-39.7 22-63.7 22-4.1 0-8.2-.2-12.2-.7 22.6 14.4 49.6 22.9 78.5 22.9"/></svg> Tweet</button> <button class="pilot-info__header__share-tray__buttons__button pilot-info__header__share-tray__buttons__button--facebook"><svg xmlns="http://www.w3.org/2000/svg" class="fb-icon" viewbox="0 0 400 400"><rect width="100%" height="100%" fill="#fff"/><path fill="#3b579d" d="M283.5 60.804c-6.265.612-9.486 1.089-13.6 2.01-5.274 1.181-10.246 2.743-13.556 4.257-.636.291-1.197.529-1.246.529-.225 0-3.81 1.8-5.844 2.934-20.255 11.294-32.274 31.308-35.05 58.366-.489 4.767-.603 10.949-.604 32.75v23.15h-52.2V245h52.2v155h62.6V245l25.65-.003c14.107-.002 25.771-.08 25.918-.173.172-.109.403-1.206.64-3.047.204-1.582.649-5.037.988-7.677.338-2.64.752-5.835.92-7.1.167-1.265.386-2.975.486-3.8.1-.825.279-2.22.398-3.1.119-.88.308-2.32.42-3.2.113-.88.286-2.23.386-3 .1-.77.28-2.165.401-3.1.12-.935.303-2.33.406-3.1.103-.77.277-2.12.387-3 .11-.88.284-2.23.387-3 .103-.77.283-2.142.4-3.05.316-2.448.615-4.774.817-6.35.099-.77.277-2.12.397-3 .378-2.776.527-4.306.428-4.404-.053-.053-13.446-.096-29.762-.096H276.2l.004-21.45c.004-24.021.06-25.226 1.387-30.199 2.165-8.107 7.902-13.416 16.388-15.164 5.488-1.13 6.732-1.186 26.171-1.187h17.65V62.832l-.55-.112c-2.014-.409-14.576-1.288-24.75-1.733-6.229-.272-26.765-.402-29-.183"/></svg>Share<span class="screen-reader-text"> on Facebook</span></button> </div> </div> </div> <span class="escape-focus-trap" tabindex="-1"></span> <div class="black-background"> <div class="warning-banner unsupported-device"> <div class="container container--gutters"> <div class="warning-banner__contents grid"> <i class="icon-pa_warning warning-icon grid__item mobile--one-quarter tablet--one-eighth desktop--one-twelfth"></i> <div class="warning-header grid__item mobile--three-quarters tablet--seven-eighths desktop--eleven-twelfths"> Your device is not currently supported by Computer Literacy Project Archive </div> <div class="warning-body grid__item mobile--one-whole tablet--seven-eighths desktop--eleven-twelfths push--desktop--one-twelfth"> We鈥檙e experimenting with new technology and the browser you are using is unable to run this pilot. Try visiting this page in a different browser or check out some of the other ideas on Taster below. </div> </div> </div> </div> <div class="trailer-preview content-panel"> <div class="container container--gutters"> <div class="grid grid--middle"> <div class="preview__title grid__item mobile--five-sixths tablet--eleven-twelfths desktop--eleven-twelfths">Computer Literacy Project Archive trailer</div> <div class="grid__item mobile--one-sixth tablet--one-twelfth desktop--one-twelfth"> <span class="button button--border trailer-trigger trigger-close right" role="button" tabindex="0" aria-pressed="false"> <i class="icon-pa_no"></i> </span> </div> </div> </div> </div> <div class="try-container"> <div class="try-container__inner"> <div class="try-container__inner-gradient"></div> <img class="hero-image try-container__inner info-page-content" src="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/$recipe/p069vt3k.jpg" srcset="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1920xn/p069vt3k.jpg 1920w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1696xn/p069vt3k.jpg 1696w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1472xn/p069vt3k.jpg 1472w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1232xn/p069vt3k.jpg 1232w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1008xn/p069vt3k.jpg 1008w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/800xn/p069vt3k.jpg 800w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/720xn/p069vt3k.jpg 720w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/608xn/p069vt3k.jpg 608w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/416xn/p069vt3k.jpg 416w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/368xn/p069vt3k.jpg 368w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/320xn/p069vt3k.jpg 320w" sizes="100%"> <div class="try-section container container--gutters try-container__inner"> <div class="grid"> <div class="grid__item mobile--one-whole tablet--one-twelfth desktop--one-twelfth try-button-container info-page-content"> <a class="try-button try-trigger" data-try-id="cta-icon" href="https://web.archive.org/web/20211204082926/https://clp.bbcrewind.co.uk/"> <i class="icon-pa_external"></i> </a> </div> <div class="pilot-heading grid__item mobile--one-whole tablet--ten-twelfths desktop--ten-twelfths info-page-content disabled--false"> <a class="try-trigger pilot-title" data-try-id="pilot-title" href="https://web.archive.org/web/20211204082926/https://clp.bbcrewind.co.uk/"> Computer Literacy Project Archive </a> </div> <div class="grid__item mobile--one-whole tablet--ten-twelfths desktop--ten-twelfths info-page-content"> <div class="try-section__small try-label"> <a class="try-link try-trigger" data-try-id="time-left" href="https://web.archive.org/web/20211204082926/https://clp.bbcrewind.co.uk/"> Try it </a> <span class="divider-before"> 3 months left </span> </div> </div> <div class="b-font-weight-300 grid__item one-whole pilot-summary"> In the 1980s the BBC explored the exploding world of computing, explained how to use the new home micros and chronicled a decade of Information Technology. Watch 2,692 clips and 150 full programmes from 14 TV series. Run BBC Micro studio software on a BBC Micro </div> <div class="try-section__small rate-share grid__item one-whole"> <span class="icon"> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="2641.3 362.8 78.4 74.5" enable-background="new 2641.3 362.8 78.4 74.5" xml:space="preserve"> <g> <polygon fill="#FFFFFF" points="2680.5,362.8 2692.6,387.3 2719.7,391.2 2700.1,410.3 2704.7,437.3 2680.5,424.6 2656.3,437.3 2660.9,410.3 2641.3,391.2 2668.4,387.3 "/> </g> </svg> </span> <span class="rate-count divider-after"> 694 ratings </span> <span class="icon"> <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="2646.3 362.9 68.6 74.4" enable-background="new 2646.3 362.9 68.6 74.4" xml:space="preserve"> <g> <path fill="#FFFFFF" d="M2700.4,437.3c-7.9,0-14.4-6.5-14.4-14.4c0-0.5,0-0.9,0.1-1.4l-16.3-8.8c-2.6,2.1-5.8,3.3-9.1,3.3 c-7.9,0-14.4-6.5-14.4-14.4s6.5-14.4,14.4-14.4c3.1,0,6,1,8.5,2.8l17-10.4c-0.1-0.7-0.2-1.5-0.2-2.3c0-8,6.5-14.4,14.4-14.4 c8,0,14.4,6.5,14.4,14.4c0,8-6.5,14.4-14.4,14.4c-3.1,0-6.1-1-8.5-2.8l-18.2,10.2l0.1,3l17.6,9.6c2.5-2.1,5.8-3.2,9.1-3.2 c8,0,14.4,6.5,14.4,14.4C2714.8,430.8,2708.4,437.3,2700.4,437.3z"/> </g> </svg> </span> 49 shares </div> </div> </div> </div> </div> <div class="container container--gutters"> <hr class="info-page-hr"/> </div> </div> <div id="inside-story" class="inside-story"> <div class="container container--gutters "> <div class="grid grid--center"> <div class="grid__item mobile--one-whole tablet--ten-twelfths desktop--eight-twelfths"> <h2 class="info-page-subheading"> The Inside Story </h2> <p class="inside-story__preamble">Jake Berger Tells us all about the archive</p> <div class="story-panel__text"><p><strong>What is the Computer Literacy Project Archive?</strong></p> <p>Over the years the BBC has produced numerous TV series to help people better understand and use information technology. This Computer Literacy Project (CLP) Archive contains hundreds of programmes and thousands clips from these series along with many other programmes related to computing.&nbsp; It also allows you to run over 150 BBC Micro software programs - written to accompany the TV programmes - in your browser. For those of you who don't know what the BBC Micro is, it was a computer released in 1981, which focused on education software. The material in this archive is searchable by keyword or theme.</p> <p><strong>Who is this for?</strong></p> <p>We hope that this archive is of interest to people who remember the CLP programmes, had a BBC Micro, are interested in the history of technology, or simply wish to experience a bit of 80&rsquo;s nostalgia. &nbsp;Much of the material on the principles of computing remain valid today and are likely to be useful for teaching purposes.</p> <p>&nbsp;</p> </div> <div class="story-panel__image" style="background-image:url(https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/976xn/p069vpx5.jpg)"></div> <div class="story-panel__text"><p><strong>History of the Computer Literacy Project </strong></p> <p>The 1980s saw a revolution in computing. At the beginning, low cost &lsquo;micros&rsquo; were a novelty; by the end they were almost everywhere.&nbsp; In the late seventies the UK seemed woefully unprepared for the &lsquo;new technology&rsquo;. In business and industry, the silicon chip was changing ways of working, threatening many jobs and making the UK uncompetitive. By 1980 both government and the BBC saw the need for a public awareness and education campaign. The result was the BBC&rsquo;s ambitious Computer Literacy Project, which included the launch of the popular BBC Micro computers. The project chronicled an important period in the history of computing as well as contributing to it.</p> <p>You can find out about how the CLP came in to being in the History section of the website.</p> <p><strong>How did the online archive come in to being?</strong></p> <p>This online archive project was conceived and produced by two retired members of BBC staff, David Allen and Steve Lowry.&nbsp; They both worked on the original TV series.&nbsp; Steve Lowry started building and curating the Computer Literacy Project Archive in 2015, describing the thousand of clips and creating a system of navigable themes.&nbsp; David and Steve worked with the BBC&rsquo;s Archive Development team to produce this website.</p> <p><br/>Computer Literacy Project Archive will be permanently live via <a href="https://web.archive.org/web/20211204082926/https://clp.bbcrewind.co.uk/">BBC Archive</a>.</p> </div> </div> </div> </div> </div> <div id="try-more" class="onward-journey"> <div class="onward-journey__gems"> <div class="onward-journey__gems--layer onward-journey__gems--left"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-l-1.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--left"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-l-2.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--left"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-l-3.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--left"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-l-4.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--left"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-l-5.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--left"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-l-6.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--left"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-l-7.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--left"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-l-s1.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--left"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-l-s2.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--right"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-r-1.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--right"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-r-2.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--right"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-r-3.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--right"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-r-4.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--right"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-r-5.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--right"> <img alt="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-r-6.svg"/> </div> <div class="onward-journey__gems--layer onward-journey__gems--right"> <img svg="" role="presentation" src="https://web.archive.org/web/20211204082926im_/https://fxt.files.bbci.co.uk/taster/1486-1/images/svg/homeheader/taster-background-top-r-s1.svg" alt="Taster background top r s1"/> </div> </div> <h2 class="onward-journey__title gel-trafalgar">More new ideas for you on Taster</h2> <div class="container container--gutters"> <div class="more-pilots"> <ul class="more-pilots__list"><!-- --><li class="more-pilots__pilot"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/philip-21"> <img src="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/320xn/p09kt8cy.png" srcset="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1232xn/p09kt8cy.png 1232w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1152xn/p09kt8cy.png 1152w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1072xn/p09kt8cy.png 1072w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/992xn/p09kt8cy.png 992w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/912xn/p09kt8cy.png 912w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/832xn/p09kt8cy.png 832w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/752xn/p09kt8cy.png 752w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/672xn/p09kt8cy.png 672w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/592xn/p09kt8cy.png 592w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/512xn/p09kt8cy.png 512w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/432xn/p09kt8cy.png 432w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/352xn/p09kt8cy.png 352w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/320xn/p09kt8cy.png 320w" sizes="(min-width: 1008px) 35% (min-width: 600px) 45% 100%"> <div class="fade"> <div class="more-pilots__pilot__details"> <h3 class="more-pilots__pilot__title">Philip 21</h3> <span class="more-pilots__pilot__description">Explore the complexities and pitfalls of modern day dating in this interactive experience</span> <div class="more-pilots__pilot__metrics gel-brevier"> <span class="more-pilots__pilot__metric more-pilots__pilot__time_left"></span> <span class="more-pilots__pilot__metric more-pilots__pilot__rating"><i class="icon-pa_star-filled"></i><!-- -->4<!-- --><!-- -->/5 </span> </div> </div> </div> </a> </li><!-- --><li class="more-pilots__pilot"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/we-wait"> <img src="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/320xn/p03xkh0n.jpg" srcset="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1232xn/p03xkh0n.jpg 1232w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1152xn/p03xkh0n.jpg 1152w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1072xn/p03xkh0n.jpg 1072w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/992xn/p03xkh0n.jpg 992w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/912xn/p03xkh0n.jpg 912w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/832xn/p03xkh0n.jpg 832w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/752xn/p03xkh0n.jpg 752w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/672xn/p03xkh0n.jpg 672w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/592xn/p03xkh0n.jpg 592w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/512xn/p03xkh0n.jpg 512w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/432xn/p03xkh0n.jpg 432w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/352xn/p03xkh0n.jpg 352w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/320xn/p03xkh0n.jpg 320w" sizes="(min-width: 1008px) 35% (min-width: 600px) 45% 100%"> <div class="fade"> <div class="more-pilots__pilot__details"> <h3 class="more-pilots__pilot__title">We Wait VR</h3> <span class="more-pilots__pilot__description">A Virtual Reality story about one family&#39;s journey from Syria to Europe</span> <div class="more-pilots__pilot__metrics gel-brevier"> <span class="more-pilots__pilot__metric more-pilots__pilot__time_left"></span> <span class="more-pilots__pilot__metric more-pilots__pilot__rating"><i class="icon-pa_star-filled"></i><!-- -->3<!-- -->.5<!-- -->/5 </span> </div> </div> </div> </a> </li><!-- --><li class="more-pilots__pilot"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/seeking-new-gods"> <img src="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/320xn/p09j25hw.jpg" srcset="https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1232xn/p09j25hw.jpg 1232w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1152xn/p09j25hw.jpg 1152w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/1072xn/p09j25hw.jpg 1072w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/992xn/p09j25hw.jpg 992w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/912xn/p09j25hw.jpg 912w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/832xn/p09j25hw.jpg 832w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/752xn/p09j25hw.jpg 752w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/672xn/p09j25hw.jpg 672w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/592xn/p09j25hw.jpg 592w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/512xn/p09j25hw.jpg 512w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/432xn/p09j25hw.jpg 432w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/352xn/p09j25hw.jpg 352w, https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/320xn/p09j25hw.jpg 320w" sizes="(min-width: 1008px) 35% (min-width: 600px) 45% 100%"> <div class="fade"> <div class="more-pilots__pilot__details"> <h3 class="more-pilots__pilot__title">Seeking New Gods</h3> <span class="more-pilots__pilot__description">Experience Gruff Rhys&#39;s Seeking New Gods in 360掳 audio</span> <div class="more-pilots__pilot__metrics gel-brevier"> <span class="more-pilots__pilot__metric more-pilots__pilot__time_left"></span> <span class="more-pilots__pilot__metric more-pilots__pilot__rating"><i class="icon-pa_star-filled"></i><!-- -->4<!-- -->.5<!-- -->/5 </span> </div> </div> </div> </a> </li><!-- --></ul> </div> </div> <div class="container container--gutters"> <div class="top-pilots-panel"> <ul class="top-pilots-panel__options" role="tablist"> <li class="top-pilots-panel__options__list-item"> <h3><button class="top-pilots-panel__option top-pilots-panel__option--top-rated top-pilots-panel__option--active" role="tab" aria-controls="top-pilots_top-rated" aria-selected="true">Top rated</button></h3> </li> <li class="top-pilots-panel__options__list-item"> <h3><button class="top-pilots-panel__option top-pilots-panel__option--most-shared" role="tab" aria-controls="top-pilots_most-shared" aria-selected="false">Shared</button></h3> </li> <li class="top-pilots-panel__options__list-item"> <h3><button class="top-pilots-panel__option top-pilots-panel__option--most-tried" role="tab" aria-controls="top-pilots_most-tried" aria-selected="false">Tried</button></h3> </li> </ul> <ul id="top-pilots_top-rated" class="top-pilots-panel__pilots top-pilots-panel__pilots--active top-pilots-panel__pilots--top-rated" role="tabpanel"> <li class="top-pilot__list-item top-pilot__list-item--1"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/seeking-new-gods" class="top-pilot"> <div class="top-pilot__image" style="background-image: url('https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/304x171/p09j25hw.jpg')"> <span class="top-pilot__index-indicator"> <span class="top-pilot__index">1</span> </span> </div> <div class="top-pilot__meta"> <h4 class="top-pilot__meta__title proto-item__meta__title">Seeking New Gods</h4> <p class="top-pilot__counts"> <i class="icon-pa_star-filled"></i><i class="icon-pa_star-filled"></i><i class="icon-pa_star-filled"></i><i class="icon-pa_star-filled"></i><i class="icon-pa_star-half-full"></i> <span class="sr-only">5 stars</span> </p> </div> </a> </li> <li class="top-pilot__list-item top-pilot__list-item--2"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/computer-literacy-project" class="top-pilot"> <div class="top-pilot__image" style="background-image: url('https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/304x171/p069vt3k.jpg')"> <span class="top-pilot__index-indicator"> <span class="top-pilot__index">2</span> </span> </div> <div class="top-pilot__meta"> <h4 class="top-pilot__meta__title proto-item__meta__title">Computer Literacy Project Archive</h4> <p class="top-pilot__counts"> <i class="icon-pa_star-filled"></i><i class="icon-pa_star-filled"></i><i class="icon-pa_star-filled"></i><i class="icon-pa_star-filled"></i><i class="icon-pa_star-empty"></i> <span class="sr-only">4 stars</span> </p> </div> </a> </li> <li class="top-pilot__list-item top-pilot__list-item--3"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/philip-21" class="top-pilot"> <div class="top-pilot__image" style="background-image: url('https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/304x171/p09kt8cy.png')"> <span class="top-pilot__index-indicator"> <span class="top-pilot__index">3</span> </span> </div> <div class="top-pilot__meta"> <h4 class="top-pilot__meta__title proto-item__meta__title">Philip 21</h4> <p class="top-pilot__counts"> <i class="icon-pa_star-filled"></i><i class="icon-pa_star-filled"></i><i class="icon-pa_star-filled"></i><i class="icon-pa_star-filled"></i><i class="icon-pa_star-empty"></i> <span class="sr-only">4 stars</span> </p> </div> </a> </li> </ul> <ul id="top-pilots_most-shared" class="top-pilots-panel__pilots top-pilots-panel__pilots--most-shared" role="tabpanel"> <li class="top-pilot__list-item top-pilot__list-item--1"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/computer-literacy-project" class="top-pilot"> <div class="top-pilot__image" style="background-image: url('https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/304x171/p069vt3k.jpg')"> <span class="top-pilot__index-indicator"> <span class="top-pilot__index">1</span> </span> </div> <div class="top-pilot__meta"> <h4 class="top-pilot__meta__title proto-item__meta__title">Computer Literacy Project Archive</h4> <p class="top-pilot__counts"> <i class="icon-pa_share"></i> 49 shares </p> </div> </a> </li> <li class="top-pilot__list-item top-pilot__list-item--2"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/home-a-vr-spacewalk" class="top-pilot"> <div class="top-pilot__image" style="background-image: url('https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/304x171/p05pkwcg.jpg')"> <span class="top-pilot__index-indicator"> <span class="top-pilot__index">2</span> </span> </div> <div class="top-pilot__meta"> <h4 class="top-pilot__meta__title proto-item__meta__title">Home - A VR Spacewalk</h4> <p class="top-pilot__counts"> <i class="icon-pa_share"></i> 39 shares </p> </div> </a> </li> <li class="top-pilot__list-item top-pilot__list-item--3"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/we-wait" class="top-pilot"> <div class="top-pilot__image" style="background-image: url('https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/304x171/p03xkh0n.jpg')"> <span class="top-pilot__index-indicator"> <span class="top-pilot__index">3</span> </span> </div> <div class="top-pilot__meta"> <h4 class="top-pilot__meta__title proto-item__meta__title">We Wait VR</h4> <p class="top-pilot__counts"> <i class="icon-pa_share"></i> 16 shares </p> </div> </a> </li> </ul> <ul id="top-pilots_most-tried" class="top-pilots-panel__pilots top-pilots-panel__pilots--most-tried" role="tabpanel"> <li class="top-pilot__list-item top-pilot__list-item--1"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/seeking-new-gods" class="top-pilot"> <div class="top-pilot__image" style="background-image: url('https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/304x171/p09j25hw.jpg')"> <span class="top-pilot__index-indicator"> <span class="top-pilot__index">1</span> </span> </div> <div class="top-pilot__meta"> <h4 class="top-pilot__meta__title proto-item__meta__title">Seeking New Gods</h4> <p class="top-pilot__counts"> <i class="icon-pa_interact"></i> 113 tries </p> </div> </a> </li> <li class="top-pilot__list-item top-pilot__list-item--2"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/philip-21" class="top-pilot"> <div class="top-pilot__image" style="background-image: url('https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/304x171/p09kt8cy.png')"> <span class="top-pilot__index-indicator"> <span class="top-pilot__index">2</span> </span> </div> <div class="top-pilot__meta"> <h4 class="top-pilot__meta__title proto-item__meta__title">Philip 21</h4> <p class="top-pilot__counts"> <i class="icon-pa_interact"></i> 36 tries </p> </div> </a> </li> <li class="top-pilot__list-item top-pilot__list-item--3"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/pick-a-part" class="top-pilot"> <div class="top-pilot__image" style="background-image: url('https://web.archive.org/web/20211204082926im_/https://ichef.bbci.co.uk/images/ic/304x171/p08qf4zk.png')"> <span class="top-pilot__index-indicator"> <span class="top-pilot__index">3</span> </span> </div> <div class="top-pilot__meta"> <h4 class="top-pilot__meta__title proto-item__meta__title">Pick A Part</h4> <p class="top-pilot__counts"> <i class="icon-pa_interact"></i> 31 tries </p> </div> </a> </li> </ul> </div> </div> </div> <div class="disclaimer-popup popup popup-bottom"> <div class="container container--gutters"> <div class="grid"> <div class="grid__item desktop--two-thirds tablet--two-thirds"> <h2 class="disclaimer-popup__title">You are entering an experimental area</h2> <h3 class="disclaimer-popup__subtitle">Some ideas could break!</h3> </div> <div class="grid__item desktop--one-third tablet--one-third"> <div class="disclaimer-popup__actions"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/about" class="disclaimer-popup__button-primary button button--border uppercase">Find out more</a> <button class="disclaimer-popup__button-secondary button" name="close"><i class="icon-pa_close"></i></button> </div> </div> </div> </div> </div> </div> <div id="orb-footer" class="orb-footer" dir="ltr"> <div id="navp-orb-footer-promo"></div><aside role="complementary"><div id="orb-aside" class="orb-nav-sec b-r b-g-p"><div class="orb-footer-inner" role="navigation" aria-label="BBC"><h2 class="orb-footer-lead">Explore the BBC</h2><div class="orb-footer-primary-links"><ul><li class="orb-nav-home"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/">Home</a></li><li class="orb-nav-news"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/news">News</a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/sport">Sport</a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/weather">Weather</a></li><li class="orb-nav-iplayer"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/iplayer">iPlayer</a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/sounds">Sounds</a></li><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-food"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/food">Food</a></li><li class="orb-nav-bitesize"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-arts"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/arts">Arts</a></li><li class="orb-nav-taster"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/taster">Taster</a></li><li class="orb-nav-local"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/news/localnews">Local</a></li><li class="orb-nav-three"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/bbcthree">Three</a></li></ul></div></div></div></aside><footer role="contentinfo"><div id="orb-contentinfo" class="orb-nav-sec b-r b-g-p"><script>window.orb = window.orb || {}; window.orb.worldwideFooterlinks = '<li class="orb-footer-ads"><a href="https://web.archive.org/web/20211204082926/https://www.bbcglobalnews.com/">Advertise with us<' + '/a><' + '/li><li class="orb-footer-adchoices"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/">AdChoices / Do Not Sell My Info<' + '/a><' + '/li>';</script><div class="orb-footer-inner"><div><ul><li class="orb-footer-terms"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/usingthebbc/terms/">Terms of Use</a></li><li class="orb-footer-about"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/aboutthebbc">About the BBC</a></li><li class="orb-footer-privacy"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/usingthebbc/privacy/">Privacy Policy</a></li><li class="orb-footer-cookies"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/usingthebbc/cookies/">Cookies</a></li><li class="orb-footer-accessibility"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li><li class="orb-footer-parental"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/guidance">Parental Guidance</a></li><li class="orb-footer-contact"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/contact">Contact the BBC</a></li><li class="orb-footer-newsletter"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/bbcnewsletter">Get Personalised Newsletters</a></li></ul><small><em class="orb-hilight">Copyright &copy; 2021 BBC.</em> The BBC is not responsible for the content of external sites. <span class="orb-footer-links"><a href="https://web.archive.org/web/20211204082926/https://www.bbc.co.uk/editorialguidelines/guidance/feeds-and-links" class="orb-hilight">Read about our approach to external linking.</a></span></small></div></div></div></footer></div><script type="importmap">{"imports":{"orbit-drawer":"https://web.archive.org/web/20211204082926/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/drawer-api.bundle.js","bbccookies":"https://web.archive.org/web/20211204082926/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-library.module.js"}}</script><script type="text/javascript" src="https://web.archive.org/web/20211204082926js_/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/redirect.bundle.js" async=""></script><script type="text/javascript" src="https://web.archive.org/web/20211204082926js_/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/performance.bundle.js" data-release="3.0.0-1763.596b8caa" data-ux="orb" data-reqjs="" async=""></script><script id="orb-js-script" data-assetpath="https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/" src="https://web.archive.org/web/20211204082926js_/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/orb.min.js"></script><script type="module" src="https://web.archive.org/web/20211204082926jm_/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/orbit.js" async=""></script><script nomodule="" type="text/javascript" src="https://web.archive.org/web/20211204082926js_/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/legacyOrbit.js" async=""></script> <script type="text/javascript">/*<![CDATA[*/ require(['orb/nav'], function(nav) { window.bbcuser.isUKCombined().then(function(isUK) { if (isUK) { nav.loadJs('https://web.archive.org/web/20211204082926/https://static.files.bbci.co.uk/orbit/fdd3ad2b928a46fe70bc1eba323a00af/js/edr.min.js'); } }); }); /*]]>*/</script> <script type="text/javascript">require.config({ paths: { "mybbc/templates": '//web.archive.org/web/20211204082926/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/templates', "mybbc/notifications": '//web.archive.org/web/20211204082926/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/js' } }); require(['mybbc/notifications/NotificationsMain', 'idcta/idcta-1'], function (NotificationsMain, idcta) { var loadNotifications = function (isUK) { if (isUK) { window.bbcpage.loadCSS('//web.archive.org/web/20211204082926/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/css/main.min.css').then(function() { NotificationsMain.run(idcta, '//web.archive.org/web/20211204082926/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/'); }); } }; window.bbcuser.isUKCombined().then(function(isUK) { loadNotifications(isUK); }); });</script> <script type="module">if (window.bbcuser && window.bbcuser.isUKCombined) { bbcuser.isUKCombined().then(function (isUK) { if (isUK) { const isOrbUx = !!document.querySelector('.orb-nav-pri-container'); if (isOrbUx) { const script = document.createElement('script'); script.src = 'https://web.archive.org/web/20211204082926/https://nav.files.bbci.co.uk/searchbox/763294d66de75efa15cd1c55e0e8dac1//js/old-search-suggest.js'; script.async = true; script.setAttribute('data-static-prefix', 'https://web.archive.org/web/20211204082926/https://nav.files.bbci.co.uk/searchbox/763294d66de75efa15cd1c55e0e8dac1/'); script.setAttribute('data-variant', 'default'); document.head.appendChild(script); } else { import('https://web.archive.org/web/20211204082926/https://nav.files.bbci.co.uk/searchbox/763294d66de75efa15cd1c55e0e8dac1//js/search-suggest.js').then(drawer => { drawer.setupSearchDrawer({ searchboxAppStaticPrefix: 'https://web.archive.org/web/20211204082926/https://nav.files.bbci.co.uk/searchbox/763294d66de75efa15cd1c55e0e8dac1/', variant: 'default', }); }); } } }); }</script> <script type="text/javascript" src="https://web.archive.org/web/20211204082926js_/https://nav.files.bbci.co.uk/navpromo/34f98a4c8573fabed16dc8acea28feb8/js/footerpromo.js" data-base="https://navpromo.api.bbci.co.uk" data-variant="" async=""></script> <script type="text/javascript">window.COOKIES_STATIC_HOST="https://web.archive.org/web/20211204082926/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-prompt/"</script><script src="https://web.archive.org/web/20211204082926js_/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-banners.bundle.js" async=""></script> <script src="https://web.archive.org/web/20211204082926js_/https://nav.files.bbci.co.uk//user-activity-helper/5a08eeec4b85ac14cd5e09e2fab845eb/js/detectview.bundle.js" async=""></script><script type="text/javascript">"use strict";window.__reverb.__reverbLoadedPromise.then(function(e){return e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Failed to load reverb. No event sent")});</script> </div> <div class="responsive-nav sb-slidebar sb-left sb-style-push"> <!-- left Slidebar content. --> <h2>Computer Literacy Project Archive</h2> <ul> <li class="dm__nav__item info"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/computer-literacy-project" class=" info-button"> <i class="icon-pa_help"></i> <span>Info</span> </a> </li> <li class="dm__nav__item story"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/computer-literacy-project/inside-story" class=" story-button"> <i class="icon-pa_article"></i> <span>Inside Story</span> </a> </li> <li class="dm__nav__item more"> <a href="/web/20211204082926/https://www.bbc.co.uk/taster/pilots/computer-literacy-project/more-like-this" class=" more-button"> <i class="icon-pa_more"></i> <span>More</span> </a> </li> </ul> </div> <script src="https://web.archive.org/web/20211204082926js_/https://fxt.files.bbci.co.uk/taster/1486-1/javascripts/taster.js"></script> <script type="text/javascript"> require(['taster/core.taster'], function(core) { core.init(window.taster, 'production-live'); require(['taster/pilot-info/controller'], function (controller) { require(['domready'], function (domReady) { domReady(function () { controller.init({"env":"production-live","pilot":{"id":"computer-literacy-project","title":"Computer Literacy Project Archive","preview_style":"new-window","smp_360_iframe":false,"inline_preview":false,"alternate_preview_url":"https://web.archive.org/web/20211204082926/https://clp.bbcrewind.co.uk/","social_media_cta":"Flashback to the 70's and 80's with BBC Micro Computer programmes and original software on @BBCTaster","trailer_video":null,"trailer_video_360":false,"rating_count":694,"browser_requirements":[],"unsupported_warning":"We鈥檙e experimenting with new technology and the browser you are using is unable to run this pilot. Try visiting this page in a different browser or check out some of the other ideas on Taster below.","link_out":"https://web.archive.org/web/20211204082926/https://clp.bbcrewind.co.uk/","disabled":false,"vr_options":null,"expired":false,"available_after_expiry":true},"rate_endpoint":"https://web.archive.org/web/20211204082926/https://taster-rate.api.bbc.co.uk","asset_path":"https://web.archive.org/web/20211204082926/https://fxt.files.bbci.co.uk/taster/1486-1"}); }); }); }); }); </script> <!-- analytics view event --> <script type="text/javascript"> require(['taster/core.taster', 'taster/global/analytics'], function(core, analytics) { taster.analytics = analytics.init( 'taster.pilot.computer_literacy_project.info.page', {"language":"en-gb","app_name":"taster","prod_name":"taster","pilot_name":"computer-literacy-project"}, {"destination":"TASTER","producer":"TASTER","name":"taster.pilot.computer_literacy_project.info.page","contentType":"article","language":"en-gb"}, false ); }); </script> <script> if (!Modernizr.svg) { require(['jquery'], function($) { $('img[src$="svg"]').each(function() { $(this).attr('src', $(this).attr('src').replace(/svg/g, 'png')); }); }); } </script> </body> </html> <!-- FILE ARCHIVED ON 08:29:26 Dec 04, 2021 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 03:49:50 Dec 02, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.549 exclusion.robots: 0.031 exclusion.robots.policy: 0.019 esindex: 0.011 cdx.remote: 27.548 LoadShardBlock: 119.518 (3) PetaboxLoader3.datanode: 83.746 (4) PetaboxLoader3.resolve: 221.374 (2) load_resource: 216.637 -->

Pages: 1 2 3 4 5 6 7 8 9 10