SlideShare une entreprise Scribd logo
1  sur  70
How we make websites BBC Audio and Music
Matthew Wood  Head of Architecture Michael Smethurst   Information Architect
http://www.bbc.co.uk/programmes
Piccie of blog post
Piccie of response
j.speller  4 months ago Be good to see but, sadly for use in HE, how the BBC makes websites is with loads of  licence payers' dosh ...
Designing and building data driven dynamic web applications… … the one web, domain driven, RESTful, open, linked data way
Designing and building data driven dynamic web applications… … the  one web , domain driven, RESTful, open, linked data way
Designing and building data driven dynamic web applications… … the one web,  domain driven , RESTful, open, linked data way
Designing and building data driven dynamic web applications… … the one web, domain driven,  RESTful , open, linked data way
Designing and building data driven dynamic web applications… … the one web, domain driven, RESTful,  open , linked data way
Designing and building data driven dynamic web applications… … the one web, domain driven, RESTful, open,  linked data  way
Explore the domain
Explore the domain This should be clear from the business requirements. It might be food or music or gardening… Employ a  domain expert Get them to  sketch  their world Sketch back at them Model real things   not  web pages - try to blank from your mind all thoughts of the resulting web site Do this through the lifetime of the project as you refine your understanding
Identify your domain objects As you chat and sketch with your domain expert you should build up a picture of the types of things they’re concerned with Make a list  of these objects
Identify the relationships between your domain objects As your knowledge of the domain increases you’ll build up a picture of how your objects interlink Sketch basic entity relationship diagrams with your domain expert Keep sketching until the picture clears The resulting domain model will inform the rest of your project and should be one of the few ‘artifacts’ your project ever creates
Identify the relationships between your domain objects As your knowledge of the domain increases you’ll build up a picture of how your objects interlink Sketch basic  entity relationship diagrams  with your domain expert Keep sketching until the picture clears The resulting  domain model  will inform the rest of your project and should be one of the few ‘artifacts’ your project ever creates
Check your domain model with users
Check your domain model with users Run focus groups Speak to users  - get them to sketch their understanding of the domain Sketch back at them Synthesise  the expert model and the user model User-centric design  starts here - if you choose to model things and relationships between those things that users can't easily comprehend no amount of wireframes or personas or storyboards will help you out
Check to see if your website already deals with some of your domain objects
Check to see if your website already deals with some of your domain objects If it does then reuse this functionality by  linking to these pages You don’t want to mint new URIs for existing objects Having more than one page per object  confuses users  and  confuses Google Think of your website as a coherent whole; not as a collection of individual products As ever,  don’t expose your internal organisational structures  through your website. Users don’t care about departments or reporting lines
Design your database Translate your domain model into a physical database schema
Design your database Translate your domain model into a  physical database schema
Source your data
Source your data Check if there are business systems in your organisation able to populate your schema Check if there are existing websites outside your organisation you can use to populate your schema Give preferential treatment to any websites that offer their data under a  liberal licencing agreement  - you can buy in data to help you slice and dice your own data but if you do this you might not be able to provide an  open data API  without giving away the 3rd party’s business model If your organisation AND an open data website can provide the data you need  consider the danger in minting new identifiers  for your own data - can you easily link out / can you easily get links in?
Pipe in your data
Pipe in your data Whether you choose to use your business data or buy data or use open data you’ll need a way of  piping  it into your database schema You’ll probably have to  reshape  it to make it suitable for publishing
Make your models
Make your models In an MVC framework your models should contain all your  business logic This means they should capture all the constraints of your database schema plus all the extra  constraints of your domain model
Design your URI schema
Design your URI schema This should follow naturally from your domain model This isn’t just about designing URIs for resources you link to - sometimes your pages will be made up of other transcluded resources - all of these  subsidiary resources should be addressable  too By making  every nugget of content addressable  you allow other sites to link to it, improve your  bookmarkability  and increase your  SEO  - cf. an individual ‘tweet’ Bear in mind that some representations (specifically  mobile ) will need smaller, more fragmented representations with lower page weight - designing your subsidiary resources to be addressable allows you to easily deal with this requirement - transclude the content on a desktop machine, link to it on a mobile
The usual rant about persistence It’s nice if URIs are  human readable It’s also nice if they’re  hackable It’s an absolute prerequisite that they’re  persistent Don’t sacrifice persistence  for the sake of prettiness or misguided SEO URIs are your promise to the web  and your users - if you change them or change their meaning you break that promise - links break, bookmarks break, citations break and your search engine juice is lost * Cool URIs don’t change *
Make hello world pages for your primary domain objects
Make hello world pages for your primary domain objects For now all they need is an  h1  with the title of the object
Make hello world pages for your primary aggregations
Make hello world pages for your primary aggregations For now all they need is an  h1  with the title of the aggregation and a  linked list  of things aggregated
Define the data you need to build each of your pages
Define the data you need to build each of your pages For each URI  define the data  you need to build  all representations  of the object This should cover all the representations you intend to make - just because the  HTML  representation doesn’t need to show the updated date doesn’t mean the  RSS  or  Atom  or  RDF  don’t need it Some resources will transclude others. You don’t need to define the data required for these - just reference the transcluded resource
Build up your HTML pages and other representations
Build up your HTML pages and other representations Now you know what data you need you can begin to surface this in your representations If you’re working in HTML make sure you design your document to be  semantically correct  and  accessible Try not to think about page layout - that’s the job of CSS not HTML In general your page should be structured into  title, content, navigation  - screen readers don’t want to fight through calendar tables etc to get to the content
Apply layout CSS
Apply layout CSS Add layout CSS to your HTML pages Experiment with different layouts for your markup by moving elements around the page You’re  wireframing
Test and iterate
Test and iterate You should be testing with real users at every stage of development but it’s particularly important to conduct  usability  AND  accessibility  tests now It’s like testing traditional wireframes but you’re  testing on the real application  with real application behaviours and real data (no lorem ipsum) Sometimes the results of your testing will require changes to layout CSS, sometimes to markup, sometimes to the data you need to surface and sometimes to the underlying domain / data model Bear in mind if you’re using data from existing business systems there may need to be  heavy investment  to make changes to that data model and employ the staff to admin those  changes Occasionally it might even mean  renegotiating contracts  with outside data providers - all design and usability issues are fixable - some just need more lawyers than others : )
Apply décor CSS
Apply décor CSS Over the top of your wireframe application you can now start to add  visual design  and  branding This is exactly the same process as taking a paper wireframe and applying design treatments over the top except you’re mainly working in CSS Experiment with different treatments - see how far you can stretch the design with the markup given Sometimes you’ll need to add additional markup to hook your CSS off Now’s the time to add  background imagery  for headers, dividers, buttons, list items etc so best to open  Photoshop  /  Illustrator  to make your design assets
And test and iterate
And test and iterate Never stop testing Remember that personas are just abstractions of people - it’s always better to  use real people Ideally you should be able to adjust your code / markup / CSS to respond to user requests If you can afford the recruitment / developer time there’s no better way to test than with a user sitting alongside a developer - the developer can react to user requests, tweak the application and gain  instant feedback  without the ambiguity that sometimes comes from test reports Again you should  accessibility test  - some of the design / décor changes may affect font sizes, colours etc - make sure your users can still read the page
Add any JavaScript / AJAX
Add any JavaScript / AJAX By designing your browsable site first and adding in Javascript / AJAX over the top you stand a better chance of making an accessible web site - one that  degrades gracefully As ever Google et al are your least able users - search bots don’t like forms or JavaScript -  sites that degrade well for accessibility also degrade well for search engines Making every  subsidiary resource addressable  and providing these resources serialised as XML or JSON makes adding AJAX relatively trivial You’ll probably need to tweak your CSS to adjust to life with JavaScript / AJAX
And test and iterate
And test and iterate Again test your site for accessibility and usability with  JavaScript turned on and off
Continue
Continue Follow the same steps for each development cycle Some development cycles will just be about surfacing new views of the existing domain model; some will require  expanding your domain model Now you know your domain model and have made each domain object addressable layering over  new views  and more subtle  user journeys  should be trivial And keep testing!
The websites we make
http://www.bbc.co.uk /programmes
Readable, hackable URIs for aggregations
http://www.bbc.co.uk /programmes/genres/music/folk
http://www.bbc.co.uk /radio2 /programmes/genres/music/folk
http://www.bbc.co.uk/radio2/programmes /schedules/2009/07/24
http://www.bbc.co.uk/radio2/programmes/schedules/2009/07/24 .xml
Persistent URIs for primary domain objects (brands, series, episodes…)
http://www.bbc.co.uk/programmes /b00lqcs1
http://www.bbc.co.uk/programmes/b00lqcs1 .mp
http://www.bbc.co.uk/programmes/b00lqcs1 .rdf
All subsidiary resources addressable
http://www.bbc.co.uk/programmes/b00lqcs1 /segments
And all linked up to…
http://www.bbc.co.uk /music
Questions ?

