-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathunstuck.html
More file actions
46 lines (37 loc) · 1.36 KB
/
unstuck.html
File metadata and controls
46 lines (37 loc) · 1.36 KB
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
---
layout: default
---
{% assign site_lang = 'en' %}
{% assign mental_models = site.mental_models %}
<div class="container py-4">
<h1>Get Unstuck</h1>
<p id="randomText"></p>
<p><i>Refresh page for another tip.</i></p>
<script>
var texts = [
"What would X do? (x = someone capable of solving it)",
"What is the simplest solution?",
"Meditate on it for 5 minutes.",
"Break down into smaller chunks.",
"Reassess from scratch.",
"Ask ChatGPT.",
"Ask someone (user, coworker, manager, friend, closest person around).",
"Go for a walk.",
"Instead of changing the thing, change the world around it.",
"State the problem in words as simply as possible.",
"Use an unacceptable color/word/code.",
"Who would make this really successful?",
"Steal a solution.",
"Remove the middle, extend the edges.",
"List the qualities it has. List those you'd like.",
"Take away the elements in order of apparent non-importance.",
"Reverse.",
"Destroy the most important thing.",
"Define an area as `safe' and use it as an anchor.",
"What do you do? What do you do best?",
"Just carry on.",
];
var randomText = texts[Math.floor(Math.random() * texts.length)];
document.getElementById("randomText").innerText = randomText;
</script>
</div>