summaryrefslogtreecommitdiff
path: root/public/index.html
diff options
context:
space:
mode:
authora73x <[email protected]>2024-12-28 13:34:24 +0000
committera73x <[email protected]>2024-12-28 13:34:24 +0000
commit1071996f58fe766e71cb9af80d13084b2e3c41b9 (patch)
treefc38f60378be5e1aa68199a9ad93dc5ca69a8d3a /public/index.html
parent0d1957f88db46d7d85831dadb08b38da8d7ea0df (diff)
remove hello from index
Diffstat (limited to 'public/index.html')
-rw-r--r--public/index.html12
1 files changed, 5 insertions, 7 deletions
diff --git a/public/index.html b/public/index.html
index c590db7..fd13c97 100644
--- a/public/index.html
+++ b/public/index.html
@@ -41,17 +41,15 @@
</div>
<h1>home</h1>
-<p>Welcome!</p>
-
-<h1 id="about-me">about me</h1>
+<h2 id="about-me">about me</h2>
<p>I&rsquo;m a backend software engineer. I primarily work in Kubernetes, writing microservices in Go.</p>
-<h1 id="tidbits">tidbits</h1>
+<h2 id="tidbits">tidbits</h2>
<p>Arbitrary bits of information I found useful</p>
-<h2 id="go">go</h2>
+<h3 id="go">go</h3>
<ul>
<li>layout packages by what they do, not by their abstract type</li>
@@ -66,7 +64,7 @@
more CPU == more contention</li>
</ul>
-<h2 id="git">git</h2>
+<h3 id="git">git</h3>
<ul>
<li><code>git reflog</code> will save you when you mess up</li>
@@ -78,7 +76,7 @@ more CPU == more contention</li>
</ul></li>
</ul>
-<h1 id="reading">Reading</h1>
+<h2 id="reading">Reading</h2>
<ul>
<li><p><a href="https://cs.opensource.google/go/go/+/refs/tags/go1.23.0:src/runtime/proc.go"><code>proc.go</code></a> - Go documentation is great, this describes the scheduler</p></li>