Contenu connexe

Tendances

Web Design 101
Web Design 101Web Design 101
Web Design 101T.S. Lim
 
How to Improve the SharePoint UI Using Bootstrap 3
How to Improve the SharePoint UI Using Bootstrap 3How to Improve the SharePoint UI Using Bootstrap 3
How to Improve the SharePoint UI Using Bootstrap 3Ryan McIntyre
 
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD CombinationLotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD CombinationSean Burgess
 
Step into the SharePoint branding world, tools and techniques
Step into the SharePoint branding world, tools and techniquesStep into the SharePoint branding world, tools and techniques
Step into the SharePoint branding world, tools and techniquesBenjamin Niaulin
 
Process for Online Visibility: From Information Architecture to Killer Content
Process for Online Visibility: From Information Architecture to Killer ContentProcess for Online Visibility: From Information Architecture to Killer Content
Process for Online Visibility: From Information Architecture to Killer ContentYo! Yo! SEO
 
Usabilityslideshow
UsabilityslideshowUsabilityslideshow
UsabilityslideshowCarmell06769
 
Web Design Notes
Web Design NotesWeb Design Notes
Web Design Notesbutest
 
Branding 101 extended
Branding 101 extendedBranding 101 extended
Branding 101 extendedD'arce Hess
 
SharePoint Publishing 101
SharePoint Publishing 101SharePoint Publishing 101
SharePoint Publishing 101Becky Bertram
 
