-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathux_technique.js
50 lines (50 loc) · 1.02 KB
/
ux_technique.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
function technique() {
return random([
"competitor analysis",
"user survey",
"Atomic Design",
"interview",
"contextual enquiry",
"focus group",
"brainstorming",
"ideation session",
"affinity diagramming",
"task analysis",
"paper prototyping",
"heuristic evaluation",
"storyboarding",
"performance testing",
"subjective evaluation",
"critical incidence technique",
"remote evaluation",
"personas",
"gamification",
"user journey",
"longitudinal study",
"ethnography research",
"cultural probe",
"participant observation",
"eyetracking",
"keystroke level modelling",
"hypotesys deconstruction",
"charrette",
"sketch-to-code",
"research wall",
"concept model",
"service blueprint",
"mental model",
"evangelicalism session",
"healthcheck",
"product in a box",
"process mapping",
"design system",
"diary study",
"Figma prototype",
"Airtable document",
"roadmap",
"storytelling",
"information architecture workshop",
"object-oriented UX",
"improv"
]);
}