diff options
| author | a73x <[email protected]> | 2024-12-01 13:27:00 +0000 |
|---|---|---|
| committer | a73x <[email protected]> | 2024-12-01 13:27:00 +0000 |
| commit | 8358c0765be412b1616aa978667f5d582e9e4901 (patch) | |
| tree | acb2e9efb40bb4b92f45020f96b269c89a0827ce /public/index.html | |
| parent | 013d56b78002dec56d8426b24b3a31107f22c7a7 (diff) | |
feat(css): centered content
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 66 |
1 files changed, 37 insertions, 29 deletions
diff --git a/public/index.html b/public/index.html index 18ef34b..de115be 100644 --- a/public/index.html +++ b/public/index.html @@ -14,26 +14,27 @@ </head> <body> - <h1>a73x</h1> - <sub>high effort, low reward</sub> - <nav class="nav"> - <ul> - - - <li><a class="no-decorations" href="/">home</a></li> - - - - <li><a class="no-decorations" href="/posts">posts</a></li> - - - - <li><a class="no-decorations" href="/ethos">ethos</a></li> - - - </ul> - </nav> - + <main> + <h1>a73x</h1> + <sub>high effort, low reward</sub> + <nav class="nav"> + <ul> + + + <li><a class="no-decorations" href="/">home</a></li> + + + + <li><a class="no-decorations" href="/posts">posts</a></li> + + + + <li><a class="no-decorations" href="/ethos">ethos</a></li> + + + </ul> + </nav> + <h1>home</h1> <p>Welcome!</p> @@ -65,15 +66,19 @@ more CPU == more contention</li> <h2 id="git">#git</h2> <ul> -<li><code>git reflog</code></li> -<li><code>git commit --fixup=<COMMITISH></code><br> -<code>git rebase origin/main --autosquash</code></li> +<li><code>git reflog</code> will save you when you mess up</li> +<li>Keep your git history clean + +<ul> +<li><code>git commit --fixup=<COMMITISH></code></li> +<li><code>git rebase origin/main --autosquash</code></li> +</ul></li> </ul> <h1 id="resources">resources</h1> <ul> -<li><a href="https://cs.opensource.google/go/go/+/refs/tags/go1.23.0:src/runtime/proc.go"><code>proc.go</code></a></li> +<li><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</li> <li><a href="https://github.com/golang/go/issues/67120">proposal: runtime/metrics: define a recommended set of metrics</a></li> </ul> @@ -84,14 +89,17 @@ more CPU == more contention</li> <li><a href="https://www.oreilly.com/library/view/database-internals/9781492040330">Database Internals</a></li> <li><a href="https://www.oreilly.com/library/view/efficient-go/9781098105709">Efficient Go</a></li> <li><a href="https://press.stripe.com/the-art-of-doing-science-and-engineering">The Art of Doing Science </a></li> +<li><a href="https://www.oreilly.com/library/view/the-art-of/9781492080688/">The Art of Agile Development</a></li> </ul> - <footer> - <br /> - <hr /><br /> - <p>see something you disagree with? email: <a href="mailto:[email protected]">[email protected]</a></p> - </footer> + <footer> + <br /> + <hr /> + <br /> + <p>see something you disagree with? email: <a href="mailto:[email protected]">[email protected]</a></p> + </footer> + </main> </body> </html> |