Choosing the best front end framework for web development 2020
Choosing the best front end framework for web development 2020Choosing the best front end framework for web development 2020
Choosing the best front end framework for web development 2020Katy Slemon
 
Introduction to Web Design
Introduction to Web DesignIntroduction to Web Design
Introduction to Web DesignVictor M. Ortiz
 
FireBootCamp Introduction to SEO by XEN Systems
FireBootCamp Introduction to SEO by XEN SystemsFireBootCamp Introduction to SEO by XEN Systems
FireBootCamp Introduction to SEO by XEN SystemsCraig Bailey
 
Transform SharePoint default list forms with HTML, CSS and JavaScript
Transform SharePoint default list forms with HTML, CSS and JavaScriptTransform SharePoint default list forms with HTML, CSS and JavaScript
Transform SharePoint default list forms with HTML, CSS and JavaScriptJohn Calvert
 
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...SPTechCon
 

Tendances (20)

ARTICULOENINGLES
ARTICULOENINGLESARTICULOENINGLES
ARTICULOENINGLES
 
Web Design 101
Web Design 101Web Design 101
Web Design 101
 
Writing for the Web
Writing for the WebWriting for the Web
Writing for the Web
 
How to Improve the SharePoint UI Using Bootstrap 3
How to Improve the SharePoint UI Using Bootstrap 3How to Improve the SharePoint UI Using Bootstrap 3
How to Improve the SharePoint UI Using Bootstrap 3
 
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD CombinationLotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
Lotusphere 2012 Speedgeeking - jQuery & Domino, a RAD Combination
 
