From deac802fab36e0ca5d9a06bd34bc54e41671ef37 Mon Sep 17 00:00:00 2001 From: pglevy Date: Wed, 26 Feb 2020 11:42:21 -0500 Subject: [PATCH 1/4] re-org methods and re-label groupings --- _data/categories.yml | 53 ++++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/_data/categories.yml b/_data/categories.yml index 5db1bd1..32ebbe4 100644 --- a/_data/categories.yml +++ b/_data/categories.yml @@ -1,47 +1,48 @@ -- category_name: Discover - category_description: Build a greater understanding of your problem and the people it impacts. - category_info: Use the Discover Methods to build context for the problem you’re investigating. Get to know your potential users better and understand your stakeholders’ main concerns. The work you do during this phase will inform everything that follows, so take your time. +- category_name: Awareness + category_description: If you don't know what you don't know, start here. + category_info: tbd methods: + - Comparative analysis + - Content audit + - Design hypothesis + - Hopes and fears + - Stakeholder and user interviews + +- category_name: Observation + category_description: Once you know what you don't know, start interacting with customers and users. + category_info: tbd + methods: + - Card sorting - Cognitive walkthrough - Contextual inquiry - - Design studio - - Dot voting - Heuristic evaluation - - Hopes and fears - - KJ method - - Stakeholder and user interviews + - Task flow analysis -- category_name: Decide - category_description: Elaborate on research from your Discovery phase. - category_info: The Decide Methods help you derive insights from the information gathered during the Discovery phase. You’ll validate initial assumptions, develop a deeper understanding of workflows and processes, and develop design hypotheses. +- category_name: Interpretation + category_description: When you have answers to your questions, make sense of what you've learned. + category_info: tbd methods: - Affinity diagramming - - Comparative analysis - - Design hypothesis - - Design principles - Journey mapping - - Mental modeling - Personas - Site mapping - - Storyboarding - - Style tiles - - Task flow analysis - User scenarios -- category_name: Make - category_description: Create a testable solution. - category_info: Once you’ve learned more about your users’ expectations, use the Make Methods to create testable designs. Sketching, wireframing, and prototyping will help you ensure your product reflects your users’ needs. +- category_name: Exploration + category_description: Make some things based on your interpretation. + category_info: tbd methods: + - Design studio - Design pattern library - Prototyping + - Storyboarding - Wireframing -- category_name: Validate - category_description: Test a design hypothesis. - category_info: Testing (and re-testing) your designs with users will help you build the best possible product. Our Validate Methods cover varied testing scenarios and potential user groups. +- category_name: Validation + category_description: See if you're on the right track. + category_info: tbd methods: - - Card sorting - - Multivariate testing + - Dot voting - Usability testing - Visual preference testing From b76b3aae938b2b49b8a3768d9bdf00b271298ae2 Mon Sep 17 00:00:00 2001 From: pglevy Date: Wed, 26 Feb 2020 13:24:39 -0500 Subject: [PATCH 2/4] add category questions --- _data/categories.yml | 43 ++++++++++++++++++++++++++++++++++++++----- index.html | 6 ++++++ 2 files changed, 44 insertions(+), 5 deletions(-) diff --git a/_data/categories.yml b/_data/categories.yml index 32ebbe4..e91c25d 100644 --- a/_data/categories.yml +++ b/_data/categories.yml @@ -1,50 +1,83 @@ - category_name: Awareness category_description: If you don't know what you don't know, start here. - category_info: tbd + category_info: more detailed category info... methods: - Comparative analysis - Content audit - Design hypothesis - Hopes and fears - Stakeholder and user interviews + questions: + - What problem are we trying to solve? + - What assumptions do we have? + - What are the organizational goals? + - What do we have to work with? + - What questions do we have? + - Where do we start user research? + - What are people saying? + - Who are the audiences? + - How will we know if we're successful? - category_name: Observation category_description: Once you know what you don't know, start interacting with customers and users. - category_info: tbd + category_info: more detailed category info... methods: - Card sorting - Cognitive walkthrough - Contextual inquiry - Heuristic evaluation - Task flow analysis + questions: + - What are people doing today? + - What data do we need to collect? + - Who do we talk to next? + - How well does the current solution work? + - What mental models do people have? + - What new questions do we have? - category_name: Interpretation category_description: When you have answers to your questions, make sense of what you've learned. - category_info: tbd + category_info: more detailed category info... methods: - Affinity diagramming - Journey mapping - Personas - Site mapping - User scenarios + questions: + - How do we make sense of what we've seen and collected? + - How might we interpret our findings? + - How do we communicate findings that actionable? + - What assertions or provocations can we make? + - What are the pain points and opportunities? - category_name: Exploration category_description: Make some things based on your interpretation. - category_info: tbd + category_info: more detailed category info... methods: - Design studio - Design pattern library - Prototyping - Storyboarding - Wireframing + questions: + - How might we consider the whole experience? + - How might we address the pain points and opportunities? + - What ideas or hypotheses do we want to test? + - How might we remain focused on the audiences and their needs? - category_name: Validation category_description: See if you're on the right track. - category_info: tbd + category_info: more detailed category info... methods: - Dot voting - Usability testing - Visual preference testing + questions: + - How do we know we're on the right track? + - How do decide and move forward? + - What did we learn from the latest iteration? + - Did we confirm or refute our assumption? - category_name: Fundamentals category_description: Foundational methods for practicing design research. diff --git a/index.html b/index.html index 9242217..6b53fed 100755 --- a/index.html +++ b/index.html @@ -16,6 +16,12 @@

