Update --ux

This commit is contained in:
Marcus Kammer 2022-11-20 10:56:18 +01:00
parent 9d9723d400
commit dec841f5da
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -14,35 +14,30 @@
(analyst "A UX analyst, also known as a usability analyst, is a member of a UX design team who studies data to determine how users engage with a software product, such as an application or website.")))
(defconst ux:methods
'((research
(contextual-inquiry "Contextual inquiry is a type of ethnographic field study that involves in-depth observation and interviews of a small sample of users to gain a robust understanding of work practices and behaviors.")
(interview "User interviews are guided interviews where a researcher asks existing or potential users questions to gain an understanding of their preferences, thoughts and feelings.")
(focus-group "A focus group is a research method that brings together a small group of people to answer questions in a moderated setting.")
(diary-study "A diary study is a research method used to collect qualitative data about user behaviors, activities, and experiences over time.")
(usability-testing "The goal is to identify any usability problems, collect qualitative and quantitative data and determine the participant's satisfaction with the product.")
(web-analytics "Web analytics is the collection, reporting, and analysis of website data. The focus is on identifying measures based on your organizational and user goals and using the website data to determine the success or failure of those goals and to drive strategy and improve the users experience.")
(survey "A process of asking questions that are answered by a sample of a defined group of people to get numbers that you can use to make decisions.")
(tree-testing "Tree Testing is a usability technique for evaluating the difficulty of finding topics in a website.")
(card-sorting "Card Sorting is a user-centered research method used to help determine how people categorize a set of items - referred to as 'cards' - to increase the users ability to find them. The technique can be used to determine both the naming of the categories and the grouping of the items within the categories."))
(design
(sketching "Sketching is a distinctive form of drawing which designers use to propose, explore, refine and communicate ideas.")
(design-thinking "Design thinking is a non-linear, iterative process that teams use to understand users, challenge assumptions, redefine problems and create innovative solutions to prototype and test.")
(prototyping "A simulation or sample version of a final product, which UX teams use for testing before launch."))
(writing
content-strategy "Content strategy focuses on the planning, creation, delivery, and governance of content.")))
'((contextual-inquiry "Contextual inquiry is a type of ethnographic field study that involves in-depth observation and interviews of a small sample of users to gain a robust understanding of work practices and behaviors." research)
(interview "User interviews are guided interviews where a researcher asks existing or potential users questions to gain an understanding of their preferences, thoughts and feelings." research)
(focus-group "A focus group is a research method that brings together a small group of people to answer questions in a moderated setting." research)
(diary-study "A diary study is a research method used to collect qualitative data about user behaviors, activities, and experiences over time." research)
(usability-testing "The goal is to identify any usability problems, collect qualitative and quantitative data and determine the participant's satisfaction with the product." research)
(web-analytics "Web analytics is the collection, reporting, and analysis of website data. The focus is on identifying measures based on your organizational and user goals and using the website data to determine the success or failure of those goals and to drive strategy and improve the users experience." research)
(survey "A process of asking questions that are answered by a sample of a defined group of people to get numbers that you can use to make decisions." research)
(tree-testing "Tree Testing is a usability technique for evaluating the difficulty of finding topics in a website." research)
(card-sorting "Card Sorting is a user-centered research method used to help determine how people categorize a set of items - referred to as 'cards' - to increase the users ability to find them. The technique can be used to determine both the naming of the categories and the grouping of the items within the categories." research design)
(sketching "Sketching is a distinctive form of drawing which designers use to propose, explore, refine and communicate ideas." design)
(design-thinking "Design thinking is a non-linear, iterative process that teams use to understand users, challenge assumptions, redefine problems and create innovative solutions to prototype and test." design research writing)
(prototyping "A simulation or sample version of a final product, which UX teams use for testing before launch." design research)
(content-strategy "Content strategy focuses on the planning, creation, delivery, and governance of content." writing)))
(defconst ux:deliverables
'((design
(information-architecture "Organizing, structuring, and labeling content in an effective and sustainable way.")
(user-flow "The user flow lays out the user's movement through the product, mapping out each and every step the user takes—from entry point right through to the final interaction")
(wireframe "A wireframe is a diagram or a set of diagrams that consists of simple lines and shapes representing the skeleton of a website or an application's user interface (UI) and core functionality.")
(storyboard "a sequence of drawings, typically with some directions and dialogue, representing the users perspective.")
(environment-design "Represents the overall product structure."))
(research
user-journey
persona
affinity-diagram
mental-model)))
'((information-architecture "Organizing, structuring, and labeling content in an effective and sustainable way." design)
(user-flow "The user flow lays out the user's movement through the product, mapping out each and every step the user takes—from entry point right through to the final interaction" design)
(wireframe "A wireframe is a diagram or a set of diagrams that consists of simple lines and shapes representing the skeleton of a website or an application's user interface (UI) and core functionality." design)
(storyboard "a sequence of drawings, typically with some directions and dialogue, representing the users perspective." design)
(environment-design "Represents the overall product structure." design)
(user-journey "A person's experience during one session of using a website or application, consisting of the series of actions performed to achieve a particular goal." research)
(persona "The aspect of someone's character that is presented to or perceived by others." research)
(affinity-diagram "An affinity diagram is a collection of large amounts of data that is organized into groups or themes based on their relationships." research)
(mental-model "A mental model is an explanation of someone's thought process about how something works in the real world." research)))
(defconst ux:mapping
'(user-journey customer-journey service-blueprint))