Step into the SharePoint branding world, tools and techniques
Step into the SharePoint branding world, tools and techniquesStep into the SharePoint branding world, tools and techniques
Step into the SharePoint branding world, tools and techniques
 
Tips for share point branding
Tips for share point brandingTips for share point branding
Tips for share point branding
 
Process for Online Visibility: From Information Architecture to Killer Content
Process for Online Visibility: From Information Architecture to Killer ContentProcess for Online Visibility: From Information Architecture to Killer Content
Process for Online Visibility: From Information Architecture to Killer Content
 
Usabilityslideshow
UsabilityslideshowUsabilityslideshow
Usabilityslideshow
 
Web Design Notes
Web Design NotesWeb Design Notes
Web Design Notes
 
Branding 101 extended
Branding 101 extendedBranding 101 extended
Branding 101 extended
 
Branding 101
Branding 101Branding 101
Branding 101
 
SharePoint Publishing 101
SharePoint Publishing 101SharePoint Publishing 101
SharePoint Publishing 101
 
Choosing the best front end framework for web development 2020
Choosing the best front end framework for web development 2020Choosing the best front end framework for web development 2020
Choosing the best front end framework for web development 2020
 
Website Sitemap
Website SitemapWebsite Sitemap
Website Sitemap
 
Introduction to Web Design
Introduction to Web DesignIntroduction to Web Design
Introduction to Web Design
 
FireBootCamp Introduction to SEO by XEN Systems
FireBootCamp Introduction to SEO by XEN SystemsFireBootCamp Introduction to SEO by XEN Systems
FireBootCamp Introduction to SEO by XEN Systems
 
Transform SharePoint default list forms with HTML, CSS and JavaScript
Transform SharePoint default list forms with HTML, CSS and JavaScriptTransform SharePoint default list forms with HTML, CSS and JavaScript
Transform SharePoint default list forms with HTML, CSS and JavaScript
 
Web designing course bangalore
Web designing course bangaloreWeb designing course bangalore
Web designing course bangalore
 
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
 

En vedette

Ontologies, URLs and Registers
Ontologies, URLs and RegistersOntologies, URLs and Registers
Ontologies, URLs and Registersfantasticlife
 
How We Make Websites
How We Make WebsitesHow We Make Websites
How We Make Websitesfantasticlife
 
Dana Potočková, Living the Story
Dana Potočková, Living the StoryDana Potočková, Living the Story
Dana Potočková, Living the StoryCPMV, o. s.
 

En vedette (6)

Ontologies, URLs and Registers
Ontologies, URLs and RegistersOntologies, URLs and Registers
Ontologies, URLs and Registers
 
How We Make Websites
How We Make WebsitesHow We Make Websites
How We Make Websites
 
BBC Programmes
BBC ProgrammesBBC Programmes
BBC Programmes
 
Dana Potočková, Living the Story
Dana Potočková, Living the StoryDana Potočková, Living the Story
Dana Potočková, Living the Story
 
Domain model
Domain modelDomain model
Domain model
 
Domain Modeling
Domain ModelingDomain Modeling
Domain Modeling
 

Similaire à How we make websites (IWMW2009)

Datalayer Best Practices with Observepoint
Datalayer Best Practices with ObservepointDatalayer Best Practices with Observepoint
Datalayer Best Practices with ObservepointMike Plant
 