{{ category.category_description }}

{{ category.category_info }}

+

Questions you may have at this point:

+
    + {% for question in category.questions %} +
  • {{ question }}
  • + {% endfor %} +
See all {{ category.category_name | downcase }} methods From 9ff00533cf4fa39da65fd553090ad927418b9706 Mon Sep 17 00:00:00 2001 From: pglevy Date: Mon, 23 Mar 2020 17:14:18 -0400 Subject: [PATCH 3/4] bold text --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 6b53fed..488fae2 100755 --- a/index.html +++ b/index.html @@ -16,7 +16,7 @@

{{ category.category_description }}

{{ category.category_info }}

-

Questions you may have at this point:

+

Questions you may have at this point:

    {% for question in category.questions %}
  • {{ question }}
  • From e50059f32b9912e82a1db286493b67145ccc7db2 Mon Sep 17 00:00:00 2001 From: pglevy Date: Mon, 23 Mar 2020 18:42:20 -0400 Subject: [PATCH 4/4] refactor nav to reflect new category org --- _data/categories.yml | 2 +- _includes/category-setup.html | 9 ++-- _includes/header.html | 46 +++++++++++++-------- _methods/Design-hypotheses.md | 6 +-- _methods/affinity-diagramming.md | 4 +- _methods/card-sorting.md | 6 +-- _methods/cognitive-walkthrough.md | 4 +- _methods/comparative-analysis.md | 4 +- _methods/content-audit.md | 4 +- _methods/contextual-inquiry.md | 4 +- _methods/design-pattern-library.md | 4 +- _methods/design-studio.md | 4 +- _methods/dot-voting.md | 4 +- _methods/heuristic-evaluation.md | 4 +- _methods/hopes-and-fears.md | 10 ++--- _methods/journey-mapping.md | 4 +- _methods/personas.md | 4 +- _methods/prototyping.md | 4 +- _methods/site-mapping.md | 4 +- _methods/stakeholder-and-user-interviews.md | 4 +- _methods/storyboarding.md | 4 +- _methods/task-flow-analysis.md | 4 +- _methods/usability-testing.md | 4 +- _methods/user-scenarios.md | 16 +++---- _methods/visual-preference-testing.md | 4 +- _methods/wireframing.md | 4 +- 26 files changed, 92 insertions(+), 79 deletions(-) diff --git a/_data/categories.yml b/_data/categories.yml index e91c25d..0dd3c59 100644 --- a/_data/categories.yml +++ b/_data/categories.yml @@ -55,8 +55,8 @@ category_description: Make some things based on your interpretation. category_info: more detailed category info... methods: - - Design studio - Design pattern library + - Design studio - Prototyping - Storyboarding - Wireframing diff --git a/_includes/category-setup.html b/_includes/category-setup.html index e310af8..7bcb7a0 100755 --- a/_includes/category-setup.html +++ b/_includes/category-setup.html @@ -1,7 +1,8 @@ -{% assign discover_methods = (site.methods | where: "category", "Discover" ) %} -{% assign decide_methods = (site.methods | where: "category", "Decide" ) %} -{% assign make_methods = (site.methods | where: "category", "Make" ) %} -{% assign validate_methods = (site.methods | where: "category", "Validate" ) %} +{% assign awareness_methods = (site.methods | where: "category", "Awareness" ) %} +{% assign observation_methods = (site.methods | where: "category", "Observation" ) %} +{% assign interpretation_methods = (site.methods | where: "category", "Interpretation" ) %} +{% assign exploration_methods = (site.methods | where: "category", "Exploration" ) %} +{% assign validation_methods = (site.methods | where: "category", "Validation" ) %} {% assign fundamentals_methods = (site.methods | where: "category", "Fundamentals" ) %} {% assign category_methods = (site.methods | where: "category", page.title ) %} {% assign all_methods = (site.methods) %} diff --git a/_includes/header.html b/_includes/header.html index 1921f84..a456300 100755 --- a/_includes/header.html +++ b/_includes/header.html @@ -24,57 +24,69 @@
  • +
  • +
  • + +