-
Notifications
You must be signed in to change notification settings - Fork 0
/
impulse.html
236 lines (181 loc) · 22.4 KB
/
impulse.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!DOCTYPE html><html><head><meta content="text/html; charset=utf-8" http-equiv="Content-Type" /><meta content="width=device-width, initial-scale=1" name="viewport" /><!--replace-start-0--><!--replace-start-6--><!--replace-start-10--><title>Impulse - alexsoto.dev</title><!--replace-end-10--><!--replace-end-6--><!--replace-end-0--><link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css" rel="stylesheet" /><link href="https://fonts.googleapis.com/css?family=Merriweather|Libre+Franklin|Roboto+Mono&display=swap" rel="stylesheet" /><!--replace-start-1--><!--replace-start-5--><!--replace-start-9--><style>
html {
font-size: 15px !important;
}
body div.zettel-view .zettel-content h1 {
text-align: right !important;
background-color: inherit !important;
font-weight: 400 !important;
line-height: 1 !important;
}
body div.zettel-view .zettel-content h2 {
text-align: left !important;
background-color: inherit !important;
border-bottom: none !important;
font-style: italic !important;
font-weight: 400 !important;
line-height: 1 !important;
}
body div.zettel-view .zettel-content h3 {
font-style: italic !important;
font-weight: 400 !important;
line-height: 1 !important;
text-align: left !important;
background-color: inherit !important;
}
body div.zettel-view .zettel-content h4 {
border-bottom: none !important;
text-align: left !important;
background-color: inherit !important;
}
/* Title */
#zettel-container > div.zettel-view > article > h1:first-child {
/* text-align: center !important; */
/* font-family: "Crimson Text", serif !important; */
/* font-style: italic; */
text-align: right !important;
font-weight: normal !important;
font-size: 2rem !important;
padding: 1rem !important;
text-align: right !important;
/* padding-top: 1rem; */
/* padding-right: 1rem; */
/* padding-left: 1rem; */
background-color: inherit !important;
}
.ui.segment {
background-color: #fffff8 !important;
}
#zettel-container {
max-width: 800px !important;
}
</style>
<!-- add social share buttons -->
<script>
window.addEventListener("load", function(){
var socialButtons = document.getElementById("socialMediaLinks");
socialButtons.innerHTML +=
"<a id='facebook' title='Share on Facebook' class='ui facebook button'><i class='facebook icon'></i> Share</a><a id='twitter' title='Tweet' class='ui twitter button'><i class='twitter icon'></i> Tweet</a><a id='linkedin' title='Share on LinkedIn' class='ui linkedin button'><i class='linkedin icon'></i> Share</a><a id='reddit' title='Share on Reddit' class='ui reddit button'><i class='reddit icon'></i> Share</a><a id='hnews' title='Share on Hacker News' class='ui hacker news button'><i class='hacker news icon'></i> Share</a>"
document.getElementById("facebook").addEventListener("click", function(e) {
window.open('https://www.facebook.com/sharer/sharer.php?u=' + encodeURIComponent(document.URL) + '"e=' + encodeURIComponent(document.URL)); return false;
});
document.getElementById("twitter").addEventListener("click", function(e) {
window.open('https://twitter.com/intent/tweet?text=' + encodeURIComponent(document.title) + ':%20' + encodeURIComponent(document.URL)); return false;
});
document.getElementById("linkedin").addEventListener("click", function(e) {
window.open('https://www.linkedin.com/shareArticle?mini=true&url=' + encodeURIComponent(document.URL) + '&title=' + encodeURIComponent(document.title)); return false;
});
document.getElementById("reddit").addEventListener("click", function(e) {
window.open('https://www.reddit.com/submit?url=' + encodeURIComponent(document.URL) + '&title=' + encodeURIComponent(document.title)); return false;
});
document.getElementById("hnews").addEventListener("click", function(e) {
window.open('https://news.ycombinator.com/submitlink?u=' + encodeURIComponent(document.URL) + '&t=' + encodeURIComponent(document.title)); return false;
});
document.getElementById("rss").addEventListener("click", function(e) {
window.open('https://alexsoto.dev/blog.xml');
});
})
</script>
<script>
window.addEventListener("load", function(){
var socialButtons = document.getElementById("subscriptionLinks");
socialButtons.innerHTML +=
"<a id='rss' title='Subscribe to RSS feed' class='ui rss button'><i class='rss square icon'></i> RSS</a> <a id='mail' title='Subscribe to mailing list' class='ui paper plane button'><i class='paper plane icon'></i> Subscribe</a>"
document.getElementById("rss").addEventListener("click", function(e) {
window.open('https://alexsoto.dev/blog.xml');
});
document.getElementById("mail").addEventListener("click", function(e) {
window.open('https://buttondown.email/alexsotodev');
});
})
</script>
<style>
#socialMediaLinks {
text-align: center;
}
#socialMediaLinks .ui.reddit.button {
background: #FF5700;
color: #ffffff;
}
#socialMediaLinks .ui.hacker.news.button {
background: #ff4000;
color: #ffffff;
}
#socialMediaLinks .ui.rss.button {
background: #FF9249;
color: #ffffff;
}
#subscriptionLinks .ui.rss.button {
background: #FF9249;
color: #ffffff;
}
#subscriptionLinks {
text-align: center;
}
#subscriptionLinks .ui.paper.plane.button {
background: #5A90E0;
color: #ffffff;
}
</style>
<!-- replace logo -->
<script>
window.addEventListener("load", function(){
let element = document.querySelector('div.footer-version > div > a > img[alt="logo"]')
let parent = element.parentNode.parentNode.parentNode
// element.remove()
console.log(parent)
let p = document.createElement("p")
let n = document.createTextNode("© 2021 Alexander Soto")
p.appendChild(n)
p.style.height = "80px";
// parent.appendChild(n)
parent.replaceChild(p, parent.firstChild)
// parent.replaceChild(element.parentNode, p)
});
</script>
<!-- mermaidjs -->
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>window.addEventListener("load", mermaid.initialize({startOnLoad:true}))</script>
<!-- graphviz -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/viz.js/2.1.2/viz.js" integrity="sha512-vnRdmX8ZxbU+IhA2gLhZqXkX1neJISG10xy0iP0WauuClu3AIMknxyDjYHEpEhi8fTZPyOCWgqUCnEafDB/jVQ==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/viz.js/2.1.2/full.render.js" integrity="sha512-1zKK2bG3QY2JaUPpfHZDUMe3dwBwFdCDwXQ01GrKSd+/l0hqPbF+aak66zYPUZtn+o2JYi1mjXAqy5mW04v3iA==" crossorigin="anonymous"></script>
<script>
window.addEventListener("load", function(){
let viz = new Viz();
for (let element of document.getElementsByClassName("graphviz")) {
let parent = element.parentNode
let pparent = parent.parentNode
viz.renderSVGElement(element.textContent)
.then(function(element) {
element.setAttribute("width", "100%")
pparent.replaceChild(element, parent)
});
}
});
</script>
<!-- chartjs -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.bundle.min.js" integrity="sha512-SuxO9djzjML6b9w9/I07IWnLnQhgyYVSpHZx0JV97kGBfTIsUYlWflyuW4ypnvhBrslz1yJ3R+S14fdCWmSmSA==" crossorigin="anonymous"></script>
<script>
window.addEventListener("load", function(){
for (let element of document.getElementsByClassName("chartjs")) {
let parent = element.parentNode
let pparent = parent.parentNode
let canvas = document.createElement('canvas');
let box = document.createElement('div');
box.appendChild(canvas);
let ctx = canvas.getContext("2d")
let myChart = new Chart(ctx, JSON.parse(element.textContent));
box.setAttribute("style","display:block;width:75%;text-align:'center';margin: 5px auto;");
pparent.replaceChild(box, parent)
}
});
</script>
<script defer src="https://cdn.commento.io/js/commento.js"></script>
<script async defer src="https://scripts.simpleanalyticscdn.com/latest.js"></script>
<noscript><img src="https://queue.simpleanalyticscdn.com/noscript.gif" alt=""/></noscript>
<!-- Calendly badge widget begin -->
<link href="https://assets.calendly.com/assets/external/widget.css" rel="stylesheet">
<script src="https://assets.calendly.com/assets/external/widget.js" type="text/javascript" async></script>
<script type="text/javascript">window.onload = function() { Calendly.initBadgeWidget({ url: 'https://calendly.com/rc-alex-s/open-office', text: 'Schedule time with me', color: '#00a2ff', textColor: '#ffffff', branding: true }); }</script>
<!-- Calendly badge widget end -->
<link href="https://raw.githubusercontent.com/srid/neuron/master/assets/neuron.svg" rel="icon" /><meta content="Alexander Soto" name="author" /><meta content="Impulse" name="description" /><link href="https://alexsoto.dev/impulse.html" rel="canonical" /><meta content="Impulse" property="og:title" /><meta content="alexsoto.dev" property="og:site_name" /><meta content="website" property="og:type" /><style type="text/css">body{background-color:#eeeeee !important;font-family:"Libre Franklin", serif !important}body .ui.container{font-family:"Libre Franklin", serif !important}body h1, h2, h3, h4, h5, h6, .ui.header, .headerFont{font-family:"Merriweather", sans-serif !important}body code, pre, tt, .monoFont{font-family:"Roboto Mono","SFMono-Regular","Menlo","Monaco","Consolas","Liberation Mono","Courier New", monospace !important}body div.z-index p.info{color:#808080}body div.z-index ul{list-style-type:square;padding-left:1.5em}body div.z-index .uplinks{margin-left:0.29999em}body .zettel-content h1#title-h1{background-color:rgba(27,28,29,0.1)}body nav.bottomPane{background-color:rgba(27,28,29,2.0e-2)}body div#footnotes{border-top-color:#1b1c1d}body p{line-height:150%}body img{max-width:100%}body .deemphasized{font-size:0.94999em}body .deemphasized:hover{opacity:1}body .deemphasized:not(:hover){opacity:0.69999}body .deemphasized:not(:hover) a{color:#808080 !important}body div.container.universe{padding-top:1em}body div.zettel-view ul{padding-left:1.5em;list-style-type:square}body div.zettel-view .pandoc .highlight{background-color:#ffff00}body div.zettel-view .pandoc .ui.disabled.fitted.checkbox{margin-right:0.29999em;vertical-align:middle}body div.zettel-view .zettel-content .metadata{margin-top:1em}body div.zettel-view .zettel-content .metadata div.date{text-align:center;color:#808080}body div.zettel-view .zettel-content h1{padding-top:0.2em;padding-bottom:0.2em;text-align:center}body div.zettel-view .zettel-content h2{border-bottom:solid 1px #4682b4;margin-bottom:0.5em}body div.zettel-view .zettel-content h3{margin:0px 0px 0.4em 0px}body div.zettel-view .zettel-content h4{opacity:0.8}body div.zettel-view .zettel-content div#footnotes{margin-top:4em;border-top-style:groove;border-top-width:2px;font-size:0.9em}body div.zettel-view .zettel-content div#footnotes ol > li > p:only-of-type{display:inline;margin-right:0.5em}body div.zettel-view .zettel-content aside.footnote-inline{width:30%;padding-left:15px;margin-left:15px;float:right;background-color:#d3d3d3}body div.zettel-view .zettel-content .overflows{overflow:auto}body div.zettel-view .zettel-content code{margin:auto auto auto auto;font-size:100%}body div.zettel-view .zettel-content p code, li code, ol code{padding:0.2em 0.2em 0.2em 0.2em;background-color:#f5f2f0}body div.zettel-view .zettel-content pre{overflow:auto}body div.zettel-view .zettel-content dl dt{font-weight:bold}body div.zettel-view .zettel-content blockquote{background-color:#f9f9f9;border-left:solid 10px #cccccc;margin:1.5em 0px 1.5em 0px;padding:0.5em 10px 0.5em 10px}body div.zettel-view .zettel-content.raw{background-color:#dddddd}body .ui.label.zettel-tag{color:#000000}body .ui.label.zettel-tag a{color:#000000}body nav.bottomPane ul.backlinks > li{padding-bottom:0.4em;list-style-type:disc}body nav.bottomPane ul.context-list > li{list-style-type:lower-roman}body .footer-version img{-webkit-filter:grayscale(100%);-moz-filter:grayscale(100%);-ms-filter:grayscale(100%);-o-filter:grayscale(100%);filter:grayscale(100%)}body .footer-version img:hover{-webkit-filter:grayscale(0%);-moz-filter:grayscale(0%);-ms-filter:grayscale(0%);-o-filter:grayscale(0%);filter:grayscale(0%)}body .footer-version, .footer-version a, .footer-version a:visited{color:#808080}body .footer-version a{font-weight:bold}body .footer-version{margin-top:1em !important;font-size:0.69999em}@media only screen and (max-width: 768px){body div#zettel-container{margin-left:0.4em !important;margin-right:0.4em !important}}body span.zettel-link-container span.zettel-link a{color:#1b1c1d;font-weight:bold;text-decoration:none}body span.zettel-link-container span.zettel-link a:hover{background-color:rgba(27,28,29,0.1)}body span.zettel-link-container span.extra{color:auto}body span.zettel-link-container.errors{border:solid 1px #ff0000}body span.zettel-link-container.errors span.zettel-link a:hover{text-decoration:none !important;cursor:not-allowed}body [data-tooltip]:after{font-size:0.69999em}body div.tag-tree div.node{font-weight:bold}body div.tag-tree div.node a.inactive{color:#555555}body .tree.flipped{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}body .tree{overflow:auto}body .tree ul.root{padding-top:0px;margin-top:0px}body .tree ul{position:relative;padding:1em 0px 0px 0px;white-space:nowrap;margin:0px auto 0px auto;text-align:center}body .tree ul::after{content:"";display:table;clear:both}body .tree ul:last-child{padding-bottom:0.1em}body .tree li{display:inline-block;vertical-align:top;text-align:center;list-style-type:none;position:relative;padding:1em 0.5em 0em 0.5em}body .tree li::before{content:"";position:absolute;top:0px;right:50%;border-top:solid 2px #cccccc;width:50%;height:1.19999em}body .tree li::after{content:"";position:absolute;top:0px;right:50%;border-top:solid 2px #cccccc;width:50%;height:1.19999em}body .tree li::after{right:auto;left:50%;border-left:solid 2px #cccccc}body .tree li:only-child{padding-top:0em}body .tree li:only-child::after{display:none}body .tree li:only-child::before{display:none}body .tree li:first-child::before{border-style:none;border-width:0px}body .tree li:first-child::after{border-radius:5px 0px 0px 0px}body .tree li:last-child::after{border-style:none;border-width:0px}body .tree li:last-child::before{border-right:solid 2px #cccccc;border-radius:0px 5px 0px 0px}body .tree ul ul::before{content:"";position:absolute;top:0px;left:50%;border-left:solid 2px #cccccc;width:0px;height:1.19999em}body .tree li div.forest-link{border:solid 2px #cccccc;padding:0.2em 0.29999em 0.2em 0.29999em;text-decoration:none;display:inline-block;border-radius:5px 5px 5px 5px;color:#333333;position:relative;top:2px}body .tree.flipped li div.forest-link{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}</style><!--replace-end-9--><!--replace-end-5--><!--replace-end-1--></head><body><div class="ui fluid container universe"><div class="ui text container" id="zettel-container" style="position: relative"><!--prerender/start--><!--prerender/end--><h1 class="header">Impulse<span><!--replace-start-2--><!--replace-end-2--></span></h1><!--replace-start-3--><!--replace-start-4--><span style="display: none;"><details class="ui tiny errors message"><summary>Errors</summary><!--replace-start-7--><!--replace-end-7--></details></span><div class="z-index"><div class="ui pinned raised segment" style="display: none;"><h3 class="ui header">Pinned</h3><ul></ul></div><div class="ui segment" style="display: none;"><p class="info">Notes not belonging to any <a href="https://neuron.zettel.page/folgezettel-heterarchy">heterarchy</a>:</p><ul></ul></div><div class="ui black segment"><ul><span class="q root"><!--replace-start-11--><li><span class="zettel-link-container"><span class="zettel-link"><a href="blog.html">Blog</a></span></span></li><!--replace-end-11--><ul><span class="q root"><!--replace-start-13--><li><span class="zettel-link-container"><span class="zettel-link" title="2022-01-13T16:43"><a href="modos-paper-laptop.html">The Modos Paper Laptop</a></span></span><span class="uplinks"><small><i class="linkify icon" title="Blog"></i></small><small><i class="linkify icon" title="Building an E-Ink Laptop"></i></small><small><i class="linkify icon" title="Projects"></i></small></span></li><!--replace-end-13--><ul></ul></span><span class="q root"><!--replace-start-14--><li><span class="zettel-link-container"><span class="zettel-link" title="2022-01-13T16:39"><a href="announcing-modos.html">Announcing Modos</a></span></span><span class="uplinks"><small><i class="linkify icon" title="Blog"></i></small><small><i class="linkify icon" title="Projects"></i></small></span></li><!--replace-end-14--><ul></ul></span><span class="q root"><!--replace-start-15--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-04-22T12:00"><a href="challenges-building-an-open-source-eink-laptop.html">Challenges Building an Open-Source E Ink Laptop</a></span></span><span class="uplinks"><small><i class="linkify icon" title="Blog"></i></small><small><i class="linkify icon" title="Building an E-Ink Laptop"></i></small></span></li><!--replace-end-15--><ul></ul></span><span class="q root"><!--replace-start-16--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-03-21T21:14"><a href="13in-eink-panels.html">13.3in E-ink Panels</a></span></span></li><!--replace-end-16--><ul></ul></span><span class="q root"><!--replace-start-17--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-03-20T19:11"><a href="electrophoretic-display-patents.html">Electrophoretic display patents</a></span></span></li><!--replace-end-17--><ul></ul></span><span class="q root"><!--replace-start-18--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-03-17T18:57"><a href="teardown-of-the-papertop.html">Teardown of the PaperTop</a></span></span><span class="uplinks"><small><i class="linkify icon" title="Blog"></i></small><small><i class="linkify icon" title="PaperTop"></i></small></span></li><!--replace-end-18--><ul></ul></span><span class="q root"><!--replace-start-19--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-03-13T19:41"><a href="papertop.html">PaperTop</a></span></span><span class="uplinks"><small><i class="linkify icon" title="Blog"></i></small><small><i class="linkify icon" title="Community Built E-Ink Laptop"></i></small><small><i class="linkify icon" title="Projects"></i></small></span></li><!--replace-end-19--><ul></ul></span><span class="q root"><!--replace-start-20--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-02-28T09:49"><a href="community-built-eink-laptop.html">Community Built E-Ink Laptop</a></span></span><span class="uplinks"><small><i class="linkify icon" title="Blog"></i></small><small><i class="linkify icon" title="Projects"></i></small></span></li><!--replace-end-20--><ul></ul></span><span class="q root"><!--replace-start-21--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-02-20T16:02"><a href="dasung-paperlike-hdft-teardown.html">Dasung Paperlike HD-FT teardown</a></span></span><span class="uplinks"><small><i class="linkify icon" title="Blog"></i></small><small><i class="linkify icon" title="Building an E-Ink Laptop"></i></small></span></li><!--replace-end-21--><ul></ul></span><span class="q root"><!--replace-start-22--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-02-17T22:13"><a href="building-an-e-ink-laptop.html">Building an E-Ink Laptop</a></span></span><span class="uplinks"><small><i class="linkify icon" title="Blog"></i></small><small><i class="linkify icon" title="Dasung Paperlike HD-FT teardown"></i></small><small><i class="linkify icon" title="Projects"></i></small></span></li><!--replace-end-22--><ul></ul></span></ul></span><span class="q root"><!--replace-start-12--><li><span class="zettel-link-container"><span class="zettel-link"><a href=".">About this site</a></span></span></li><!--replace-end-12--><ul><span class="q root"><!--replace-start-23--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-02-27T15:41"><a href="about.html">Alexander Soto</a></span></span></li><!--replace-end-23--><ul><span class="q root"><!--replace-start-24--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-02-27T19:12"><a href="collaborate.html">Collaborate</a></span></span></li><!--replace-end-24--><ul></ul></span><span class="q root"><!--replace-start-25--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-02-27T15:41"><a href="interests.html">Interests</a></span></span></li><!--replace-end-25--><ul></ul></span><span class="q root"><!--replace-start-26--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-03-08T22:43"><a href="office-hours.html">Office Hours</a></span></span></li><!--replace-end-26--><ul></ul></span><span class="q root"><!--replace-start-27--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-02-27T15:44"><a href="projects.html">Projects</a></span></span></li><!--replace-end-27--><ul></ul></span><span class="q root"><!--replace-start-28--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-03-07T11:31"><a href="slides.html">Slides</a></span></span></li><!--replace-end-28--><ul></ul></span><span class="q root"><!--replace-start-29--><li><span class="zettel-link-container"><span class="zettel-link" title="2021-03-07T11:31"><a href="talks.html">Talks</a></span></span></li><!--replace-end-29--><ul></ul></span></ul></span></ul></span></ul></div><div class="ui top attached segment"><p>The notebook has 19 notes and 46 links. It has 1 cluster in its folgezettel graph. Each cluster's <a href="https://neuron.zettel.page/folgezettel-heterarchy">folgezettel heterarchy</a> is rendered as a forest.</p></div><nav class="ui bottom attached icon compact inverted menu black" id="neuron-nav-bar"><!--replace-start-8--><a class="item" href="." title="Home"><i class="home icon"></i></a><!--replace-end-8--><a class="right item" href="impulse.html" title="Open Impulse"><i class="wave square icon"></i></a></nav></div><!--replace-end-4--><!--replace-end-3--></div><div class="ui center aligned container footer-version"><div class="ui tiny image"><a href="https://neuron.zettel.page"><img alt="logo" src="https://raw.githubusercontent.com/srid/neuron/master/assets/neuron.svg" title="Generated by Neuron 1.9.24.1" /></a></div></div></div></body></html>