Bootstrap for Beginners
Bootstrap for BeginnersBootstrap for Beginners
Bootstrap for BeginnersD'arce Hess
 
Lesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdfLesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdfAshleyJovelClavecill
 
Leverage Your Online Web Presence
Leverage Your Online Web PresenceLeverage Your Online Web Presence
Leverage Your Online Web PresenceSusan Boone
 
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 Evan Mullins
 
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPressWordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPressDan Taylor
 
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy DewMake SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy DewCathy Dew
 
Building complex sites with Joomla
Building complex sites with JoomlaBuilding complex sites with Joomla
Building complex sites with JoomlaPaul Delbar
 
Data Analytics Course Syllabus
Data Analytics Course Syllabus Data Analytics Course Syllabus
Data Analytics Course Syllabus NxtWave
 
SEF2013 - Create a Business Solution, Step by Step, with No Managed Code
SEF2013 - Create a Business Solution, Step by Step, with No Managed CodeSEF2013 - Create a Business Solution, Step by Step, with No Managed Code
SEF2013 - Create a Business Solution, Step by Step, with No Managed CodeMarc D Anderson
 
Demystifying The Web
Demystifying The WebDemystifying The Web
Demystifying The WebLoft Creative
 
ASSESSMENT BRIEF COURSE Bachelor of Business Bachel.docx
ASSESSMENT BRIEF COURSE Bachelor of Business  Bachel.docxASSESSMENT BRIEF COURSE Bachelor of Business  Bachel.docx
ASSESSMENT BRIEF COURSE Bachelor of Business Bachel.docxgalerussel59292
 
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!Evan Mullins
 
Websites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly WebsitesWebsites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly Websiteswebsiteunlimited
 
Bootstrap 4 Online Training Course Book Sample
Bootstrap 4 Online Training Course Book SampleBootstrap 4 Online Training Course Book Sample
Bootstrap 4 Online Training Course Book SampleBootstrap Creative
 
How to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteHow to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteJj Jurgens
 
Graphic Design For Web
Graphic Design For WebGraphic Design For Web
Graphic Design For WebDeniz Gökçe
 
Growing Your Business With A Website: WIBO
Growing Your Business With A Website: WIBOGrowing Your Business With A Website: WIBO
Growing Your Business With A Website: WIBOMardy Sitzer
 
SharePoint as a Web CMS
SharePoint as a Web CMSSharePoint as a Web CMS
SharePoint as a Web CMSCraig Bailey
 

Similaire à How we make websites (IWMW2009) (20)

Datalayer Best Practices with Observepoint
Datalayer Best Practices with ObservepointDatalayer Best Practices with Observepoint
Datalayer Best Practices with Observepoint
 
Bootstrap for Beginners
Bootstrap for BeginnersBootstrap for Beginners
Bootstrap for Beginners
 
Lesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdfLesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdf
 
Leverage Your Online Web Presence
Leverage Your Online Web PresenceLeverage Your Online Web Presence
Leverage Your Online Web Presence
 
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017 So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
So, You Wanna Dev? Join the Team! - WordCamp Raleigh 2017
 
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPressWordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
WordPress North East (Jan 2021) ~ SEO Fundamentals For WordPress
 
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy DewMake SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
 
Building complex sites with Joomla
Building complex sites with JoomlaBuilding complex sites with Joomla
Building complex sites with Joomla
 
Data Analytics Course Syllabus
Data Analytics Course Syllabus Data Analytics Course Syllabus
Data Analytics Course Syllabus
 
SEF2013 - Create a Business Solution, Step by Step, with No Managed Code
SEF2013 - Create a Business Solution, Step by Step, with No Managed CodeSEF2013 - Create a Business Solution, Step by Step, with No Managed Code
SEF2013 - Create a Business Solution, Step by Step, with No Managed Code
 
Demystifying The Web
Demystifying The WebDemystifying The Web
Demystifying The Web
 
