-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathux_bullshit.js
21 lines (21 loc) · 1.19 KB
/
ux_bullshit.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function ux_bullshit() {
var result = [
"You should try a " + adjective() +" " + technique() + " with a " + role() + " to " + outcome(),
"Fire a " + role(),
"Think in " + technique() + " as the new " + technique(),
company() + " is killing " + technique(),
"You should use " + adjective() +" " + technique() + " to " + outcome(),
"Don't trust " + people() + " and use a " + adjective() +" " + technique() + " if you need to " + outcome(),
"Follow " + people() + " and " + outcome() + " using a " + adjective() +" " + adjective() + " " + technique(),
"To " + outcome() + " try thinking in a " + adjective() +" " + technique(),
"A wise man would use a " + adjective() + " " + adjective() + " " + technique() + " to " + outcome(),
"Think outside the box to " + outcome() + " and " + outcome(),
"You can simply " + outcome() + " applying a " + adjective() +" " + technique(),
"Stop using a " + adjective() +' '+ adjective() +" " + technique() + " if you need to " + outcome(),
"Hire a " + adjective() +' '+ role() + " right now",
"Good design is " + adjective(),
"Be " + adjective(),
company() + " for " + industry()
];
return result[Math.floor(Math.random()*result.length)];
}