-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMaintain-a-Stack.html
110 lines (98 loc) · 7.25 KB
/
Maintain-a-Stack.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="icon" type="image/png" href="./images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./images/favicon-16x16.png" sizes="16x16" />
<title>Maintain a Failure Stack - SPK's Rationality Essays</title>
<link rel="stylesheet" type="text/css" href="./css/default.css" />
<link rel="stylesheet" type="text/css" href="./css/highlight.css" />
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> -->
<!-- <script type="text/javascript" src="/js/header-links.js"></script> -->
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link href="atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM/RSS Feed" />
<!-- Google Analytics stuff -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DEWF2J5BG8"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-DEWF2J5BG8');
</script>
<script type="text/javascript" src="https://fast.fonts.net/jsapi/f7f47a40-b25b-44ee-9f9c-cfdfc8bb2741.js"></script>
</head>
<body>
<div id="header">
<div id="logo">
<a href="./">SPK's Rationality Essays</a>
</div>
<div id="navigation">
<a href="./">Home</a>
<a href="./notes.html">Notes</a>
<!-- <a href="/about.html">About</a> -->
<a href="./archive.html">Archive</a>
<a href="./atom.xml" type="application/atom+xml" rel="alternate" title="Sitewide ATOM/RSS Feed">RSS</a>
</div>
</div>
<div id="content">
<h1 id="post-title">Maintain a Failure Stack</h1>
<!-- <center><img src="https://fbcdn-sphotos-d-a.akamaihd.net/hphotos-ak-prn1/t31.0-8/p600x600/10257116_10202295769100492_2438594605053717342_o.jpg" height="400" width="300" class="sujeet-pic" alt="Sujeet pic" /></center> -->
<h1 id="hall-of-fail">Hall of Fail</h1>
<p>Every time you fail to do something, add it to a list. Take a memory stack, for example. Whenever I forget something, I add it to a file so that my Spaced Repetition software will test me on it and help me never forget it again. Similarly, you can have a stack for truth (every time you fail to answer a question correctly) or self-esteem (every time you feel crummy about yourself).</p>
<p>Why keep a list of failures? Because I need real-world tests. I want to improve my skill and so I need to know if I’m getting better. The way to do that is to see if I’m no longer failing at things I used to fail at. If I could do something in the past, I will automatically feel surprise if I begin to fail. So, what I need to worry about is the things I can’t do - these are the ones that slip by unnoticed.</p>
<p>Figuring out in the moment whether I did something well is trivial; I know whether I’ve procrastinated or felt shame or given up on a complex task or whatever. In contrast, listing my mistakes by thinking abstractly is really hard.</p>
<p>Humans think too vaguely to enumerate all the instances of a class. It’s hard to list out exactly what I mean by “having more self-esteem”, i.e., all the situations where I perform worse than I am capable of. By having a stack, you can “benefit from the imagination of nature, which, as Feynman pointed out, is more powerful than your own”<a href="#fn1" class="footnoteRef" id="fnref1"><sup>1</sup></a>.</p>
<p>A happy side-effect is that you will spend your energy <em>only</em> where you need to. If you maintain your stack, the following will hold: if you need to improve in some place, it will be on your list; if you don’t, it won’t be. You can focus purely on the list with the confidence that you’re making genuine progress with every move.</p>
<h1 id="lazy-work-build-only-on-demand">Lazy work: Build only on demand</h1>
<p>Corollary: Use this trick anywhere you need to enumerate items.</p>
<p>To know what features you really want in your program - use your program, see what’s missing, and add it. Doing it all upfront (called the Waterfall method) is doomed - you don’t know yourself well enough to know what you want. You may even have all the facts stored in memory, but you don’t have the brainpower to process and list them without error.</p>
<p>As with programs, so with life. When designing plans, go ahead and do it without too much forethought. When you find something missing, add it to your plan.</p>
<p>The same goes with adding unit tests for a program (which have the advantage of being self-testing, so you can just put it, shut it, and forget it).</p>
<h1 id="concrete-incidents">Concrete incidents</h1>
<ul>
<li>truth-stack - where I couldn’t predict accurately</li>
<li>put-off-stack - where I couldn’t control my motivation</li>
<li>skill-stack - where my skill level wasn’t high enough</li>
<li>inner-stack - where I felt unworthy, low self-esteem, sad, depressed, etc.</li>
<li>hairy-stack - where I couldn’t tackle complexity and get shit done</li>
<li>join-stack - where I couldn’t collaborate well with others</li>
<li>make-stack - where I couldn’t think creatively</li>
</ul>
<h1 id="notes">Notes</h1>
<p>I obviously got the above idea of lazy and empirical thinking from Paul Graham’s various <a href>essays</a>.</p>
<div class="footnotes">
<hr />
<ol>
<li id="fn1"><p>From PG’s <a href>Six Principles for Making New Things</a><a href="#fnref1">↩</a></p></li>
</ol>
</div>
<div class="info">Created: September 6, 2015</div>
<div class="info">Last modified: September 28, 2019</div>
<div class="info">Status: in-progress notes</div>
<div class="info"><b>Tags</b>: notes, stack</div>
<br />
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'spkrationalitytrainingground'; // required: replace example with your forum shortname
var disqus_identifier = '/Maintain-a-Stack.html';
var disqus_title = 'Maintain a Failure Stack';
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<script type="text/javascript" src="https://fast.fonts.net/jsapi/f7f47a40-b25b-44ee-9f9c-cfdfc8bb2741.js"></script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
<div id="footer">
Site proudly generated by
<a href="http://jaspervdj.be/hakyll">Hakyll</a>
</div>
</body>
</html>