ASSESSMENT BRIEF COURSE Bachelor of Business Bachel.docx
ASSESSMENT BRIEF COURSE Bachelor of Business  Bachel.docxASSESSMENT BRIEF COURSE Bachelor of Business  Bachel.docx
ASSESSMENT BRIEF COURSE Bachelor of Business Bachel.docx
 
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
WordCamp Asheville 2017 - So You Wanna Dev? Join the Team!
 
Websites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly WebsitesWebsites Unlimited - Pay Monthly Websites
Websites Unlimited - Pay Monthly Websites
 
Bootstrap 4 Online Training Course Book Sample
Bootstrap 4 Online Training Course Book SampleBootstrap 4 Online Training Course Book Sample
Bootstrap 4 Online Training Course Book Sample
 
How to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteHow to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive Website
 
Graphic Design For Web
Graphic Design For WebGraphic Design For Web
Graphic Design For Web
 
Growing Your Business With A Website: WIBO
Growing Your Business With A Website: WIBOGrowing Your Business With A Website: WIBO
Growing Your Business With A Website: WIBO
 
SharePoint as a Web CMS
SharePoint as a Web CMSSharePoint as a Web CMS
SharePoint as a Web CMS
 
What’s Up, EDoc?!
What’s Up,EDoc?!What’s Up,EDoc?!
What’s Up, EDoc?!
 

Plus de fantasticlife

Toward a parliamentary domain model
Toward a parliamentary domain modelToward a parliamentary domain model
Toward a parliamentary domain modelfantasticlife
 
Linked data context strategy
Linked data context strategyLinked data context strategy
Linked data context strategyfantasticlife
 
People on bbccouk_pitch_nov2012
People on bbccouk_pitch_nov2012People on bbccouk_pitch_nov2012
People on bbccouk_pitch_nov2012fantasticlife
 
Old Media, New Media, the productisation of publishing and the tethered appli...
Old Media, New Media, the productisation of publishing and the tethered appli...Old Media, New Media, the productisation of publishing and the tethered appli...
Old Media, New Media, the productisation of publishing and the tethered appli...fantasticlife
 
Designing For Your Least Able User
Designing For Your Least Able UserDesigning For Your Least Able User
Designing For Your Least Able Userfantasticlife
 

Plus de fantasticlife (6)

Toward a parliamentary domain model
Toward a parliamentary domain modelToward a parliamentary domain model
Toward a parliamentary domain model
 
Linked data context strategy
Linked data context strategyLinked data context strategy
Linked data context strategy
 
People on bbccouk_pitch_nov2012
People on bbccouk_pitch_nov2012People on bbccouk_pitch_nov2012
People on bbccouk_pitch_nov2012
 
Old Media, New Media, the productisation of publishing and the tethered appli...
Old Media, New Media, the productisation of publishing and the tethered appli...Old Media, New Media, the productisation of publishing and the tethered appli...
Old Media, New Media, the productisation of publishing and the tethered appli...
 
Designing For Your Least Able User
Designing For Your Least Able UserDesigning For Your Least Able User
Designing For Your Least Able User
 
Semweb at the BBC
Semweb at the BBCSemweb at the BBC
Semweb at the BBC
 

Dernier

Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 

Dernier (20)

Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 

