-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtraps.html
37 lines (37 loc) · 1.17 KB
/
traps.html
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
<!DOCTYPE html>
<head>
<title>Common Traps</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=JetBrains Mono" rel="stylesheet">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">🏡 Home</a></li>
<li><a href="gallery.html">🖼️ Gallery</a></li>
</ul>
</nav>
<main>
<h1>Common Traps</h1>
<div class="Writing">
<p>To know the things to do, it helps to know the things to not do</p>
<p>Written on June 27th, 2024</p>
<h3>Mimetic Desire</h3>
<ul>Our values are copied from others</ul>
<h3>Skinner Boxes</h3>
<ul>If a reward is randomized, you will irrationally desire the reward more
<ul>
Things that use your own psychology against you:
<li>Slot Machines</li>
<li>Video Games</li>
</ul>
</ul>
<table>
<thead>GPU Choice: </thead>
<form>
<input type="text" placeholder="Nvidia / AMD" name="GPU choice">
<input type="submit">
</form>
</table>
</div>
</body>