How we make websites (IWMW2009)

  • 1. How we make websites BBC Audio and Music
  • 2. Matthew Wood Head of Architecture Michael Smethurst Information Architect
  • 6. j.speller 4 months ago Be good to see but, sadly for use in HE, how the BBC makes websites is with loads of licence payers' dosh ...
  • 7. Designing and building data driven dynamic web applications… … the one web, domain driven, RESTful, open, linked data way
  • 8. Designing and building data driven dynamic web applications… … the one web , domain driven, RESTful, open, linked data way
  • 9. Designing and building data driven dynamic web applications… … the one web, domain driven , RESTful, open, linked data way
  • 10. Designing and building data driven dynamic web applications… … the one web, domain driven, RESTful , open, linked data way
  • 11. Designing and building data driven dynamic web applications… … the one web, domain driven, RESTful, open , linked data way
  • 12. Designing and building data driven dynamic web applications… … the one web, domain driven, RESTful, open, linked data way
  • 14. Explore the domain This should be clear from the business requirements. It might be food or music or gardening… Employ a domain expert Get them to sketch their world Sketch back at them Model real things not web pages - try to blank from your mind all thoughts of the resulting web site Do this through the lifetime of the project as you refine your understanding
  • 15. Identify your domain objects As you chat and sketch with your domain expert you should build up a picture of the types of things they’re concerned with Make a list of these objects
  • 16. Identify the relationships between your domain objects As your knowledge of the domain increases you’ll build up a picture of how your objects interlink Sketch basic entity relationship diagrams with your domain expert Keep sketching until the picture clears The resulting domain model will inform the rest of your project and should be one of the few ‘artifacts’ your project ever creates
  • 17. Identify the relationships between your domain objects As your knowledge of the domain increases you’ll build up a picture of how your objects interlink Sketch basic entity relationship diagrams with your domain expert Keep sketching until the picture clears The resulting domain model will inform the rest of your project and should be one of the few ‘artifacts’ your project ever creates
  • 18. Check your domain model with users
  • 19. Check your domain model with users Run focus groups Speak to users - get them to sketch their understanding of the domain Sketch back at them Synthesise the expert model and the user model User-centric design starts here - if you choose to model things and relationships between those things that users can't easily comprehend no amount of wireframes or personas or storyboards will help you out
  • 20. Check to see if your website already deals with some of your domain objects
  • 21. Check to see if your website already deals with some of your domain objects If it does then reuse this functionality by linking to these pages You don’t want to mint new URIs for existing objects Having more than one page per object confuses users and confuses Google Think of your website as a coherent whole; not as a collection of individual products As ever, don’t expose your internal organisational structures through your website. Users don’t care about departments or reporting lines
  • 22. Design your database Translate your domain model into a physical database schema
  • 23. Design your database Translate your domain model into a physical database schema
  • 25. Source your data Check if there are business systems in your organisation able to populate your schema Check if there are existing websites outside your organisation you can use to populate your schema Give preferential treatment to any websites that offer their data under a liberal licencing agreement - you can buy in data to help you slice and dice your own data but if you do this you might not be able to provide an open data API without giving away the 3rd party’s business model If your organisation AND an open data website can provide the data you need consider the danger in minting new identifiers for your own data - can you easily link out / can you easily get links in?
  • 26. Pipe in your data
  • 27. Pipe in your data Whether you choose to use your business data or buy data or use open data you’ll need a way of piping it into your database schema You’ll probably have to reshape it to make it suitable for publishing
  • 29. Make your models In an MVC framework your models should contain all your business logic This means they should capture all the constraints of your database schema plus all the extra constraints of your domain model
  • 30. Design your URI schema
  • 31. Design your URI schema This should follow naturally from your domain model This isn’t just about designing URIs for resources you link to - sometimes your pages will be made up of other transcluded resources - all of these subsidiary resources should be addressable too By making every nugget of content addressable you allow other sites to link to it, improve your bookmarkability and increase your SEO - cf. an individual ‘tweet’ Bear in mind that some representations (specifically mobile ) will need smaller, more fragmented representations with lower page weight - designing your subsidiary resources to be addressable allows you to easily deal with this requirement - transclude the content on a desktop machine, link to it on a mobile
  • 32. The usual rant about persistence It’s nice if URIs are human readable It’s also nice if they’re hackable It’s an absolute prerequisite that they’re persistent Don’t sacrifice persistence for the sake of prettiness or misguided SEO URIs are your promise to the web and your users - if you change them or change their meaning you break that promise - links break, bookmarks break, citations break and your search engine juice is lost * Cool URIs don’t change *
  • 33. Make hello world pages for your primary domain objects
  • 34. Make hello world pages for your primary domain objects For now all they need is an h1 with the title of the object
  • 35. Make hello world pages for your primary aggregations
  • 36. Make hello world pages for your primary aggregations For now all they need is an h1 with the title of the aggregation and a linked list of things aggregated
  • 37. Define the data you need to build each of your pages
  • 38. Define the data you need to build each of your pages For each URI define the data you need to build all representations of the object This should cover all the representations you intend to make - just because the HTML representation doesn’t need to show the updated date doesn’t mean the RSS or Atom or RDF don’t need it Some resources will transclude others. You don’t need to define the data required for these - just reference the transcluded resource
  • 39. Build up your HTML pages and other representations
  • 40. Build up your HTML pages and other representations Now you know what data you need you can begin to surface this in your representations If you’re working in HTML make sure you design your document to be semantically correct and accessible Try not to think about page layout - that’s the job of CSS not HTML In general your page should be structured into title, content, navigation - screen readers don’t want to fight through calendar tables etc to get to the content
  • 42. Apply layout CSS Add layout CSS to your HTML pages Experiment with different layouts for your markup by moving elements around the page You’re wireframing
  • 44. Test and iterate You should be testing with real users at every stage of development but it’s particularly important to conduct usability AND accessibility tests now It’s like testing traditional wireframes but you’re testing on the real application with real application behaviours and real data (no lorem ipsum) Sometimes the results of your testing will require changes to layout CSS, sometimes to markup, sometimes to the data you need to surface and sometimes to the underlying domain / data model Bear in mind if you’re using data from existing business systems there may need to be heavy investment to make changes to that data model and employ the staff to admin those changes Occasionally it might even mean renegotiating contracts with outside data providers - all design and usability issues are fixable - some just need more lawyers than others : )
  • 46. Apply décor CSS Over the top of your wireframe application you can now start to add visual design and branding This is exactly the same process as taking a paper wireframe and applying design treatments over the top except you’re mainly working in CSS Experiment with different treatments - see how far you can stretch the design with the markup given Sometimes you’ll need to add additional markup to hook your CSS off Now’s the time to add background imagery for headers, dividers, buttons, list items etc so best to open Photoshop / Illustrator to make your design assets
  • 47. And test and iterate
  • 48. And test and iterate Never stop testing Remember that personas are just abstractions of people - it’s always better to use real people Ideally you should be able to adjust your code / markup / CSS to respond to user requests If you can afford the recruitment / developer time there’s no better way to test than with a user sitting alongside a developer - the developer can react to user requests, tweak the application and gain instant feedback without the ambiguity that sometimes comes from test reports Again you should accessibility test - some of the design / décor changes may affect font sizes, colours etc - make sure your users can still read the page
  • 50. Add any JavaScript / AJAX By designing your browsable site first and adding in Javascript / AJAX over the top you stand a better chance of making an accessible web site - one that degrades gracefully As ever Google et al are your least able users - search bots don’t like forms or JavaScript - sites that degrade well for accessibility also degrade well for search engines Making every subsidiary resource addressable and providing these resources serialised as XML or JSON makes adding AJAX relatively trivial You’ll probably need to tweak your CSS to adjust to life with JavaScript / AJAX
  • 51. And test and iterate
  • 52. And test and iterate Again test your site for accessibility and usability with JavaScript turned on and off
  • 54. Continue Follow the same steps for each development cycle Some development cycles will just be about surfacing new views of the existing domain model; some will require expanding your domain model Now you know your domain model and have made each domain object addressable layering over new views and more subtle user journeys should be trivial And keep testing!
  • 57. Readable, hackable URIs for aggregations
  • 62. Persistent URIs for primary domain objects (brands, series, episodes…)
  • 68. And all linked up to…